Interface PrototypeField
- All Known Implementing Classes:
Structures.FieldData
public interface PrototypeField
-
Method Summary
Modifier and Type Method Description voidaddModifier(com.github.javaparser.ast.body.MethodDeclaration modifier)com.github.javaparser.ast.body.MethodDeclarationgenerateGetter()com.github.javaparser.ast.body.MethodDeclarationgenerateSetter()com.github.javaparser.ast.body.FieldDeclarationgetDeclaration()com.github.javaparser.ast.body.MethodDeclarationgetDescription()StringgetFullType()Map<String,com.github.javaparser.ast.type.Type>getGenerics()Structures.IgnoresgetIgnores()com.github.javaparser.ast.body.MethodDeclarationgetImplementationGetter()com.github.javaparser.ast.body.MethodDeclarationgetImplementationSetter()com.github.javaparser.ast.body.MethodDeclarationgetInterfaceGetter()com.github.javaparser.ast.body.MethodDeclarationgetInterfaceSetter()List<com.github.javaparser.ast.body.MethodDeclaration>getModifiers()StringgetName()PrototypeFieldgetParent()Structures.Parsed<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration>getParsed()PrototypeDescription<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration>getPrototype()StringgetType()Map<String,PrototypeDescription<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration>>getTypePrototypes()booleanisCollection()booleanisExternal()booleanisGenericField()booleanisGenericMethod()
-
Method Details
-
getParsed
Structures.Parsed<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration> getParsed() -
getName
String getName() -
getDescription
com.github.javaparser.ast.body.MethodDeclaration getDescription() -
getDeclaration
com.github.javaparser.ast.body.FieldDeclaration getDeclaration() -
getFullType
String getFullType() -
getType
String getType() -
isCollection
boolean isCollection() -
isExternal
boolean isExternal() -
isGenericMethod
boolean isGenericMethod() -
isGenericField
boolean isGenericField() -
getIgnores
Structures.Ignores getIgnores() -
getPrototype
PrototypeDescription<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration> getPrototype() -
getGenerics
-
getTypePrototypes
Map<String,PrototypeDescription<com.github.javaparser.ast.body.ClassOrInterfaceDeclaration>> getTypePrototypes() -
getInterfaceGetter
com.github.javaparser.ast.body.MethodDeclaration getInterfaceGetter() -
getInterfaceSetter
com.github.javaparser.ast.body.MethodDeclaration getInterfaceSetter() -
getImplementationGetter
com.github.javaparser.ast.body.MethodDeclaration getImplementationGetter() -
getImplementationSetter
com.github.javaparser.ast.body.MethodDeclaration getImplementationSetter() -
getModifiers
List<com.github.javaparser.ast.body.MethodDeclaration> getModifiers() -
getParent
PrototypeField getParent() -
addModifier
void addModifier(com.github.javaparser.ast.body.MethodDeclaration modifier) -
generateGetter
com.github.javaparser.ast.body.MethodDeclaration generateGetter() -
generateSetter
com.github.javaparser.ast.body.MethodDeclaration generateSetter()
-