@Deprecated public abstract class AbstractDelFactory_c extends java.lang.Object implements DelFactory
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 DelFactorys 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.| Modifier | Constructor and Description |
|---|---|
protected |
AbstractDelFactory_c()
Deprecated.
|
protected |
AbstractDelFactory_c(DelFactory nextDelFactory)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
protected JLDel |
composeDels(JLDel e1,
JLDel e2)
Deprecated.
Compose two delegates together.
|
JLDel |
delAmbAssign()
Deprecated.
|
protected JLDel |
delAmbAssignImpl()
Deprecated.
Create the delegate for a
AmbAssign AST node. |
JLDel |
delAmbExpr()
Deprecated.
|
protected JLDel |
delAmbExprImpl()
Deprecated.
Create the delegate for a
AmbExpr AST node. |
JLDel |
delAmbPrefix()
Deprecated.
|
protected JLDel |
delAmbPrefixImpl()
Deprecated.
Create the delegate for a
AmbPrefix AST node. |
JLDel |
delAmbQualifierNode()
Deprecated.
|
protected JLDel |
delAmbQualifierNodeImpl()
Deprecated.
Create the delegate for a
AmbQualifierNode AST node. |
JLDel |
delAmbReceiver()
Deprecated.
|
protected JLDel |
delAmbReceiverImpl()
Deprecated.
Create the delegate for a
AmbReceiver AST node. |
JLDel |
delAmbTypeNode()
Deprecated.
|
protected JLDel |
delAmbTypeNodeImpl()
Deprecated.
Create the delegate for a
AmbTypeNode AST node. |
JLDel |
delArrayAccess()
Deprecated.
|
JLDel |
delArrayAccessAssign()
Deprecated.
|
protected JLDel |
delArrayAccessAssignImpl()
Deprecated.
Create the delegate for a
ArrayAccessAssign AST node. |
protected JLDel |
delArrayAccessImpl()
Deprecated.
Create the delegate for a
ArrayAccess AST node. |
JLDel |
delArrayInit()
Deprecated.
|
protected JLDel |
delArrayInitImpl()
Deprecated.
Create the delegate for a
ArrayInit AST node. |
JLDel |
delArrayTypeNode()
Deprecated.
|
protected JLDel |
delArrayTypeNodeImpl()
Deprecated.
Create the delegate for a
ArrayTypeNode AST node. |
JLDel |
delAssert()
Deprecated.
|
protected JLDel |
delAssertImpl()
Deprecated.
Create the delegate for a
Assert AST node. |
JLDel |
delAssign()
Deprecated.
|
protected JLDel |
delAssignImpl()
Deprecated.
Create the delegate for a
Assign AST node. |
JLDel |
delBinary()
Deprecated.
|
protected JLDel |
delBinaryImpl()
Deprecated.
|
JLDel |
delBlock()
Deprecated.
|
protected JLDel |
delBlockImpl()
Deprecated.
Create the delegate for a
Block AST node. |
JLDel |
delBooleanLit()
Deprecated.
|
protected JLDel |
delBooleanLitImpl()
Deprecated.
Create the delegate for a
BooleanLit AST node. |
JLDel |
delBranch()
Deprecated.
|
protected JLDel |
delBranchImpl()
Deprecated.
Create the delegate for a
Branch AST node. |
JLDel |
delCall()
Deprecated.
|
protected JLDel |
delCallImpl()
Deprecated.
Create the delegate for a
Call AST node. |
JLDel |
delCanonicalTypeNode()
Deprecated.
|
protected JLDel |
delCanonicalTypeNodeImpl()
Deprecated.
Create the delegate for a
CanonicalTypeNode AST node. |
JLDel |
delCase()
Deprecated.
|
protected JLDel |
delCaseImpl()
Deprecated.
Create the delegate for a
Case AST node. |
JLDel |
delCast()
Deprecated.
|
protected JLDel |
delCastImpl()
Deprecated.
Create the delegate for a
Cast AST node. |
JLDel |
delCatch()
Deprecated.
|
protected JLDel |
delCatchImpl()
Deprecated.
Create the delegate for a
Catch AST node. |
JLDel |
delCharLit()
Deprecated.
|
protected JLDel |
delCharLitImpl()
Deprecated.
Create the delegate for a
CharLit AST node. |
JLDel |
delClassBody()
Deprecated.
|
protected JLDel |
delClassBodyImpl()
Deprecated.
Create the delegate for a
ClassBody AST node. |
JLDel |
delClassDecl()
Deprecated.
|
protected JLDel |
delClassDeclImpl()
Deprecated.
Create the delegate for a
ClassDecl AST node. |
JLDel |
delClassLit()
Deprecated.
|
protected JLDel |
delClassLitImpl()
Deprecated.
Create the delegate for a
ClassLit AST node. |
JLDel |
delClassMember()
Deprecated.
|
protected JLDel |
delClassMemberImpl()
Deprecated.
Create the delegate for a
ClassMember AST node. |
JLDel |
delCodeDecl()
Deprecated.
|
protected JLDel |
delCodeDeclImpl()
Deprecated.
Create the delegate for a
CodeDecl AST node. |
JLDel |
delCompoundStmt()
Deprecated.
|
protected JLDel |
delCompoundStmtImpl()
Deprecated.
Create the delegate for a
CompoundStmt AST node. |
JLDel |
delConditional()
Deprecated.
|
protected JLDel |
delConditionalImpl()
Deprecated.
Create the delegate for a
Conditional AST node. |
JLDel |
delConstructorCall()
Deprecated.
|
protected JLDel |
delConstructorCallImpl()
Deprecated.
Create the delegate for a
ConstructorCall AST node. |
JLDel |
delConstructorDecl()
Deprecated.
|
protected JLDel |
delConstructorDeclImpl()
Deprecated.
Create the delegate for a
ConstructorDecl AST node. |
JLDel |
delDo()
Deprecated.
|
protected JLDel |
delDoImpl()
Deprecated.
Create the delegate for a
Do AST node. |
JLDel |
delEmpty()
Deprecated.
|
protected JLDel |
delEmptyImpl()
Deprecated.
Create the delegate for a
Empty AST node. |
JLDel |
delEval()
Deprecated.
|
protected JLDel |
delEvalImpl()
Deprecated.
Create the delegate for a
Eval AST node. |
JLDel |
delExpr()
Deprecated.
|
protected JLDel |
delExprImpl()
Deprecated.
Create the delegate for a
Expr AST node. |
JLDel |
delField()
Deprecated.
|
JLDel |
delFieldAssign()
Deprecated.
|
protected JLDel |
delFieldAssignImpl()
Deprecated.
Create the delegate for a
FieldAssign AST node. |
JLDel |
delFieldDecl()
Deprecated.
|
protected JLDel |
delFieldDeclImpl()
Deprecated.
Create the delegate for a
FieldDecl AST node. |
protected JLDel |
delFieldImpl()
Deprecated.
Create the delegate for a
Field AST node. |
JLDel |
delFloatLit()
Deprecated.
|
protected JLDel |
delFloatLitImpl()
Deprecated.
Create the delegate for a
FloatLit AST node. |
JLDel |
delFor()
Deprecated.
|
protected JLDel |
delForImpl()
Deprecated.
Create the delegate for a
For AST node. |
JLDel |
delFormal()
Deprecated.
|
protected JLDel |
delFormalImpl()
Deprecated.
Create the delegate for a
Formal AST node. |
JLDel |
delId()
Deprecated.
|
protected JLDel |
delIdImpl()
Deprecated.
Create the delegate for a
Name AST node. |
JLDel |
delIf()
Deprecated.
|
protected JLDel |
delIfImpl()
Deprecated.
Create the delegate for a
If AST node. |
JLDel |
delImport()
Deprecated.
|
protected JLDel |
delImportImpl()
Deprecated.
Create the delegate for a
Import AST node. |
JLDel |
delInitializer()
Deprecated.
|
protected JLDel |
delInitializerImpl()
Deprecated.
Create the delegate for a
Initializer AST node. |
JLDel |
delInstanceof()
Deprecated.
|
protected JLDel |
delInstanceofImpl()
Deprecated.
Create the delegate for a
Instanceof AST node. |
JLDel |
delIntLit()
Deprecated.
|
protected JLDel |
delIntLitImpl()
Deprecated.
Create the delegate for a
IntLit AST node. |
JLDel |
delLabeled()
Deprecated.
|
protected JLDel |
delLabeledImpl()
Deprecated.
Create the delegate for a
Labeled AST node. |
JLDel |
delLit()
Deprecated.
|
protected JLDel |
delLitImpl()
Deprecated.
Create the delegate for a
Lit AST node. |
JLDel |
delLocal()
Deprecated.
|
JLDel |
delLocalAssign()
Deprecated.
|
protected JLDel |
delLocalAssignImpl()
Deprecated.
Create the delegate for a
LocalAssign AST node. |
JLDel |
delLocalClassDecl()
Deprecated.
|
protected JLDel |
delLocalClassDeclImpl()
Deprecated.
Create the delegate for a
LocalClassDecl AST node. |
JLDel |
delLocalDecl()
Deprecated.
|
protected JLDel |
delLocalDeclImpl()
Deprecated.
Create the delegate for a
LocalDecl AST node. |
protected JLDel |
delLocalImpl()
Deprecated.
Create the delegate for a
Local AST node. |
JLDel |
delLoop()
Deprecated.
|
protected JLDel |
delLoopImpl()
Deprecated.
Create the delegate for a
Loop AST node. |
JLDel |
delMethodDecl()
Deprecated.
|
protected JLDel |
delMethodDeclImpl()
Deprecated.
Create the delegate for a
MethodDecl AST node. |
JLDel |
delNew()
Deprecated.
|
JLDel |
delNewArray()
Deprecated.
|
protected JLDel |
delNewArrayImpl()
Deprecated.
Create the delegate for a
NewArray AST node. |
protected JLDel |
delNewImpl()
Deprecated.
Create the delegate for a
New AST node. |
JLDel |
delNode()
Deprecated.
|
protected JLDel |
delNodeImpl()
Deprecated.
Create the delegate for a
Node AST node. |
JLDel |
delNodeList()
Deprecated.
|
protected JLDel |
delNodeListImpl()
Deprecated.
Create the delegate for a
NodeList AST node. |
JLDel |
delNullLit()
Deprecated.
|
protected JLDel |
delNullLitImpl()
Deprecated.
Create the delegate for a
NullLit AST node. |
JLDel |
delNumLit()
Deprecated.
|
protected JLDel |
delNumLitImpl()
Deprecated.
Create the delegate for a
NumLit AST node. |
JLDel |
delPackageNode()
Deprecated.
|
protected JLDel |
delPackageNodeImpl()
Deprecated.
Create the delegate for a
PackageNode AST node. |
JLDel |
delProcedureDecl()
Deprecated.
|
protected JLDel |
delProcedureDeclImpl()
Deprecated.
Create the delegate for a
ProcedureDecl AST node. |
JLDel |
delReturn()
Deprecated.
|
protected JLDel |
delReturnImpl()
Deprecated.
Create the delegate for a
Return AST node. |
JLDel |
delSourceCollection()
Deprecated.
|
protected JLDel |
delSourceCollectionImpl()
Deprecated.
Create the delegate for a
SourceCollection AST node. |
JLDel |
delSourceFile()
Deprecated.
|
protected JLDel |
delSourceFileImpl()
Deprecated.
Create the delegate for a
SourceFile AST node. |
JLDel |
delSpecial()
Deprecated.
|
protected JLDel |
delSpecialImpl()
Deprecated.
Create the delegate for a
Special AST node. |
JLDel |
delStmt()
Deprecated.
|
protected JLDel |
delStmtImpl()
Deprecated.
Create the delegate for a
Stmt AST node. |
JLDel |
delStringLit()
Deprecated.
|
protected JLDel |
delStringLitImpl()
Deprecated.
Create the delegate for a
StringLit AST node. |
JLDel |
delSwitch()
Deprecated.
|
JLDel |
delSwitchBlock()
Deprecated.
|
protected JLDel |
delSwitchBlockImpl()
Deprecated.
Create the delegate for a
SwitchBlock AST node. |
JLDel |
delSwitchElement()
Deprecated.
|
protected JLDel |
delSwitchElementImpl()
Deprecated.
Create the delegate for a
SwitchElement AST node. |
protected JLDel |
delSwitchImpl()
Deprecated.
Create the delegate for a
Switch AST node. |
JLDel |
delSynchronized()
Deprecated.
|
protected JLDel |
delSynchronizedImpl()
Deprecated.
Create the delegate for a
Synchronized AST node. |
JLDel |
delTerm()
Deprecated.
|
protected JLDel |
delTermImpl()
Deprecated.
Create the delegate for a
Term AST node. |
JLDel |
delThrow()
Deprecated.
|
protected JLDel |
delThrowImpl()
Deprecated.
Create the delegate for a
Throw AST node. |
JLDel |
delTry()
Deprecated.
|
protected JLDel |
delTryImpl()
Deprecated.
Create the delegate for a
Try AST node. |
JLDel |
delTypeNode()
Deprecated.
|
protected JLDel |
delTypeNodeImpl()
Deprecated.
Create the delegate for a
TypeNode AST node. |
JLDel |
delUnary()
Deprecated.
|
protected JLDel |
delUnaryImpl()
Deprecated.
Create the delegate for a
Unary AST node. |
JLDel |
delWhile()
Deprecated.
|
protected JLDel |
delWhileImpl()
Deprecated.
Create the delegate for a
While AST node. |
DelFactory |
nextDelFactory()
Deprecated.
|
protected JLDel |
postDelAmbAssign(JLDel del)
Deprecated.
|
protected JLDel |
postDelAmbExpr(JLDel del)
Deprecated.
|
protected JLDel |
postDelAmbPrefix(JLDel del)
Deprecated.
|
protected JLDel |
postDelAmbQualifierNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelAmbReceiver(JLDel del)
Deprecated.
|
protected JLDel |
postDelAmbTypeNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelArrayAccess(JLDel del)
Deprecated.
|
protected JLDel |
postDelArrayAccessAssign(JLDel del)
Deprecated.
|
protected JLDel |
postDelArrayInit(JLDel del)
Deprecated.
|
protected JLDel |
postDelArrayTypeNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelAssert(JLDel del)
Deprecated.
|
protected JLDel |
postDelAssign(JLDel del)
Deprecated.
|
protected JLDel |
postDelBinary(JLDel del)
Deprecated.
|
protected JLDel |
postDelBlock(JLDel del)
Deprecated.
|
protected JLDel |
postDelBooleanLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelBranch(JLDel del)
Deprecated.
|
protected JLDel |
postDelCall(JLDel del)
Deprecated.
|
protected JLDel |
postDelCanonicalTypeNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelCase(JLDel del)
Deprecated.
|
protected JLDel |
postDelCast(JLDel del)
Deprecated.
|
protected JLDel |
postDelCatch(JLDel del)
Deprecated.
|
protected JLDel |
postDelCharLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelClassBody(JLDel del)
Deprecated.
|
protected JLDel |
postDelClassDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelClassLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelClassMember(JLDel del)
Deprecated.
|
protected JLDel |
postDelCodeDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelCompoundStmt(JLDel del)
Deprecated.
|
protected JLDel |
postDelConditional(JLDel del)
Deprecated.
|
protected JLDel |
postDelConstructorCall(JLDel del)
Deprecated.
|
protected JLDel |
postDelConstructorDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelDo(JLDel del)
Deprecated.
|
protected JLDel |
postDelEmpty(JLDel del)
Deprecated.
|
protected JLDel |
postDelEval(JLDel del)
Deprecated.
|
protected JLDel |
postDelExpr(JLDel del)
Deprecated.
|
protected JLDel |
postDelField(JLDel del)
Deprecated.
|
protected JLDel |
postDelFieldAssign(JLDel del)
Deprecated.
|
protected JLDel |
postDelFieldDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelFloatLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelFor(JLDel del)
Deprecated.
|
protected JLDel |
postDelFormal(JLDel del)
Deprecated.
|
protected JLDel |
postDelId(JLDel del)
Deprecated.
|
protected JLDel |
postDelIf(JLDel del)
Deprecated.
|
protected JLDel |
postDelImport(JLDel del)
Deprecated.
|
protected JLDel |
postDelInitializer(JLDel del)
Deprecated.
|
protected JLDel |
postDelInstanceof(JLDel del)
Deprecated.
|
protected JLDel |
postDelIntLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelLabeled(JLDel del)
Deprecated.
|
protected JLDel |
postDelLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelLocal(JLDel del)
Deprecated.
|
protected JLDel |
postDelLocalAssign(JLDel del)
Deprecated.
|
protected JLDel |
postDelLocalClassDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelLocalDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelLoop(JLDel del)
Deprecated.
|
protected JLDel |
postDelMethodDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelNew(JLDel del)
Deprecated.
|
protected JLDel |
postDelNewArray(JLDel del)
Deprecated.
|
protected JLDel |
postDelNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelNodeList(JLDel del)
Deprecated.
|
protected JLDel |
postDelNullLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelNumLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelPackageNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelProcedureDecl(JLDel del)
Deprecated.
|
protected JLDel |
postDelReturn(JLDel del)
Deprecated.
|
protected JLDel |
postDelSourceCollection(JLDel del)
Deprecated.
|
protected JLDel |
postDelSourceFile(JLDel del)
Deprecated.
|
protected JLDel |
postDelSpecial(JLDel del)
Deprecated.
|
protected JLDel |
postDelStmt(JLDel del)
Deprecated.
|
protected JLDel |
postDelStringLit(JLDel del)
Deprecated.
|
protected JLDel |
postDelSwitch(JLDel del)
Deprecated.
|
protected JLDel |
postDelSwitchBlock(JLDel del)
Deprecated.
|
protected JLDel |
postDelSwitchElement(JLDel del)
Deprecated.
|
protected JLDel |
postDelSynchronized(JLDel del)
Deprecated.
|
protected JLDel |
postDelTerm(JLDel del)
Deprecated.
|
protected JLDel |
postDelThrow(JLDel del)
Deprecated.
|
protected JLDel |
postDelTry(JLDel del)
Deprecated.
|
protected JLDel |
postDelTypeNode(JLDel del)
Deprecated.
|
protected JLDel |
postDelUnary(JLDel del)
Deprecated.
|
protected JLDel |
postDelWhile(JLDel del)
Deprecated.
|
protected AbstractDelFactory_c()
protected AbstractDelFactory_c(DelFactory nextDelFactory)
public DelFactory nextDelFactory()
protected JLDel composeDels(JLDel e1, JLDel e2)
e1 - a JL object created by this DelFactory.e2 - a JL object created by this.nextDelFactorypublic final JLDel delId()
delId in interface DelFactorypublic final JLDel delAmbAssign()
delAmbAssign in interface DelFactorypublic final JLDel delAmbExpr()
delAmbExpr in interface DelFactorypublic final JLDel delAmbPrefix()
delAmbPrefix in interface DelFactorypublic final JLDel delAmbQualifierNode()
delAmbQualifierNode in interface DelFactorypublic final JLDel delAmbReceiver()
delAmbReceiver in interface DelFactorypublic final JLDel delAmbTypeNode()
delAmbTypeNode in interface DelFactorypublic final JLDel delArrayAccess()
delArrayAccess in interface DelFactorypublic final JLDel delArrayInit()
delArrayInit in interface DelFactorypublic final JLDel delArrayTypeNode()
delArrayTypeNode in interface DelFactorypublic final JLDel delAssert()
delAssert in interface DelFactorypublic final JLDel delAssign()
delAssign in interface DelFactorypublic final JLDel delLocalAssign()
delLocalAssign in interface DelFactorypublic final JLDel delFieldAssign()
delFieldAssign in interface DelFactorypublic final JLDel delArrayAccessAssign()
delArrayAccessAssign in interface DelFactorypublic final JLDel delBinary()
delBinary in interface DelFactorypublic final JLDel delBlock()
delBlock in interface DelFactorypublic final JLDel delBooleanLit()
delBooleanLit in interface DelFactorypublic final JLDel delBranch()
delBranch in interface DelFactorypublic final JLDel delCall()
delCall in interface DelFactorypublic final JLDel delCanonicalTypeNode()
delCanonicalTypeNode in interface DelFactorypublic final JLDel delCase()
delCase in interface DelFactorypublic final JLDel delCast()
delCast in interface DelFactorypublic final JLDel delCatch()
delCatch in interface DelFactorypublic final JLDel delCharLit()
delCharLit in interface DelFactorypublic final JLDel delClassBody()
delClassBody in interface DelFactorypublic final JLDel delClassDecl()
delClassDecl in interface DelFactorypublic final JLDel delClassLit()
delClassLit in interface DelFactorypublic final JLDel delClassMember()
delClassMember in interface DelFactorypublic final JLDel delCodeDecl()
delCodeDecl in interface DelFactorypublic final JLDel delCompoundStmt()
delCompoundStmt in interface DelFactorypublic final JLDel delConditional()
delConditional in interface DelFactorypublic final JLDel delConstructorCall()
delConstructorCall in interface DelFactorypublic final JLDel delConstructorDecl()
delConstructorDecl in interface DelFactorypublic final JLDel delDo()
delDo in interface DelFactorypublic final JLDel delEmpty()
delEmpty in interface DelFactorypublic final JLDel delEval()
delEval in interface DelFactorypublic final JLDel delExpr()
delExpr in interface DelFactorypublic final JLDel delField()
delField in interface DelFactorypublic final JLDel delFieldDecl()
delFieldDecl in interface DelFactorypublic final JLDel delFloatLit()
delFloatLit in interface DelFactorypublic final JLDel delFor()
delFor in interface DelFactorypublic final JLDel delFormal()
delFormal in interface DelFactorypublic final JLDel delIf()
delIf in interface DelFactorypublic final JLDel delImport()
delImport in interface DelFactorypublic final JLDel delInitializer()
delInitializer in interface DelFactorypublic final JLDel delInstanceof()
delInstanceof in interface DelFactorypublic final JLDel delIntLit()
delIntLit in interface DelFactorypublic final JLDel delLabeled()
delLabeled in interface DelFactorypublic final JLDel delLit()
delLit in interface DelFactorypublic final JLDel delLocal()
delLocal in interface DelFactorypublic final JLDel delLocalClassDecl()
delLocalClassDecl in interface DelFactorypublic final JLDel delLocalDecl()
delLocalDecl in interface DelFactorypublic final JLDel delLoop()
delLoop in interface DelFactorypublic final JLDel delMethodDecl()
delMethodDecl in interface DelFactorypublic final JLDel delNewArray()
delNewArray in interface DelFactorypublic final JLDel delNode()
delNode in interface DelFactorypublic final JLDel delNodeList()
delNodeList in interface DelFactorypublic final JLDel delNew()
delNew in interface DelFactorypublic final JLDel delNullLit()
delNullLit in interface DelFactorypublic final JLDel delNumLit()
delNumLit in interface DelFactorypublic final JLDel delPackageNode()
delPackageNode in interface DelFactorypublic final JLDel delProcedureDecl()
delProcedureDecl in interface DelFactorypublic final JLDel delReturn()
delReturn in interface DelFactorypublic final JLDel delSourceCollection()
delSourceCollection in interface DelFactorypublic final JLDel delSourceFile()
delSourceFile in interface DelFactorypublic final JLDel delSpecial()
delSpecial in interface DelFactorypublic final JLDel delStmt()
delStmt in interface DelFactorypublic final JLDel delStringLit()
delStringLit in interface DelFactorypublic final JLDel delSwitchBlock()
delSwitchBlock in interface DelFactorypublic final JLDel delSwitchElement()
delSwitchElement in interface DelFactorypublic final JLDel delSwitch()
delSwitch in interface DelFactorypublic final JLDel delSynchronized()
delSynchronized in interface DelFactorypublic final JLDel delTerm()
delTerm in interface DelFactorypublic final JLDel delThrow()
delThrow in interface DelFactorypublic final JLDel delTry()
delTry in interface DelFactorypublic final JLDel delTypeNode()
delTypeNode in interface DelFactorypublic final JLDel delUnary()
delUnary in interface DelFactorypublic final JLDel delWhile()
delWhile in interface DelFactoryprotected JLDel delIdImpl()
Name AST node.Name AST node.protected JLDel delAmbAssignImpl()
AmbAssign AST node.AmbAssign AST node.protected JLDel delAmbExprImpl()
AmbExpr AST node.AmbExpr AST node.protected JLDel delAmbPrefixImpl()
AmbPrefix AST node.AmbPrefix AST node.protected JLDel delAmbQualifierNodeImpl()
AmbQualifierNode AST node.AmbQualifierNode AST node.protected JLDel delAmbReceiverImpl()
AmbReceiver AST node.AmbReceiver AST node.protected JLDel delAmbTypeNodeImpl()
AmbTypeNode AST node.AmbTypeNode AST node.protected JLDel delArrayAccessImpl()
ArrayAccess AST node.ArrayAccess AST node.protected JLDel delArrayInitImpl()
ArrayInit AST node.ArrayInit AST node.protected JLDel delArrayTypeNodeImpl()
ArrayTypeNode AST node.ArrayTypeNode AST node.protected JLDel delAssertImpl()
Assert AST node.Assert AST node.protected JLDel delAssignImpl()
Assign AST node.Assign AST node.protected JLDel delLocalAssignImpl()
LocalAssign AST node.LocalAssign AST node.protected JLDel delFieldAssignImpl()
FieldAssign AST node.FieldAssign AST node.protected JLDel delArrayAccessAssignImpl()
ArrayAccessAssign AST node.ArrayAccessAssign AST node.protected JLDel delBinaryImpl()
protected JLDel delBlockImpl()
Block AST node.Block AST node.protected JLDel delBooleanLitImpl()
BooleanLit AST node.BooleanLit AST node.protected JLDel delBranchImpl()
Branch AST node.Branch AST node.protected JLDel delCallImpl()
Call AST node.Call AST node.protected JLDel delCanonicalTypeNodeImpl()
CanonicalTypeNode AST node.CanonicalTypeNode AST node.protected JLDel delCaseImpl()
Case AST node.Case AST node.protected JLDel delCastImpl()
Cast AST node.Cast AST node.protected JLDel delCatchImpl()
Catch AST node.Catch AST node.protected JLDel delCharLitImpl()
CharLit AST node.CharLit AST node.protected JLDel delClassBodyImpl()
ClassBody AST node.ClassBody AST node.protected JLDel delClassDeclImpl()
ClassDecl AST node.ClassDecl AST node.protected JLDel delClassLitImpl()
ClassLit AST node.ClassLit AST node.protected JLDel delClassMemberImpl()
ClassMember AST node.ClassMember AST node.protected JLDel delCodeDeclImpl()
CodeDecl AST node.CodeDecl AST node.protected JLDel delCompoundStmtImpl()
CompoundStmt AST node.CompoundStmt AST node.protected JLDel delConditionalImpl()
Conditional AST node.Conditional AST node.protected JLDel delConstructorCallImpl()
ConstructorCall AST node.ConstructorCall AST node.protected JLDel delConstructorDeclImpl()
ConstructorDecl AST node.ConstructorDecl AST node.protected JLDel delDoImpl()
Do AST node.Do AST node.protected JLDel delEmptyImpl()
Empty AST node.Empty AST node.protected JLDel delEvalImpl()
Eval AST node.Eval AST node.protected JLDel delExprImpl()
Expr AST node.Expr AST node.protected JLDel delFieldImpl()
Field AST node.Field AST node.protected JLDel delFieldDeclImpl()
FieldDecl AST node.FieldDecl AST node.protected JLDel delFloatLitImpl()
FloatLit AST node.FloatLit AST node.protected JLDel delForImpl()
For AST node.For AST node.protected JLDel delFormalImpl()
Formal AST node.Formal AST node.protected JLDel delIfImpl()
If AST node.If AST node.protected JLDel delImportImpl()
Import AST node.Import AST node.protected JLDel delInitializerImpl()
Initializer AST node.Initializer AST node.protected JLDel delInstanceofImpl()
Instanceof AST node.Instanceof AST node.protected JLDel delIntLitImpl()
IntLit AST node.IntLit AST node.protected JLDel delLabeledImpl()
Labeled AST node.Labeled AST node.protected JLDel delLitImpl()
Lit AST node.Lit AST node.protected JLDel delLocalImpl()
Local AST node.Local AST node.protected JLDel delLocalClassDeclImpl()
LocalClassDecl AST node.LocalClassDecl AST node.protected JLDel delLocalDeclImpl()
LocalDecl AST node.LocalDecl AST node.protected JLDel delLoopImpl()
Loop AST node.Loop AST node.protected JLDel delMethodDeclImpl()
MethodDecl AST node.MethodDecl AST node.protected JLDel delNewArrayImpl()
NewArray AST node.NewArray AST node.protected JLDel delNodeImpl()
Node AST node.Node AST node.protected JLDel delNodeListImpl()
NodeList AST node.NodeList AST node.protected JLDel delNewImpl()
New AST node.New AST node.protected JLDel delNullLitImpl()
NullLit AST node.NullLit AST node.protected JLDel delNumLitImpl()
NumLit AST node.NumLit AST node.protected JLDel delPackageNodeImpl()
PackageNode AST node.PackageNode AST node.protected JLDel delProcedureDeclImpl()
ProcedureDecl AST node.ProcedureDecl AST node.protected JLDel delReturnImpl()
Return AST node.Return AST node.protected JLDel delSourceCollectionImpl()
SourceCollection AST node.SourceCollection AST node.protected JLDel delSourceFileImpl()
SourceFile AST node.SourceFile AST node.protected JLDel delSpecialImpl()
Special AST node.Special AST node.protected JLDel delStmtImpl()
Stmt AST node.Stmt AST node.protected JLDel delStringLitImpl()
StringLit AST node.StringLit AST node.protected JLDel delSwitchBlockImpl()
SwitchBlock AST node.SwitchBlock AST node.protected JLDel delSwitchElementImpl()
SwitchElement AST node.SwitchElement AST node.protected JLDel delSwitchImpl()
Switch AST node.Switch AST node.protected JLDel delSynchronizedImpl()
Synchronized AST node.Synchronized AST node.protected JLDel delTermImpl()
Term AST node.Term AST node.protected JLDel delThrowImpl()
Throw AST node.Throw AST node.protected JLDel delTryImpl()
Try AST node.Try AST node.protected JLDel delTypeNodeImpl()
TypeNode AST node.TypeNode AST node.protected JLDel delUnaryImpl()
Unary AST node.Unary AST node.protected JLDel delWhileImpl()
While AST node.While AST node.