Java Doc for Record.java in  » Database-ORM » Torque » com » workingdogs » village » 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 » Database ORM » Torque » com.workingdogs.village 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.workingdogs.village.Record

Record
public class Record (Code)
A Record represents a row in the database. It contains a collection of Values which are the individual contents of each column in the row.
author:
   Jon S. Stevens
version:
   $Revision: 568 $



Constructor Summary
public  Record()
     This isn't used and doesn't do anything.
public  Record(DataSet ds)
     Creates a new Record and sets the parent dataset to the passed in value.
 Record(DataSet ds, boolean addRecord)
     This is a special case method for Record.

Method Summary
public  StringasFormattedString(String valueseparator, int[] maxwidths)
     return the value of each column as a string.
public  DataSetdataset()
    
public  StringgetRefreshQueryString()
     This builds the SELECT statement in order to refresh the contents of this Record.
public  StringgetSaveString()
     Gets the appropriate SQL string for this record.
 intgetSaveType()
    
public  ValuegetValue(int i)
    
public  ValuegetValue(String columnName)
    
public  booleanisAZombie()
     Determines if this record is a Zombie.
public  voidmarkForInsert()
     Marks this record to be inserted when a save is executed.
public  voidmarkForUpdate()
     Marks this record to be updated when a save is executed.
public  voidmarkRecordClean()
     Marks all the values in this record as clean.
public  RecordmarkToBeDeleted()
     Marks this record to be deleted when a save is executed.
public  voidmarkValueClean(int pos)
     marks a value at a given position as clean.
public  voidmarkValueClean(String columnName)
     marks a value with a given column name as clean.
public  voidmarkValueDirty(int pos)
     marks a value at a given position as dirty.
public  voidmarkValueDirty(String columnName)
     marks a value with a given column name as dirty.
public  booleanneedsToBeSaved()
     If the record is not clean, needs to be saved with an Update, Delete or Insert, it returns true.
public  booleanrecordIsClean()
     Goes through all the values in the record to determine if it is clean or not.
public  voidrefresh(Connection connection)
     This method refreshes this Record's Value's.
public  intsave()
     Saves the data in this Record to the database.
public  intsave(Connection connection)
     Saves the data in this Record to the database.
public  voidsaveWithoutStatusUpdate()
    
public  Schemaschema()
    
 voidsetParentDataSet(DataSet ds)
     Sets the parent DataSet for this record.
 voidsetSaveType(int type)
    
public  RecordsetValue(int pos, BigDecimal value)
    
public  RecordsetValue(int pos, boolean value)
    
public  RecordsetValue(int pos, byte[] value)
    
public  RecordsetValue(int pos, java.util.Date value)
    
public  RecordsetValue(int pos, java.sql.Date value)
    
public  RecordsetValue(int pos, double value)
    
public  RecordsetValue(int pos, float value)
    
public  RecordsetValue(int pos, int value)
    
public  RecordsetValue(int pos, long value)
    
public  RecordsetValue(int pos, String value)
    
public  RecordsetValue(int pos, java.sql.Time value)
    
public  RecordsetValue(int pos, java.sql.Timestamp value)
    
public  RecordsetValue(int pos, Value value)
    
public  RecordsetValue(String columnName, BigDecimal value)
    
public  RecordsetValue(String columnName, boolean value)
    
public  RecordsetValue(String columnName, byte[] value)
    
public  RecordsetValue(String columnName, java.util.Date value)
    
public  RecordsetValue(String columnName, java.sql.Date value)
    
public  RecordsetValue(String columnName, double value)
    
public  RecordsetValue(String columnName, float value)
    
public  RecordsetValue(String columnName, int value)
    
public  RecordsetValue(String columnName, long value)
    
public  RecordsetValue(String columnName, String value)
    
public  RecordsetValue(String columnName, java.sql.Time value)
    
public  RecordsetValue(String columnName, java.sql.Timestamp value)
    
public  RecordsetValue(String columnName, Value value)
    
public  RecordsetValueNull(int pos)
    
public  RecordsetValueNull(String columnName)
    
public  intsize()
    
public  booleantoBeSavedWithDelete()
    
public  booleantoBeSavedWithInsert()
    
public  booleantoBeSavedWithUpdate()
    
public  StringtoString()
    
public  RecordunmarkToBeDeleted()
     Unmarks a record that has been marked for deletion.
public  booleanvalueIsClean(int i)
     Determines whether or not a value stored in the record is clean.
 booleanvalueIsClean(String column)
     Determines whether or not a value stored in the record is clean.


Constructor Detail
Record
public Record()(Code)
This isn't used and doesn't do anything.



Record
public Record(DataSet ds) throws DataSetException, SQLException(Code)
Creates a new Record and sets the parent dataset to the passed in value. This method also creates the Value objects which are associated with this Record.
Parameters:
  ds - TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!
throws:
  SQLException - TODO: DOCUMENT ME!



Record
Record(DataSet ds, boolean addRecord) throws DataSetException, SQLException(Code)
This is a special case method for Record. This case is really only used when DataSet.addRecord() is called because we may not have an existing ResultSet so there will not be any values in the Value objects that are created. Passing null to createValues forces the Value object to be created, but no processing to be done within the Value object constructor.

This method is a package method only because it is really not useful outside of the package.


Parameters:
  ds - the dataset
Parameters:
  addRecord - whether or not this method is being called from DataSet.addRecord()
throws:
  DataSetException - TODO: DOCUMENT ME!
throws:
  SQLException - TODO: DOCUMENT ME!




Method Detail
asFormattedString
public String asFormattedString(String valueseparator, int[] maxwidths) throws DataSetException(Code)
return the value of each column as a string. Not yet implemented!
Parameters:
  valueseparator -
Parameters:
  maxwidths - the formatted string
exception:
  DataSetException -



dataset
public DataSet dataset()(Code)
Gets the DataSet for this Record the DataSet for this Record



getRefreshQueryString
public String getRefreshQueryString() throws DataSetException(Code)
This builds the SELECT statement in order to refresh the contents of this Record. It depends on a valid KeyDef to exist and it must have been created with a TableDataSet. the SELECT string
exception:
  DataSetException -



getSaveString
public String getSaveString() throws DataSetException(Code)
Gets the appropriate SQL string for this record. SQL string
throws:
  DataSetException - TODO: DOCUMENT ME!



getSaveType
int getSaveType()(Code)
gets the internal save type as one of the defined privates (ie: ZOMBIE) TODO: DOCUMENT ME!



getValue
public Value getValue(int i) throws DataSetException(Code)
gets the value at index i
Parameters:
  i - TODO: DOCUMENT ME! the Value object at index i
throws:
  DataSetException - TODO: DOCUMENT ME!



getValue
public Value getValue(String columnName) throws DataSetException(Code)
TODO: DOCUMENT ME!
Parameters:
  columnName - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



isAZombie
public boolean isAZombie()(Code)
Determines if this record is a Zombie. A Zombie is a record that has been deleted from the database, but not yet removed from the DataSet. a boolean



markForInsert
public void markForInsert() throws DataSetException(Code)
Marks this record to be inserted when a save is executed.
throws:
  DataSetException - TODO: DOCUMENT ME!



markForUpdate
public void markForUpdate() throws DataSetException(Code)
Marks this record to be updated when a save is executed.
throws:
  DataSetException - TODO: DOCUMENT ME!



markRecordClean
public void markRecordClean() throws DataSetException(Code)
Marks all the values in this record as clean.
throws:
  DataSetException - TODO: DOCUMENT ME!



markToBeDeleted
public Record markToBeDeleted() throws DataSetException(Code)
Marks this record to be deleted when a save is executed. TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



markValueClean
public void markValueClean(int pos) throws DataSetException(Code)
marks a value at a given position as clean.
Parameters:
  pos - TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



markValueClean
public void markValueClean(String columnName) throws DataSetException(Code)
marks a value with a given column name as clean.
Parameters:
  columnName - TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



markValueDirty
public void markValueDirty(int pos) throws DataSetException(Code)
marks a value at a given position as dirty.
Parameters:
  pos - TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



markValueDirty
public void markValueDirty(String columnName) throws DataSetException(Code)
marks a value with a given column name as dirty.
Parameters:
  columnName - TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



needsToBeSaved
public boolean needsToBeSaved()(Code)
If the record is not clean, needs to be saved with an Update, Delete or Insert, it returns true. boolean



recordIsClean
public boolean recordIsClean()(Code)
Goes through all the values in the record to determine if it is clean or not. true if clean



refresh
public void refresh(Connection connection) throws DataSetException, SQLException(Code)
This method refreshes this Record's Value's. It can only be performed on a Record that has not been modified and has been created with a TableDataSet and corresponding KeyDef.
Parameters:
  connection -
exception:
  DataSetException -
exception:
  SQLException -



save
public int save() throws DataSetException, SQLException(Code)
Saves the data in this Record to the database. Uses the parent dataset's connection. 1 if the save completed. 0 otherwise.
throws:
  DataSetException - TODO: DOCUMENT ME!
throws:
  SQLException - TODO: DOCUMENT ME!



save
public int save(Connection connection) throws DataSetException, SQLException(Code)
Saves the data in this Record to the database. Uses the connection passed into it.
Parameters:
  connection - TODO: DOCUMENT ME! 1 if the save completed. 0 otherwise.
throws:
  DataSetException - TODO: DOCUMENT ME!
throws:
  SQLException - TODO: DOCUMENT ME!



saveWithoutStatusUpdate
public void saveWithoutStatusUpdate() throws DataSetException(Code)
TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



schema
public Schema schema() throws DataSetException(Code)
Gets the schema for the parent DataSet the schema for the parent DataSet
throws:
  DataSetException - TODO: DOCUMENT ME!



setParentDataSet
void setParentDataSet(DataSet ds)(Code)
Sets the parent DataSet for this record.
Parameters:
  ds - TODO: DOCUMENT ME!



setSaveType
void setSaveType(int type)(Code)
sets the internal save type as one of the defined privates (ie: ZOMBIE)
Parameters:
  type - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, BigDecimal value) throws DataSetException(Code)
sets the value at pos with a BigDecimal
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, boolean value) throws DataSetException(Code)
sets the value at pos with a boolean
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, byte[] value) throws DataSetException(Code)
sets the value at pos with a byte[]
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, java.util.Date value) throws DataSetException(Code)
sets the value at pos with a java.util.Date
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, java.sql.Date value) throws DataSetException(Code)
sets the value at pos with a java.sql.Date
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, double value) throws DataSetException(Code)
sets the value at pos with a double
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, float value) throws DataSetException(Code)
sets the value at pos with a float
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, int value) throws DataSetException(Code)
sets the value at pos with a int
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, long value) throws DataSetException(Code)
sets the value at pos with a long
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, String value) throws DataSetException(Code)
sets the value at pos with a String
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, java.sql.Time value) throws DataSetException(Code)
sets the value at pos with a java.sql.Time
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, java.sql.Timestamp value) throws DataSetException(Code)
sets the value at pos with a java.sql.Timestamp
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(int pos, Value value) throws DataSetException(Code)
sets the value at pos with a Value
Parameters:
  pos - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, BigDecimal value) throws DataSetException(Code)
sets the value at column name with a BigDecimal
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, boolean value) throws DataSetException(Code)
sets the value at column name with a boolean
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, byte[] value) throws DataSetException(Code)
sets the value at column name with a byte[]
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, java.util.Date value) throws DataSetException(Code)
sets the value at column name with a java.util.Date
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, java.sql.Date value) throws DataSetException(Code)
sets the value at column name with a java.sql.Date
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, double value) throws DataSetException(Code)
sets the value at column name with a double
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, float value) throws DataSetException(Code)
sets the value at column name with a float
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, int value) throws DataSetException(Code)
sets the value at column name with a int
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, long value) throws DataSetException(Code)
sets the value at column name with a long
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, String value) throws DataSetException(Code)
sets the value at column name with a String
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, java.sql.Time value) throws DataSetException(Code)
sets the value at column name with a java.sql.Time
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, java.sql.Timestamp value) throws DataSetException(Code)
sets the value at column name with a java.sql.Timestamp
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValue
public Record setValue(String columnName, Value value) throws DataSetException(Code)
sets the value at column name with a Value
Parameters:
  columnName - TODO: DOCUMENT ME!
Parameters:
  value - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValueNull
public Record setValueNull(int pos) throws DataSetException(Code)
sets the value at pos with a NULL
Parameters:
  pos - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



setValueNull
public Record setValueNull(String columnName) throws DataSetException(Code)
sets the value at column name with a NULL
Parameters:
  columnName - TODO: DOCUMENT ME! TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!



size
public int size()(Code)
the number of columns in this object the number of columns in this object



toBeSavedWithDelete
public boolean toBeSavedWithDelete()(Code)
whether or not this Record is to be saved with an SQL delete statement true if saved with delete



toBeSavedWithInsert
public boolean toBeSavedWithInsert()(Code)
whether or not this Record is to be saved with an SQL insert statement true if saved with insert



toBeSavedWithUpdate
public boolean toBeSavedWithUpdate()(Code)
whether or not this Record is to be saved with an SQL update statement true if saved with update



toString
public String toString()(Code)
This returns a representation of this Record java.lang.String



unmarkToBeDeleted
public Record unmarkToBeDeleted() throws DataSetException(Code)
Unmarks a record that has been marked for deletion.

WARNING: You must reset the save type before trying to save this record again.

TODO: DOCUMENT ME!
throws:
  DataSetException - TODO: DOCUMENT ME!
See Also:   Record.markForUpdate()
See Also:   Record.markForInsert()
See Also:   Record.markToBeDeleted()



valueIsClean
public boolean valueIsClean(int i)(Code)
Determines whether or not a value stored in the record is clean.
Parameters:
  i - TODO: DOCUMENT ME! true if clean



valueIsClean
boolean valueIsClean(String column) throws DataSetException(Code)
Determines whether or not a value stored in the record is clean.
Parameters:
  column - TODO: DOCUMENT ME! true if clean
throws:
  DataSetException - TODO: DOCUMENT ME!



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.