Class ClassDelegate
- java.lang.Object
-
- org.camunda.bpm.engine.impl.delegate.ClassDelegate
-
- Direct Known Subclasses:
ClassDelegateCaseExecutionListener
,ClassDelegateCaseVariableListener
,ClassDelegateExecutionListener
,ClassDelegateTaskListener
public abstract class ClassDelegate extends Object
- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description protected String
className
protected List<FieldDeclaration>
fieldDeclarations
-
Constructor Summary
Constructors Constructor Description ClassDelegate(Class<?> clazz, List<FieldDeclaration> fieldDeclarations)
ClassDelegate(String className, List<FieldDeclaration> fieldDeclarations)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassName()
List<FieldDeclaration>
getFieldDeclarations()
-
-
-
Field Detail
-
className
protected String className
-
fieldDeclarations
protected List<FieldDeclaration> fieldDeclarations
-
-
Constructor Detail
-
ClassDelegate
public ClassDelegate(String className, List<FieldDeclaration> fieldDeclarations)
-
ClassDelegate
public ClassDelegate(Class<?> clazz, List<FieldDeclaration> fieldDeclarations)
-
-
Method Detail
-
getClassName
public String getClassName()
-
getFieldDeclarations
public List<FieldDeclaration> getFieldDeclarations()
-
-