Uses of Interface
org.fife.rsta.ac.java.rjc.ast.TypeDeclaration
Packages that use TypeDeclaration
Package
Description
Java code completion classes.
Nodes making an abstract syntax tree for Java code.
A parser for Java source code.
Java outline tree implementation.
-
Uses of TypeDeclaration in org.fife.rsta.ac.java
Methods in org.fife.rsta.ac.java with parameters of type TypeDeclarationModifier and TypeMethodDescriptionprivate voidSourceCompletionProvider.loadCompletionsForCaretPosition(CompilationUnit cu, JTextComponent comp, String alreadyEntered, Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, String prefix, int caret) Loads completions based on the current caret location in the source.private voidSourceCompletionProvider.loadCompletionsForCaretPositionQualified(CompilationUnit cu, String alreadyEntered, Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, Method currentMethod, 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, Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, CodeBlock block, 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 TypeDeclarationModifier and TypeClassDescriptionclassA base class for type declaration nodes.classRepresents an enum declaration.classA class declaration.classAn interface declaration.Fields in org.fife.rsta.ac.java.rjc.ast declared as TypeDeclarationModifier and TypeFieldDescriptionprivate TypeDeclarationAbstractTypeDeclarationNode.parentTypeprivate TypeDeclarationAbstractMember.parentTypeDecFields in org.fife.rsta.ac.java.rjc.ast with type parameters of type TypeDeclarationModifier and TypeFieldDescriptionprivate List<TypeDeclaration> AbstractTypeDeclarationNode.childTypesprivate List<TypeDeclaration> CompilationUnit.typeDeclarationsMethods in org.fife.rsta.ac.java.rjc.ast that return TypeDeclarationModifier and TypeMethodDescriptionAbstractTypeDeclarationNode.getChildType(int index) TypeDeclaration.getChildType(int index) Returns a child type by index.AbstractTypeDeclarationNode.getChildTypeAtOffset(int offs) TypeDeclaration.getChildTypeAtOffset(int offs) Returns the child type declaration of this one that contains the specified offset, if any.CompilationUnit.getDeepestTypeDeclarationAtOffset(int offs) Returns the deepest-nested type declaration that contains a given offset.AbstractTypeDeclarationNode.getParentType()Returns the parent type declaration.TypeDeclaration.getParentType()Returns the parent type declaration.AbstractMember.getParentTypeDeclaration()Member.getParentTypeDeclaration()Returns the parent type declaration of this member.CompilationUnit.getTypeDeclaration(int index) Returns the specified type declaration.CompilationUnit.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 TypeDeclarationMethods in org.fife.rsta.ac.java.rjc.ast with parameters of type TypeDeclarationModifier and TypeMethodDescriptionvoidAbstractTypeDeclarationNode.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 TypeDeclarationModifier and TypeMethodDescriptionprivate 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 TypeDeclarationModifier and TypeMethodDescriptionprivate TypeDeclarationTreeNodeJavaOutlineTree.createTypeDeclarationNode(TypeDeclaration td) Constructors in org.fife.rsta.ac.java.tree with parameters of type TypeDeclaration