2026-03-17 13:31:18 -07:00

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;
}