Class JavaClassExpressionsMill
java.lang.Object
de.monticore.expressions.javaclassexpressions.JavaClassExpressionsMill
- Direct Known Subclasses:
JavaClassExpressionsMillForGrammar_WithConcepts,JavaClassExpressionsMillForJavaLight,JavaClassExpressionsMillForODRules,JavaClassExpressionsMillForTFBasisExts,JavaClassExpressionsMillForTFCommons
The mill is a factory for builders and other commonly used functions, such as parsers or visitors.
The mill was introduced to ensure compositionality of languages, while retaining reusability of functions developed for sublanguages.
Only one mill instance exists, even though in composed languages it is available under several static signatures.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected JavaClassExpressionsFullPrettyPrinterprotected IJavaClassExpressionsGlobalScopeprotected static JavaClassExpressionsMillprotected IJavaClassExpressionsTypeDispatcher -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected IJavaClassExpressionsArtifactScopeprotected ASTClassExpressionBuilderprotected ASTGenericInvocationExpressionBuilderprotected ASTGenericInvocationSuffixBuilderprotected IJavaClassExpressionsGlobalScopeprotected JavaClassExpressionsTraverserprotected ASTInstanceofPatternExpressionBuilderprotected String_prettyPrint(de.monticore.ast.ASTNode node, boolean printComments) protected ASTPrimarySuperExpressionBuilderprotected ASTPrimaryThisExpressionBuilderprotected IJavaClassExpressionsScope_scope()protected JavaClassExpressionsScopesGenitorprotected ASTSuperExpressionBuilderprotected ASTSuperSuffixBuilderprotected ASTThisExpressionBuilderprotected JavaClassExpressionsTraverserprotected IJavaClassExpressionsTypeDispatcherprotected ASTTypePatternBuilderstatic ASTArgumentsBuilderstatic ASTArrayCreatorBuilderstatic ASTBracketExpressionBuilderstatic ASTCallExpressionBuilderstatic ASTClassCreatorBuilderstatic ASTClassExpressionBuilderstatic ASTCreatorExpressionBuilderstatic ASTDeclaratorIdBuilderstatic DiagramSymbolBuilderstatic ASTDivideExpressionBuilderstatic ASTEqualsExpressionBuilderstatic FieldSymbolBuilderstatic FieldSymbolSurrogateBuilderstatic FunctionSymbolBuilderstatic JavaClassExpressionsMillgetMill()A traverser is the conceptual entry point for every action within the visitor infrastructure.static voidinit()Initializes a languages Mill.static voidstatic ASTLessThanExpressionBuilderstatic ASTLiteralExpressionBuilderstatic ASTMCBasicGenericTypeBuilderstatic ASTMCImportStatementBuilderstatic ASTMCInnerTypeBuilderstatic ASTMCListTypeBuilderstatic ASTMCMapTypeBuilderstatic ASTMCOptionalTypeBuilderstatic ASTMCPrimitiveTypeBuilderstatic ASTMCQualifiedNameBuilderstatic ASTMCQualifiedTypeBuilderstatic ASTMCReturnTypeBuilderstatic ASTMCSetTypeBuilderstatic MCStereotypeSymbolBuilderstatic ASTMCVoidTypeBuilderstatic MethodSymbolBuilderstatic MethodSymbolSurrogateBuilderstatic ASTMinusExpressionBuilderstatic ASTModuloExpressionBuilderstatic ASTMultExpressionBuilderstatic ASTNameExpressionBuilderstatic OOTypeSymbolBuilderstatic OOTypeSymbolSurrogateBuilderstatic ASTPlusExpressionBuilderstatic StringprettyPrint(de.monticore.ast.ASTNode node, boolean printComments) Uses the composed pretty printer to print an ASTNode of this languagestatic voidreset()static IJavaClassExpressionsScopescope()Returns a new ScopeGenitor.Returns a new ScopeGenitorDelegator.static ASTSimpleInitBuilderstatic ASTSuperExpressionBuilderstatic ASTSuperSuffixBuilderstatic ASTThisExpressionBuilderA traverser is the conceptual entry point for every action within the visitor infrastructure.static ASTTypeCastExpressionBuilderstatic ASTTypePatternBuilderstatic TypeSymbolBuilderstatic TypeSymbolSurrogateBuilderstatic TypeVarSymbolBuilderstatic ASTVariableDeclaratorBuilderstatic VariableSymbolBuilder
-
Field Details
-
mill
-
fullPrettyPrinter
-
typeDispatcher
-
javaClassExpressionsGlobalScope
-
-
Constructor Details
-
JavaClassExpressionsMill
protected JavaClassExpressionsMill()
-
-
Method Details
-
getMill
-
init
public static void init()Initializes a languages Mill. This will also initialize the Mills of all languages it depends on. This ensures that all objects of this mill, such as builders, traversers, scopes, ..., deliver the element of the correct language. -
-
_primaryThisExpressionBuilder
-
thisExpressionBuilder
-
_thisExpressionBuilder
-
superExpressionBuilder
-
_superExpressionBuilder
-
genericInvocationExpressionBuilder
-
_genericInvocationExpressionBuilder
-
primarySuperExpressionBuilder
-
_primarySuperExpressionBuilder
-
classExpressionBuilder
-
_classExpressionBuilder
-
primaryGenericInvocationExpressionBuilder
public static ASTPrimaryGenericInvocationExpressionBuilder primaryGenericInvocationExpressionBuilder() -
_primaryGenericInvocationExpressionBuilder
-
genericInvocationSuffixBuilder
-
_genericInvocationSuffixBuilder
-
superSuffixBuilder
-
_superSuffixBuilder
-
instanceofPatternExpressionBuilder
-
_instanceofPatternExpressionBuilder
-
typePatternBuilder
-
_typePatternBuilder
-
prettyPrint
Uses the composed pretty printer to print an ASTNode of this language- Parameters:
node- The ASTNode to be printedprintComments- Whether comments should be printed- Returns:
- The pretty printer output
-
_prettyPrint
-
typeDispatcher
-
_typeDispatcher
-
traverser
A traverser is the conceptual entry point for every action within the visitor infrastructure. Visitors may be added, which contain the implementations for the visit and endVisit methods. Handlers may be added to modify the default traversal strategy. Each traverser retains their traversed elements to avoid duplicate traversal, possibly requiringITraverser.clearTraversedElements()to be called in case of re-useinheritanceTraverser()should be preferred over normal traverser, as they further enable language composition.- Returns:
- a new instance of this language's traverser
-
_traverser
-
inheritanceTraverser
A traverser is the conceptual entry point for every action within the visitor infrastructure. Visitors may be added, which contain the implementations for the visit and endVisit methods. Handlers may be added to modify the default traversal strategy. Each traverser retains their traversed elements to avoid duplicate traversal, possibly requiringITraverser.clearTraversedElements()to be called in case of re-use Inheritance Traverser should be preferred over default ones, as they further enable language composition.- Returns:
- a new instance of this language's inheritance traverser
-
_inheritanceTraverser
-
globalScope
-
_globalScope
-
artifactScope
-
_artifactScope
-
scope
-
_scope
-
scopesGenitor
Returns a new ScopeGenitor. ScopeGenitors are responsible for creating the scope structure of artifacts of only this language and linking it with the AST nodes. Note: ScopeGenitors do NOT delegate to elements of composed languages which is why you are most likely looking forscopesGenitorDelegator().- Returns:
- a new instance of this language's scope genitor
-
_scopesGenitor
-
scopesGenitorDelegator
Returns a new ScopeGenitorDelegator. Delegates to the ScopeGenitors of composed languages, used for instantiating symbol tables in the context of language composition See the delegators #createFromAST method.- Returns:
- a new instance of this language's scope genitor delegator
-
_scopesGenitorDelegator
-
callExpressionBuilder
-
fieldAccessExpressionBuilder
-
plusPrefixExpressionBuilder
-
minusPrefixExpressionBuilder
-
booleanNotExpressionBuilder
-
logicalNotExpressionBuilder
-
multExpressionBuilder
-
divideExpressionBuilder
-
moduloExpressionBuilder
-
plusExpressionBuilder
-
minusExpressionBuilder
-
lessEqualExpressionBuilder
-
greaterEqualExpressionBuilder
-
lessThanExpressionBuilder
-
greaterThanExpressionBuilder
-
equalsExpressionBuilder
-
notEqualsExpressionBuilder
-
booleanAndOpExpressionBuilder
-
booleanOrOpExpressionBuilder
-
conditionalExpressionBuilder
-
bracketExpressionBuilder
-
arrayAccessExpressionBuilder
-
localVariableDeclarationStatementBuilder
public static ASTLocalVariableDeclarationStatementBuilder localVariableDeclarationStatementBuilder() -
localVariableDeclarationBuilder
-
variableDeclaratorBuilder
-
declaratorIdBuilder
-
simpleInitBuilder
-
mCWildcardTypeArgumentBuilder
-
mCMultipleGenericTypeBuilder
-
mCInnerTypeBuilder
-
typeCastExpressionBuilder
-
instanceofExpressionBuilder
-
creatorExpressionBuilder
-
classCreatorBuilder
-
arrayCreatorBuilder
-
arrayDimensionByExpressionBuilder
-
nameExpressionBuilder
-
literalExpressionBuilder
-
argumentsBuilder
-
mCQualifiedNameBuilder
-
mCPackageDeclarationBuilder
-
mCImportStatementBuilder
-
mCPrimitiveTypeBuilder
-
mCQualifiedTypeBuilder
-
mCReturnTypeBuilder
-
mCVoidTypeBuilder
-
oOTypeSymbolBuilder
-
oOTypeSymbolSurrogateBuilder
-
fieldSymbolBuilder
-
fieldSymbolSurrogateBuilder
-
methodSymbolBuilder
-
methodSymbolSurrogateBuilder
-
diagramSymbolBuilder
-
diagramSymbolSurrogateBuilder
-
typeSymbolBuilder
-
typeSymbolSurrogateBuilder
-
typeVarSymbolBuilder
-
typeVarSymbolSurrogateBuilder
-
variableSymbolBuilder
-
variableSymbolSurrogateBuilder
-
functionSymbolBuilder
-
functionSymbolSurrogateBuilder
-
mCStereotypeSymbolBuilder
-
mCStereotypeSymbolSurrogateBuilder
-
mCBasicGenericTypeBuilder
-
mCCustomTypeArgumentBuilder
-
mCListTypeBuilder
-
mCOptionalTypeBuilder
-
mCMapTypeBuilder
-
mCSetTypeBuilder
-
mCBasicTypeArgumentBuilder
-
mCPrimitiveTypeArgumentBuilder
-
initMe
-
reset
public static void reset()
-