16 lines
336 B
Java
16 lines
336 B
Java
package com.honeywell.honeywellXL10NextGen.xl10Controller.ui;
|
|
|
|
public interface IConfigurationStepContainer {
|
|
void finalUnload() throws StepContainerException;
|
|
|
|
BStep[] getSteps();
|
|
|
|
void load(int i) throws StepContainerException;
|
|
|
|
void reset();
|
|
|
|
void save();
|
|
|
|
void unload(int i) throws StepContainerException;
|
|
}
|