Uses of Interface
org.fife.rsta.ac.java.rjc.ast.TypeDeclaration
-
Packages that use TypeDeclaration Package Description org.fife.rsta.ac.java Java code completion classes.org.fife.rsta.ac.java.rjc.ast Nodes making an abstract syntax tree for Java code.org.fife.rsta.ac.java.rjc.parser A parser for Java source code.org.fife.rsta.ac.java.tree Java outline tree implementation. -
-
Uses of TypeDeclaration in org.fife.rsta.ac.java
Methods in org.fife.rsta.ac.java with parameters of type TypeDeclaration Modifier and Type Method Description private voidSourceCompletionProvider. loadCompletionsForCaretPosition(CompilationUnit cu, javax.swing.text.JTextComponent comp, java.lang.String alreadyEntered, java.util.Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, java.lang.String prefix, int caret)Loads completions based on the current caret location in the source.private voidSourceCompletionProvider. loadCompletionsForCaretPositionQualified(CompilationUnit cu, java.lang.String alreadyEntered, java.util.Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, Method currentMethod, java.lang.String prefix, int offs)Loads completions for the text at the current caret position, if there is a "prefix" of chars and at least one '.' character in the text up to the caret.private voidSourceCompletionProvider. loadCompletionsForCaretPositionQualifiedCodeBlock(CompilationUnit cu, java.util.Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, CodeBlock block, java.lang.String prefix, int offs) -
Uses of TypeDeclaration in org.fife.rsta.ac.java.rjc.ast
Classes in org.fife.rsta.ac.java.rjc.ast that implement TypeDeclaration Modifier and Type Class Description classAbstractTypeDeclarationNodeA base class for type declaration nodes.classEnumDeclarationRepresents an enum declaration.classNormalClassDeclarationA class declaration.classNormalInterfaceDeclarationAn interface declaration.Fields in org.fife.rsta.ac.java.rjc.ast declared as TypeDeclaration Modifier and Type Field Description private TypeDeclarationAbstractTypeDeclarationNode. parentTypeprivate TypeDeclarationAbstractMember. parentTypeDecFields in org.fife.rsta.ac.java.rjc.ast with type parameters of type TypeDeclaration Modifier and Type Field Description private java.util.List<TypeDeclaration>AbstractTypeDeclarationNode. childTypesprivate java.util.List<TypeDeclaration>CompilationUnit. typeDeclarationsMethods in org.fife.rsta.ac.java.rjc.ast that return TypeDeclaration Modifier and Type Method Description TypeDeclarationAbstractTypeDeclarationNode. getChildType(int index)TypeDeclarationTypeDeclaration. getChildType(int index)Returns a child type by index.TypeDeclarationAbstractTypeDeclarationNode. getChildTypeAtOffset(int offs)TypeDeclarationTypeDeclaration. getChildTypeAtOffset(int offs)Returns the child type declaration of this one that contains the specified offset, if any.TypeDeclarationCompilationUnit. getDeepestTypeDeclarationAtOffset(int offs)Returns the deepest-nested type declaration that contains a given offset.TypeDeclarationAbstractTypeDeclarationNode. getParentType()Returns the parent type declaration.TypeDeclarationTypeDeclaration. getParentType()Returns the parent type declaration.TypeDeclarationAbstractMember. getParentTypeDeclaration()TypeDeclarationMember. getParentTypeDeclaration()Returns the parent type declaration of this member.TypeDeclarationCompilationUnit. getTypeDeclaration(int index)Returns the specified type declaration.TypeDeclarationCompilationUnit. getTypeDeclarationAtOffset(int offs)Returns the type declaration in this file that contains the specified offset.Methods in org.fife.rsta.ac.java.rjc.ast that return types with arguments of type TypeDeclaration Modifier and Type Method Description java.util.Iterator<TypeDeclaration>CompilationUnit. getTypeDeclarationIterator()Methods in org.fife.rsta.ac.java.rjc.ast with parameters of type TypeDeclaration Modifier and Type Method Description voidAbstractTypeDeclarationNode. addTypeDeclaration(TypeDeclaration type)voidCompilationUnit. addTypeDeclaration(TypeDeclaration typeDec)voidTypeDeclarationContainer. addTypeDeclaration(TypeDeclaration typeDec)Adds a type declaration to this container.voidAbstractTypeDeclarationNode. setParentType(TypeDeclaration parentType)Sets the parent type declaration for this type declaration.voidTypeDeclaration. setParentType(TypeDeclaration parentType)Sets the parent type declaration for this type declaration.voidAbstractMember. setParentTypeDeclaration(TypeDeclaration dec)Sets the parent type declaration of this member.voidMember. setParentTypeDeclaration(TypeDeclaration dec)Sets the parent type declaration of this member. -
Uses of TypeDeclaration in org.fife.rsta.ac.java.rjc.parser
Methods in org.fife.rsta.ac.java.rjc.parser that return TypeDeclaration Modifier and Type Method Description private TypeDeclarationASTFactory. getClassOrInterfaceDeclaration(CompilationUnit cu, Scanner s, TypeDeclarationContainer addTo, Modifiers modList)private TypeDeclarationASTFactory. getTypeDeclaration(CompilationUnit cu, Scanner s) -
Uses of TypeDeclaration in org.fife.rsta.ac.java.tree
Methods in org.fife.rsta.ac.java.tree with parameters of type TypeDeclaration Modifier and Type Method Description private TypeDeclarationTreeNodeJavaOutlineTree. createTypeDeclarationNode(TypeDeclaration td)Constructors in org.fife.rsta.ac.java.tree with parameters of type TypeDeclaration Constructor Description TypeDeclarationTreeNode(TypeDeclaration typeDec)
-