blob: 0286b03fe73ae7f18bd282f4e923bb80dcf45608 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*******************************************************************************/
package org.eclipse.dltk.ast.declarations;
public class FieldDeclaration extends Declaration {
public FieldDeclaration(String name, int nameStart, int nameEnd,
int declStart, int declEnd) {
super(declStart, declEnd);
this.setName(name);
this.setNameStart(nameStart);
this.setNameEnd(nameEnd);
}
}