Interface GeneratedByteCode
-
- All Known Implementing Classes:
BaseActivation
,ConstantActionActivation
,CursorActivation
public interface GeneratedByteCode
Generated classes must implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
e0()
java.lang.Object
e1()
java.lang.Object
e2()
java.lang.Object
e3()
java.lang.Object
e4()
java.lang.Object
e5()
java.lang.Object
e6()
java.lang.Object
e7()
java.lang.Object
e8()
java.lang.Object
e9()
GeneratedClass
getGC()
Get the GeneratedClass object for this object.GeneratedMethod
getMethod(java.lang.String methodName)
void
initFromContext(Context context)
Initialize the generated class from a context.void
postConstructor()
Called by the class manager just after calling setGC().void
setGC(GeneratedClass gc)
Set the Generated Class.
-
-
-
Method Detail
-
initFromContext
void initFromContext(Context context) throws StandardException
Initialize the generated class from a context. Called by the class manager just after creating the instance of the new class.- Throws:
StandardException
-
setGC
void setGC(GeneratedClass gc)
Set the Generated Class. Call by the class manager just after calling initFromContext.
-
postConstructor
void postConstructor() throws StandardException
Called by the class manager just after calling setGC().- Throws:
StandardException
-
getGC
GeneratedClass getGC()
Get the GeneratedClass object for this object.
-
getMethod
GeneratedMethod getMethod(java.lang.String methodName) throws StandardException
- Throws:
StandardException
-
e0
java.lang.Object e0() throws StandardException
- Throws:
StandardException
-
e1
java.lang.Object e1() throws StandardException
- Throws:
StandardException
-
e2
java.lang.Object e2() throws StandardException
- Throws:
StandardException
-
e3
java.lang.Object e3() throws StandardException
- Throws:
StandardException
-
e4
java.lang.Object e4() throws StandardException
- Throws:
StandardException
-
e5
java.lang.Object e5() throws StandardException
- Throws:
StandardException
-
e6
java.lang.Object e6() throws StandardException
- Throws:
StandardException
-
e7
java.lang.Object e7() throws StandardException
- Throws:
StandardException
-
e8
java.lang.Object e8() throws StandardException
- Throws:
StandardException
-
e9
java.lang.Object e9() throws StandardException
- Throws:
StandardException
-
-