Java Doc for IRuntimeElement.java in  » Report » pentaho-report » org » pentaho » core » repository » 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 » Report » pentaho report » org.pentaho.core.repository 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.pentaho.core.repository.IRuntimeElement

All known Subclasses:   org.pentaho.repository.runtime.RuntimeElement,  org.pentaho.core.repository.SimpleRuntimeElement,
IRuntimeElement
public interface IRuntimeElement (Code)




Method Summary
public  voidforceSave()
     Causes an immediate call to the underlying persistence mechanism's write-now method.
public  BigDecimalgetBigDecimalProperty(String key)
     Gets a BigDecimal property from the Runtime Element.
public  BigDecimalgetBigDecimalProperty(String key, BigDecimal defaultValue)
     Gets a BigDecimal property from the Runtime Element.
public  DategetDateProperty(String key)
     Gets a Date property from the Runtime Element.
public  DategetDateProperty(String key, Date defaultValue)
     Gets a Date property from the Runtime Element.
public  StringgetInstanceId()
    
public  ListgetListProperty(String key)
    
public  booleangetLoaded()
    
public  intgetLoggingLevel()
    
public  LonggetLongProperty(String key, Long defaultValue)
     Gets a Long property from the Runtime Element.
public  longgetLongProperty(String key, long defaultValue)
     Gets a property from the paramMap as a long using a default value if it doesn't exist in the map
Parameters:
  key - Key in the paramMap
Parameters:
  defaultValue - The default value if the property doesn't exist in theparamMap.
public  MapgetMapProperty(String key)
     Gets a Map property from the Runtime Element Special implementation note - Null values aren't supported in the Map.
public  SetgetParameterNames()
    
public  StringgetParameterType(String name)
    
public  StringgetParentId()
    
public  StringgetParentType()
    
public  intgetRevision()
    
public  StringgetSolutionId()
    
public  StringgetStringProperty(String key)
     Gets a string property from the Runtime Element.
public  StringgetStringProperty(String key, String defaultValue)
     Gets a string property from the Runtime Element.
public  voidsetAllowableAttributeNames(Collection allowableReadAttributeNames)
    
public  voidsetBigDecimalProperty(String key, BigDecimal value)
     Sets a BigDecimal property in the Runtime Element.
public  voidsetDateProperty(String key, Date value)
     Sets a Date property in the Runtime Element.
public  voidsetInstanceId(String instanceId)
    
public  voidsetListProperty(String key, List value)
    
public  voidsetLoaded(boolean value)
    
public  voidsetLongProperty(String key, Long value)
     Sets a Long property in the Runtime Element.
public  voidsetLongProperty(String key, long value)
     Sets a Long property in the Runtime Element.
public  voidsetMapProperty(String key, Map value)
     Sets a Map Property in the Runtime Element Special implementation note - Null values aren't supported in the Map.
public  voidsetParentId(String parentId)
    
public  voidsetParentType(String parentType)
    
public  voidsetSolutionId(String solutionId)
    
public  voidsetStringProperty(String key, String value)
     Sets a string property in the Runtime Element.
public  StringtoXML()
    



Method Detail
forceSave
public void forceSave()(Code)
Causes an immediate call to the underlying persistence mechanism's write-now method. For Hibernate, this results in a call to HibernateUtil.flush().



getBigDecimalProperty
public BigDecimal getBigDecimalProperty(String key)(Code)
Gets a BigDecimal property from the Runtime Element.
Parameters:
  key - The key of the property The value of the property, or null if the property doesn't exist.



getBigDecimalProperty
public BigDecimal getBigDecimalProperty(String key, BigDecimal defaultValue)(Code)
Gets a BigDecimal property from the Runtime Element.
Parameters:
  key - The key of the property
Parameters:
  defaultValue - The value to return if the property doesn't exist The value of the property, or defaultValue if the propertydoesn't exist.



getDateProperty
public Date getDateProperty(String key)(Code)
Gets a Date property from the Runtime Element.
Parameters:
  key - The key of the property The value of the property, or NULL if the property doesn't exist.



getDateProperty
public Date getDateProperty(String key, Date defaultValue)(Code)
Gets a Date property from the Runtime Element.
Parameters:
  key - The key of the property
Parameters:
  defaultValue - The value to return if the property doesn't exist The value of the property, or defaultValue if the propertydoesn't exist.



getInstanceId
public String getInstanceId()(Code)
Returns the instance Id



getListProperty
public List getListProperty(String key)(Code)
Gets a List property from the Runtime Element
Parameters:
  key - The key of the property to get The list associated with the key, or NULL if it doesn't exist.



getLoaded
public boolean getLoaded()(Code)



getLoggingLevel
public int getLoggingLevel()(Code)
Returns the loggingLevel.



getLongProperty
public Long getLongProperty(String key, Long defaultValue)(Code)
Gets a Long property from the Runtime Element.
Parameters:
  key - The key of the property
Parameters:
  defaultValue - The value to return if the property doesn't exist The value of the property, or defaultValue if the propertydoesn't exist.



getLongProperty
public long getLongProperty(String key, long defaultValue)(Code)
Gets a property from the paramMap as a long using a default value if it doesn't exist in the map
Parameters:
  key - Key in the paramMap
Parameters:
  defaultValue - The default value if the property doesn't exist in theparamMap. The property in the map.



getMapProperty
public Map getMapProperty(String key)(Code)
Gets a Map property from the Runtime Element Special implementation note - Null values aren't supported in the Map. So, if a null value is passed in, this implementation will remove the entry from the Runtime Element.
Parameters:
  key - The key of the property to get The Map associated with the key, or NULL if it doesn't exist.



getParameterNames
public Set getParameterNames()(Code)
The set of currently defined parameter names



getParameterType
public String getParameterType(String name)(Code)
Gets the type of the parameter
Parameters:
  name - Parameter name String type of the parameter



getParentId
public String getParentId()(Code)
Returns the parent ID



getParentType
public String getParentType()(Code)
Returns the parent Type



getRevision
public int getRevision()(Code)
Returns the revision (updated by Hibernate)



getSolutionId
public String getSolutionId()(Code)
Returns the solution Id.



getStringProperty
public String getStringProperty(String key)(Code)
Gets a string property from the Runtime Element.
Parameters:
  key - The key of the property The value of the property, or NULL if the property doesn't exist.



getStringProperty
public String getStringProperty(String key, String defaultValue)(Code)
Gets a string property from the Runtime Element.
Parameters:
  key - The key of the property
Parameters:
  defaultValue - The value to return if the property doesn't exist The value of the property.



setAllowableAttributeNames
public void setAllowableAttributeNames(Collection allowableReadAttributeNames)(Code)

Parameters:
  allowableReadAttributeNames - The names of the attributes that this process is allowed toread.



setBigDecimalProperty
public void setBigDecimalProperty(String key, BigDecimal value)(Code)
Sets a BigDecimal property in the Runtime Element. Special implementation note - Null values aren't supported in the Map. So, if a null value is passed in, this implementation will remove the entry from the Runtime Element.
Parameters:
  key - The key of the property to set
Parameters:
  value - The value to associate with the key.



setDateProperty
public void setDateProperty(String key, Date value)(Code)
Sets a Date property in the Runtime Element. Special implementation note - Null values aren't supported in the Map. So, if a null value is passed in, this implementation will remove the entry from the Runtime Element.
Parameters:
  key - The key of the property to set
Parameters:
  value - The value to associate with the key.



setInstanceId
public void setInstanceId(String instanceId)(Code)

Parameters:
  instanceId - The instance Id to set



setListProperty
public void setListProperty(String key, List value)(Code)
Sets a List Property in the Runtime Element
Parameters:
  key - The key of the property to set
Parameters:
  value - The List value to associate with the key.



setLoaded
public void setLoaded(boolean value)(Code)



setLongProperty
public void setLongProperty(String key, Long value)(Code)
Sets a Long property in the Runtime Element.
Parameters:
  key - The key of the property to set
Parameters:
  value - The value to associate with the key.



setLongProperty
public void setLongProperty(String key, long value)(Code)
Sets a Long property in the Runtime Element. Special implementation note - Null values aren't supported in the Map. So, if a null value is passed in, this implementation will remove the entry from the Runtime Element.
Parameters:
  key - The key of the property to set
Parameters:
  value - The value to associate with the key. Note - A new Long objectis constructed and stored.



setMapProperty
public void setMapProperty(String key, Map value)(Code)
Sets a Map Property in the Runtime Element Special implementation note - Null values aren't supported in the Map. So, if a null value is passed in, this implementation will remove the entry from the Runtime Element.
Parameters:
  key - The key of the property to set
Parameters:
  value - The Map value to associate with the key.



setParentId
public void setParentId(String parentId)(Code)

Parameters:
  parentId - The parentId to set.



setParentType
public void setParentType(String parentType)(Code)

Parameters:
  parentType - The parent type to set



setSolutionId
public void setSolutionId(String solutionId)(Code)

Parameters:
  solutionId - The solution Id to set



setStringProperty
public void setStringProperty(String key, String value)(Code)
Sets a string property in the Runtime Element. Special implementation note - Null values aren't supported in the Map. So, if a null value is passed in, this implementation will remove the entry from the Runtime Element.
Parameters:
  key - The key of the property to set
Parameters:
  value - The value to associate with the key



toXML
public String toXML()(Code)
A string containing the XML representation of the Runtime Element



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.