20 lines
410 B
Java
20 lines
410 B
Java
package com.honeywell.layout.container;
|
|
|
|
import com.honeywell.field.BReportBar;
|
|
|
|
public interface IConfigurationStepContainer {
|
|
void finalUnload() throws StepContainerException;
|
|
|
|
BStep[] getSteps();
|
|
|
|
void load(int i) throws StepContainerException;
|
|
|
|
void reset(boolean z);
|
|
|
|
void save();
|
|
|
|
void setReportBar(BReportBar bReportBar);
|
|
|
|
void unload(int i) throws StepContainerException;
|
|
}
|