link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -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);
}