Java Doc for ColumnViewer.java in  » IDE-Eclipse » jface » org » eclipse » jface » viewers » 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 » IDE Eclipse » jface » org.eclipse.jface.viewers 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.eclipse.jface.viewers.Viewer
      org.eclipse.jface.viewers.ContentViewer
         org.eclipse.jface.viewers.StructuredViewer
            org.eclipse.jface.viewers.ColumnViewer

All known Subclasses:   org.eclipse.jface.viewers.AbstractTableViewer,  org.eclipse.jface.viewers.AbstractTreeViewer,
ColumnViewer
abstract public class ColumnViewer extends StructuredViewer (Code)
The ColumnViewer is the abstract superclass of viewers that have columns (e.g., AbstractTreeViewer and AbstractTableViewer). Concrete subclasses of ColumnViewer should implement a matching concrete subclass of ViewerColumn . This class is not intended to be subclassed outside of the JFace viewers framework.
since:
   3.3


Field Summary
 booleanbusy
    
 booleanlogWhenBusy
    

Constructor Summary
public  ColumnViewer()
     Create a new instance of the receiver.

Method Summary
protected  voidapplyEditorValue()
     Apply the value of the active cell editor if one is active.
public  voidcancelEditing()
     Cancels a currently active cell editor if one is active.
 voidclearLegacyEditingSetup()
    
abstract protected  ColumnViewerEditorcreateViewerEditor()
     Creates the viewer editor used for editing cell contents.
abstract protected  intdoGetColumnCount()
     Returns the number of columns contained in the receiver.
public  voideditElement(Object element, int column)
     Starts editing the given element at the given column index.
 ViewerCellgetCell(Point point)
    
public  CellEditor[]getCellEditors()
     Return the CellEditors for the receiver, or null if no cell editors are set.
public  ICellModifiergetCellModifier()
     Returns the cell modifier of this viewer, or null if none has been set.
public  Object[]getColumnProperties()
     Returns the column properties of this table viewer.
public  ColumnViewerEditorgetColumnViewerEditor()
    
abstract protected  WidgetgetColumnViewerOwner(int columnIndex)
     Returns the column widget at the given column index.
protected  ItemgetItem(int x, int y)
    
abstract protected  ItemgetItemAt(Point point)
     Returns the Item at the given widget-relative coordinates, or null if there is no item at the given coordinates.
public  CellLabelProvidergetLabelProvider(int columnIndex)
     Returns the label provider associated with the column at the given index or null if no column with this index is known.
protected  Object[]getRawChildren(Object parent)
    
 ViewerColumngetViewerColumn(int columnIndex)
     Returns the viewer column for the given column index.
protected  ViewerRowgetViewerRow(Point point)
     Returns the viewer row at the given widget-relative coordinates.
abstract protected  ViewerRowgetViewerRowFromItem(Widget item)
     Returns a ViewerRow associated with the given row widget.
protected  voidhookControl(Control control)
    
protected  voidhookEditingSupport(Control control)
     Hook up the editing support.
 booleanisBusy()
    
public  booleanisCellEditorActive()
     Returns whether there is an active cell editor.
public  voidrefresh(Object element)
    
public  voidrefresh(Object element, boolean updateLabels)
    
public  voidsetCellEditors(CellEditor[] editors)
     Sets the cell editors of this column viewer.
public  voidsetCellModifier(ICellModifier modifier)
     Sets the cell modifier for this column viewer.
public  voidsetColumnProperties(String[] columnProperties)
     Sets the column properties of this column viewer.
public  voidsetColumnViewerEditor(ColumnViewerEditor columnViewerEditor)
    
public  voidsetLabelProvider(IBaseLabelProvider labelProvider)
     The column viewer implementation of this Viewer framework method ensures that the given label provider is an instance of ITableLabelProvider, ILabelProvider, or CellLabelProvider.

If the label provider is an ITableLabelProvider , then it provides a separate label text and image for each column.

protected  voidtriggerEditorActivationEvent(ColumnViewerEditorActivationEvent event)
    
public  voidupdate(Object element, String[] properties)
    
 ViewerCellupdateCell(ViewerRow rowItem, int column, Object element)
     Update the cached cell object with the given row and column.

Field Detail
busy
boolean busy(Code)



logWhenBusy
boolean logWhenBusy(Code)




Constructor Detail
ColumnViewer
public ColumnViewer()(Code)
Create a new instance of the receiver.




Method Detail
applyEditorValue
protected void applyEditorValue()(Code)
Apply the value of the active cell editor if one is active.
since:
   3.3



cancelEditing
public void cancelEditing()(Code)
Cancels a currently active cell editor if one is active. All changes already done in the cell editor are lost.
since:
   3.1 (in subclasses, added in 3.3 to abstract class)



clearLegacyEditingSetup
void clearLegacyEditingSetup()(Code)



createViewerEditor
abstract protected ColumnViewerEditor createViewerEditor()(Code)
Creates the viewer editor used for editing cell contents. To be implemented by subclasses. the editor, or null if this viewer does notsupport editing cell contents.



doGetColumnCount
abstract protected int doGetColumnCount()(Code)
Returns the number of columns contained in the receiver. If no columns were created by the programmer, this value is zero, despite the fact that visually, one column of items may be visible. This occurs when the programmer uses the column viewer like a list, adding elements but never creating a column. the number of columns
since:
   3.3



editElement
public void editElement(Object element, int column)(Code)
Starts editing the given element at the given column index.
Parameters:
  element - the model element
Parameters:
  column - the column index
since:
   3.1 (in subclasses, added in 3.3 to abstract class)



getCell
ViewerCell getCell(Point point)(Code)
Returns the viewer cell at the given widget-relative coordinates, or null if there is no cell at that location
Parameters:
  point - the widget-relative coordinates the cell or null if no cell is found at the givenpoint



getCellEditors
public CellEditor[] getCellEditors()(Code)
Return the CellEditors for the receiver, or null if no cell editors are set.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.

CellEditor[]
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



getCellModifier
public ICellModifier getCellModifier()(Code)
Returns the cell modifier of this viewer, or null if none has been set.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.

the cell modifier, or null
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



getColumnProperties
public Object[] getColumnProperties()(Code)
Returns the column properties of this table viewer. The properties must correspond with the columns of the table control. They are used to identify the column in a cell modifier.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.

the list of column properties
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



getColumnViewerEditor
public ColumnViewerEditor getColumnViewerEditor()(Code)
the currently attached viewer editor



getColumnViewerOwner
abstract protected Widget getColumnViewerOwner(int columnIndex)(Code)
Returns the column widget at the given column index.
Parameters:
  columnIndex - the column index Widget the column widget



getItem
protected Item getItem(int x, int y)(Code)



getItemAt
abstract protected Item getItemAt(Point point)(Code)
Returns the Item at the given widget-relative coordinates, or null if there is no item at the given coordinates.
Parameters:
  point - the widget-relative coordinates the Item at the coordinates or null ifthere is no item at the given coordinates



getLabelProvider
public CellLabelProvider getLabelProvider(int columnIndex)(Code)
Returns the label provider associated with the column at the given index or null if no column with this index is known.
Parameters:
  columnIndex - the column index the label provider associated with the column ornull if no column with this index is known
since:
   3.3



getRawChildren
protected Object[] getRawChildren(Object parent)(Code)



getViewerColumn
ViewerColumn getViewerColumn(int columnIndex)(Code)
Returns the viewer column for the given column index.
Parameters:
  columnIndex - the column index the viewer column at the given index, or null ifthere is none for the given index



getViewerRow
protected ViewerRow getViewerRow(Point point)(Code)
Returns the viewer row at the given widget-relative coordinates.
Parameters:
  point - the widget-relative coordinates of the viewer row ViewerRow the row or null if no row is found atthe given coordinates



getViewerRowFromItem
abstract protected ViewerRow getViewerRowFromItem(Widget item)(Code)
Returns a ViewerRow associated with the given row widget. Implementations may re-use the same instance for different row widgets; callers can only use the viewer row locally and until the next call to this method.
Parameters:
  item - the row widget ViewerRow a viewer row object



hookControl
protected void hookControl(Control control)(Code)



hookEditingSupport
protected void hookEditingSupport(Control control)(Code)
Hook up the editing support. Subclasses may override.
Parameters:
  control - the control you want to hook on



isBusy
boolean isBusy()(Code)



isCellEditorActive
public boolean isCellEditorActive()(Code)
Returns whether there is an active cell editor.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.

true if there is an active cell editor, andfalse otherwise
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



refresh
public void refresh(Object element)(Code)



refresh
public void refresh(Object element, boolean updateLabels)(Code)



setCellEditors
public void setCellEditors(CellEditor[] editors)(Code)
Sets the cell editors of this column viewer. If editing is not supported by this viewer the call simply has no effect.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.


Parameters:
  editors - the list of cell editors
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



setCellModifier
public void setCellModifier(ICellModifier modifier)(Code)
Sets the cell modifier for this column viewer. This method does nothing if editing is not supported by this viewer.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.


Parameters:
  modifier - the cell modifier
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



setColumnProperties
public void setColumnProperties(String[] columnProperties)(Code)
Sets the column properties of this column viewer. The properties must correspond with the columns of the control. They are used to identify the column in a cell modifier. If editing is not supported by this viewer the call simply has no effect.

Since 3.3, an alternative API is available, see ViewerColumn.setEditingSupport(EditingSupport) for a more flexible way of editing values in a column viewer.


Parameters:
  columnProperties - the list of column properties
since:
   3.1 (in subclasses, added in 3.3 to abstract class)
See Also:   ViewerColumn.setEditingSupport(EditingSupport)
See Also:   EditingSupport



setColumnViewerEditor
public void setColumnViewerEditor(ColumnViewerEditor columnViewerEditor)(Code)

Parameters:
  columnViewerEditor - the new column viewer editor



setLabelProvider
public void setLabelProvider(IBaseLabelProvider labelProvider)(Code)
The column viewer implementation of this Viewer framework method ensures that the given label provider is an instance of ITableLabelProvider, ILabelProvider, or CellLabelProvider.

If the label provider is an ITableLabelProvider , then it provides a separate label text and image for each column. Implementers of ITableLabelProvider may also implement ITableColorProvider and/or ITableFontProvider to provide colors and/or fonts.

If the label provider is an ILabelProvider, then it provides only the label text and image for the first column, and any remaining columns are blank. Implementers of ILabelProvider may also implement IColorProvider and/or IFontProvider to provide colors and/or fonts.




triggerEditorActivationEvent
protected void triggerEditorActivationEvent(ColumnViewerEditorActivationEvent event)(Code)
Invoking this method fires an editor activation event which tries to enable the editor but before this event is passed to ColumnViewerEditorActivationStrategy to see if this event should really trigger editor activation
Parameters:
  event - the activation event



update
public void update(Object element, String[] properties)(Code)



updateCell
ViewerCell updateCell(ViewerRow rowItem, int column, Object element)(Code)
Update the cached cell object with the given row and column.
Parameters:
  rowItem -
Parameters:
  column - ViewerCell



Methods inherited from org.eclipse.jface.viewers.StructuredViewer
public void addDoubleClickListener(IDoubleClickListener listener)(Code)(Java Doc)
public void addDragSupport(int operations, Transfer[] transferTypes, DragSourceListener listener)(Code)(Java Doc)
public void addDropSupport(int operations, Transfer[] transferTypes, DropTargetListener listener)(Code)(Java Doc)
public void addFilter(ViewerFilter filter)(Code)(Java Doc)
public void addOpenListener(IOpenListener listener)(Code)(Java Doc)
public void addPostSelectionChangedListener(ISelectionChangedListener listener)(Code)(Java Doc)
protected void assertContentProviderType(IContentProvider provider)(Code)(Java Doc)
protected void assertElementsNotNull(Object[] elements)(Code)(Java Doc)
protected void associate(Object element, Item item)(Code)(Java Doc)
protected void buildLabel(ViewerLabel updateLabel, Object element)(Code)(Java Doc)
void buildLabel(ViewerLabel updateLabel, Object element, IViewerLabelProvider labelProvider)(Code)(Java Doc)
void buildLabel(ViewerLabel updateLabel, TreePath elementPath, ITreePathLabelProvider labelProvider)(Code)(Java Doc)
void buildLabel(ViewerLabel updateLabel, Object element, ILabelProvider labelProvider)(Code)(Java Doc)
protected void disassociate(Item item)(Code)(Java Doc)
abstract protected Widget doFindInputItem(Object element)(Code)(Java Doc)
abstract protected Widget doFindItem(Object element)(Code)(Java Doc)
abstract protected void doUpdateItem(Widget item, Object element, boolean fullMap)(Code)(Java Doc)
protected boolean equals(Object elementA, Object elementB)(Code)(Java Doc)
protected Object[] filter(Object[] elements)(Code)(Java Doc)
final protected Widget findItem(Object element)(Code)(Java Doc)
final protected Widget[] findItems(Object element)(Code)(Java Doc)
protected void fireDoubleClick(DoubleClickEvent event)(Code)(Java Doc)
protected void fireOpen(OpenEvent event)(Code)(Java Doc)
protected void firePostSelectionChanged(SelectionChangedEvent event)(Code)(Java Doc)
protected ColorAndFontCollector getColorAndFontCollector()(Code)(Java Doc)
public ViewerComparator getComparator()(Code)(Java Doc)
public IElementComparer getComparer()(Code)(Java Doc)
protected Object[] getFilteredChildren(Object parent)(Code)(Java Doc)
public ViewerFilter[] getFilters()(Code)(Java Doc)
protected Item getItem(int x, int y)(Code)(Java Doc)
protected Object[] getRawChildren(Object parent)(Code)(Java Doc)
protected Object getRoot()(Code)(Java Doc)
public ISelection getSelection()(Code)(Java Doc)
abstract protected List getSelectionFromWidget()(Code)(Java Doc)
protected Object[] getSortedChildren(Object parent)(Code)(Java Doc)
public ViewerSorter getSorter()(Code)(Java Doc)
protected void handleDispose(DisposeEvent event)(Code)(Java Doc)
protected void handleDoubleSelect(SelectionEvent event)(Code)(Java Doc)
protected void handleInvalidSelection(ISelection invalidSelection, ISelection newSelection)(Code)(Java Doc)
protected void handleLabelProviderChanged(LabelProviderChangedEvent event)(Code)(Java Doc)
protected void handleOpen(SelectionEvent event)(Code)(Java Doc)
protected void handlePostSelect(SelectionEvent e)(Code)(Java Doc)
protected void handleSelect(SelectionEvent event)(Code)(Java Doc)
protected boolean hasFilters()(Code)(Java Doc)
protected void hookControl(Control control)(Code)(Java Doc)
abstract protected void internalRefresh(Object element)(Code)(Java Doc)
protected void internalRefresh(Object element, boolean updateLabels)(Code)(Java Doc)
protected void internalUpdate(Widget widget, Object element, String[] properties)(Code)(Java Doc)
protected void mapElement(Object element, Widget item)(Code)(Java Doc)
protected boolean needsRefilter(Object element, String property)(Code)(Java Doc)
CustomHashtable newHashtable(int capacity)(Code)(Java Doc)
protected void preservingSelection(Runnable updateCode)(Code)(Java Doc)
void preservingSelection(Runnable updateCode, boolean reveal)(Code)(Java Doc)
public void refresh()(Code)(Java Doc)
public void refresh(boolean updateLabels)(Code)(Java Doc)
public void refresh(Object element)(Code)(Java Doc)
public void refresh(Object element, boolean updateLabels)(Code)(Java Doc)
final protected void refreshItem(Widget widget, Object element)(Code)(Java Doc)
public void removeDoubleClickListener(IDoubleClickListener listener)(Code)(Java Doc)
public void removeFilter(ViewerFilter filter)(Code)(Java Doc)
public void removeOpenListener(IOpenListener listener)(Code)(Java Doc)
public void removePostSelectionChangedListener(ISelectionChangedListener listener)(Code)(Java Doc)
public void resetFilters()(Code)(Java Doc)
abstract public void reveal(Object element)(Code)(Java Doc)
public void setComparator(ViewerComparator comparator)(Code)(Java Doc)
public void setComparer(IElementComparer comparer)(Code)(Java Doc)
public void setContentProvider(IContentProvider provider)(Code)(Java Doc)
public void setFilters(ViewerFilter[] filters)(Code)(Java Doc)
final public void setInput(Object input)(Code)(Java Doc)
public void setLabelProvider(IBaseLabelProvider labelProvider)(Code)(Java Doc)
public void setSelection(ISelection selection, boolean reveal)(Code)(Java Doc)
abstract protected void setSelectionToWidget(List l, boolean reveal)(Code)(Java Doc)
protected void setSelectionToWidget(ISelection selection, boolean reveal)(Code)(Java Doc)
public void setSorter(ViewerSorter sorter)(Code)(Java Doc)
public void setUseHashlookup(boolean enable)(Code)(Java Doc)
public Widget testFindItem(Object element)(Code)(Java Doc)
public Widget[] testFindItems(Object element)(Code)(Java Doc)
protected void unmapAllElements()(Code)(Java Doc)
protected void unmapElement(Object element)(Code)(Java Doc)
protected void unmapElement(Object element, Widget item)(Code)(Java Doc)
public void update(Object[] elements, String[] properties)(Code)(Java Doc)
public void update(Object element, String[] properties)(Code)(Java Doc)
final protected void updateItem(Widget widget, Object element)(Code)(Java Doc)
protected void updateSelection(ISelection selection)(Code)(Java Doc)
protected boolean usingElementMap()(Code)(Java Doc)

Methods inherited from org.eclipse.jface.viewers.ContentViewer
public IContentProvider getContentProvider()(Code)(Java Doc)
public Object getInput()(Code)(Java Doc)
public IBaseLabelProvider getLabelProvider()(Code)(Java Doc)
protected void handleDispose(DisposeEvent event)(Code)(Java Doc)
protected void handleLabelProviderChanged(LabelProviderChangedEvent event)(Code)(Java Doc)
protected void hookControl(Control control)(Code)(Java Doc)
protected void labelProviderChanged()(Code)(Java Doc)
public void setContentProvider(IContentProvider contentProvider)(Code)(Java Doc)
public void setInput(Object input)(Code)(Java Doc)
public void setLabelProvider(IBaseLabelProvider labelProvider)(Code)(Java Doc)

Fields inherited from org.eclipse.jface.viewers.Viewer
final protected static String WIDGET_DATA_KEY(Code)(Java Doc)

Methods inherited from org.eclipse.jface.viewers.Viewer
public void addHelpListener(HelpListener listener)(Code)(Java Doc)
public void addSelectionChangedListener(ISelectionChangedListener listener)(Code)(Java Doc)
protected void fireHelpRequested(HelpEvent event)(Code)(Java Doc)
protected void fireSelectionChanged(SelectionChangedEvent event)(Code)(Java Doc)
abstract public Control getControl()(Code)(Java Doc)
public Object getData(String key)(Code)(Java Doc)
abstract public Object getInput()(Code)(Java Doc)
abstract public ISelection getSelection()(Code)(Java Doc)
protected void handleHelpRequest(HelpEvent event)(Code)(Java Doc)
protected void inputChanged(Object input, Object oldInput)(Code)(Java Doc)
abstract public void refresh()(Code)(Java Doc)
public void removeHelpListener(HelpListener listener)(Code)(Java Doc)
public void removeSelectionChangedListener(ISelectionChangedListener listener)(Code)(Java Doc)
public Item scrollDown(int x, int y)(Code)(Java Doc)
public Item scrollUp(int x, int y)(Code)(Java Doc)
public void setData(String key, Object value)(Code)(Java Doc)
abstract public void setInput(Object input)(Code)(Java Doc)
public void setSelection(ISelection selection)(Code)(Java Doc)
abstract public void setSelection(ISelection selection, boolean reveal)(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.