Java Doc for GridView.java in  » Swing-Library » abeille-forms-designer » com » jeta » forms » gui » form » 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 » Swing Library » abeille forms designer » com.jeta.forms.gui.form 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.Container
         javax.swing.JComponent
            javax.swing.JPanel
               com.jeta.open.gui.framework.JETAPanel
                  com.jeta.forms.gui.form.GridView

GridView
public class GridView extends JETAPanel implements Paintable,FormAccessor,GridCellListener(Code)
The GridViewBase is responsible for containing the parent container that contains the components on the form as well as rendering the grid lines during design mode as well as any background and fill effects for grid cells. The GridViewBase employs a JLayeredPane to separate the various elements of the view.
 Containment Hierarchy:
 GridViewBase(this)
 |
 -- JLayeredPane (m_layered_pane)
 |
 -- GridViewBase.FormContainer (m_form <-- FormLayout )
 |        |
 |         -- GridComponent1
 |        |
 |         -- GridComponent2
 |        |
 |         -- GridComponentN
 |
 -- CellPainter (m_cell_painter)
 |
 -- BackgroundPainter ( m_background_painter - bottom layer )
 

author:
   Jeff Tassin


Field Summary
final public static  IntegerBACKGROUND_PAINTER_LAYER
    
final public static  IntegerCELL_PAINTER_LAYER
    
final public static  IntegerFOCUS_LAYER
    
final public static  IntegerFORM_LAYER
    
final public static  IntegerOVERLAY_LAYER
    

Constructor Summary
public  GridView()
    
public  GridView(String colspecs, String rowspecs)
     Creates a GridView with the specified column and row specifications.
public  GridView(int cols, int rows)
     Creates a GridView with the specified columns and rows.

Method Summary
public  voidaddBean(Component comp, CellConstraints cc)
     FormAccessor implementation.
public  voidaddComponent(GridComponent gc, CellConstraints cc)
     Adds the component at the given row and column.
public  voidaddComponent(GridComponent gc, ComponentConstraints cc)
     Adds the component at the given row and column.
public  voidaddListener(GridViewListener listener)
    
public  IteratorbeanIterator()
     Defaults to beanIterator(false).
public  IteratorbeanIterator(boolean nested)
     Returns an iterator to all Java Beans in this container.
public  voidcellChanged(GridCellEvent evt)
     GridCellListener implementation.
public  voiddeselectAll()
    
public  voiddoLayout()
     Override so we can explicitly tell the form to layout as well.
public  voidenableEvents(boolean enable)
     Sets the flag that indicates if events should be fired.
public static  voidfillCells(GridView view, ComponentSource compsrc)
     Helper method that creates empty components.
public  voidfireGridEvent(GridViewEvent evt)
     Sends a GridViewEvent to all registered listeners.
public  RectanglegetCellBounds(int col, int row)
     Returns the cell bounds at the given column and row.
public  MatrixgetCellPainters()
     Returns a Matrix object that contains the cell painter properties (PaintProperty) for cells that have fill effects.
public  intgetColumnCount()
     Returns the number of columns in this view.
public  FormGroupSetgetColumnGroups()
     Returns a FormGroupSet that specifies the column groups for this view.
public  intgetColumnOrgX(int col)
     Returns the left location in pixels of the given column.
public  ColumnSpecgetColumnSpec(int col)
     Returns the ColumnSpec associated with the given column.
public  StringgetColumnSpecs()
     Return a encoded string of all column specs for this view.
public  intgetColumnWidth(int col)
     Returns the column width in pixels of the given column.
public  CellConstraintsgetConstraints(Component comp)
     Return the cell constraints associated with the given component.
public  ContainergetContainer()
     Return the actual container that has the given layout.
public  FormAccessorgetFormAccessor()
     Returns the FormAccessor associated with this view.
public  ContainergetFormContainer()
     Do not call this method.
public  intgetFormHeight()
     Return the total height of the form as calculated by the FormLayout manager.
public  FormLayoutgetFormLayout()
     Return the layout manager (FormLayout) for the form.
public  StringgetFormName()
     Returns the name assigned to the form component associated with this accessor.
public  intgetFormWidth()
     Return the total width of the form as calculated by the FormLayout manager.
public  GridComponentgetGridComponent(int col, int row)
     Returns the GridComponent that occupies the cell at the given row/column.
public  GridComponentgetGridComponent(int index)
     Returns the GridComponent at the given index in the parent container.
Parameters:
  index - the 0-based index in the parent container.
public  intgetGridComponentCount()
     Returns the total number of GridComponent objects contained by this form.
 FormLayout.LayoutInfogetLayoutInfo()
     Return the FormLayout.LayoutInfo. the FormLayout.LayoutInfo.
 longgetModificationStamp()
     Returns the timestamp of the last time a child component was added or removed from the form associated with this view.
 longgetNestedModificationStamp()
     Returns the timestamp of the last time a child component was added or removed from a nested form associated with this view.
public  GridComponentgetOverlappingComponent(int col, int row)
     Returns the GridComponent that overlaps the cell at the given column and row.
public  GridOverlaygetOverlay()
     Returns the GridOverlay associated with this view.
public  PaintPropertygetPaintProperty(int col, int row)
     Return the fill property for the cell at the given column and row.
Parameters:
  col - the 1-based column
Parameters:
  row - the 1-based row the painter at the given column and row.
public  FormComponentgetParentForm()
     Returns the FormComponent that contains this GridView.
public  intgetRowCount()
     Returns the number of rows in this view.
public  FormGroupSetgetRowGroups()
     Returns a FormGroupSet that specifies the row groups for this view.
public  intgetRowHeight(int row)
     Returns the row height in pixels of the given row.
public  intgetRowOrgY(int row)
     Returns the row origin in pixels of the given row.
public  RowSpecgetRowSpec(int row)
     Returns the row spec for the specified row.
public  StringgetRowSpecs()
     Return a encoded string of all row specs for this view.
public  GridComponentgetSelectedComponent()
     Returns the first selected GridComponent found in the component hierarhcy of this container.
public  IteratorgridIterator()
     Returns an interator that iterates over the grid components (GridComponent objects) in this view.
public  voidinitialize(int cols, int rows)
    
 voidinitialize(String colspecs, String rowspecs)
     Initializes the view.
public  voidinsertColumn(int col, ColumnSpec colspec, ComponentFactory factory)
     Inserts a new column into the view at the given column index.
Parameters:
  col - the 1-based column index where the new column will beinserted.
Parameters:
  colspec - the specification for the new column.
Parameters:
  factory - a factory used to create components to insert into the emptycells of the newly created column.
public  voidinsertRow(int row, RowSpec rowspec, ComponentFactory factory)
     Inserts a new row into the view at the given column index.
Parameters:
  row - the 1-based row index where the new row will be inserted.
Parameters:
  rowspec - the specification for the new row.
Parameters:
  factory - a factory used to create components to insert into the emptycells of the newly created row.
public  booleanisEventsEnabled()
     Return true if GridViewEvents will be fired from the view.
public  booleanisGridVisible()
     Return true if the grid lines are visible.
public  CollectionlistComponents()
     Creates a collection of all child grid components (GridComponent objects) in this view.
public  voidrefreshView()
     Updates any parameters that need to be updated if the view changed such as adding/deleting/editing a component, row, or column.
public  ComponentremoveBean(Component comp)
     Removes a bean from the container associated with this accessor.
Parameters:
  comp - the component to remove.
public  ComponentremoveBean(String compName)
     FormAccessor implementation.
public  voidremoveColumn(int column)
     Removes the given column from the layout/view.
public  voidremoveListener(GridViewListener listener)
    
public  voidremoveRow(int row)
     Removes the specified row from the layout/view.
public  ComponentreplaceBean(Component oldComp, Component newComponent)
     FormAccessor implementation.
public  ComponentreplaceBean(String compName, Component newComponent)
     FormAccessor implementation.
public  voidreplaceComponent(GridComponent newComp, GridComponent oldComp)
     Replaces a component in the view.
public  voidrevalidate()
     Override so we can explicitly tell the child form to revalidate as well.
public  voidsetBackgroundPainter(Painter p)
     Sets an object used to render the fill effect for the entire form associated with this view.
public  voidsetBounds(int x, int y, int width, int height)
     Override setBounds so we can reset the layoutinfo.
public  voidsetCellPainters(Matrix painters)
    
public  voidsetColumnGroups(FormGroupSet groups)
     Sets the column groups for this form.
public  voidsetColumnSpec(int col, ColumnSpec colspec)
    
public  voidsetComponent(GridComponent gc, CellConstraints cc)
     Sets the component at the given row and column.
public  voidsetComponent(GridComponent gc, ComponentConstraints cc)
     Sets the component at the given row and column.
public  voidsetConstraints(GridComponent gc, CellConstraints cc)
     Sets the constraints for the given component.
public  voidsetConstraints(GridComponent gc, ComponentConstraints cc)
     Sets the constraints for the given component.
public  voidsetGridVisible(boolean bvis)
     Sets the grid overlay as visible/invisible.
public  voidsetPaintProperty(int col, int row, PaintProperty pp)
     Sets the paint property for the given cell.
public  voidsetRowGroups(FormGroupSet groups)
     Sets the row groups for this form.
public  voidsetRowSpec(int row, RowSpec rowspec)
    
public  voidupdateColumnGroups()
     Updates the local column groups reference so that it is consistent with the form layout.
public  voidupdateRowGroups()
     Updates the local row groups reference so that it is consistent with the form layout.

Field Detail
BACKGROUND_PAINTER_LAYER
final public static Integer BACKGROUND_PAINTER_LAYER(Code)
The various layers in this view



CELL_PAINTER_LAYER
final public static Integer CELL_PAINTER_LAYER(Code)



FOCUS_LAYER
final public static Integer FOCUS_LAYER(Code)



FORM_LAYER
final public static Integer FORM_LAYER(Code)



OVERLAY_LAYER
final public static Integer OVERLAY_LAYER(Code)




Constructor Detail
GridView
public GridView()(Code)
Creates a GridView with no rows and columns



GridView
public GridView(String colspecs, String rowspecs)(Code)
Creates a GridView with the specified column and row specifications. The view is initialized which also creates the columns and rows.
Parameters:
  colspecs - the encoded column specs (comma delimited) for the form layout
Parameters:
  rowspecs - the encoded row specs (comma delimited) for the form layout



GridView
public GridView(int cols, int rows)(Code)
Creates a GridView with the specified columns and rows. The default column and row specifications are applied.
Parameters:
  cols - the number of columns to create
Parameters:
  row - the number of rows to create.




Method Detail
addBean
public void addBean(Component comp, CellConstraints cc)(Code)
FormAccessor implementation. Adds a bean to this container using the given constraints.
Parameters:
  comp - the bean to add to the form.
Parameters:
  cc - the constraints for the bean. This must be a validCellConstraints instance.



addComponent
public void addComponent(GridComponent gc, CellConstraints cc)(Code)
Adds the component at the given row and column. If a component already occupies cells specified by the constraints, it is not overwritten, and the call will still succeed.
Parameters:
  gc - the grid component to add to this view.
Parameters:
  cc - the cell constraints to apply to the component.



addComponent
public void addComponent(GridComponent gc, ComponentConstraints cc)(Code)
Adds the component at the given row and column. If a component already occupies cells specified by the constraints, it is not overwritten, and the call will still succeed.
Parameters:
  gc - the grid component to add to this view
Parameters:
  cc - the component constraints to apply to the component.



addListener
public void addListener(GridViewListener listener)(Code)
Adds a listener that wants to receive GridViewEvents from this view
Parameters:
  listener - the listener to add to this view.



beanIterator
public Iterator beanIterator()(Code)
Defaults to beanIterator(false). See GridView.beanIterator(boolean) an iterator to all the Java Beans in this container. Beans innested containers are not included.



beanIterator
public Iterator beanIterator(boolean nested)(Code)
Returns an iterator to all Java Beans in this container. This iterator also supports iterating over nested containers if the nested flag is set to true.
Parameters:
  nested - if true, all components in nested forms will be returned. an iterator to all the Java Beans in this container. Beans innested containers are included if nested is true.



cellChanged
public void cellChanged(GridCellEvent evt)(Code)
GridCellListener implementation. Here we are getting events from individual GridComponents owned by this view. Most events are simply forwarded up the chain as GridViewEvents.



deselectAll
public void deselectAll()(Code)
Deselects all grid components in the view



doLayout
public void doLayout()(Code)
Override so we can explicitly tell the form to layout as well.



enableEvents
public void enableEvents(boolean enable)(Code)
Sets the flag that indicates if events should be fired.
Parameters:
  enable - set to true if GridViewEvents should be fired when this viewis changed.



fillCells
public static void fillCells(GridView view, ComponentSource compsrc)(Code)
Helper method that creates empty components. During design mode, a grid is filled with empty components to provide a minimum space for each cell. Without these components, the grid cells could have a zero width or height when the size is set to Preferred for either the column and/or row.
Parameters:
  view - the view to be initialized
Parameters:
  compsrc - the component source that is used to help create emptycomponent objects.



fireGridEvent
public void fireGridEvent(GridViewEvent evt)(Code)
Sends a GridViewEvent to all registered listeners. A GridViewEvent is fired when the view changes or one of its child GridComponents changes. This is only needed by the designer.
Parameters:
  evt - the event to post to all registered listeners.



getCellBounds
public Rectangle getCellBounds(int col, int row)(Code)
Returns the cell bounds at the given column and row.
Parameters:
  col - the 1-based column
Parameters:
  row - the 1-based row the cell bounds at the given row/column.



getCellPainters
public Matrix getCellPainters()(Code)
Returns a Matrix object that contains the cell painter properties (PaintProperty) for cells that have fill effects. A matrix of cell painters



getColumnCount
public int getColumnCount()(Code)
Returns the number of columns in this view. the number of columns in this view



getColumnGroups
public FormGroupSet getColumnGroups()(Code)
Returns a FormGroupSet that specifies the column groups for this view. the column groups for this view



getColumnOrgX
public int getColumnOrgX(int col)(Code)
Returns the left location in pixels of the given column.
Parameters:
  col - the 1-based column the column x-origin for the given column.



getColumnSpec
public ColumnSpec getColumnSpec(int col)(Code)
Returns the ColumnSpec associated with the given column.
Parameters:
  col - the 1-based column the ColumnSpec for the given column



getColumnSpecs
public String getColumnSpecs()(Code)
Return a encoded string of all column specs for this view. Each column spec is separated by a comma. the encoded ColumnSpecs for all rows in the view



getColumnWidth
public int getColumnWidth(int col)(Code)
Returns the column width in pixels of the given column.
Parameters:
  col - the 1-based column the width for the given column.



getConstraints
public CellConstraints getConstraints(Component comp)(Code)
Return the cell constraints associated with the given component. The call is merely forwarded to the FormLayout instance. the constraints associated with the given component.
throws:
  NullPointerException - if component is null or has not been added to the Container



getContainer
public Container getContainer()(Code)
Return the actual container that has the given layout. This method should rarely be called. It is only provided for very limited cases. the container associated with the FormLayout



getFormAccessor
public FormAccessor getFormAccessor()(Code)
Returns the FormAccessor associated with this view. A FormAccessor is used to add/remove/iterate components on a form.



getFormContainer
public Container getFormContainer()(Code)
Do not call this method. It is used only for testing. Call iterator() if you need to list the components in the view.



getFormHeight
public int getFormHeight()(Code)
Return the total height of the form as calculated by the FormLayout manager. the height of the form as determined by the FormLayout manager



getFormLayout
public FormLayout getFormLayout()(Code)
Return the layout manager (FormLayout) for the form. the underlying form layout object.



getFormName
public String getFormName()(Code)
Returns the name assigned to the form component associated with this accessor. the name assigned to the form component associated with thisaccessor.



getFormWidth
public int getFormWidth()(Code)
Return the total width of the form as calculated by the FormLayout manager. the width of the form as determined by the FormLayout manager



getGridComponent
public GridComponent getGridComponent(int col, int row)(Code)
Returns the GridComponent that occupies the cell at the given row/column. Null is returned if a component does not occupy the cell. the grid component that occupies the cell at the given row/column



getGridComponent
public GridComponent getGridComponent(int index)(Code)
Returns the GridComponent at the given index in the parent container.
Parameters:
  index - the 0-based index in the parent container. the grid component at the given index.



getGridComponentCount
public int getGridComponentCount()(Code)
Returns the total number of GridComponent objects contained by this form. the number of grid components in this view



getLayoutInfo
FormLayout.LayoutInfo getLayoutInfo()(Code)
Return the FormLayout.LayoutInfo. the FormLayout.LayoutInfo. See:com.jgoodies.forms.layout.FormLayout.LayoutInfo



getModificationStamp
long getModificationStamp()(Code)
Returns the timestamp of the last time a child component was added or removed from the form associated with this view. This is primarily used to implement the fail-fast FormIterator the timestamp of the last time this container was modified.



getNestedModificationStamp
long getNestedModificationStamp()(Code)
Returns the timestamp of the last time a child component was added or removed from a nested form associated with this view. This is primarily used to implement the fail-fast FormIterator the timestamp of the last time a nested form in this view wasmodified.



getOverlappingComponent
public GridComponent getOverlappingComponent(int col, int row)(Code)
Returns the GridComponent that overlaps the cell at the given column and row. the component that overlaps the cell at the given column and row.If no component overlaps, then null is returned.



getOverlay
public GridOverlay getOverlay()(Code)
Returns the GridOverlay associated with this view. The GridOverlay is responsible for rendering the grid lines when in design mode. the GridOverlay associated with this view.



getPaintProperty
public PaintProperty getPaintProperty(int col, int row)(Code)
Return the fill property for the cell at the given column and row.
Parameters:
  col - the 1-based column
Parameters:
  row - the 1-based row the painter at the given column and row. Null is returned if nopainter exists for that cell.



getParentForm
public FormComponent getParentForm()(Code)
Returns the FormComponent that contains this GridView. Since the parent of this view is not a FormComponent, the component heirarhcy must be traversed until the first FormComponent instance is found. the FormComponent that contains this view.



getRowCount
public int getRowCount()(Code)
Returns the number of rows in this view. the number of rows in this view



getRowGroups
public FormGroupSet getRowGroups()(Code)
Returns a FormGroupSet that specifies the row groups for this view. the row groups for this view



getRowHeight
public int getRowHeight(int row)(Code)
Returns the row height in pixels of the given row.
Parameters:
  row - the 1-based row the row height for the given row.



getRowOrgY
public int getRowOrgY(int row)(Code)
Returns the row origin in pixels of the given row.
Parameters:
  row - the 1-based row the row y-origin for the given row.



getRowSpec
public RowSpec getRowSpec(int row)(Code)
Returns the row spec for the specified row.
Parameters:
  row - the 1-based row the RowSpec for the given row.



getRowSpecs
public String getRowSpecs()(Code)
Return a encoded string of all row specs for this view. Each orow spec is separated by a comma. the encoded RowSpecs for all rows in the view



getSelectedComponent
public GridComponent getSelectedComponent()(Code)
Returns the first selected GridComponent found in the component hierarhcy of this container. Components in nested forms are checked as well.



gridIterator
public Iterator gridIterator()(Code)
Returns an interator that iterates over the grid components (GridComponent objects) in this view. an interator that iterates over the grid components in this view.



initialize
public void initialize(int cols, int rows)(Code)
Call this only once to initialize to the default settings for a given number of rows and columns
Parameters:
  cols - the number of columns in the view
Parameters:
  rows - the number of rows in the view



initialize
void initialize(String colspecs, String rowspecs)(Code)
Initializes the view. This should be called only once.
Parameters:
  colspecs - the encoded column specs for the form layout
Parameters:
  rowspecs - the encoded row specs for the form layout



insertColumn
public void insertColumn(int col, ColumnSpec colspec, ComponentFactory factory) throws FormException(Code)
Inserts a new column into the view at the given column index.
Parameters:
  col - the 1-based column index where the new column will beinserted.
Parameters:
  colspec - the specification for the new column.
Parameters:
  factory - a factory used to create components to insert into the emptycells of the newly created column. This is generally anEmptyComponentFactory.



insertRow
public void insertRow(int row, RowSpec rowspec, ComponentFactory factory) throws FormException(Code)
Inserts a new row into the view at the given column index.
Parameters:
  row - the 1-based row index where the new row will be inserted.
Parameters:
  rowspec - the specification for the new row.
Parameters:
  factory - a factory used to create components to insert into the emptycells of the newly created row. This is generally anEmptyComponentFactory.



isEventsEnabled
public boolean isEventsEnabled()(Code)
Return true if GridViewEvents will be fired from the view. the flag that indicates if events should be fired.



isGridVisible
public boolean isGridVisible()(Code)
Return true if the grid lines are visible. This is only needed by the designer. the grid overlay as visible/invisible



listComponents
public Collection listComponents()(Code)
Creates a collection of all child grid components (GridComponent objects) in this view. This method only returns GridComponent objects. a collection of GridComponents contained by this view.



refreshView
public void refreshView()(Code)
Updates any parameters that need to be updated if the view changed such as adding/deleting/editing a component, row, or column.



removeBean
public Component removeBean(Component comp)(Code)
Removes a bean from the container associated with this accessor.
Parameters:
  comp - the component to remove. the component that was removed. If this method fails for anyreason then null is returned.



removeBean
public Component removeBean(String compName)(Code)
FormAccessor implementation. Removes a bean with the given name from this container.
Parameters:
  compName - the name of the Java Bean to remove. the component that was removed. If this method fails for anyreason then null is returned.



removeColumn
public void removeColumn(int column)(Code)
Removes the given column from the layout/view. Note that all components in the column are removed as well.
Parameters:
  column - the 1-based index of the column to remove.



removeListener
public void removeListener(GridViewListener listener)(Code)
Removes the given listener for the set of listeners that want events from this view
Parameters:
  listener - the listener to remove



removeRow
public void removeRow(int row)(Code)
Removes the specified row from the layout/view. Note that all components in the row are removed as well.
Parameters:
  row - the 1-based row to remove from the view.



replaceBean
public Component replaceBean(Component oldComp, Component newComponent)(Code)
FormAccessor implementation. Replaces an existing bean with a new bean. If the existing bean is not found, the request is ignored.
Parameters:
  oldComp - the component to replace
Parameters:
  newComponent - the component to add. the component that was replaced. If this method fails for anyreason then null is returned.



replaceBean
public Component replaceBean(String compName, Component newComponent)(Code)
FormAccessor implementation. Locates an existing bean with the given name and replaces it with a new bean. If the existing bean cannot be found, the request is ignored.
Parameters:
  compName - the name of the component to replace
Parameters:
  newComponent - the component to add. the component that was replaced. If this method fails for anyreason null is returned.



replaceComponent
public void replaceComponent(GridComponent newComp, GridComponent oldComp)(Code)
Replaces a component in the view. Note that components cannot be deleted in the design view. They must be replaced with 'Empty' components if you want to simulate an empty cell.



revalidate
public void revalidate()(Code)
Override so we can explicitly tell the child form to revalidate as well.



setBackgroundPainter
public void setBackgroundPainter(Painter p)(Code)
Sets an object used to render the fill effect for the entire form associated with this view.
Parameters:
  p - the painter to set for this view.



setBounds
public void setBounds(int x, int y, int width, int height)(Code)
Override setBounds so we can reset the layoutinfo.



setCellPainters
public void setCellPainters(Matrix painters)(Code)
Sets the cell painters associated with this view
Parameters:
  painters - a matrix of cell painters (PaintProperty objects)



setColumnGroups
public void setColumnGroups(FormGroupSet groups)(Code)
Sets the column groups for this form. This call is ignored if the group contains columns that are invalid.
Parameters:
  groups - the column groups to set for this form.



setColumnSpec
public void setColumnSpec(int col, ColumnSpec colspec)(Code)
Updates the columnspecrowspec for the given column
Parameters:
  colspec - the new columnspec
Parameters:
  col - the column



setComponent
public void setComponent(GridComponent gc, CellConstraints cc)(Code)
Sets the component at the given row and column. Removes any existing components that occupy cells which will contain the new component.



setComponent
public void setComponent(GridComponent gc, ComponentConstraints cc)(Code)
Sets the component at the given row and column. Removes any existing components that occupy cells which will contain the new component. The component constraints determines the row and column.
Parameters:
  gc - the grid component
Parameters:
  cc - the component constraints to set.



setConstraints
public void setConstraints(GridComponent gc, CellConstraints cc)(Code)
Sets the constraints for the given component. Note that you should not change the column and row assignments using this method.
Parameters:
  gc - the grid component
Parameters:
  cc - the cell constraints to set.



setConstraints
public void setConstraints(GridComponent gc, ComponentConstraints cc)(Code)
Sets the constraints for the given component. Note that you should not change the column and row assignments using this method.
Parameters:
  gc - the grid component
Parameters:
  cc - the component constraints to set.



setGridVisible
public void setGridVisible(boolean bvis)(Code)
Sets the grid overlay as visible/invisible. This is only needed during design mode.
Parameters:
  bvis - set to true to show the grid. set to false to hide the grid.



setPaintProperty
public void setPaintProperty(int col, int row, PaintProperty pp)(Code)
Sets the paint property for the given cell. This is the property the is responsible for the fill effect for the cell.
Parameters:
  col - the 1-based column
Parameters:
  row - the 1-based row



setRowGroups
public void setRowGroups(FormGroupSet groups)(Code)
Sets the row groups for this form. This call is ignored if the group contains rows that are invalid.
Parameters:
  groups - the row groups for this form.



setRowSpec
public void setRowSpec(int row, RowSpec rowspec)(Code)
Updates the rowspec for the given row
Parameters:
  rowspec - the new rowpsec
Parameters:
  row - the row



updateColumnGroups
public void updateColumnGroups()(Code)
Updates the local column groups reference so that it is consistent with the form layout. The column groups are stored in a FormGroupSet variable. This variable is updated to correspond to the column groups in the FormLayout.



updateRowGroups
public void updateRowGroups()(Code)
Updates the local row groups reference so that it is consistent with the form layout. The row groups are stored in a FormGroupSet variable. This variable is updated to correspond to the row groups in the FormLayout.



Methods inherited from com.jeta.open.gui.framework.JETAPanel
protected ComponentFinder createComponentFinder()(Code)(Java Doc)
public void enableComponent(String commandId, boolean bEnable)(Code)(Java Doc)
public Collection getAllNamedComponents()(Code)(Java Doc)
public boolean getBoolean(String compName)(Code)(Java Doc)
public AbstractButton getButton(String compName)(Code)(Java Doc)
public JCheckBox getCheckBox(String compName)(Code)(Java Doc)
public JComboBox getComboBox(String compName)(Code)(Java Doc)
public Component getComponentByName(String componentName)(Code)(Java Doc)
protected ComponentFinder getComponentFinder()(Code)(Java Doc)
public Collection getComponentsByName(String compName)(Code)(Java Doc)
public JETAController getController()(Code)(Java Doc)
public int getInteger(String compName, int defaultValue)(Code)(Java Doc)
public JLabel getLabel(String compName)(Code)(Java Doc)
public JList getList(String compName)(Code)(Java Doc)
public JPanel getPanel(String compName)(Code)(Java Doc)
public JProgressBar getProgressBar(String compName)(Code)(Java Doc)
public JRadioButton getRadioButton(String compName)(Code)(Java Doc)
public Object getSelectedItem(String compName)(Code)(Java Doc)
public JSpinner getSpinner(String compName)(Code)(Java Doc)
public JTabbedPane getTabbedPane(String compName)(Code)(Java Doc)
public JTable getTable(String compName)(Code)(Java Doc)
public String getText(String compName)(Code)(Java Doc)
public JTextComponent getTextComponent(String compName)(Code)(Java Doc)
public JTextField getTextField(String compName)(Code)(Java Doc)
public JTree getTree(String compName)(Code)(Java Doc)
public UIDirector getUIDirector()(Code)(Java Doc)
public boolean isSelected(String compName)(Code)(Java Doc)
public void removeDescendent(String compName)(Code)(Java Doc)
public static void removeFromParent(Component comp)(Code)(Java Doc)
public void reset()(Code)(Java Doc)
protected void setComponentFinder(ComponentFinder finder)(Code)(Java Doc)
public void setController(JETAController controller)(Code)(Java Doc)
public void setSelected(String compName, boolean sel)(Code)(Java Doc)
public void setSelectedItem(String compName, Object value)(Code)(Java Doc)
public void setText(String compName, String txt)(Code)(Java Doc)
public void setUIDirector(UIDirector director)(Code)(Java Doc)
public void setVisible(String compName, boolean bVisible)(Code)(Java Doc)
public void updateComponents()(Code)(Java Doc)
public void updateComponents(java.util.EventObject evt)(Code)(Java Doc)

Methods inherited from javax.swing.JPanel
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public PanelUI getUI()(Code)(Java Doc)
public String getUIClassID()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public void setUI(PanelUI ui)(Code)(Java Doc)
public void updateUI()(Code)(Java Doc)

Fields inherited from javax.swing.JComponent
final public static String TOOL_TIP_TEXT_KEY(Code)(Java Doc)
final public static int UNDEFINED_CONDITION(Code)(Java Doc)
final public static int WHEN_ANCESTOR_OF_FOCUSED_COMPONENT(Code)(Java Doc)
final public static int WHEN_FOCUSED(Code)(Java Doc)
final public static int WHEN_IN_FOCUSED_WINDOW(Code)(Java Doc)
protected AccessibleContext accessibleContext(Code)(Java Doc)
protected EventListenerList listenerList(Code)(Java Doc)
protected transient ComponentUI ui(Code)(Java Doc)

Methods inherited from javax.swing.JComponent
public void addAncestorListener(AncestorListener listener)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc)
public void computeVisibleRect(Rectangle visibleRect)(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public JToolTip createToolTip()(Code)(Java Doc)
public void disable()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc)
protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue) throws java.beans.PropertyVetoException(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public ActionListener getActionForKeyStroke(KeyStroke aKeyStroke)(Code)(Java Doc)
final public ActionMap getActionMap()(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public AncestorListener[] getAncestorListeners()(Code)(Java Doc)
public boolean getAutoscrolls()(Code)(Java Doc)
public int getBaseline(int width, int height)(Code)(Java Doc)
public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc)
public Border getBorder()(Code)(Java Doc)
public Rectangle getBounds(Rectangle rv)(Code)(Java Doc)
final public Object getClientProperty(Object key)(Code)(Java Doc)
protected Graphics getComponentGraphics(Graphics g)(Code)(Java Doc)
public JPopupMenu getComponentPopupMenu()(Code)(Java Doc)
public int getConditionForKeyStroke(KeyStroke aKeyStroke)(Code)(Java Doc)
public int getDebugGraphicsOptions()(Code)(Java Doc)
public static Locale getDefaultLocale()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public int getHeight()(Code)(Java Doc)
public boolean getInheritsPopupMenu()(Code)(Java Doc)
final public InputMap getInputMap(int condition)(Code)(Java Doc)
final public InputMap getInputMap()(Code)(Java Doc)
public InputVerifier getInputVerifier()(Code)(Java Doc)
public Insets getInsets()(Code)(Java Doc)
public Insets getInsets(Insets insets)(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Point getLocation(Point rv)(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public Component getNextFocusableComponent()(Code)(Java Doc)
public Point getPopupLocation(MouseEvent event)(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public KeyStroke[] getRegisteredKeyStrokes()(Code)(Java Doc)
public JRootPane getRootPane()(Code)(Java Doc)
public Dimension getSize(Dimension rv)(Code)(Java Doc)
public Point getToolTipLocation(MouseEvent event)(Code)(Java Doc)
public String getToolTipText()(Code)(Java Doc)
public String getToolTipText(MouseEvent event)(Code)(Java Doc)
public Container getTopLevelAncestor()(Code)(Java Doc)
public TransferHandler getTransferHandler()(Code)(Java Doc)
public String getUIClassID()(Code)(Java Doc)
public boolean getVerifyInputWhenFocusTarget()(Code)(Java Doc)
public synchronized VetoableChangeListener[] getVetoableChangeListeners()(Code)(Java Doc)
public Rectangle getVisibleRect()(Code)(Java Doc)
public int getWidth()(Code)(Java Doc)
public int getX()(Code)(Java Doc)
public int getY()(Code)(Java Doc)
public void grabFocus()(Code)(Java Doc)
public boolean isDoubleBuffered()(Code)(Java Doc)
public static boolean isLightweightComponent(Component c)(Code)(Java Doc)
public boolean isManagingFocus()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isOptimizedDrawingEnabled()(Code)(Java Doc)
final public boolean isPaintingForPrint()(Code)(Java Doc)
public boolean isPaintingTile()(Code)(Java Doc)
public boolean isRequestFocusEnabled()(Code)(Java Doc)
public boolean isValidateRoot()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
protected void paintBorder(Graphics g)(Code)(Java Doc)
protected void paintChildren(Graphics g)(Code)(Java Doc)
protected void paintComponent(Graphics g)(Code)(Java Doc)
public void paintImmediately(int x, int y, int w, int h)(Code)(Java Doc)
public void paintImmediately(Rectangle r)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printAll(Graphics g)(Code)(Java Doc)
protected void printBorder(Graphics g)(Code)(Java Doc)
protected void printChildren(Graphics g)(Code)(Java Doc)
protected void printComponent(Graphics g)(Code)(Java Doc)
protected void processComponentKeyEvent(KeyEvent e)(Code)(Java Doc)
protected boolean processKeyBinding(KeyStroke ks, KeyEvent e, int condition, boolean pressed)(Code)(Java Doc)
protected void processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
final public void putClientProperty(Object key, Object value)(Code)(Java Doc)
public void registerKeyboardAction(ActionListener anAction, String aCommand, KeyStroke aKeyStroke, int aCondition)(Code)(Java Doc)
public void registerKeyboardAction(ActionListener anAction, KeyStroke aKeyStroke, int aCondition)(Code)(Java Doc)
public void removeAncestorListener(AncestorListener listener)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc)
public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc)
public void repaint(Rectangle r)(Code)(Java Doc)
public boolean requestDefaultFocus()(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
public boolean requestFocus(boolean temporary)(Code)(Java Doc)
public boolean requestFocusInWindow()(Code)(Java Doc)
protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc)
public void resetKeyboardActions()(Code)(Java Doc)
public void reshape(int x, int y, int w, int h)(Code)(Java Doc)
public void revalidate()(Code)(Java Doc)
public void scrollRectToVisible(Rectangle aRect)(Code)(Java Doc)
final public void setActionMap(ActionMap am)(Code)(Java Doc)
public void setAlignmentX(float alignmentX)(Code)(Java Doc)
public void setAlignmentY(float alignmentY)(Code)(Java Doc)
public void setAutoscrolls(boolean autoscrolls)(Code)(Java Doc)
public void setBackground(Color bg)(Code)(Java Doc)
public void setBorder(Border border)(Code)(Java Doc)
public void setComponentPopupMenu(JPopupMenu popup)(Code)(Java Doc)
public void setDebugGraphicsOptions(int debugOptions)(Code)(Java Doc)
public static void setDefaultLocale(Locale l)(Code)(Java Doc)
public void setDoubleBuffered(boolean aFlag)(Code)(Java Doc)
public void setEnabled(boolean enabled)(Code)(Java Doc)
public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc)
public void setFont(Font font)(Code)(Java Doc)
public void setForeground(Color fg)(Code)(Java Doc)
public void setInheritsPopupMenu(boolean value)(Code)(Java Doc)
final public void setInputMap(int condition, InputMap map)(Code)(Java Doc)
public void setInputVerifier(InputVerifier inputVerifier)(Code)(Java Doc)
public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc)
public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc)
public void setNextFocusableComponent(Component aComponent)(Code)(Java Doc)
public void setOpaque(boolean isOpaque)(Code)(Java Doc)
public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc)
public void setRequestFocusEnabled(boolean requestFocusEnabled)(Code)(Java Doc)
public void setToolTipText(String text)(Code)(Java Doc)
public void setTransferHandler(TransferHandler newHandler)(Code)(Java Doc)
protected void setUI(ComponentUI newUI)(Code)(Java Doc)
public void setVerifyInputWhenFocusTarget(boolean verifyInputWhenFocusTarget)(Code)(Java Doc)
public void setVisible(boolean aFlag)(Code)(Java Doc)
public void unregisterKeyboardAction(KeyStroke aKeyStroke)(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void updateUI()(Code)(Java Doc)

Methods inherited from java.awt.Container
public Component add(Component comp)(Code)(Java Doc)
public Component add(String name, Component comp)(Code)(Java Doc)
public Component add(Component comp, int index)(Code)(Java Doc)
public void add(Component comp, Object constraints)(Code)(Java Doc)
public void add(Component comp, Object constraints, int index)(Code)(Java Doc)
public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc)
protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc)
public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc)
public int countComponents()(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public Component findComponentAt(int x, int y)(Code)(Java Doc)
public Component findComponentAt(Point p)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Component getComponent(int n)(Code)(Java Doc)
public Component getComponentAt(int x, int y)(Code)(Java Doc)
public Component getComponentAt(Point p)(Code)(Java Doc)
public int getComponentCount()(Code)(Java Doc)
public int getComponentZOrder(Component comp)(Code)(Java Doc)
public Component[] getComponents()(Code)(Java Doc)
public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc)
public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc)
public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc)
public Insets getInsets()(Code)(Java Doc)
public LayoutManager getLayout()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Insets insets()(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isAncestorOf(Component c)(Code)(Java Doc)
public boolean isFocusCycleRoot(Container container)(Code)(Java Doc)
public boolean isFocusCycleRoot()(Code)(Java Doc)
final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc)
public boolean isFocusTraversalPolicySet()(Code)(Java Doc)
public void layout()(Code)(Java Doc)
public void list(PrintStream out, int indent)(Code)(Java Doc)
public void list(PrintWriter out, int indent)(Code)(Java Doc)
public Component locate(int x, int y)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintComponents(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printComponents(Graphics g)(Code)(Java Doc)
protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
public void remove(int index)(Code)(Java Doc)
public void remove(Component comp)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void setComponentZOrder(Component comp, int index)(Code)(Java Doc)
public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc)
public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc)
public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc)
final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setLayout(LayoutManager mgr)(Code)(Java Doc)
public void transferFocusDownCycle()(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void validate()(Code)(Java Doc)
protected void validateTree()(Code)(Java Doc)

Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(Code)(Java Doc)

Methods inherited from java.awt.Component
public boolean action(Event evt, Object what)(Code)(Java Doc)
public void add(PopupMenu popup)(Code)(Java Doc)
public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc)
public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc)
public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc)
public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc)
public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc)
public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc)
public Rectangle bounds()(Code)(Java Doc)
public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc)
public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public boolean contains(Point p)(Code)(Java Doc)
public Image createImage(ImageProducer producer)(Code)(Java Doc)
public Image createImage(int width, int height)(Code)(Java Doc)
public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc)
public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void disable()(Code)(Java Doc)
final protected void disableEvents(long eventsToDisable)(Code)(Java Doc)
final public void dispatchEvent(AWTEvent e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void enable(boolean b)(Code)(Java Doc)
final protected void enableEvents(long eventsToEnable)(Code)(Java Doc)
public void enableInputMethods(boolean enable)(Code)(Java Doc)
protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc)
protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc)
protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public int getBaseline(int width, int height)(Code)(Java Doc)
public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc)
public Rectangle getBounds()(Code)(Java Doc)
public Rectangle getBounds(Rectangle rv)(Code)(Java Doc)
public ColorModel getColorModel()(Code)(Java Doc)
public Component getComponentAt(int x, int y)(Code)(Java Doc)
public Component getComponentAt(Point p)(Code)(Java Doc)
public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc)
public ComponentOrientation getComponentOrientation()(Code)(Java Doc)
public Cursor getCursor()(Code)(Java Doc)
public synchronized DropTarget getDropTarget()(Code)(Java Doc)
public Container getFocusCycleRootAncestor()(Code)(Java Doc)
public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc)
public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc)
public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc)
public int getHeight()(Code)(Java Doc)
public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc)
public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc)
public boolean getIgnoreRepaint()(Code)(Java Doc)
public InputContext getInputContext()(Code)(Java Doc)
public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc)
public InputMethodRequests getInputMethodRequests()(Code)(Java Doc)
public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocation(Point rv)(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc)
public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc)
public Point getMousePosition() throws HeadlessException(Code)(Java Doc)
public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public ComponentPeer getPeer()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc)
public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Dimension getSize(Dimension rv)(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public Object getTreeLock()(Code)(Java Doc)
public int getWidth()(Code)(Java Doc)
public int getX()(Code)(Java Doc)
public int getY()(Code)(Java Doc)
public boolean gotFocus(Event evt, Object what)(Code)(Java Doc)
public boolean handleEvent(Event evt)(Code)(Java Doc)
public boolean hasFocus()(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc)
public boolean inside(int x, int y)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isBackgroundSet()(Code)(Java Doc)
public boolean isCursorSet()(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isDoubleBuffered()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusCycleRoot(Container container)(Code)(Java Doc)
public boolean isFocusOwner()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isFocusable()(Code)(Java Doc)
public boolean isFontSet()(Code)(Java Doc)
public boolean isForegroundSet()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
public boolean isMaximumSizeSet()(Code)(Java Doc)
public boolean isMinimumSizeSet()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isPreferredSizeSet()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
public boolean keyDown(Event evt, int key)(Code)(Java Doc)
public boolean keyUp(Event evt, int key)(Code)(Java Doc)
public void layout()(Code)(Java Doc)
public void list()(Code)(Java Doc)
public void list(PrintStream out)(Code)(Java Doc)
public void list(PrintStream out, int indent)(Code)(Java Doc)
public void list(PrintWriter out)(Code)(Java Doc)
public void list(PrintWriter out, int indent)(Code)(Java Doc)
public Component locate(int x, int y)(Code)(Java Doc)
public Point location()(Code)(Java Doc)
public boolean lostFocus(Event evt, Object what)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc)
public void move(int x, int y)(Code)(Java Doc)
public void nextFocus()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintAll(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public boolean postEvent(Event e)(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc)
public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printAll(Graphics g)(Code)(Java Doc)
protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processFocusEvent(FocusEvent e)(Code)(Java Doc)
protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc)
protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc)
protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc)
protected void processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc)
public void remove(MenuComponent popup)(Code)(Java Doc)
public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc)
public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc)
public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc)
public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc)
public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public void repaint()(Code)(Java Doc)
public void repaint(long tm)(Code)(Java Doc)
public void repaint(int x, int y, int width, int height)(Code)(Java Doc)
public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
protected boolean requestFocus(boolean temporary)(Code)(Java Doc)
public boolean requestFocusInWindow()(Code)(Java Doc)
protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc)
public void reshape(int x, int y, int width, int height)(Code)(Java Doc)
public void resize(int width, int height)(Code)(Java Doc)
public void resize(Dimension d)(Code)(Java Doc)
public void setBackground(Color c)(Code)(Java Doc)
public void setBounds(int x, int y, int width, int height)(Code)(Java Doc)
public void setBounds(Rectangle r)(Code)(Java Doc)
public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc)
public void setCursor(Cursor cursor)(Code)(Java Doc)
public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc)
public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc)
public void setFocusable(boolean focusable)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(Code)(Java Doc)
public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc)
public void setLocale(Locale l)(Code)(Java Doc)
public void setLocation(int x, int y)(Code)(Java Doc)
public void setLocation(Point p)(Code)(Java Doc)
public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc)
public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc)
public void setSize(int width, int height)(Code)(Java Doc)
public void setSize(Dimension d)(Code)(Java Doc)
public void setVisible(boolean b)(Code)(Java Doc)
public void show()(Code)(Java Doc)
public void show(boolean b)(Code)(Java Doc)
public Dimension size()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void transferFocus()(Code)(Java Doc)
public void transferFocusBackward()(Code)(Java Doc)
public void transferFocusUpCycle()(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void validate()(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.