@Documented
@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface KFStep
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
category
The top-level folder in the JTree that this step should appear in
|
java.lang.String |
iconPath
Path (as a resource on the classpath) to the icon for this step
|
java.lang.String |
name
The name of this step
|
java.lang.String |
toolTipText
Mouse-over tool tip for this step (appears when the mouse hovers over the
entry in the JTree)
|
Modifier and Type | Optional Element and Description |
---|---|
boolean |
resourceIntensive
True if this processing step is resource intensive (cpu or memory).
|
public abstract java.lang.String name
public abstract java.lang.String category
public abstract java.lang.String toolTipText
public abstract java.lang.String iconPath
public abstract boolean resourceIntensive