filenet.vw.toolkit.runtime.step
Interface IVWStepProcessorComponent
-
- All Known Implementing Classes:
- VWAttachmentPanel, VWFieldPanel, VWMilestonePanel, VWTabbedPane, VWWflGroupPanel
public interface IVWStepProcessorComponentThis class defines an interface for Step Processing operations. This class must be implemented in any class that will act as a component bean for Step Processor-related operations.This interface provides two methods to the implementing classes: doSave() and init().
Notes:
- All of the current Step Processor-related containers implement this interface.
- A VWSession object must exist before the control can be initialized.
- Since:
- IWWS1.00
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description booleandoSave()Completes the workflow step when the step is saved.voidinit(filenet.vw.api.VWStepElement stepElement, java.awt.Frame parentFrame, filenet.vw.api.VWSession session)Initializes this control.
-
-
-
Method Detail
-
doSave
boolean doSave()
Completes the workflow step when the step is saved.- Returns:
- A boolean value; the method returns TRUE if the updates were saved successfully; otherwise, the method returns FALSE.
- Since:
- IWWS1.00
-
init
void init(filenet.vw.api.VWStepElement stepElement, java.awt.Frame parentFrame, filenet.vw.api.VWSession session)Initializes this control.- Parameters:
stepElement- A valid VWStepElement object.parentFrame- A Frame object.session- A valid VWSession object. A VWSession object must exist before the control can be initialized.- Since:
- IWWS1.00
- See Also:
Frame,VWSession,VWStepElement
-
-