org.jclarion.clarion.swing.gui.RemoteWidget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarion-runtime Show documentation
Show all versions of clarion-runtime Show documentation
JClarion runtime environment
The newest version!
package org.jclarion.clarion.swing.gui;
import java.util.Map;
public interface RemoteWidget {
public Object command(int command,Object... params);
public int getID();
public void setID(int id);
public Iterable extends RemoteWidget> getChildWidgets();
public RemoteWidget getParentWidget();
public void addWidget(RemoteWidget child);
public boolean isModalCommand(int command);
public boolean isGuiCommand(int command); // if not true then local client doesn't need to deploy to AWT event thread
public Map getChangedMetaData();
public void setMetaData(Map data);
public void disposeWidget();
public int getWidgetType();
public CommandList getCommandList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy