| java.lang.Object org.directwebremoting.proxy.io.Context jsx3.lang.Object jsx3.app.Model jsx3.gui.Painted jsx3.gui.Block jsx3.chart.ChartComponent jsx3.chart.Axis
All known Subclasses: jsx3.chart.LinearAxis, jsx3.chart.LogarithmicAxis, jsx3.chart.CategoryAxis,
Axis | public class Axis extends jsx3.chart.ChartComponent (Code) | | A base class for all types of axis. Provides all the common properties as well as all rendering
logic. Rendering relies on template methods implemented in concrete subclasses.
An axis renders in the following location based on its horizontal and primary properties:
horizontal x primary -> bottom
vertical x primary -> left
horizontal x secondary -> top
vertical x secondary -> right
author: Joe Walker [joe at getahead dot org] author: DRAPGEN - Dwr Reverse Ajax Proxy GENerator |
Method Summary | |
public void | getAxisStroke(org.directwebremoting.proxy.Callback<String> callback) Returns the axisStroke field, string representation of the VectorStroke used to draw the line of the axis. | public jsx3.chart.ChartLabel | getAxisTitle() Returns the optional jsx3.chart.ChartLabel child. | public void | getDisplayWidth(org.directwebremoting.proxy.Callback<Integer> callback) Returns the display width, the maximum amount of space perpendicular to the axis and outside of the data area that the ticks and labels may occupy (doesn't include area given to axis title). | public void | getHorizontal(org.directwebremoting.proxy.Callback<Boolean> callback) Returns the horizontal field, whether this is an x axis, otherwise it is a y axis. | public void | getLabelClass(org.directwebremoting.proxy.Callback<String> callback) Returns the labelClass field, the CSS class used to render major tick labels. | public void | getLabelColor(org.directwebremoting.proxy.Callback<String> callback) Returns the labelColor field, the RGB color value of the label font; note that this is the only way to set the color of the text, using a CSS style attribute will have no effect. | public void | getLabelFunction(org.directwebremoting.proxy.Callback<org.directwebremoting.proxy.CodeBlock> callback) Returns the labelFunction field. | public void | getLabelGap(org.directwebremoting.proxy.Callback<Integer> callback) Returns the labelGap field, the pixel gap between the tick lines and the labels. | public void | getLabelStyle(org.directwebremoting.proxy.Callback<String> callback) Returns the labelStyle field, the CSS style attribute used to render major tick labels. | public void | getMinorTickDivisions(org.directwebremoting.proxy.Callback<Integer> callback) Returns the minorTickDivisions field, number of minor tick divisions between major ticks; the number of minor ticks drawn will be this number minus 1. | public void | getMinorTickLength(org.directwebremoting.proxy.Callback<Integer> callback) Returns the minorTickLength field, the length in pixels of the minor tick (if tickPlacement is "cross" the length will actually be twice this. | public void | getMinorTickPlacement(org.directwebremoting.proxy.Callback<String> callback) Returns the minorTickPlacement field, where to place the minor ticks. | public void | getMinorTickStroke(org.directwebremoting.proxy.Callback<String> callback) Returns the minorTickStroke field, string representation of VectorStroke used to draw minor ticks. | public jsx3.chart.Axis | getOpposingAxis() Returns the opposing axis. | public T | getOpposingAxis(Class<T> returnType) Returns the opposing axis. | public void | getShowAxis(org.directwebremoting.proxy.Callback<Boolean> callback) Returns the showAxis field, whether to show the line along the axis. | public void | getShowLabels(org.directwebremoting.proxy.Callback<Boolean> callback) Returns the showLabels field, whether to show major tick labels. | public void | getTickLength(org.directwebremoting.proxy.Callback<Integer> callback) Returns the tickLength field, the length in pixels of the major tick (if tickPlacement is "cross" the length will actually be twice this. | public void | getTickPlacement(org.directwebremoting.proxy.Callback<String> callback) Returns the tickPlacement field, where to place the major ticks. | public void | getTickStroke(org.directwebremoting.proxy.Callback<String> callback) Returns the tickStroke field, string representation of VectorStroke used to draw major ticks. | public void | percent(Integer v, org.directwebremoting.proxy.Callback<String> callback) | public void | scientific(Integer v, int signif, org.directwebremoting.proxy.Callback<String> callback) | public void | setAxisStroke(String axisStroke) Sets the axisStroke field. | public void | setDisplayWidth(int displayWidth) Sets the displayWidth field. | public void | setHorizontal(boolean horizontal) Sets the horizontal field. | public void | setLabelClass(String labelClass) Sets the labelClass field. | public void | setLabelColor(Integer labelColor) Sets the labelColor field. | public void | setLabelColor(String labelColor) Sets the labelColor field. | public void | setLabelFunction(String labelFunction) Sets the labelFunction field, allows for formatting and transformation of a major tick label; should eval to a function with the signature function(object) : string. | public void | setLabelGap(int labelGap) Sets the labelGap field. | public void | setLabelPlacement(String labelPlacement) Sets the labelPlacement field, checks for invalid values. | public void | setLabelStyle(String labelStyle) Sets the labelStyle field. | public void | setMinorTickDivisions(int minorTickDivisions) Sets the minorTickDivisions field. | public void | setMinorTickLength(int minorTickLength) Sets the minorTickLength field. | public void | setMinorTickPlacement(String minorTickPlacement) Sets the minorTickPlacement field. | public void | setMinorTickStroke(String minorTickStroke) Sets the minorTickStroke field. | public void | setShowAxis(boolean showAxis) Sets the showAxis field. | public void | setShowLabels(boolean showLabels) Sets the showLabels field. | public void | setTickLength(int tickLength) Sets the tickLength field. | public void | setTickPlacement(String tickPlacement) Sets the tickPlacement field. | public void | setTickStroke(String tickStroke) Sets the tickStroke field. |
Axis | public Axis(Context context, String extension, ScriptProxy scriptProxy)(Code) | | All reverse ajax proxies need context to work from
Parameters: scriptProxy - The place we are writing scripts to Parameters: context - The script that got us to where we are now |
Axis | public Axis(String name, boolean horizontal, boolean primary)(Code) | | The instance initializer.
Parameters: name - the GI name of the instance Parameters: horizontal - whether this axis is horizontal (x), otherwise it's vertical (y) Parameters: primary - whether this axis is primary, otherwise it's secondary |
getAxisStroke | public void getAxisStroke(org.directwebremoting.proxy.Callback<String> callback)(Code) | | Returns the axisStroke field, string representation of the VectorStroke used to draw the line of the axis.
Parameters: callback - axisStroke |
getDisplayWidth | public void getDisplayWidth(org.directwebremoting.proxy.Callback<Integer> callback)(Code) | | Returns the display width, the maximum amount of space perpendicular to the axis and outside of the data area that the ticks and labels may occupy (doesn't include area given to axis title).
Parameters: callback - displayWidth |
getLabelColor | public void getLabelColor(org.directwebremoting.proxy.Callback<String> callback)(Code) | | Returns the labelColor field, the RGB color value of the label font; note that this is the only way to set the color of the text, using a CSS style attribute will have no effect.
Parameters: callback - labelColor |
getMinorTickDivisions | public void getMinorTickDivisions(org.directwebremoting.proxy.Callback<Integer> callback)(Code) | | Returns the minorTickDivisions field, number of minor tick divisions between major ticks; the number of minor ticks drawn will be this number minus 1.
Parameters: callback - minorTickDivisions |
getMinorTickLength | public void getMinorTickLength(org.directwebremoting.proxy.Callback<Integer> callback)(Code) | | Returns the minorTickLength field, the length in pixels of the minor tick (if tickPlacement is "cross" the length will actually be twice this.
Parameters: callback - minorTickLength |
getMinorTickPlacement | public void getMinorTickPlacement(org.directwebremoting.proxy.Callback<String> callback)(Code) | | Returns the minorTickPlacement field, where to place the minor ticks.
Parameters: callback - minorTickPlacement, one of {'none','inside','outside','cross'} |
getMinorTickStroke | public void getMinorTickStroke(org.directwebremoting.proxy.Callback<String> callback)(Code) | | Returns the minorTickStroke field, string representation of VectorStroke used to draw minor ticks.
Parameters: callback - minorTickStroke |
getOpposingAxis | public T getOpposingAxis(Class<T> returnType)(Code) | | Returns the opposing axis.
Parameters: returnType - The expected return type |
getTickLength | public void getTickLength(org.directwebremoting.proxy.Callback<Integer> callback)(Code) | | Returns the tickLength field, the length in pixels of the major tick (if tickPlacement is "cross" the length will actually be twice this.
Parameters: callback - tickLength |
getTickPlacement | public void getTickPlacement(org.directwebremoting.proxy.Callback<String> callback)(Code) | | Returns the tickPlacement field, where to place the major ticks.
Parameters: callback - tickPlacement, one of {'none','inside','outside','cross'} |
setAxisStroke | public void setAxisStroke(String axisStroke)(Code) | | Sets the axisStroke field.
Parameters: axisStroke - the new value for axisStroke |
setDisplayWidth | public void setDisplayWidth(int displayWidth)(Code) | | Sets the displayWidth field.
Parameters: displayWidth - the new value for displayWidth |
setHorizontal | public void setHorizontal(boolean horizontal)(Code) | | Sets the horizontal field.
Parameters: horizontal - the new value for horizontal |
setLabelClass | public void setLabelClass(String labelClass)(Code) | | Sets the labelClass field.
Parameters: labelClass - the new value for labelClass |
setLabelColor | public void setLabelColor(Integer labelColor)(Code) | | Sets the labelColor field.
Parameters: labelColor - the new value for labelColor |
setLabelColor | public void setLabelColor(String labelColor)(Code) | | Sets the labelColor field.
Parameters: labelColor - the new value for labelColor |
setLabelFunction | public void setLabelFunction(String labelFunction)(Code) | | Sets the labelFunction field, allows for formatting and transformation of a major tick label; should eval to a function with the signature function(object) : string.
Parameters: labelFunction - the new value for labelFunction |
setLabelGap | public void setLabelGap(int labelGap)(Code) | | Sets the labelGap field.
Parameters: labelGap - the new value for labelGap |
setLabelPlacement | public void setLabelPlacement(String labelPlacement)(Code) | | Sets the labelPlacement field, checks for invalid values.
Parameters: labelPlacement - the new value for labelPlacement, one of {'axis','high','low'} |
setLabelStyle | public void setLabelStyle(String labelStyle)(Code) | | Sets the labelStyle field.
Parameters: labelStyle - the new value for labelStyle |
setMinorTickDivisions | public void setMinorTickDivisions(int minorTickDivisions)(Code) | | Sets the minorTickDivisions field.
Parameters: minorTickDivisions - the new value for minorTickDivisions |
setMinorTickLength | public void setMinorTickLength(int minorTickLength)(Code) | | Sets the minorTickLength field.
Parameters: minorTickLength - the new value for minorTickLength |
setMinorTickPlacement | public void setMinorTickPlacement(String minorTickPlacement)(Code) | | Sets the minorTickPlacement field.
Parameters: minorTickPlacement - the new value for minorTickPlacement, one of {'none','inside','outside','cross'} |
setMinorTickStroke | public void setMinorTickStroke(String minorTickStroke)(Code) | | Sets the minorTickStroke field.
Parameters: minorTickStroke - the new value for minorTickStroke |
setShowAxis | public void setShowAxis(boolean showAxis)(Code) | | Sets the showAxis field.
Parameters: showAxis - the new value for showAxis |
setShowLabels | public void setShowLabels(boolean showLabels)(Code) | | Sets the showLabels field.
Parameters: showLabels - the new value for showLabels |
setTickLength | public void setTickLength(int tickLength)(Code) | | Sets the tickLength field.
Parameters: tickLength - the new value for tickLength |
setTickPlacement | public void setTickPlacement(String tickPlacement)(Code) | | Sets the tickPlacement field.
Parameters: tickPlacement - the new value for tickPlacement, one of {'none','inside','outside','cross'} |
setTickStroke | public void setTickStroke(String tickStroke)(Code) | | Sets the tickStroke field.
Parameters: tickStroke - the new value for tickStroke |
Methods inherited from jsx3.gui.Block | public jsx3.lang.Object doEvent(String strType, jsx3.lang.Object objContext)(Code)(Java Doc) public T doEvent(String strType, jsx3.lang.Object objContext, Class<T> returnType)(Code)(Java Doc) public void getBackground(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getBackgroundColor(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getBorder(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getCSSOverride(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getCanDrag(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getCanDrop(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getCanMove(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getCanSpy(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getClassName(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getColor(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getCursor(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getDimensions(org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc) public void getDisplay(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getEvent(String strType, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.lang.Object getEvents()(Code)(Java Doc) public T getEvents(Class<T> returnType)(Code)(Java Doc) public void getFontName(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getFontSize(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getFontWeight(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getHeight(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getIndex(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getLeft(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getMargin(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getMenu(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getOverflow(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getPadding(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getRelativePosition(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getTagName(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getText(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getTextAlign(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getTip(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getTop(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getVisibility(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getWidth(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getZIndex(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void hasEvent(String strType, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void hideMask()(Code)(Java Doc) public jsx3.gui.HotKey registerHotKey(String vntCallback, String vntKey, boolean bShift, boolean bControl, boolean bAlt)(Code)(Java Doc) public jsx3.gui.HotKey registerHotKey(org.directwebremoting.proxy.CodeBlock vntCallback, String vntKey, boolean bShift, boolean bControl, boolean bAlt)(Code)(Java Doc) public jsx3.gui.HotKey registerHotKey(String vntCallback, int vntKey, boolean bShift, boolean bControl, boolean bAlt)(Code)(Java Doc) public jsx3.gui.HotKey registerHotKey(org.directwebremoting.proxy.CodeBlock vntCallback, int vntKey, boolean bShift, boolean bControl, boolean bAlt)(Code)(Java Doc) public jsx3.gui.HotKey registerHotKey(jsx3.gui.HotKey vntCallback, String vntKey, boolean bShift, boolean bControl, boolean bAlt)(Code)(Java Doc) public jsx3.gui.HotKey registerHotKey(jsx3.gui.HotKey vntCallback, int vntKey, boolean bShift, boolean bControl, boolean bAlt)(Code)(Java Doc) public jsx3.gui.Interactive removeEvent(String strType)(Code)(Java Doc) public T removeEvent(String strType, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Interactive removeEvents()(Code)(Java Doc) public T removeEvents(Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Block setBackground(String strBG)(Code)(Java Doc) public jsx3.gui.Block setBackgroundColor(String strColor, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setBorder(String strCSS, boolean bRecalc)(Code)(Java Doc) public jsx3.gui.Block setCSSOverride(String strCSS)(Code)(Java Doc) public jsx3.gui.Interactive setCanDrag(int bDrag)(Code)(Java Doc) public T setCanDrag(int bDrag, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Interactive setCanDrop(int bDrop)(Code)(Java Doc) public T setCanDrop(int bDrop, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Interactive setCanMove(int bMovable)(Code)(Java Doc) public T setCanMove(int bMovable, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Interactive setCanSpy(int bSpy)(Code)(Java Doc) public T setCanSpy(int bSpy, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Block setClassName(String strClassName)(Code)(Java Doc) public jsx3.gui.Block setColor(String strColor, boolean bRepaint)(Code)(Java Doc) public void setCursor(String strCursor, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, int top, int width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, int top, int width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, int top, String width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, int top, String width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, int top, String width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, String top, int width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, String top, String width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, String top, int width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, int top, String width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, int top, int width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, String top, String width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, String top, String width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, int top, String width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, int top, int width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, String top, int width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, String top, String width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, String top, int width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(Object[] left, int top, int width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, String top, int width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, String top, int width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, String top, String width, int height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, int top, int width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(String left, int top, String width, String height, boolean bRepaint)(Code)(Java Doc) public void setDimensions(int left, String top, String width, String height, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setDisplay(String intDisplay, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Interactive setEvent(String strScript, String strType)(Code)(Java Doc) public T setEvent(String strScript, String strType, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Block setFontName(String strFontName)(Code)(Java Doc) public jsx3.gui.Block setFontSize(int intPixelSize)(Code)(Java Doc) public jsx3.gui.Block setFontWeight(String FONTWEIGHT)(Code)(Java Doc) public jsx3.gui.Block setHeight(String vntHeight, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setHeight(int vntHeight, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setIndex(int intIndex, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setLeft(int vntLeft, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setLeft(String vntLeft, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setMargin(String strCSS, boolean bRecalc)(Code)(Java Doc) public jsx3.gui.Interactive setMenu(String strMenu)(Code)(Java Doc) public T setMenu(String strMenu, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Block setOverflow(int OVERFLOW)(Code)(Java Doc) public jsx3.gui.Block setPadding(String strCSS, boolean bRecalc)(Code)(Java Doc) public jsx3.gui.Block setRelativePosition(int intRelative, boolean bRepaint)(Code)(Java Doc) public void setSpyStyles(String strCSS)(Code)(Java Doc) public jsx3.gui.Block setTagName(String strTagName)(Code)(Java Doc) public jsx3.gui.Block setText(String strText, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setTextAlign(String ALIGN)(Code)(Java Doc) public jsx3.gui.Block setTip(String strTip)(Code)(Java Doc) public jsx3.gui.Block setTop(String vntTop, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setTop(int vntTop, boolean bRepaint)(Code)(Java Doc) public void setVisibility(String VISIBILITY, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setWidth(String vntWidth, boolean bRepaint)(Code)(Java Doc) public jsx3.gui.Block setWidth(int vntWidth, boolean bRepaint)(Code)(Java Doc) public void setZIndex(int intZIndex, boolean bRepaint)(Code)(Java Doc) public void showMask(String strMessage)(Code)(Java Doc) public void showSpy(String strHTML, int intLeft, int intTop)(Code)(Java Doc) public void showSpy(String strHTML, jsx3.gui.Event intLeft, int intTop)(Code)(Java Doc)
|
Methods inherited from jsx3.gui.Painted | public void focus(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.lang.Object getAbsolutePosition(String objRoot, String objGUI)(Code)(Java Doc) public T getAbsolutePosition(String objRoot, String objGUI, Class<T> returnType)(Code)(Java Doc) public void getAttribute(String strName, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.lang.Object getAttributes()(Code)(Java Doc) public T getAttributes(Class<T> returnType)(Code)(Java Doc) public void getDynamicProperty(String strName, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getRendered(jsx3.gui.Event objGUI, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getRendered(jsx3.lang.Object objGUI, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void onAfterPaint(String objGUI)(Code)(Java Doc) public void paint(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void paintChild(jsx3.gui.Painted objChild, boolean bGroup, String objGUI, boolean bCascadeOnly)(Code)(Java Doc) public void paintChildren(Object[] c, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void recalcBox(Object[] properties)(Code)(Java Doc) public jsx3.gui.Painted removeAttribute(String strName)(Code)(Java Doc) public T removeAttribute(String strName, Class<T> returnType)(Code)(Java Doc) public jsx3.gui.Painted removeAttributes()(Code)(Java Doc) public T removeAttributes(Class<T> returnType)(Code)(Java Doc) public void repaint(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.gui.Painted setAttribute(String strName, String strValue)(Code)(Java Doc) public jsx3.gui.Painted setDynamicProperty(String strName, String strValue)(Code)(Java Doc)
|
Methods inherited from jsx3.app.Model | public void adoptChild(jsx3.app.Model objChild, boolean bRepaint, boolean bForce)(Code)(Java Doc) public jsx3.app.Model doClone(int intPersist, int intMode)(Code)(Java Doc) public T doClone(int intPersist, int intMode, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model findAncestor(org.directwebremoting.proxy.CodeBlock fctTest, boolean bIncludeSelf)(Code)(Java Doc) public T findAncestor(org.directwebremoting.proxy.CodeBlock fctTest, boolean bIncludeSelf, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model findDescendants(org.directwebremoting.proxy.CodeBlock fctTest, boolean bDepthFirst, boolean bMultiple, boolean bShallow, boolean bIncludeSelf)(Code)(Java Doc) public T findDescendants(org.directwebremoting.proxy.CodeBlock fctTest, boolean bDepthFirst, boolean bMultiple, boolean bShallow, boolean bIncludeSelf, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getAncestorOfName(String strName)(Code)(Java Doc) public T getAncestorOfName(String strName, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getAncestorOfType(String strType)(Code)(Java Doc) public T getAncestorOfType(String strType, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getAncestorOfType(Class strType)(Code)(Java Doc) public T getAncestorOfType(Class strType, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getAncestorOfType(org.directwebremoting.proxy.CodeBlock strType)(Code)(Java Doc) public T getAncestorOfType(org.directwebremoting.proxy.CodeBlock strType, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getChild(int vntIndexOrName)(Code)(Java Doc) public T getChild(int vntIndexOrName, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getChild(String vntIndexOrName)(Code)(Java Doc) public T getChild(String vntIndexOrName, Class<T> returnType)(Code)(Java Doc) public void getChildIndex(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getChildren(org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc) public jsx3.app.Model getDescendantOfName(String strName, boolean bDepthFirst, boolean bChildOnly)(Code)(Java Doc) public T getDescendantOfName(String strName, boolean bDepthFirst, boolean bChildOnly, Class<T> returnType)(Code)(Java Doc) public void getDescendantsOfType(org.directwebremoting.proxy.CodeBlock strType, boolean bShallow, org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc) public void getDescendantsOfType(String strType, boolean bShallow, org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc) public void getDescendantsOfType(Class strType, boolean bShallow, org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc) public jsx3.app.Model getFirstChild()(Code)(Java Doc) public T getFirstChild(Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getFirstChildOfType(org.directwebremoting.proxy.CodeBlock strType, boolean bExact)(Code)(Java Doc) public T getFirstChildOfType(org.directwebremoting.proxy.CodeBlock strType, boolean bExact, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getFirstChildOfType(Class strType, boolean bExact)(Code)(Java Doc) public T getFirstChildOfType(Class strType, boolean bExact, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getFirstChildOfType(String strType, boolean bExact)(Code)(Java Doc) public T getFirstChildOfType(String strType, boolean bExact, Class<T> returnType)(Code)(Java Doc) public void getHelpId(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getId(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.app.Model getLastChild()(Code)(Java Doc) public T getLastChild(Class<T> returnType)(Code)(Java Doc) public void getLoadType(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public void getMetaValue(String strKey, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getNS(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public void getName(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.app.Model getNextSibling()(Code)(Java Doc) public T getNextSibling(Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model getParent()(Code)(Java Doc) public T getParent(Class<T> returnType)(Code)(Java Doc) public void getPersistence(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public jsx3.app.Model getPreviousSibling()(Code)(Java Doc) public T getPreviousSibling(Class<T> returnType)(Code)(Java Doc) public jsx3.app.Server getServer()(Code)(Java Doc) public jsx3.net.URIResolver getUriResolver()(Code)(Java Doc) public T getUriResolver(Class<T> returnType)(Code)(Java Doc) public void insertBefore(jsx3.app.Model objMoveChild, jsx3.app.Model objPrecedeChild, boolean bRepaint, org.directwebremoting.proxy.Callback<Boolean> callback)(Code)(Java Doc) public jsx3.app.Model load(java.net.URI strURL, boolean bRepaint, jsx3.net.URIResolver objResolver)(Code)(Java Doc) public T load(java.net.URI strURL, boolean bRepaint, jsx3.net.URIResolver objResolver, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model load(String strURL, boolean bRepaint, jsx3.net.URIResolver objResolver)(Code)(Java Doc) public T load(String strURL, boolean bRepaint, jsx3.net.URIResolver objResolver, Class<T> returnType)(Code)(Java Doc) public void loadAndCache(java.net.URI strURL, boolean bRepaint, jsx3.app.Cache objCache, jsx3.net.URIResolver objResolver)(Code)(Java Doc) public void loadAndCache(String strURL, boolean bRepaint, jsx3.app.Cache objCache, jsx3.net.URIResolver objResolver)(Code)(Java Doc) public jsx3.app.Model loadXML(jsx3.xml.CdfDocument strXML, boolean bRepaint, jsx3.net.URIResolver objResolver)(Code)(Java Doc) public T loadXML(jsx3.xml.CdfDocument strXML, boolean bRepaint, jsx3.net.URIResolver objResolver, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model loadXML(String strXML, boolean bRepaint, jsx3.net.URIResolver objResolver)(Code)(Java Doc) public T loadXML(String strXML, boolean bRepaint, jsx3.net.URIResolver objResolver, Class<T> returnType)(Code)(Java Doc) public void onAfterAssemble(jsx3.app.Model objParent, jsx3.app.Server objServer)(Code)(Java Doc) public void onAfterAttach()(Code)(Java Doc) public void onBeforeAssemble(jsx3.app.Model objParent, jsx3.app.Server objServer)(Code)(Java Doc) public void onChangeServer(jsx3.app.Server objNewServer, jsx3.app.Server objOldServer)(Code)(Java Doc) public void onDestroy(jsx3.app.Model objParent)(Code)(Java Doc) public void onRemoveChild(Object[] objChild, int intIndex)(Code)(Java Doc) public void onRemoveChild(jsx3.app.Model objChild, int intIndex)(Code)(Java Doc) public void onSetChild(java.lang.Object objChild, org.directwebremoting.proxy.Callback<Boolean> callback)(Code)(Java Doc) public void onSetParent(java.lang.Object objParent, org.directwebremoting.proxy.Callback<Boolean> callback)(Code)(Java Doc) public void publish(jsx3.lang.Object objEvent, org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc) public jsx3.app.Model removeChild(jsx3.app.Model vntItem)(Code)(Java Doc) public T removeChild(jsx3.app.Model vntItem, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model removeChild(int vntItem)(Code)(Java Doc) public T removeChild(int vntItem, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model removeChildren(Object[] arrChildren)(Code)(Java Doc) public T removeChildren(Object[] arrChildren, Class<T> returnType)(Code)(Java Doc) public jsx3.app.Model setChild(jsx3.app.Model objChild, int intPersist, java.net.URI strSourceURL, String strNS)(Code)(Java Doc) public jsx3.app.Model setChild(jsx3.app.Model objChild, int intPersist, String strSourceURL, String strNS)(Code)(Java Doc) public void setHelpId(String strId)(Code)(Java Doc) public void setLoadType(int intLoadType)(Code)(Java Doc) public void setMetaValue(String strKey, String strValue)(Code)(Java Doc) public void setName(String strName)(Code)(Java Doc) public jsx3.app.Model setPersistence(int intPersist)(Code)(Java Doc) public void subscribe(Object[] strEventId, jsx3.lang.Object objHandler, org.directwebremoting.proxy.CodeBlock objFunction)(Code)(Java Doc) public void subscribe(Object[] strEventId, org.directwebremoting.proxy.CodeBlock objHandler, org.directwebremoting.proxy.CodeBlock objFunction)(Code)(Java Doc) public void subscribe(String strEventId, org.directwebremoting.proxy.CodeBlock objHandler, org.directwebremoting.proxy.CodeBlock objFunction)(Code)(Java Doc) public void subscribe(String strEventId, String objHandler, String objFunction)(Code)(Java Doc) public void subscribe(String strEventId, jsx3.lang.Object objHandler, String objFunction)(Code)(Java Doc) public void subscribe(Object[] strEventId, org.directwebremoting.proxy.CodeBlock objHandler, String objFunction)(Code)(Java Doc) public void subscribe(String strEventId, String objHandler, org.directwebremoting.proxy.CodeBlock objFunction)(Code)(Java Doc) public void subscribe(Object[] strEventId, jsx3.lang.Object objHandler, String objFunction)(Code)(Java Doc) public void subscribe(String strEventId, jsx3.lang.Object objHandler, org.directwebremoting.proxy.CodeBlock objFunction)(Code)(Java Doc) public void subscribe(Object[] strEventId, String objHandler, String objFunction)(Code)(Java Doc) public void subscribe(Object[] strEventId, String objHandler, org.directwebremoting.proxy.CodeBlock objFunction)(Code)(Java Doc) public void subscribe(String strEventId, org.directwebremoting.proxy.CodeBlock objHandler, String objFunction)(Code)(Java Doc) public void toXML(jsx3.lang.Object objProperties, org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc) public jsx3.xml.CdfDocument toXMLDoc(jsx3.lang.Object objProperties)(Code)(Java Doc) public T toXMLDoc(jsx3.lang.Object objProperties, Class<T> returnType)(Code)(Java Doc) public void unsubscribe(Object[] strEventId, org.directwebremoting.proxy.CodeBlock objHandler)(Code)(Java Doc) public void unsubscribe(Object[] strEventId, String objHandler)(Code)(Java Doc) public void unsubscribe(String strEventId, String objHandler)(Code)(Java Doc) public void unsubscribe(String strEventId, jsx3.lang.Object objHandler)(Code)(Java Doc) public void unsubscribe(Object[] strEventId, jsx3.lang.Object objHandler)(Code)(Java Doc) public void unsubscribe(String strEventId, org.directwebremoting.proxy.CodeBlock objHandler)(Code)(Java Doc) public void unsubscribeAll(String strEventId)(Code)(Java Doc)
|
Methods inherited from jsx3.lang.Object | public void ignoreReturn()(Code)(Java Doc)
|
|
|