Java Doc for Property.java in  » Content-Management-System » harmonise » org » openharmonise » rm » resources » metadata » properties » 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.metadata.properties 
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
            org.openharmonise.rm.resources.AbstractChildObject
               org.openharmonise.rm.resources.metadata.properties.Property

All known Subclasses:   org.openharmonise.rm.resources.workflow.properties.WorkflowProperty,
Property
public class Property extends AbstractChildObject implements Publishable,Editable,DataStoreObject,Cloneable(Code)
Class which represents a metadata property in the Harmonise framework, having a Range which determines what values an instance of this Property may have and a set of Domains which determine what objects may have an instance of this Property.
author:
   Michael Bell
version:
   $Revision: 1.5 $


Field Summary
final public static  StringATTRIB_DESCRIPTION
    
final public static  StringATTRIB_OPERATOR
    
final public static  StringTAG_DOMAIN_LIST
    
final public static  StringTAG_PROPERTY
    
protected static  StringTYPE_PROPERTY
    
protected  Listm_add_domains
    
protected  booleanm_bIsDomainPopulated
    
protected  Listm_domains
    
protected  Rangem_range
    
protected  Listm_remove_domains
    

Constructor Summary
public  Property()
    
public  Property(AbstractDataStoreInterface dbintrf)
     Constructs a Property with an interface to the data store.
public  Property(AbstractDataStoreInterface dbintrf, int nId)
     Constructs a known existing Property with an interface to the data store.
public  Property(AbstractDataStoreInterface dbintrf, int nId, int nKey, boolean bIsHist)
     Constructs Property with the specified id and unique key which may be historical.

Method Summary
protected  voidaddColumnsToPopulateQuery(SelectStatement select, boolean bIsHist)
    
protected  voidaddDataToSave(InsertStatement insert)
    
public  voidaddDomain(Domain domain)
     Adds the given Domain to this Property.
protected  voidcheckDomainAndRange(Domain domain)
     Checks domain had valid data given the current property range.
public  Objectclone()
    
protected  voiddelete(boolean bDeleteHist)
    
protected  voidfullPopulate()
    
public  StringgetDBTableName()
    
public  DomaingetDomain(AbstractProfiledObject profObj)
     Returns the Domain of this Property which matches the specified AbstractProfiledObject.
public  DomaingetDomain(String domainObject, String domainDetails)
    
public  ListgetDomains()
     Returns the list of domain restrictions on this Property.
public  ColumnRefgetInstanceColumnRef(String sColumn, boolean bIsHist)
    
public  JoinConditionsgetInstanceJoinConditions(String sObjectTag, boolean bIsOuter)
    
public  StringgetParentObjectClassName()
    
public  RangegetRange()
     Returns the Range of this Property.
public  StringgetTagName()
    
public  booleanisChanged()
    
public  booleanisValidProfiledObject(AbstractProfiledObject obj)
     Returns true if the specified AbstarctProfiledObject can have an instance of this Property in its Profile.
public  voidmarkAsNew()
    
public  voidpopulate(Element xmlElement, State state)
    
protected synchronized  voidpopulateDomainFromDatabase()
     Populates the list of Domains from the database for this Property.
protected  voidpopulateFromResultSetRow(ResultSet rs, SelectStatement select)
    
public  Elementpublish(Element topEl, HarmoniseOutput xmlDoc, State state)
    
public  voidremoveDomain(Domain domain)
     Removes the given Domain from this Property.
protected  voidsaveCoreData()
    
protected  voidsaveNonCoreData()
    
public  voidsetDomains(List domains)
    
public  voidsetHistorical(boolean bIsHistorical)
    
public  voidsetName(String sName)
    
public  voidsetRange(Range range)
     Sets the Range for this Property.
protected  voidupdate()
    

Field Detail
ATTRIB_DESCRIPTION
final public static String ATTRIB_DESCRIPTION(Code)
The description XML attribute name



ATTRIB_OPERATOR
final public static String ATTRIB_OPERATOR(Code)
The operator XML attribute name



TAG_DOMAIN_LIST
final public static String TAG_DOMAIN_LIST(Code)
The domain list XML element name



TAG_PROPERTY
final public static String TAG_PROPERTY(Code)
The property XML element name



TYPE_PROPERTY
protected static String TYPE_PROPERTY(Code)
The constant value for the type field for Property



m_add_domains
protected List m_add_domains(Code)
The List of Domains that have to be added at the next save operation



m_bIsDomainPopulated
protected boolean m_bIsDomainPopulated(Code)
boolean flag to indicate whether the List of Domains has been populated



m_domains
protected List m_domains(Code)
The List of Domains for this Property



m_range
protected Range m_range(Code)
The Range for this Property



m_remove_domains
protected List m_remove_domains(Code)
The List of Domains that have to be removed at the next save operation




Constructor Detail
Property
public Property()(Code)
Constructs a new Property



Property
public Property(AbstractDataStoreInterface dbintrf)(Code)
Constructs a Property with an interface to the data store.
Parameters:
  dbintrf - the data store interface



Property
public Property(AbstractDataStoreInterface dbintrf, int nId)(Code)
Constructs a known existing Property with an interface to the data store.
Parameters:
  dbintrf - the data store interface
Parameters:
  nId - the id of the Property



Property
public Property(AbstractDataStoreInterface dbintrf, int nId, int nKey, boolean bIsHist)(Code)
Constructs Property with the specified id and unique key which may be historical.
Parameters:
  dbintrf - the data store interface
Parameters:
  nId - the Property id
Parameters:
  nKey - the unique key of the Property
Parameters:
  bIsHist - true if the Property is to bea historical version




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



addDataToSave
protected void addDataToSave(InsertStatement insert) throws DataStoreException(Code)



addDomain
public void addDomain(Domain domain) throws PopulateException(Code)
Adds the given Domain to this Property.
Parameters:
  domain - the Domain to add
throws:
  PopulateException - if there is an error populating the domainsfrom the database



checkDomainAndRange
protected void checkDomainAndRange(Domain domain) throws EditException(Code)
Checks domain had valid data given the current property range.
Parameters:
  domain - the domain to check
throws:
  EditException - if an error occurs



clone
public Object clone()(Code)



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



fullPopulate
protected void fullPopulate() throws PopulateException(Code)



getDBTableName
public String getDBTableName()(Code)



getDomain
public Domain getDomain(AbstractProfiledObject profObj) throws DataAccessException(Code)
Returns the Domain of this Property which matches the specified AbstractProfiledObject.
Parameters:
  profObj - the profiled object the Domain which matches the specified AbstractProfiledObject
throws:
  DataAccessException - if an error occurs populating the listof Domains



getDomain
public Domain getDomain(String domainObject, String domainDetails) throws DataAccessException(Code)

Parameters:
  domainObject -
Parameters:
  domainDetails -
throws:
  DataAccessException -



getDomains
public List getDomains() throws DataAccessException(Code)
Returns the list of domain restrictions on this Property. the list of domain restrictions on this Property
throws:
  DataAccessException - if there is an error populating the domainsfrom the database



getInstanceColumnRef
public ColumnRef getInstanceColumnRef(String sColumn, boolean bIsHist) throws DataStoreException(Code)



getInstanceJoinConditions
public JoinConditions getInstanceJoinConditions(String sObjectTag, boolean bIsOuter) throws DataStoreException(Code)



getParentObjectClassName
public String getParentObjectClassName()(Code)



getRange
public Range getRange() throws DataAccessException(Code)
Returns the Range of this Property. the Range of this Property.



getTagName
public String getTagName()(Code)



isChanged
public boolean isChanged() throws DataAccessException(Code)



isValidProfiledObject
public boolean isValidProfiledObject(AbstractProfiledObject obj) throws DataAccessException(Code)
Returns true if the specified AbstarctProfiledObject can have an instance of this Property in its Profile.
Parameters:
  obj - the profiled object true if this Property can be applied to the specified profiled object
throws:
  DataAccessException - if an error occurs populating the Domainsof this Property



markAsNew
public void markAsNew() throws PopulateException(Code)



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



populateDomainFromDatabase
protected synchronized void populateDomainFromDatabase() throws PopulateException(Code)
Populates the list of Domains from the database for this Property.
throws:
  PopulateException - if there is an error populating the datafrom the database



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



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



removeDomain
public void removeDomain(Domain domain) throws PopulateException(Code)
Removes the given Domain from this Property.
Parameters:
  domain - the Domain to remove
throws:
  PopulateException - if an error occurs populating the listof Domains



saveCoreData
protected void saveCoreData() throws EditException(Code)



saveNonCoreData
protected void saveNonCoreData() throws EditException(Code)



setDomains
public void setDomains(List domains) throws PopulateException(Code)
Sets the complete list of Domains for this Property, overwriting the current list
Parameters:
  domains - the list of new Domains
throws:
  PopulateException - if there is an error populating the list ofDomains



setHistorical
public void setHistorical(boolean bIsHistorical)(Code)



setName
public void setName(String sName) throws InvalidNameException(Code)



setRange
public void setRange(Range range) throws PopulateException(Code)
Sets the Range for this Property.
Parameters:
  range - the Range for this Property
throws:
  PopulateException - if an error occurs populating this Property



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



Fields inherited from org.openharmonise.rm.resources.AbstractChildObject
final public static String ARCHIVE_TIMESTAMP_FORMAT(Code)(Java Doc)
final public static String ATTRIB_DEFAULT(Code)(Java Doc)
final public static String ATTRIB_SHOWALL(Code)(Java Doc)
final protected static String CLMN_CHILD_KEY(Code)(Java Doc)
final protected static String CLMN_DATE(Code)(Java Doc)
final protected static String CLMN_DEFAULT_LINK(Code)(Java Doc)
final protected static String CLMN_PARENT_KEY(Code)(Java Doc)
final protected static String CLMN_PATH(Code)(Java Doc)
final protected static String IS_DEFAULT_GROUP(Code)(Java Doc)
final public static String JOIN_TO(Code)(Java Doc)
final public static String TAG_GROUP(Code)(Java Doc)
final public static String TAG_PATH(Code)(Java Doc)
protected boolean m_bIsGroupsPopulated(Code)(Java Doc)
protected static Map m_child_parent_mappings(Code)(Java Doc)
protected int m_defaultGroup(Code)(Java Doc)
protected Map m_groups(Code)(Java Doc)
protected List m_groups_to_save(Code)(Java Doc)
protected String m_sGroupClass(Code)(Java Doc)
protected String m_sPath(Code)(Java Doc)
final public static String separator(Code)(Java Doc)

Methods inherited from org.openharmonise.rm.resources.AbstractChildObject
protected void addColumnsToPopulateQuery(SelectStatement select, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
protected void addDataToSave(InsertStatement insert) throws DataStoreException(Code)(Java Doc)
protected void addParent(AbstractParentObject group) throws PopulateException(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)
protected AbstractParentObject createGroupFromPath(String sFullPath) throws EditException(Code)(Java Doc)
protected void delete(boolean bDeleteHist) throws DataStoreException, DataAccessException, EditException, PopulateException(Code)(Java Doc)
protected void fullPopulate() throws PopulateException(Code)(Java Doc)
public List getAllFullPaths() throws DataAccessException(Code)(Java Doc)
public List getAllPaths() throws DataAccessException(Code)(Java Doc)
public static ColumnRef getColumnRef(String sClassname, String sColumn, boolean bHist) throws DataStoreException(Code)(Java Doc)
public String getFullPath() throws DataAccessException(Code)(Java Doc)
public ColumnRef getInstanceColumnRef(String sColumn, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
public static ColumnRef getObjectColumnRef(String sTable, String sColumn) throws DataStoreException(Code)(Java Doc)
protected ColumnRef getParentChildJoinColumnRef(String sCol) throws DataStoreException(Code)(Java Doc)
abstract public String getParentObjectClassName()(Code)(Java Doc)
public static String getParentObjectClassName(String sChildClassname) throws DataAccessException(Code)(Java Doc)
public List getParents() throws DataAccessException(Code)(Java Doc)
public String getPath() throws DataAccessException(Code)(Java Doc)
public AbstractParentObject getRealParent() throws DataAccessException(Code)(Java Doc)
public boolean isChanged() throws DataAccessException(Code)(Java Doc)
public boolean isRealParent(AbstractParentObject obj) throws DataAccessException(Code)(Java Doc)
public void markAsNew() throws PopulateException(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)
protected void populateGroupsFromDatabase() throws PopulateException(Code)(Java Doc)
public org.w3c.dom.Element publish(Element topEl, HarmoniseOutput xmlDoc, State state) throws PublishException(Code)(Java Doc)
public Editable reactivate() throws EditException(Code)(Java Doc)
protected void removeParent(AbstractParentObject group) throws PopulateException(Code)(Java Doc)
protected void saveCoreData() throws EditException(Code)(Java Doc)
protected void setRealParent(AbstractParentObject group) throws PopulateException(Code)(Java Doc)
protected void update() throws EditException, DataStoreException(Code)(Java Doc)
protected void updateParents() throws EditException(Code)(Java Doc)

Fields inherited from org.openharmonise.rm.resources.AbstractProfiledObject
final public static String DEFAULT_PROFILE_NAME(Code)(Java Doc)
protected Map m_profiles(Code)(Java Doc)
protected List m_profiles2Remove(Code)(Java Doc)
protected String m_sDefaultKey(Code)(Java Doc)

Methods inherited from org.openharmonise.rm.resources.AbstractProfiledObject
protected void addColumnsToPopulateQuery(SelectStatement select, boolean bIsHist) throws DataStoreException(Code)(Java Doc)
public void addProfile(Profile profile) throws InvalidProfileException(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)
protected void delete(boolean bDeleteHistory) throws DataStoreException, DataAccessException, EditException, PopulateException(Code)(Java Doc)
protected void fillProfiles() throws PopulateException(Code)(Java Doc)
protected void fullPopulate() throws PopulateException(Code)(Java Doc)
public int getNumProfiles() throws DataAccessException(Code)(Java Doc)
public Profile getProfile() throws DataAccessException(Code)(Java Doc)
public Profile getProfile(String sName) throws DataAccessException(Code)(Java Doc)
public List getProfiles() throws DataAccessException(Code)(Java Doc)
public Map getProfilesMap() throws DataAccessException(Code)(Java Doc)
public AbstractPropertyInstance getPropertyInstance(String sPropName) throws InvalidPropertyInstanceException, DataAccessException(Code)(Java Doc)
public AbstractPropertyInstance getPropertyInstance(Property prop) throws InvalidPropertyInstanceException, DataAccessException(Code)(Java Doc)
public void ignoreProfileRestrictions(boolean bIgnore)(Code)(Java Doc)
public boolean isChanged() throws DataAccessException(Code)(Java Doc)
public boolean isDefaultProfile(Profile prof)(Code)(Java Doc)
protected boolean isProfileLoaded(String sName)(Code)(Java Doc)
public void markAsNew() throws PopulateException(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 List processResultSet(CachedResultSet rs, SelectStatement select)(Code)(Java Doc)
public List processResultSet(CachedResultSet rs, SelectStatement select, int nLimit)(Code)(Java Doc)
public Element publish(Element topEl, HarmoniseOutput xmlDoc, State state) throws PublishException(Code)(Java Doc)
public void removeProfile(String sProfile) throws DataAccessException(Code)(Java Doc)
protected void saveCoreData() throws EditException(Code)(Java Doc)
protected void setDefaultProfile(String sName) throws InvalidProfileException, DataAccessException(Code)(Java Doc)
public void setHistorical(boolean bIsHistorical)(Code)(Java Doc)
public void setProfile(Profile profile) throws InvalidProfileException(Code)(Java Doc)
protected void setProfiles(List profiles) throws InvalidProfileException(Code)(Java Doc)
protected void setProfiles(Map profiles)(Code)(Java Doc)
protected void setProfilesHistorical(boolean bIsHistorical)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
protected void update() throws DataStoreException, EditException(Code)(Java Doc)

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.