Java Doc for AbstractProfiledObject.java in  » Content-Management-System » harmonise » org » openharmonise » rm » resources » 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 » Content Management System » harmonise » org.openharmonise.rm.resources 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.openharmonise.rm.resources.AbstractObject
      org.openharmonise.rm.resources.AbstractEditableObject
         org.openharmonise.rm.resources.AbstractProfiledObject

All known Subclasses:   org.openharmonise.rm.resources.AbstractChildObject,  org.openharmonise.rm.tasks.Task,
AbstractProfiledObject
abstract public class AbstractProfiledObject extends AbstractEditableObject implements Editable,Publishable,DataStoreObject,Cloneable(Code)
Abstract class which adds metadata functionality to the AbstractEditableObject class.
author:
   Michael Bell
version:
   $Revision: 1.4 $


Field Summary
final public static  StringDEFAULT_PROFILE_NAME
    
protected  Mapm_profiles
     Map of all profiles this profiled object has.
protected  Listm_profiles2Remove
    
protected  Stringm_sDefaultKey
    

Constructor Summary
public  AbstractProfiledObject()
    
public  AbstractProfiledObject(AbstractDataStoreInterface dbintrf)
     Constructor for a new or anonymous resource.
public  AbstractProfiledObject(AbstractDataStoreInterface dbintrf, int nId)
     Standard constructor for an existing resource, registering an AbstractDataStoreInterface to use with all database communications.
public  AbstractProfiledObject(AbstractDataStoreInterface dbintrf, int nId, int nKey, boolean bIsHist)
     Standard constructor for an existing resource which may be historical.

Method Summary
protected  voidaddColumnsToPopulateQuery(SelectStatement select, boolean bIsHist)
    
public  voidaddProfile(Profile profile)
     Add the given Profile to this object.
public  EditablechangeStatus(Status status)
    
public  voidclear()
    
public  Objectclone()
    
protected  voiddelete(boolean bDeleteHistory)
    
protected  voidfillProfiles()
     Fully populates all profiles.
protected  voidfullPopulate()
    
public  intgetNumProfiles()
     Returns the number of profiles.
public  ProfilegetProfile()
     Returns the default Profile for this object.
public  ProfilegetProfile(String sName)
     Returns the Profile of this object with the specified name.
public  ListgetProfiles()
     Returns a list of this resource's Profiles.
public  MapgetProfilesMap()
     Returns a Map of profiles.
public  AbstractPropertyInstancegetPropertyInstance(String sPropName)
     Returns the property instance of the given name from the default profile.
public  AbstractPropertyInstancegetPropertyInstance(Property prop)
     Returns the AbstractPropertyInstance associated with the specified Property from a Profile of this object.
public  voidignoreProfileRestrictions(boolean bIgnore)
     Sets whether to allow object to have status approved even if profile restrictions have been broken.
public  booleanisChanged()
    
public  booleanisDefaultProfile(Profile prof)
     Returns true if the specified profile is this object's default profile.
protected  booleanisProfileLoaded(String sName)
     Returns true if object contains a profile of the specified name.
public  voidmarkAsNew()
    
public  voidpopulate(Element xmlElement, State state)
    
protected  voidpopulateFromResultSetRow(ResultSet rs, SelectStatement select)
    
public  ListprocessResultSet(CachedResultSet rs, SelectStatement select)
    
public  ListprocessResultSet(CachedResultSet rs, SelectStatement select, int nLimit)
    
public  Elementpublish(Element topEl, HarmoniseOutput xmlDoc, State state)
    
public  voidremoveProfile(String sProfile)
     Removes the specified Profile from this object.
protected  voidsaveCoreData()
    
protected  voidsetDefaultProfile(String sName)
     Sets the Profile with the specified name as the default.
public  voidsetHistorical(boolean bIsHistorical)
    
public  voidsetProfile(Profile profile)
     Sets the default Profile.
protected  voidsetProfiles(List profiles)
     Set the profiles of this object.
protected  voidsetProfiles(Map profiles)
     Sets the profiles of this object.
protected  voidsetProfilesHistorical(boolean bIsHistorical)
     Sets whether all profiles are historical.
public  StringtoString()
    
protected  voidupdate()
    

Field Detail
DEFAULT_PROFILE_NAME
final public static String DEFAULT_PROFILE_NAME(Code)
The default profile name



m_profiles
protected Map m_profiles(Code)
Map of all profiles this profiled object has. The profiles are keyed by their name field



m_profiles2Remove
protected List m_profiles2Remove(Code)
List of profiles to be removed during the next save() operation



m_sDefaultKey
protected String m_sDefaultKey(Code)
The Map key of the default profile




Constructor Detail
AbstractProfiledObject
public AbstractProfiledObject()(Code)
Constructs a new or anonymous resource without an interface to the database



AbstractProfiledObject
public AbstractProfiledObject(AbstractDataStoreInterface dbintrf)(Code)
Constructor for a new or anonymous resource.
Parameters:
  dbintrf - the data store interface



AbstractProfiledObject
public AbstractProfiledObject(AbstractDataStoreInterface dbintrf, int nId)(Code)
Standard constructor for an existing resource, registering an AbstractDataStoreInterface to use with all database communications.
Parameters:
  dbintrf - the interface to the database
Parameters:
  nId - the id of the resource



AbstractProfiledObject
public AbstractProfiledObject(AbstractDataStoreInterface dbintrf, int nId, int nKey, boolean bIsHist)(Code)
Standard constructor for an existing resource which may be historical.
Parameters:
  dbintrf - the interface to the database
Parameters:
  nId - the id of the resource
Parameters:
  nKey - the unique key of the resource
Parameters:
  bIsHist - true if the resource is historical




Method Detail
addColumnsToPopulateQuery
protected void addColumnsToPopulateQuery(SelectStatement select, boolean bIsHist) throws DataStoreException(Code)



addProfile
public void addProfile(Profile profile) throws InvalidProfileException(Code)
Add the given Profile to this object.
Parameters:
  profile - the new Profile to add.
throws:
  InvalidProfileException - if the given profile is invalid, for example if the profile has an invalid name



changeStatus
public Editable changeStatus(Status status) throws EditException(Code)



clear
public void clear()(Code)



clone
public Object clone()(Code)



delete
protected void delete(boolean bDeleteHistory) throws DataStoreException, DataAccessException, EditException, PopulateException(Code)



fillProfiles
protected void fillProfiles() throws PopulateException(Code)
Fully populates all profiles.
throws:
  PopulateException - if there is an error populating a profile



fullPopulate
protected void fullPopulate() throws PopulateException(Code)



getNumProfiles
public int getNumProfiles() throws DataAccessException(Code)
Returns the number of profiles. the number of profiles
throws:
  DataAccessException - if an error occurs populating this object



getProfile
public Profile getProfile() throws DataAccessException(Code)
Returns the default Profile for this object. the default Profile for this object
throws:
  DataAccessException - if an error occurs populating this object



getProfile
public Profile getProfile(String sName) throws DataAccessException(Code)
Returns the Profile of this object with the specified name.
Parameters:
  sName - the name of the profile the profile with the specified name
throws:
  DataAccessException - if an error occurs populating this object



getProfiles
public List getProfiles() throws DataAccessException(Code)
Returns a list of this resource's Profiles. a list of this resource's Profiles
throws:
  DataAccessException - if an error occurs populating this resource



getProfilesMap
public Map getProfilesMap() throws DataAccessException(Code)
Returns a Map of profiles. Map of profiles, keyed by their profile names
throws:
  DataAccessException - if an error occurs populating this object



getPropertyInstance
public AbstractPropertyInstance getPropertyInstance(String sPropName) throws InvalidPropertyInstanceException, DataAccessException(Code)
Returns the property instance of the given name from the default profile.
Parameters:
  sPropName - the name of the property the property instance corresponding to the property name
throws:
  InvalidPropertyInstanceException - if the property is invalid for this object
throws:
  DataAccessException - if there is an error populating this object



getPropertyInstance
public AbstractPropertyInstance getPropertyInstance(Property prop) throws InvalidPropertyInstanceException, DataAccessException(Code)
Returns the AbstractPropertyInstance associated with the specified Property from a Profile of this object.
Parameters:
  prop -
throws:
  InvalidPropertyInstanceException -
throws:
  DataAccessException -



ignoreProfileRestrictions
public void ignoreProfileRestrictions(boolean bIgnore)(Code)
Sets whether to allow object to have status approved even if profile restrictions have been broken.
Parameters:
  bIgnore - true if profile restrictoins areto ignored during a change of status



isChanged
public boolean isChanged() throws DataAccessException(Code)



isDefaultProfile
public boolean isDefaultProfile(Profile prof)(Code)
Returns true if the specified profile is this object's default profile.
Parameters:
  prof - the profile to test default status on true if the specified profile is the default



isProfileLoaded
protected boolean isProfileLoaded(String sName)(Code)
Returns true if object contains a profile of the specified name.
Parameters:
  sName - the name of a profile true if object contains a profile of the specified name



markAsNew
public void markAsNew() throws PopulateException(Code)



populate
public void populate(Element xmlElement, State state) throws PopulateException(Code)



populateFromResultSetRow
protected void populateFromResultSetRow(ResultSet rs, SelectStatement select) throws PopulateException(Code)



processResultSet
public List processResultSet(CachedResultSet rs, SelectStatement select)(Code)



processResultSet
public List processResultSet(CachedResultSet rs, SelectStatement select, int nLimit)(Code)



publish
public Element publish(Element topEl, HarmoniseOutput xmlDoc, State state) throws PublishException(Code)



removeProfile
public void removeProfile(String sProfile) throws DataAccessException(Code)
Removes the specified Profile from this object.
Parameters:
  sProfile - the Profile to remove
throws:
  DataAccessException - if there was an error populating this object



saveCoreData
protected void saveCoreData() throws EditException(Code)



setDefaultProfile
protected void setDefaultProfile(String sName) throws InvalidProfileException, DataAccessException(Code)
Sets the Profile with the specified name as the default.
Parameters:
  sProfile - the name of the Profile to be the default
throws:
  InvalidProfileException - if the named Profile doesnot exist
throws:
  DataAccessException - if there is an error populating this object



setHistorical
public void setHistorical(boolean bIsHistorical)(Code)



setProfile
public void setProfile(Profile profile) throws InvalidProfileException(Code)
Sets the default Profile.
Parameters:
  profile - the default Profile
throws:
  InvalidProfileException - if the profile name is invalid



setProfiles
protected void setProfiles(List profiles) throws InvalidProfileException(Code)
Set the profiles of this object.
Parameters:
  profiles - the list profiles
throws:
  InvalidProfileException - if an invalid profile is found in the list,for example if a profile does not have a valid name



setProfiles
protected void setProfiles(Map profiles)(Code)
Sets the profiles of this object.
Parameters:
  profiles - a Map of profiles



setProfilesHistorical
protected void setProfilesHistorical(boolean bIsHistorical)(Code)
Sets whether all profiles are historical.
Parameters:
  bIsHistorical - true of all profiles are to be historical



toString
public String toString()(Code)



update
protected void update() throws DataStoreException, EditException(Code)



Fields inherited from org.openharmonise.rm.resources.AbstractEditableObject
final public static String ATTRIB_IS_LOCKED(Code)(Java Doc)
final protected static String CLMN_DISPLAY_NAME(Code)(Java Doc)
final public static String TAG_DISPLAY_NAME(Code)(Java Doc)
final public static String TAG_HISTORICAL_VERSION(Code)(Java Doc)
final public static String TAG_HISTORY_DATE(Code)(Java Doc)
final public static String TAG_LIVE_VERSION(Code)(Java Doc)
final public static String TAG_LOCKED(Code)(Java Doc)
final public static String TAG_PENDING_VERSION(Code)(Java Doc)
final public static String TAG_STATUS(Code)(Java Doc)
final public static String TAG_VERSION(Code)(Java Doc)
final public static String TAG_VERSION_COMMENT(Code)(Java Doc)
final public static String TAG_VERSION_DATE(Code)(Java Doc)
protected java.util.Date m_dtHistDate(Code)(Java Doc)
protected java.util.Date m_dtVersionDate(Code)(Java Doc)
protected int m_nLiveId(Code)(Java Doc)
protected int m_nLockUserId(Code)(Java Doc)
protected int m_nVersionNumber(Code)(Java Doc)
protected CachePointer m_pending(Code)(Java Doc)
protected String m_sDisplayName(Code)(Java Doc)
protected String m_sVersionComment(Code)(Java Doc)
protected Status m_status(Code)(Java Doc)

Methods inherited from org.openharmonise.rm.resources.AbstractEditableObject
public void acquireEditWriteLock() throws EditException(Code)(Java Doc)
protected void addColumnsToPopulateQuery(SelectStatement select, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
protected void addDataToSave(InsertStatement insert) throws DataStoreException(Code)(Java Doc)
public void addEditEventListener(EditEventListener listener)(Code)(Java Doc)
public Editable archive() throws EditException(Code)(Java Doc)
public Editable changeStatus(Status status) throws EditException(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
public Editable createNewVersion() throws EditException(Code)(Java Doc)
protected void delete(boolean bDeleteHist) throws DataStoreException, DataAccessException, EditException, PopulateException(Code)(Java Doc)
public List getAllVersions() throws DataAccessException(Code)(Java Doc)
public static ColumnRef getColumnRef(String sClassname, String sColumn, boolean bHist) throws DataStoreException(Code)(Java Doc)
public String getDisplayName() throws DataAccessException(Code)(Java Doc)
public List getHistoricalVersions() throws DataAccessException(Code)(Java Doc)
public java.util.Date getHistoryDate() throws DataAccessException(Code)(Java Doc)
public ColumnRef getInstanceColumnRef(String sColumn, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
public Editable getLiveVersion() throws DataAccessException(Code)(Java Doc)
public User getLockOwner() throws DataAccessException(Code)(Java Doc)
public int getLockUserId() throws DataAccessException(Code)(Java Doc)
public static ColumnRef getObjectColumnRef(String sTable, String sColumn) throws DataStoreException(Code)(Java Doc)
public List getPendingVersions() throws DataAccessException(Code)(Java Doc)
public Status getStatus() throws DataAccessException(Code)(Java Doc)
public String getVersionComment() throws DataAccessException(Code)(Java Doc)
public java.util.Date getVersionDate() throws DataAccessException(Code)(Java Doc)
public int getVersionNumber() throws DataAccessException(Code)(Java Doc)
protected boolean isKeySupported()(Code)(Java Doc)
public boolean isLiveVersion() throws DataAccessException(Code)(Java Doc)
protected boolean isLockThread()(Code)(Java Doc)
public boolean isLocked() throws DataAccessException(Code)(Java Doc)
public boolean isPendingVersion() throws DataAccessException(Code)(Java Doc)
public synchronized void lock(User usr) throws EditException(Code)(Java Doc)
public void populate(Element xmlElement, State state) throws PopulateException(Code)(Java Doc)
protected void populateFromResultSetRow(ResultSet rs, SelectStatement select) throws PopulateException(Code)(Java Doc)
public Element publish(Element topEl, HarmoniseOutput xmlDoc, State state) throws PublishException(Code)(Java Doc)
public Editable reactivate() throws EditException(Code)(Java Doc)
public void releaseEditWriteLock()(Code)(Java Doc)
public void removeEditEventListener(EditEventListener listener)(Code)(Java Doc)
public Editable save() throws EditException(Code)(Java Doc)
abstract protected void saveCoreData() throws EditException(Code)(Java Doc)
abstract protected void saveNonCoreData() throws EditException(Code)(Java Doc)
public void setDisplayName(String sDisplayName)(Code)(Java Doc)
public void setVersionComment(String sVersionComment)(Code)(Java Doc)
public void unlock(User usr) throws EditException(Code)(Java Doc)
protected void update() throws DataStoreException, EditException(Code)(Java Doc)
protected void updateDBStatus() throws PopulateException(Code)(Java Doc)
public void workflowObjectArchived(EditEvent event)(Code)(Java Doc)
public void workflowObjectLocked(EditEvent event)(Code)(Java Doc)
public void workflowObjectReactivated(EditEvent event)(Code)(Java Doc)
public void workflowObjectSaved(EditEvent event)(Code)(Java Doc)
public void workflowObjectStatusChanged(EditEvent event)(Code)(Java Doc)
public void workflowObjectUnlocked(EditEvent event)(Code)(Java Doc)

Fields inherited from org.openharmonise.rm.resources.AbstractObject
final public static String ATTRIB_HISTORICAL(Code)(Java Doc)
final public static String ATTRIB_ID(Code)(Java Doc)
final public static String ATTRIB_KEY(Code)(Java Doc)
final public static String ATTRIB_NAME(Code)(Java Doc)
final public static String ATTRIB_OBJECT_TYPE(Code)(Java Doc)
final public static String ATTRIB_TYPE(Code)(Java Doc)
final protected static String CLMN_ID(Code)(Java Doc)
final protected static String CLMN_NAME(Code)(Java Doc)
final protected static String CLMN_SUMMARY(Code)(Java Doc)
final public static String EXT_HIST(Code)(Java Doc)
final public static int NOTDBSAVED_ID(Code)(Java Doc)
final public static int NOTDBSAVED_KEY(Code)(Java Doc)
final public static String TAG_HARMONISE_OBJECT(Code)(Java Doc)
final public static String TAG_LINK(Code)(Java Doc)
final public static String TAG_LINK_IMAGE(Code)(Java Doc)
final public static String TAG_LINK_TEXT(Code)(Java Doc)
final public static String TAG_NAME(Code)(Java Doc)
final public static String TAG_SUMMARY(Code)(Java Doc)
protected boolean m_bIsChanged(Code)(Java Doc)
protected boolean m_bIsPopulated(Code)(Java Doc)
protected AbstractDataStoreInterface m_dsi(Code)(Java Doc)
protected int m_nId(Code)(Java Doc)
protected int m_nObjectKey(Code)(Java Doc)
protected String m_sName(Code)(Java Doc)
protected String m_sSummary(Code)(Java Doc)
protected String m_sTable(Code)(Java Doc)
protected String m_sType(Code)(Java Doc)

Methods inherited from org.openharmonise.rm.resources.AbstractObject
public void addCacheListener(CacheListener listener)(Code)(Java Doc)
protected void addColumnsToPopulateQuery(SelectStatement select, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
public int compareTo(Object obj)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public boolean exists()(Code)(Java Doc)
protected void fullPopulate() throws PopulateException(Code)(Java Doc)
public List getCacheListeners()(Code)(Java Doc)
public static ColumnRef getColumnRef(AbstractObject obj, String sColumn) throws DataStoreException(Code)(Java Doc)
public static ColumnRef getColumnRef(String sClassname, String sColumn) throws DataStoreException(Code)(Java Doc)
public static ColumnRef getColumnRef(String sClassname, String sColumn, boolean bHist) throws DataStoreException(Code)(Java Doc)
protected static Collection getCoreColumnRefs(String sClassname) throws DataStoreException(Code)(Java Doc)
abstract public String getDBTableName()(Code)(Java Doc)
public AbstractDataStoreInterface getDataStoreInterface()(Code)(Java Doc)
protected String getHistoricalDBTableName()(Code)(Java Doc)
public int getId()(Code)(Java Doc)
public ColumnRef getInstanceColumnRef(String sColumn, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
public int getKey() throws DataAccessException(Code)(Java Doc)
public String getName() throws DataAccessException(Code)(Java Doc)
protected static ColumnRef getObjectColumnRef(String sDBTable, String sColumn) throws DataStoreException(Code)(Java Doc)
public String getSummary() throws DataAccessException(Code)(Java Doc)
public static String getTableName(String sClassname, boolean bHist) throws DataStoreException(Code)(Java Doc)
protected String getTableName(boolean bIsHist)(Code)(Java Doc)
public String getType() throws DataAccessException(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isChanged() throws DataAccessException(Code)(Java Doc)
public boolean isHistorical()(Code)(Java Doc)
abstract protected boolean isKeySupported()(Code)(Java Doc)
protected boolean isPopulated()(Code)(Java Doc)
protected void markAsNew() throws PopulateException(Code)(Java Doc)
public void notifyCacheListeners()(Code)(Java Doc)
public void populate(Element xmlElement, State state) throws PopulateException(Code)(Java Doc)
protected synchronized void populateFromDatabase() throws PopulateException(Code)(Java Doc)
protected void populateFromResultSetRow(ResultSet rs, SelectStatement select) throws PopulateException(Code)(Java Doc)
public Element publish(Template template, HarmoniseOutput xmlDoc, State state) throws PublishException(Code)(Java Doc)
public Element publish(Element topEl, HarmoniseOutput xmlDoc, State state) throws PublishException(Code)(Java Doc)
public void removeCacheListener(CacheListener listener)(Code)(Java Doc)
public void setDataStoreInterface(AbstractDataStoreInterface dsi) throws PopulateException(Code)(Java Doc)
public void setHistorical(boolean bIsHistorical)(Code)(Java Doc)
public void setId(int nId)(Code)(Java Doc)
public void setIsChanged(boolean bIsChanged)(Code)(Java Doc)
public void setKey(int nKey)(Code)(Java Doc)
public void setName(String sName) throws InvalidNameException(Code)(Java Doc)
public void setSummary(String sSummary)(Code)(Java Doc)
public void setType(String type)(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.