* Copyright (C) 2010 Robert Futrell
* robert_futrell at users.sourceforge.net
* http://fifesoft.com/rsyntaxtextarea
* This library is distributed under a modified BSD license. See the included
* RSTALanguageSupport.License.txt file for details.
package org.fife.rsta.ac.java.rjc.ast;
import org.fife.rsta.ac.java.rjc.lang.Modifiers;
import org.fife.rsta.ac.java.rjc.lang.Type;
* A marker for a member of a class or interface.
public interface Member extends ASTNode {
public String getDocComment();
public int getNameEndOffset();
public int getNameStartOffset();
public Modifiers getModifiers();
public TypeDeclaration getParentTypeDeclaration();
public boolean isDeprecated();
* Shortcut for <code>getModifiers().isStatic()</code>; useful since
* <code>getModifiers()</code> may return <code>null</code>.
* @return Whether this member is static.
public boolean isStatic();
public void setParentTypeDeclaration(TypeDeclaration dec);