Java Doc for BCChart.java in  » Ajax » dwr » jsx3 » chart » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » dwr » jsx3.chart 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.directwebremoting.proxy.io.Context
      jsx3.lang.Object
         jsx3.app.Model
            jsx3.gui.Painted
               jsx3.gui.Block
                  jsx3.vector.Block
                     jsx3.chart.Chart
                        jsx3.chart.CartesianChart
                           jsx3.chart.BCChart

All known Subclasses:   jsx3.chart.ColumnChart,  jsx3.chart.BarChart,
BCChart
public class BCChart extends jsx3.chart.CartesianChart (Code)
Superclass of bar and column chart. Contains all the common functionality, provides template methods to the subclasses so that they can render horizontal bars or vertical columns. Basically abstracts a bar/column chart into a chart with a parallel dimension and a normal dimension. The parallel dimension is the dimension in which the rows/columns extend.
author:
   Joe Walker [joe at getahead dot org]
author:
   DRAPGEN - Dwr Reverse Ajax Proxy GENerator


Field Summary
final public static  StringTYPE_CLUSTERED
    
final public static  StringTYPE_STACKED
    
final public static  StringTYPE_STACKED100
    

Constructor Summary
public  BCChart(Context context, String extension, ScriptProxy scriptProxy)
    
public  BCChart(String name, int left, int top, int width, int height)
     The instance initializer.

Method Summary
public  voidgetCategoryCoverage(org.directwebremoting.proxy.Callback<Float> callback)
     Returns the categoryCoverage field, the ratio of the range of a category that is covered by bars/columns.
public  voidgetSeriesOverlap(org.directwebremoting.proxy.Callback<Float> callback)
     Returns the seriesOverlap field, the ratio of a column width/row height that a column/row overlaps with the adjacent column/row.
public  voidgetType(org.directwebremoting.proxy.Callback<String> callback)
     Returns the type field, corresponds to the variation of chart, one of {'clustered','stacked','stacked100'}.
public  voidsetCategoryCoverage(float categoryCoverage)
     Sets the categoryCoverage field.
public  voidsetSeriesOverlap(float seriesOverlap)
     Sets the seriesOverlap field.
public  voidsetType(String type)
     Sets the type field.

Field Detail
TYPE_CLUSTERED
final public static String TYPE_CLUSTERED(Code)



TYPE_STACKED
final public static String TYPE_STACKED(Code)



TYPE_STACKED100
final public static String TYPE_STACKED100(Code)




Constructor Detail
BCChart
public BCChart(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



BCChart
public BCChart(String name, int left, int top, int width, int height)(Code)
The instance initializer.
Parameters:
  name - the GI name of the instance
Parameters:
  left - left position (in pixels) of the chart relative to its parent container
Parameters:
  top - top position (in pixels) of the chart relative to its parent container
Parameters:
  width - width (in pixels) of the chart
Parameters:
  height - height (in pixels) of the chart




Method Detail
getCategoryCoverage
public void getCategoryCoverage(org.directwebremoting.proxy.Callback<Float> callback)(Code)
Returns the categoryCoverage field, the ratio of the range of a category that is covered by bars/columns.
Parameters:
  callback - categoryCoverage



getSeriesOverlap
public void getSeriesOverlap(org.directwebremoting.proxy.Callback<Float> callback)(Code)
Returns the seriesOverlap field, the ratio of a column width/row height that a column/row overlaps with the adjacent column/row.
Parameters:
  callback - seriesOverlap



getType
public void getType(org.directwebremoting.proxy.Callback<String> callback)(Code)
Returns the type field, corresponds to the variation of chart, one of {'clustered','stacked','stacked100'}.
Parameters:
  callback - type



setCategoryCoverage
public void setCategoryCoverage(float categoryCoverage)(Code)
Sets the categoryCoverage field.
Parameters:
  categoryCoverage - the new value for categoryCoverage, between 0 and 1



setSeriesOverlap
public void setSeriesOverlap(float seriesOverlap)(Code)
Sets the seriesOverlap field.
Parameters:
  seriesOverlap - the new value for seriesOverlap, usually between -0.5 and 0.5



setType
public void setType(String type)(Code)
Sets the type field.
Parameters:
  type - the new value for type, one of {'clustered','stacked','stacked100'}



Methods inherited from jsx3.chart.CartesianChart
public void getGridLines(org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc)
public jsx3.chart.Axis getPrimaryXAxis()(Code)(Java Doc)
public T getPrimaryXAxis(Class<T> returnType)(Code)(Java Doc)
public jsx3.chart.Axis getPrimaryYAxis()(Code)(Java Doc)
public T getPrimaryYAxis(Class<T> returnType)(Code)(Java Doc)
public void getRangeForAxis(jsx3.chart.Axis axis, org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc)
public void getXRange(Object[] series, org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc)
public void getYRange(Object[] series, org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc)

Methods inherited from jsx3.chart.Chart
public jsx3.xml.Node adoptRecord(jsx3.xml.CdfDocument strSourceId, String strRecordId, String strParentRecordId, boolean bRedraw)(Code)(Java Doc)
public jsx3.xml.Node adoptRecord(String strSourceId, String strRecordId, String strParentRecordId, boolean bRedraw)(Code)(Java Doc)
public jsx3.xml.Node adoptRecordBefore(jsx3.xml.CdfDocument strSourceId, String strRecordId, String strSiblingRecordId, boolean bRedraw)(Code)(Java Doc)
public jsx3.xml.Node adoptRecordBefore(String strSourceId, String strRecordId, String strSiblingRecordId, boolean bRedraw)(Code)(Java Doc)
public void clearXmlData()(Code)(Java Doc)
public void convertProperties(java.util.Properties objProps, Object[] arrProps, boolean bUnion)(Code)(Java Doc)
public jsx3.xml.Node deleteRecord(String strRecordId, boolean bRedraw)(Code)(Java Doc)
public void deleteRecordProperty(String strRecordId, String strPropName, boolean bRedraw)(Code)(Java Doc)
public void getAlpha(org.directwebremoting.proxy.Callback<Float> callback)(Code)(Java Doc)
public void getBorderAlpha(org.directwebremoting.proxy.Callback<Float> callback)(Code)(Java Doc)
public void getBorderColor(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public void getBorderWidth(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)
public jsx3.chart.ChartLabel getChartTitle()(Code)(Java Doc)
public void getDataPadding(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public jsx3.chart.Legend getLegend()(Code)(Java Doc)
public void getLegendEntryType(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)
public void getLegendPlacement(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public jsx3.lang.Object getRecord(String strRecordId)(Code)(Java Doc)
public T getRecord(String strRecordId, Class<T> returnType)(Code)(Java Doc)
public jsx3.xml.Node getRecordNode(String strRecordId)(Code)(Java Doc)
public void getSeries(org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc)
public void getSeriesIndex(jsx3.chart.Series s, org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)
public void getShareResources(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)
public void getTitlePlacement(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public jsx3.xml.CdfDocument getXML()(Code)(Java Doc)
public T getXML(Class<T> returnType)(Code)(Java Doc)
public void getXMLId(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public void getXMLString(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public void getXMLTransformers(org.directwebremoting.proxy.Callback<Object[]> callback)(Code)(Java Doc)
public void getXMLURL(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public jsx3.xml.CdfDocument getXSL()(Code)(Java Doc)
public T getXSL(Class<T> returnType)(Code)(Java Doc)
public void getXSLId(org.directwebremoting.proxy.Callback<String> callback)(Code)(Java Doc)
public jsx3.lang.Object getXSLParams()(Code)(Java Doc)
public T getXSLParams(Class<T> returnType)(Code)(Java Doc)
public void getXmlAsync(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)
public void getXmlBind(org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)
public jsx3.xml.Node insertRecord(jsx3.lang.Object objRecord, String strParentRecordId, boolean bRedraw)(Code)(Java Doc)
public jsx3.xml.Node insertRecordBefore(jsx3.lang.Object objRecord, String strSiblingRecordId, boolean bRedraw)(Code)(Java Doc)
public void insertRecordNode(jsx3.xml.Node objRecordNode, String strParentRecordId, boolean bRedraw)(Code)(Java Doc)
public jsx3.xml.CdfDocument insertRecordProperty(String strRecordId, String strPropName, String strPropValue, boolean bRedraw)(Code)(Java Doc)
public T insertRecordProperty(String strRecordId, String strPropName, String strPropValue, boolean bRedraw, Class<T> returnType)(Code)(Java Doc)
public void onXmlBinding(jsx3.lang.Object objEvent)(Code)(Java Doc)
public void redrawRecord()(Code)(Java Doc)
public jsx3.xml.Cacheable removeXSLParam(String strName)(Code)(Java Doc)
public T removeXSLParam(String strName, Class<T> returnType)(Code)(Java Doc)
public jsx3.xml.Cacheable removeXSLParams()(Code)(Java Doc)
public T removeXSLParams(Class<T> returnType)(Code)(Java Doc)
public void resetCacheData(jsx3.app.Server objServer)(Code)(Java Doc)
public void resetXmlCacheData(jsx3.app.Server objServer)(Code)(Java Doc)
public void setAlpha(float alpha)(Code)(Java Doc)
public void setBorderAlpha(float borderAlpha)(Code)(Java Doc)
public void setBorderColor(Integer borderColor)(Code)(Java Doc)
public void setBorderColor(String borderColor)(Code)(Java Doc)
public void setBorderWidth(int borderWidth)(Code)(Java Doc)
public void setDataPadding(String dataPadding)(Code)(Java Doc)
public void setLegendPlacement(String legendPlacement)(Code)(Java Doc)
public jsx3.xml.Cacheable setShareResources(int intShare)(Code)(Java Doc)
public T setShareResources(int intShare, Class<T> returnType)(Code)(Java Doc)
public jsx3.xml.CdfDocument setSourceXML(jsx3.xml.CdfDocument objDoc, jsx3.app.Cache objCache)(Code)(Java Doc)
public T setSourceXML(jsx3.xml.CdfDocument objDoc, jsx3.app.Cache objCache, Class<T> returnType)(Code)(Java Doc)
public void setTitlePlacement(String titlePlacement)(Code)(Java Doc)
public jsx3.xml.Cacheable setXMLId(String strXMLId)(Code)(Java Doc)
public T setXMLId(String strXMLId, Class<T> returnType)(Code)(Java Doc)
public jsx3.xml.Cacheable setXMLString(String strXML)(Code)(Java Doc)
public T setXMLString(String strXML, Class<T> returnType)(Code)(Java Doc)
public void setXMLTransformers(Object[] arrTrans)(Code)(Java Doc)
public jsx3.xml.Cacheable setXMLURL(String strXMLURL)(Code)(Java Doc)
public T setXMLURL(String strXMLURL, Class<T> returnType)(Code)(Java Doc)
public jsx3.xml.Cacheable setXSLParam(String strName, String strValue)(Code)(Java Doc)
public T setXSLParam(String strName, String strValue, Class<T> returnType)(Code)(Java Doc)
public jsx3.xml.Cacheable setXmlAsync(boolean bAsync)(Code)(Java Doc)
public T setXmlAsync(boolean bAsync, Class<T> returnType)(Code)(Java Doc)
public void setXmlBind(boolean bBind, org.directwebremoting.proxy.Callback<Integer> callback)(Code)(Java Doc)

Methods inherited from jsx3.vector.Block
public jsx3.vector.Tag createCanvas()(Code)(Java Doc)
public T createCanvas(Class<T> returnType)(Code)(Java Doc)
public jsx3.vector.Tag createVector()(Code)(Java Doc)
public T createVector(Class<T> returnType)(Code)(Java Doc)
public jsx3.vector.Tag getCanvas()(Code)(Java Doc)
public T getCanvas(Class<T> returnType)(Code)(Java Doc)
public void paintEventHandler(String strEvtType, String strMethod, jsx3.vector.Tag objElm)(Code)(Java Doc)
public void updateVector(jsx3.vector.Tag objVector, org.directwebremoting.proxy.Callback<Boolean> callback)(Code)(Java Doc)

Fields inherited from jsx3.gui.Block
final public static int ABSOLUTE(Code)(Java Doc)
final public static String ALIGNCENTER(Code)(Java Doc)
final public static String ALIGNLEFT(Code)(Java Doc)
final public static String ALIGNRIGHT(Code)(Java Doc)
final public static String DEFAULTCOLOR(Code)(Java Doc)
final public static String DEFAULTFONTNAME(Code)(Java Doc)
final public static String DEFAULTTAGNAME(Code)(Java Doc)
final public static String DEFAULTTEXT(Code)(Java Doc)
final public static String DISPLAYBLOCK(Code)(Java Doc)
final public static String DISPLAYNONE(Code)(Java Doc)
final public static String FONTBOLD(Code)(Java Doc)
final public static String FONTNORMAL(Code)(Java Doc)
final public static int OVERFLOWEXPAND(Code)(Java Doc)
final public static int OVERFLOWHIDDEN(Code)(Java Doc)
final public static int RELATIVE(Code)(Java Doc)
final public static String SPACE(Code)(Java Doc)
final public static String VISIBILITYHIDDEN(Code)(Java Doc)
final public static String VISIBILITYVISIBLE(Code)(Java Doc)

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)

Fields inherited from jsx3.app.Model
final public static int ASYNC_LOAD_TIMEOUT(Code)(Java Doc)
final public static String CIF_VERSION(Code)(Java Doc)
final public static String CURRENT_VERSION(Code)(Java Doc)
final public static int LT_NORMAL(Code)(Java Doc)
final public static int LT_SHOW_DESER(Code)(Java Doc)
final public static int LT_SHOW_PAINT(Code)(Java Doc)
final public static int LT_SLEEP_DESER(Code)(Java Doc)
final public static int LT_SLEEP_PAINT(Code)(Java Doc)
final public static int LT_SLEEP_PD(Code)(Java Doc)
final public static int PERSISTEMBED(Code)(Java Doc)
final public static int PERSISTNONE(Code)(Java Doc)
final public static int PERSISTREF(Code)(Java Doc)
final public static int PERSISTREFASYNC(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)

Methods inherited from org.directwebremoting.proxy.io.Context
protected String getContextPath()(Code)(Java Doc)
protected ScriptBuffer getInitScript()(Code)(Java Doc)
protected ScriptProxy getScriptProxy()(Code)(Java Doc)
protected void setInitScript(ScriptBuffer initScript)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.