Java Doc for ConfigDataIF.java in  » Web-Server » Rimfaxe-Web-Server » seda » sandStorm » api » 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 » Web Server » Rimfaxe Web Server » seda.sandStorm.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


seda.sandStorm.api.ConfigDataIF

All known Subclasses:   seda.sandStorm.internal.ConfigData,
ConfigDataIF
public interface ConfigDataIF (Code)
ConfigDataIF is used to pass configuration arguments to stages. When a stage is initialized, a ConfigDataIF is passed to its 'init()' method.
author:
   Matt Welsh


Field Summary
final public static  StringSET
     The default value for a string key with no other specified value.


Method Summary
public  booleancontains(String key)
     Returns true if the given key is set in the configuration.
public  booleangetBoolean(String key)
     Get the boolean value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments.
public  doublegetDouble(String key)
     Get the double value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments.
public  intgetInt(String key)
     Get the integer value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments.
public  ManagerIFgetManager()
     Return a handle to the system manager.
public  StageIFgetStage()
     Return the StageIF for this stage.
public  StringgetString(String key)
     Get the string value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments.
public  String[]getStringList(String key)
     Get the value corresponding to the given configuration key as a list of Strings.
public  voidsetBoolean(String key, boolean val)
     Set the given configuration key to the given boolean value.
public  voidsetDouble(String key, double val)
     Set the given configuration key to the given double value.
public  voidsetInt(String key, int val)
     Set the given configuration key to the given integer value.
public  voidsetStage(StageIF stage)
     Used to set the StageIF when initializing a ConfigDataIF. This is an internal interface and not for use by applications.
public  voidsetString(String key, String val)
     Set the given configuration key to the given string value.
public  voidsetStringList(String key, String values)
     Set the value corresponding to the given configuration key as a list of Strings.

Field Detail
SET
final public static String SET(Code)
The default value for a string key with no other specified value.





Method Detail
contains
public boolean contains(String key)(Code)
Returns true if the given key is set in the configuration.



getBoolean
public boolean getBoolean(String key)(Code)
Get the boolean value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments. Returns false if not set.



getDouble
public double getDouble(String key)(Code)
Get the double value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments. Returns -1.0 if not set or if the value is not a double.



getInt
public int getInt(String key)(Code)
Get the integer value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments. Returns -1 if not set or if the value is not an integer.



getManager
public ManagerIF getManager()(Code)
Return a handle to the system manager. The system manager can (among other things) be used to access other stages in the system.
See Also:   ManagerIF



getStage
public StageIF getStage()(Code)
Return the StageIF for this stage. The StageIF can be used (among other things) to access the event queues for this stage.
See Also:   StageIF



getString
public String getString(String key)(Code)
Get the string value corresponding to the given configuration key. This is the basic way for a stage to retrieve its initialization arguments. Returns null if not set.



getStringList
public String[] getStringList(String key)(Code)
Get the value corresponding to the given configuration key as a list of Strings. Returns null if not set.



setBoolean
public void setBoolean(String key, boolean val)(Code)
Set the given configuration key to the given boolean value.



setDouble
public void setDouble(String key, double val)(Code)
Set the given configuration key to the given double value.



setInt
public void setInt(String key, int val)(Code)
Set the given configuration key to the given integer value.



setStage
public void setStage(StageIF stage)(Code)
Used to set the StageIF when initializing a ConfigDataIF. This is an internal interface and not for use by applications.



setString
public void setString(String key, String val)(Code)
Set the given configuration key to the given string value.



setStringList
public void setStringList(String key, String values)(Code)
Set the value corresponding to the given configuration key as a list of Strings.



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