|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object polyglot.ext.jl.ast.AbstractDelFactory_c
public abstract class AbstractDelFactory_c
This abstract implementation of DelFactory
provides
a way of chaining together DelFactories, and default implementations
of factory methods for each node.
For a given type of AST node N
, there are three methods:
delN()
, delNImpl()
and postDelN(JL)
.
The method delN()
calls delNImpl()
to create
an appropriate delegate object, and if other DelFactory
s are
chained onto this one, it will also call delN()
on the next
DelFactory
. The method delN()
will then
call postDelN
, passing in the newly created extension object.
The default implementation of delNImpl()
is to simply call
delMImpl()
, where M
is the immediate
superclass of N
. Similarly, the default implementation of
postDelN(JL)
is to call postDelM(JL)
.
has a very similar structure.
Constructor Summary | |
---|---|
protected |
AbstractDelFactory_c()
|
protected |
AbstractDelFactory_c(DelFactory nextDelFactory)
|
Method Summary | |
---|---|
protected JL |
composeDels(JL e1,
JL e2)
Compose two delegates together. |
JL |
delAmbAssign()
|
protected JL |
delAmbAssignImpl()
Create the delegate for a AmbAssign AST node. |
JL |
delAmbExpr()
|
protected JL |
delAmbExprImpl()
Create the delegate for a AmbExpr AST node. |
JL |
delAmbPrefix()
|
protected JL |
delAmbPrefixImpl()
Create the delegate for a AmbPrefix AST node. |
JL |
delAmbQualifierNode()
|
protected JL |
delAmbQualifierNodeImpl()
Create the delegate for a AmbQualifierNode AST node. |
JL |
delAmbReceiver()
|
protected JL |
delAmbReceiverImpl()
Create the delegate for a AmbReceiver AST node. |
JL |
delAmbTypeNode()
|
protected JL |
delAmbTypeNodeImpl()
Create the delegate for a AmbTypeNode AST node. |
JL |
delArrayAccess()
|
JL |
delArrayAccessAssign()
|
protected JL |
delArrayAccessAssignImpl()
Create the delegate for a ArrayAccessAssign AST node. |
protected JL |
delArrayAccessImpl()
Create the delegate for a ArrayAccess AST node. |
JL |
delArrayInit()
|
protected JL |
delArrayInitImpl()
Create the delegate for a ArrayInit AST node. |
JL |
delArrayTypeNode()
|
protected JL |
delArrayTypeNodeImpl()
Create the delegate for a ArrayTypeNode AST node. |
JL |
delAssert()
|
protected JL |
delAssertImpl()
Create the delegate for a Assert AST node. |
JL |
delAssign()
|
protected JL |
delAssignImpl()
Create the delegate for a Assign AST node. |
JL |
delBinary()
|
protected JL |
delBinaryImpl()
|
JL |
delBlock()
|
protected JL |
delBlockImpl()
Create the delegate for a Block AST node. |
JL |
delBooleanLit()
|
protected JL |
delBooleanLitImpl()
Create the delegate for a BooleanLit AST node. |
JL |
delBranch()
|
protected JL |
delBranchImpl()
Create the delegate for a Branch AST node. |
JL |
delCall()
|
protected JL |
delCallImpl()
Create the delegate for a Call AST node. |
JL |
delCanonicalTypeNode()
|
protected JL |
delCanonicalTypeNodeImpl()
Create the delegate for a CanonicalTypeNode AST node. |
JL |
delCase()
|
protected JL |
delCaseImpl()
Create the delegate for a Case AST node. |
JL |
delCast()
|
protected JL |
delCastImpl()
Create the delegate for a Cast AST node. |
JL |
delCatch()
|
protected JL |
delCatchImpl()
Create the delegate for a Catch AST node. |
JL |
delCharLit()
|
protected JL |
delCharLitImpl()
Create the delegate for a CharLit AST node. |
JL |
delClassBody()
|
protected JL |
delClassBodyImpl()
Create the delegate for a ClassBody AST node. |
JL |
delClassDecl()
|
protected JL |
delClassDeclImpl()
Create the delegate for a ClassDecl AST node. |
JL |
delClassLit()
|
protected JL |
delClassLitImpl()
Create the delegate for a ClassLit AST node. |
JL |
delClassMember()
|
protected JL |
delClassMemberImpl()
Create the delegate for a ClassMember AST node. |
JL |
delCodeDecl()
|
protected JL |
delCodeDeclImpl()
Create the delegate for a CodeDecl AST node. |
JL |
delConditional()
|
protected JL |
delConditionalImpl()
Create the delegate for a Conditional AST node. |
JL |
delConstructorCall()
|
protected JL |
delConstructorCallImpl()
Create the delegate for a ConstructorCall AST node. |
JL |
delConstructorDecl()
|
protected JL |
delConstructorDeclImpl()
Create the delegate for a ConstructorDecl AST node. |
JL |
delDo()
|
protected JL |
delDoImpl()
Create the delegate for a Do AST node. |
JL |
delEmpty()
|
protected JL |
delEmptyImpl()
Create the delegate for a Empty AST node. |
JL |
delEval()
|
protected JL |
delEvalImpl()
Create the delegate for a Eval AST node. |
JL |
delExpr()
|
protected JL |
delExprImpl()
Create the delegate for a Expr AST node. |
JL |
delField()
|
JL |
delFieldAssign()
|
protected JL |
delFieldAssignImpl()
Create the delegate for a FieldAssign AST node. |
JL |
delFieldDecl()
|
protected JL |
delFieldDeclImpl()
Create the delegate for a FieldDecl AST node. |
protected JL |
delFieldImpl()
Create the delegate for a Field AST node. |
JL |
delFloatLit()
|
protected JL |
delFloatLitImpl()
Create the delegate for a FloatLit AST node. |
JL |
delFor()
|
protected JL |
delForImpl()
Create the delegate for a For AST node. |
JL |
delFormal()
|
protected JL |
delFormalImpl()
Create the delegate for a Formal AST node. |
JL |
delIf()
|
protected JL |
delIfImpl()
Create the delegate for a If AST node. |
JL |
delImport()
|
protected JL |
delImportImpl()
Create the delegate for a Import AST node. |
JL |
delInitializer()
|
protected JL |
delInitializerImpl()
Create the delegate for a Initializer AST node. |
JL |
delInstanceof()
|
protected JL |
delInstanceofImpl()
Create the delegate for a Instanceof AST node. |
JL |
delIntLit()
|
protected JL |
delIntLitImpl()
Create the delegate for a IntLit AST node. |
JL |
delLabeled()
|
protected JL |
delLabeledImpl()
Create the delegate for a Labeled AST node. |
JL |
delLit()
|
protected JL |
delLitImpl()
Create the delegate for a Lit AST node. |
JL |
delLocal()
|
JL |
delLocalAssign()
|
protected JL |
delLocalAssignImpl()
Create the delegate for a LocalAssign AST node. |
JL |
delLocalClassDecl()
|
protected JL |
delLocalClassDeclImpl()
Create the delegate for a LocalClassDecl AST node. |
JL |
delLocalDecl()
|
protected JL |
delLocalDeclImpl()
Create the delegate for a LocalDecl AST node. |
protected JL |
delLocalImpl()
Create the delegate for a Local AST node. |
JL |
delLoop()
|
protected JL |
delLoopImpl()
Create the delegate for a Loop AST node. |
JL |
delMethodDecl()
|
protected JL |
delMethodDeclImpl()
Create the delegate for a MethodDecl AST node. |
JL |
delNew()
|
JL |
delNewArray()
|
protected JL |
delNewArrayImpl()
Create the delegate for a NewArray AST node. |
protected JL |
delNewImpl()
Create the delegate for a New AST node. |
JL |
delNode()
|
protected JL |
delNodeImpl()
Create the delegate for a Node AST node. |
JL |
delNullLit()
|
protected JL |
delNullLitImpl()
Create the delegate for a NullLit AST node. |
JL |
delNumLit()
|
protected JL |
delNumLitImpl()
Create the delegate for a NumLit AST node. |
JL |
delPackageNode()
|
protected JL |
delPackageNodeImpl()
Create the delegate for a PackageNode AST node. |
JL |
delProcedureDecl()
|
protected JL |
delProcedureDeclImpl()
Create the delegate for a ProcedureDecl AST node. |
JL |
delReturn()
|
protected JL |
delReturnImpl()
Create the delegate for a Return AST node. |
JL |
delSourceCollection()
|
protected JL |
delSourceCollectionImpl()
Create the delegate for a SourceCollection AST node. |
JL |
delSourceFile()
|
protected JL |
delSourceFileImpl()
Create the delegate for a SourceFile AST node. |
JL |
delSpecial()
|
protected JL |
delSpecialImpl()
Create the delegate for a Special AST node. |
JL |
delStmt()
|
protected JL |
delStmtImpl()
Create the delegate for a Stmt AST node. |
JL |
delStringLit()
|
protected JL |
delStringLitImpl()
Create the delegate for a StringLit AST node. |
JL |
delSwitch()
|
JL |
delSwitchBlock()
|
protected JL |
delSwitchBlockImpl()
Create the delegate for a SwitchBlock AST node. |
JL |
delSwitchElement()
|
protected JL |
delSwitchElementImpl()
Create the delegate for a SwitchElement AST node. |
protected JL |
delSwitchImpl()
Create the delegate for a Switch AST node. |
JL |
delSynchronized()
|
protected JL |
delSynchronizedImpl()
Create the delegate for a Synchronized AST node. |
JL |
delTerm()
|
protected JL |
delTermImpl()
Create the delegate for a Term AST node. |
JL |
delThrow()
|
protected JL |
delThrowImpl()
Create the delegate for a Throw AST node. |
JL |
delTry()
|
protected JL |
delTryImpl()
Create the delegate for a Try AST node. |
JL |
delTypeNode()
|
protected JL |
delTypeNodeImpl()
Create the delegate for a TypeNode AST node. |
JL |
delUnary()
|
protected JL |
delUnaryImpl()
Create the delegate for a Unary AST node. |
JL |
delWhile()
|
protected JL |
delWhileImpl()
Create the delegate for a While AST node. |
DelFactory |
nextDelFactory()
|
protected JL |
postDelAmbAssign(JL del)
|
protected JL |
postDelAmbExpr(JL del)
|
protected JL |
postDelAmbPrefix(JL del)
|
protected JL |
postDelAmbQualifierNode(JL del)
|
protected JL |
postDelAmbReceiver(JL del)
|
protected JL |
postDelAmbTypeNode(JL del)
|
protected JL |
postDelArrayAccess(JL del)
|
protected JL |
postDelArrayAccessAssign(JL del)
|
protected JL |
postDelArrayInit(JL del)
|
protected JL |
postDelArrayTypeNode(JL del)
|
protected JL |
postDelAssert(JL del)
|
protected JL |
postDelAssign(JL del)
|
protected JL |
postDelBinary(JL del)
|
protected JL |
postDelBlock(JL del)
|
protected JL |
postDelBooleanLit(JL del)
|
protected JL |
postDelBranch(JL del)
|
protected JL |
postDelCall(JL del)
|
protected JL |
postDelCanonicalTypeNode(JL del)
|
protected JL |
postDelCase(JL del)
|
protected JL |
postDelCast(JL del)
|
protected JL |
postDelCatch(JL del)
|
protected JL |
postDelCharLit(JL del)
|
protected JL |
postDelClassBody(JL del)
|
protected JL |
postDelClassDecl(JL del)
|
protected JL |
postDelClassLit(JL del)
|
protected JL |
postDelClassMember(JL del)
|
protected JL |
postDelCodeDecl(JL del)
|
protected JL |
postDelConditional(JL del)
|
protected JL |
postDelConstructorCall(JL del)
|
protected JL |
postDelConstructorDecl(JL del)
|
protected JL |
postDelDo(JL del)
|
protected JL |
postDelEmpty(JL del)
|
protected JL |
postDelEval(JL del)
|
protected JL |
postDelExpr(JL del)
|
protected JL |
postDelField(JL del)
|
protected JL |
postDelFieldAssign(JL del)
|
protected JL |
postDelFieldDecl(JL del)
|
protected JL |
postDelFloatLit(JL del)
|
protected JL |
postDelFor(JL del)
|
protected JL |
postDelFormal(JL del)
|
protected JL |
postDelIf(JL del)
|
protected JL |
postDelImport(JL del)
|
protected JL |
postDelInitializer(JL del)
|
protected JL |
postDelInstanceof(JL del)
|
protected JL |
postDelIntLit(JL del)
|
protected JL |
postDelLabeled(JL del)
|
protected JL |
postDelLit(JL del)
|
protected JL |
postDelLocal(JL del)
|
protected JL |
postDelLocalAssign(JL del)
|
protected JL |
postDelLocalClassDecl(JL del)
|
protected JL |
postDelLocalDecl(JL del)
|
protected JL |
postDelLoop(JL del)
|
protected JL |
postDelMethodDecl(JL del)
|
protected JL |
postDelNew(JL del)
|
protected JL |
postDelNewArray(JL del)
|
protected JL |
postDelNode(JL del)
|
protected JL |
postDelNullLit(JL del)
|
protected JL |
postDelNumLit(JL del)
|
protected JL |
postDelPackageNode(JL del)
|
protected JL |
postDelProcedureDecl(JL del)
|
protected JL |
postDelReturn(JL del)
|
protected JL |
postDelSourceCollection(JL del)
|
protected JL |
postDelSourceFile(JL del)
|
protected JL |
postDelSpecial(JL del)
|
protected JL |
postDelStmt(JL del)
|
protected JL |
postDelStringLit(JL del)
|
protected JL |
postDelSwitch(JL del)
|
protected JL |
postDelSwitchBlock(JL del)
|
protected JL |
postDelSwitchElement(JL del)
|
protected JL |
postDelSynchronized(JL del)
|
protected JL |
postDelTerm(JL del)
|
protected JL |
postDelThrow(JL del)
|
protected JL |
postDelTry(JL del)
|
protected JL |
postDelTypeNode(JL del)
|
protected JL |
postDelUnary(JL del)
|
protected JL |
postDelWhile(JL del)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected AbstractDelFactory_c()
protected AbstractDelFactory_c(DelFactory nextDelFactory)
Method Detail |
---|
public DelFactory nextDelFactory()
protected JL composeDels(JL e1, JL e2)
e1
- the JL
object to add to the end of e2's
chain of delegates.e2
- the second JL
object that will have e1 added to
its chain of delegates.
public final JL delAmbAssign()
delAmbAssign
in interface DelFactory
public final JL delAmbExpr()
delAmbExpr
in interface DelFactory
public final JL delAmbPrefix()
delAmbPrefix
in interface DelFactory
public final JL delAmbQualifierNode()
delAmbQualifierNode
in interface DelFactory
public final JL delAmbReceiver()
delAmbReceiver
in interface DelFactory
public final JL delAmbTypeNode()
delAmbTypeNode
in interface DelFactory
public final JL delArrayAccess()
delArrayAccess
in interface DelFactory
public final JL delArrayInit()
delArrayInit
in interface DelFactory
public final JL delArrayTypeNode()
delArrayTypeNode
in interface DelFactory
public final JL delAssert()
delAssert
in interface DelFactory
public final JL delAssign()
delAssign
in interface DelFactory
public final JL delLocalAssign()
delLocalAssign
in interface DelFactory
public final JL delFieldAssign()
delFieldAssign
in interface DelFactory
public final JL delArrayAccessAssign()
delArrayAccessAssign
in interface DelFactory
public final JL delBinary()
delBinary
in interface DelFactory
public final JL delBlock()
delBlock
in interface DelFactory
public final JL delBooleanLit()
delBooleanLit
in interface DelFactory
public final JL delBranch()
delBranch
in interface DelFactory
public final JL delCall()
delCall
in interface DelFactory
public final JL delCanonicalTypeNode()
delCanonicalTypeNode
in interface DelFactory
public final JL delCase()
delCase
in interface DelFactory
public final JL delCast()
delCast
in interface DelFactory
public final JL delCatch()
delCatch
in interface DelFactory
public final JL delCharLit()
delCharLit
in interface DelFactory
public final JL delClassBody()
delClassBody
in interface DelFactory
public final JL delClassDecl()
delClassDecl
in interface DelFactory
public final JL delClassLit()
delClassLit
in interface DelFactory
public final JL delClassMember()
delClassMember
in interface DelFactory
public final JL delCodeDecl()
delCodeDecl
in interface DelFactory
public final JL delConditional()
delConditional
in interface DelFactory
public final JL delConstructorCall()
delConstructorCall
in interface DelFactory
public final JL delConstructorDecl()
delConstructorDecl
in interface DelFactory
public final JL delDo()
delDo
in interface DelFactory
public final JL delEmpty()
delEmpty
in interface DelFactory
public final JL delEval()
delEval
in interface DelFactory
public final JL delExpr()
delExpr
in interface DelFactory
public final JL delField()
delField
in interface DelFactory
public final JL delFieldDecl()
delFieldDecl
in interface DelFactory
public final JL delFloatLit()
delFloatLit
in interface DelFactory
public final JL delFor()
delFor
in interface DelFactory
public final JL delFormal()
delFormal
in interface DelFactory
public final JL delIf()
delIf
in interface DelFactory
public final JL delImport()
delImport
in interface DelFactory
public final JL delInitializer()
delInitializer
in interface DelFactory
public final JL delInstanceof()
delInstanceof
in interface DelFactory
public final JL delIntLit()
delIntLit
in interface DelFactory
public final JL delLabeled()
delLabeled
in interface DelFactory
public final JL delLit()
delLit
in interface DelFactory
public final JL delLocal()
delLocal
in interface DelFactory
public final JL delLocalClassDecl()
delLocalClassDecl
in interface DelFactory
public final JL delLocalDecl()
delLocalDecl
in interface DelFactory
public final JL delLoop()
delLoop
in interface DelFactory
public final JL delMethodDecl()
delMethodDecl
in interface DelFactory
public final JL delNewArray()
delNewArray
in interface DelFactory
public final JL delNode()
delNode
in interface DelFactory
public final JL delNew()
delNew
in interface DelFactory
public final JL delNullLit()
delNullLit
in interface DelFactory
public final JL delNumLit()
delNumLit
in interface DelFactory
public final JL delPackageNode()
delPackageNode
in interface DelFactory
public final JL delProcedureDecl()
delProcedureDecl
in interface DelFactory
public final JL delReturn()
delReturn
in interface DelFactory
public final JL delSourceCollection()
delSourceCollection
in interface DelFactory
public final JL delSourceFile()
delSourceFile
in interface DelFactory
public final JL delSpecial()
delSpecial
in interface DelFactory
public final JL delStmt()
delStmt
in interface DelFactory
public final JL delStringLit()
delStringLit
in interface DelFactory
public final JL delSwitchBlock()
delSwitchBlock
in interface DelFactory
public final JL delSwitchElement()
delSwitchElement
in interface DelFactory
public final JL delSwitch()
delSwitch
in interface DelFactory
public final JL delSynchronized()
delSynchronized
in interface DelFactory
public final JL delTerm()
delTerm
in interface DelFactory
public final JL delThrow()
delThrow
in interface DelFactory
public final JL delTry()
delTry
in interface DelFactory
public final JL delTypeNode()
delTypeNode
in interface DelFactory
public final JL delUnary()
delUnary
in interface DelFactory
public final JL delWhile()
delWhile
in interface DelFactory
protected JL delAmbAssignImpl()
AmbAssign
AST node.
AmbAssign
AST node.protected JL delAmbExprImpl()
AmbExpr
AST node.
AmbExpr
AST node.protected JL delAmbPrefixImpl()
AmbPrefix
AST node.
AmbPrefix
AST node.protected JL delAmbQualifierNodeImpl()
AmbQualifierNode
AST node.
AmbQualifierNode
AST node.protected JL delAmbReceiverImpl()
AmbReceiver
AST node.
AmbReceiver
AST node.protected JL delAmbTypeNodeImpl()
AmbTypeNode
AST node.
AmbTypeNode
AST node.protected JL delArrayAccessImpl()
ArrayAccess
AST node.
ArrayAccess
AST node.protected JL delArrayInitImpl()
ArrayInit
AST node.
ArrayInit
AST node.protected JL delArrayTypeNodeImpl()
ArrayTypeNode
AST node.
ArrayTypeNode
AST node.protected JL delAssertImpl()
Assert
AST node.
Assert
AST node.protected JL delAssignImpl()
Assign
AST node.
Assign
AST node.protected JL delLocalAssignImpl()
LocalAssign
AST node.
LocalAssign
AST node.protected JL delFieldAssignImpl()
FieldAssign
AST node.
FieldAssign
AST node.protected JL delArrayAccessAssignImpl()
ArrayAccessAssign
AST node.
ArrayAccessAssign
AST node.protected JL delBinaryImpl()
protected JL delBlockImpl()
Block
AST node.
Block
AST node.protected JL delBooleanLitImpl()
BooleanLit
AST node.
BooleanLit
AST node.protected JL delBranchImpl()
Branch
AST node.
Branch
AST node.protected JL delCallImpl()
Call
AST node.
Call
AST node.protected JL delCanonicalTypeNodeImpl()
CanonicalTypeNode
AST node.
CanonicalTypeNode
AST node.protected JL delCaseImpl()
Case
AST node.
Case
AST node.protected JL delCastImpl()
Cast
AST node.
Cast
AST node.protected JL delCatchImpl()
Catch
AST node.
Catch
AST node.protected JL delCharLitImpl()
CharLit
AST node.
CharLit
AST node.protected JL delClassBodyImpl()
ClassBody
AST node.
ClassBody
AST node.protected JL delClassDeclImpl()
ClassDecl
AST node.
ClassDecl
AST node.protected JL delClassLitImpl()
ClassLit
AST node.
ClassLit
AST node.protected JL delClassMemberImpl()
ClassMember
AST node.
ClassMember
AST node.protected JL delCodeDeclImpl()
CodeDecl
AST node.
CodeDecl
AST node.protected JL delConditionalImpl()
Conditional
AST node.
Conditional
AST node.protected JL delConstructorCallImpl()
ConstructorCall
AST node.
ConstructorCall
AST node.protected JL delConstructorDeclImpl()
ConstructorDecl
AST node.
ConstructorDecl
AST node.protected JL delDoImpl()
Do
AST node.
Do
AST node.protected JL delEmptyImpl()
Empty
AST node.
Empty
AST node.protected JL delEvalImpl()
Eval
AST node.
Eval
AST node.protected JL delExprImpl()
Expr
AST node.
Expr
AST node.protected JL delFieldImpl()
Field
AST node.
Field
AST node.protected JL delFieldDeclImpl()
FieldDecl
AST node.
FieldDecl
AST node.protected JL delFloatLitImpl()
FloatLit
AST node.
FloatLit
AST node.protected JL delForImpl()
For
AST node.
For
AST node.protected JL delFormalImpl()
Formal
AST node.
Formal
AST node.protected JL delIfImpl()
If
AST node.
If
AST node.protected JL delImportImpl()
Import
AST node.
Import
AST node.protected JL delInitializerImpl()
Initializer
AST node.
Initializer
AST node.protected JL delInstanceofImpl()
Instanceof
AST node.
Instanceof
AST node.protected JL delIntLitImpl()
IntLit
AST node.
IntLit
AST node.protected JL delLabeledImpl()
Labeled
AST node.
Labeled
AST node.protected JL delLitImpl()
Lit
AST node.
Lit
AST node.protected JL delLocalImpl()
Local
AST node.
Local
AST node.protected JL delLocalClassDeclImpl()
LocalClassDecl
AST node.
LocalClassDecl
AST node.protected JL delLocalDeclImpl()
LocalDecl
AST node.
LocalDecl
AST node.protected JL delLoopImpl()
Loop
AST node.
Loop
AST node.protected JL delMethodDeclImpl()
MethodDecl
AST node.
MethodDecl
AST node.protected JL delNewArrayImpl()
NewArray
AST node.
NewArray
AST node.protected JL delNodeImpl()
Node
AST node.
Node
AST node.protected JL delNewImpl()
New
AST node.
New
AST node.protected JL delNullLitImpl()
NullLit
AST node.
NullLit
AST node.protected JL delNumLitImpl()
NumLit
AST node.
NumLit
AST node.protected JL delPackageNodeImpl()
PackageNode
AST node.
PackageNode
AST node.protected JL delProcedureDeclImpl()
ProcedureDecl
AST node.
ProcedureDecl
AST node.protected JL delReturnImpl()
Return
AST node.
Return
AST node.protected JL delSourceCollectionImpl()
SourceCollection
AST node.
SourceCollection
AST node.protected JL delSourceFileImpl()
SourceFile
AST node.
SourceFile
AST node.protected JL delSpecialImpl()
Special
AST node.
Special
AST node.protected JL delStmtImpl()
Stmt
AST node.
Stmt
AST node.protected JL delStringLitImpl()
StringLit
AST node.
StringLit
AST node.protected JL delSwitchBlockImpl()
SwitchBlock
AST node.
SwitchBlock
AST node.protected JL delSwitchElementImpl()
SwitchElement
AST node.
SwitchElement
AST node.protected JL delSwitchImpl()
Switch
AST node.
Switch
AST node.protected JL delSynchronizedImpl()
Synchronized
AST node.
Synchronized
AST node.protected JL delTermImpl()
Term
AST node.
Term
AST node.protected JL delThrowImpl()
Throw
AST node.
Throw
AST node.protected JL delTryImpl()
Try
AST node.
Try
AST node.protected JL delTypeNodeImpl()
TypeNode
AST node.
TypeNode
AST node.protected JL delUnaryImpl()
Unary
AST node.
Unary
AST node.protected JL delWhileImpl()
While
AST node.
While
AST node.protected JL postDelAmbAssign(JL del)
protected JL postDelAmbExpr(JL del)
protected JL postDelAmbPrefix(JL del)
protected JL postDelAmbQualifierNode(JL del)
protected JL postDelAmbReceiver(JL del)
protected JL postDelAmbTypeNode(JL del)
protected JL postDelArrayAccess(JL del)
protected JL postDelArrayInit(JL del)
protected JL postDelArrayTypeNode(JL del)
protected JL postDelAssert(JL del)
protected JL postDelAssign(JL del)
protected JL postDelLocalAssign(JL del)
protected JL postDelFieldAssign(JL del)
protected JL postDelArrayAccessAssign(JL del)
protected JL postDelBinary(JL del)
protected JL postDelBlock(JL del)
protected JL postDelBooleanLit(JL del)
protected JL postDelBranch(JL del)
protected JL postDelCall(JL del)
protected JL postDelCanonicalTypeNode(JL del)
protected JL postDelCase(JL del)
protected JL postDelCast(JL del)
protected JL postDelCatch(JL del)
protected JL postDelCharLit(JL del)
protected JL postDelClassBody(JL del)
protected JL postDelClassDecl(JL del)
protected JL postDelClassLit(JL del)
protected JL postDelClassMember(JL del)
protected JL postDelCodeDecl(JL del)
protected JL postDelConditional(JL del)
protected JL postDelConstructorCall(JL del)
protected JL postDelConstructorDecl(JL del)
protected JL postDelDo(JL del)
protected JL postDelEmpty(JL del)
protected JL postDelEval(JL del)
protected JL postDelExpr(JL del)
protected JL postDelField(JL del)
protected JL postDelFieldDecl(JL del)
protected JL postDelFloatLit(JL del)
protected JL postDelFor(JL del)
protected JL postDelFormal(JL del)
protected JL postDelIf(JL del)
protected JL postDelImport(JL del)
protected JL postDelInitializer(JL del)
protected JL postDelInstanceof(JL del)
protected JL postDelIntLit(JL del)
protected JL postDelLabeled(JL del)
protected JL postDelLit(JL del)
protected JL postDelLocal(JL del)
protected JL postDelLocalClassDecl(JL del)
protected JL postDelLocalDecl(JL del)
protected JL postDelLoop(JL del)
protected JL postDelMethodDecl(JL del)
protected JL postDelNewArray(JL del)
protected JL postDelNode(JL del)
protected JL postDelNew(JL del)
protected JL postDelNullLit(JL del)
protected JL postDelNumLit(JL del)
protected JL postDelPackageNode(JL del)
protected JL postDelProcedureDecl(JL del)
protected JL postDelReturn(JL del)
protected JL postDelSourceCollection(JL del)
protected JL postDelSourceFile(JL del)
protected JL postDelSpecial(JL del)
protected JL postDelStmt(JL del)
protected JL postDelStringLit(JL del)
protected JL postDelSwitchBlock(JL del)
protected JL postDelSwitchElement(JL del)
protected JL postDelSwitch(JL del)
protected JL postDelSynchronized(JL del)
protected JL postDelTerm(JL del)
protected JL postDelThrow(JL del)
protected JL postDelTry(JL del)
protected JL postDelTypeNode(JL del)
protected JL postDelUnary(JL del)
protected JL postDelWhile(JL del)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |