link start!
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.tridium.ui.wizard.step;
|
||||
|
||||
public interface ICommitLog {
|
||||
void log(String str);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.tridium.ui.wizard.step;
|
||||
|
||||
import javax.baja.ui.BWidget;
|
||||
|
||||
public interface IWidgetWizardView extends IWizardView {
|
||||
BWidget getOwner();
|
||||
|
||||
BWidget getWizardContent();
|
||||
|
||||
BWidget getWizardHeader();
|
||||
|
||||
void setWizardContent(BWidget bWidget);
|
||||
|
||||
void setWizardHeader(BWidget bWidget);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.tridium.ui.wizard.step;
|
||||
|
||||
import javax.baja.sys.BComponent;
|
||||
import javax.baja.sys.Context;
|
||||
|
||||
public interface IWizardView {
|
||||
BComponent getBase();
|
||||
|
||||
Context getWizardContext();
|
||||
|
||||
void handleError(Throwable th);
|
||||
|
||||
void update(BWizardButtonMode bWizardButtonMode);
|
||||
}
|
||||
Reference in New Issue
Block a user