Java Doc for Properties.java in  » IDE-Netbeans » ant » org » netbeans » api » debugger » 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 » IDE Netbeans » ant » org.netbeans.api.debugger 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.api.debugger.Properties

All known Subclasses:   org.netbeans.modules.ant.debugger.breakpoints.BreakpointsReader,
Properties
abstract public class Properties (Code)
Utility class hepls store properties.
author:
   Jan Jancura

Inner Class :public interface Reader
Inner Class :static class PropertiesImpl extends Properties



Method Summary
abstract public  Object[]getArray(String propertyName, Object[] defaultValue)
     Reads array property from storage.
abstract public  booleangetBoolean(String propertyName, boolean defaultValue)
     Reads boolean property from storage.
abstract public  bytegetByte(String propertyName, byte defaultValue)
     Reads byte property from storage.
abstract public  chargetChar(String propertyName, char defaultValue)
     Reads char property from storage.
abstract public  CollectiongetCollection(String propertyName, Collection defaultValue)
     Reads Collection property from storage.
public static synchronized  PropertiesgetDefault()
     Returns shared instance of Properties class.
abstract public  doublegetDouble(String propertyName, double defaultValue)
     Reads double property from storage.
abstract public  floatgetFloat(String propertyName, float defaultValue)
     Reads float property from storage.
abstract public  intgetInt(String propertyName, int defaultValue)
     Reads int property from storage.
abstract public  longgetLong(String propertyName, long defaultValue)
     Reads long property from storage.
abstract public  MapgetMap(String propertyName, Map defaultValue)
     Reads Map property from storage.
abstract public  ObjectgetObject(String propertyName, Object defaultValue)
     Reads Object property from storage.
abstract public  PropertiesgetProperties(String propertyName)
     Returns Properties instance for some "subfolder" in properties file.
abstract public  shortgetShort(String propertyName, short defaultValue)
     Reads short property from storage.
abstract public  StringgetString(String propertyName, String defaultValue)
     Reads String property from storage.
abstract public  voidsetArray(String propertyName, Object[] value)
     Sets a new value of property with given propertyName.
abstract public  voidsetBoolean(String propertyName, boolean value)
     Sets a new value of property with given propertyName.
abstract public  voidsetByte(String propertyName, byte value)
     Sets a new value of property with given propertyName.
abstract public  voidsetChar(String propertyName, char value)
     Sets a new value of property with given propertyName.
abstract public  voidsetCollection(String propertyName, Collection value)
     Sets a new value of property with given propertyName.
abstract public  voidsetDouble(String propertyName, double value)
     Sets a new value of property with given propertyName.
abstract public  voidsetFloat(String propertyName, float value)
     Sets a new value of property with given propertyName.
abstract public  voidsetInt(String propertyName, int value)
     Sets a new value of property with given propertyName.
abstract public  voidsetLong(String propertyName, long value)
     Sets a new value of property with given propertyName.
abstract public  voidsetMap(String propertyName, Map value)
     Sets a new value of property with given propertyName.
abstract public  voidsetObject(String propertyName, Object value)
     Sets a new value of property with given propertyName.
abstract public  voidsetShort(String propertyName, short value)
     Sets a new value of property with given propertyName.
abstract public  voidsetString(String propertyName, String value)
     Sets a new value of property with given propertyName.



Method Detail
getArray
abstract public Object[] getArray(String propertyName, Object[] defaultValue)(Code)
Reads array property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getBoolean
abstract public boolean getBoolean(String propertyName, boolean defaultValue)(Code)
Reads boolean property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getByte
abstract public byte getByte(String propertyName, byte defaultValue)(Code)
Reads byte property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getChar
abstract public char getChar(String propertyName, char defaultValue)(Code)
Reads char property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getCollection
abstract public Collection getCollection(String propertyName, Collection defaultValue)(Code)
Reads Collection property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getDefault
public static synchronized Properties getDefault()(Code)
Returns shared instance of Properties class. shared instance of Properties class



getDouble
abstract public double getDouble(String propertyName, double defaultValue)(Code)
Reads double property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getFloat
abstract public float getFloat(String propertyName, float defaultValue)(Code)
Reads float property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getInt
abstract public int getInt(String propertyName, int defaultValue)(Code)
Reads int property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getLong
abstract public long getLong(String propertyName, long defaultValue)(Code)
Reads long property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getMap
abstract public Map getMap(String propertyName, Map defaultValue)(Code)
Reads Map property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getObject
abstract public Object getObject(String propertyName, Object defaultValue)(Code)
Reads Object property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getProperties
abstract public Properties getProperties(String propertyName)(Code)
Returns Properties instance for some "subfolder" in properties file.
Parameters:
  propertyName - a subfolder name a Properties instance for some "subfolder" in properties file



getShort
abstract public short getShort(String propertyName, short defaultValue)(Code)
Reads short property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



getString
abstract public String getString(String propertyName, String defaultValue)(Code)
Reads String property from storage.
Parameters:
  propertyName - a propertyName of property
Parameters:
  defaultValue - a default value to be used if property is not set a current value of property



setArray
abstract public void setArray(String propertyName, Object[] value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setBoolean
abstract public void setBoolean(String propertyName, boolean value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setByte
abstract public void setByte(String propertyName, byte value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setChar
abstract public void setChar(String propertyName, char value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setCollection
abstract public void setCollection(String propertyName, Collection value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setDouble
abstract public void setDouble(String propertyName, double value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setFloat
abstract public void setFloat(String propertyName, float value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setInt
abstract public void setInt(String propertyName, int value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setLong
abstract public void setLong(String propertyName, long value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setMap
abstract public void setMap(String propertyName, Map value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setObject
abstract public void setObject(String propertyName, Object value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setShort
abstract public void setShort(String propertyName, short value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



setString
abstract public void setString(String propertyName, String value)(Code)
Sets a new value of property with given propertyName.
Parameters:
  propertyName - a propertyName of property
Parameters:
  value - the new value of property



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.