Module org.autogui

Class GuiReprObjectPane

java.lang.Object
org.autogui.base.mapping.GuiReprValue
org.autogui.base.mapping.GuiReprObjectPane
All Implemented Interfaces:
GuiRepresentation
Direct Known Subclasses:
GuiReprObjectTabbedPane

public class GuiReprObjectPane extends GuiReprValue
an object representation composing member sub-representations
     @GuiIncluded
     public class C {
         @GuiIncluded public String prop;

         String v;
         @GuiIncluded public String getValue() { return v; };
         @GuiIncluded public void setValue(String v) { this.v = v; };

         @GuiIncluded public void action() {...};
         ...
     }