Java Doc for LocalizedBundleInfo.java in  » IDE-Netbeans » api » org » netbeans » modules » apisupport » project » universe » 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 » api » org.netbeans.modules.apisupport.project.universe 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.apisupport.project.universe.LocalizedBundleInfo

LocalizedBundleInfo
final public class LocalizedBundleInfo (Code)
Represents localized information for a NetBeans module usually loaded from a Bundle.properties specified in a module's manifest. It is actaully back up by EditableProperties so any changes to this instance will behave exactly as specified in EditableProperties javadoc during storing.
author:
   Martin Krauskopf

Inner Class :public static interface Provider

Field Summary
final public static  StringDISPLAY_CATEGORY
    
final static  LocalizedBundleInfoEMPTY
    
final public static  StringLONG_DESCRIPTION
    
final public static  StringNAME
    
final public static  StringSHORT_DESCRIPTION
    


Method Summary
public  voidaddPropertyChangeListener(PropertyChangeListener pchl)
    
public  StringgetCategory()
    
public  StringgetDisplayName()
    
public  StringgetLongDescription()
    
public  File[]getPaths()
    
public  StringgetShortDescription()
    
public  booleanisModified()
     Tells whether this instance was modified since it was loaded or saved. I.e.
public static  LocalizedBundleInfoload(FileObject[] bundleFOs)
     Returns instances initialized by data in the given FileObject . Note that instances created by this factory method are automatically storable (i.e.
public static  LocalizedBundleInfoload(InputStream[] bundleISs)
     Returns instances initialized by data in the given FileObject . Instances created by this factory method are not storable (i.e.
public  voidreload()
     Reload data of this localizing bundle info from the file represented by previously set path.
public  voidremovePropertyChangeListener(PropertyChangeListener pchl)
    
public  voidsetCategory(String category)
    
public  voidsetDisplayName(String name)
    
public  voidsetLongDescription(String longDescription)
    
public  voidsetShortDescription(String shortDescription)
    
public  voidstore()
     Reload this localizing bundle from the file specified by previously set path.
public  EditablePropertiestoEditableProperties()
     Converts entries this instance represents into EditableProperties .
public  StringtoString()
    

Field Detail
DISPLAY_CATEGORY
final public static String DISPLAY_CATEGORY(Code)



EMPTY
final static LocalizedBundleInfo EMPTY(Code)



LONG_DESCRIPTION
final public static String LONG_DESCRIPTION(Code)



NAME
final public static String NAME(Code)



SHORT_DESCRIPTION
final public static String SHORT_DESCRIPTION(Code)





Method Detail
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener pchl)(Code)



getCategory
public String getCategory()(Code)



getDisplayName
public String getDisplayName()(Code)



getLongDescription
public String getLongDescription()(Code)



getPaths
public File[] getPaths()(Code)



getShortDescription
public String getShortDescription()(Code)



isModified
public boolean isModified()(Code)
Tells whether this instance was modified since it was loaded or saved. I.e. if it needs to be saved or not.



load
public static LocalizedBundleInfo load(FileObject[] bundleFOs) throws IOException(Code)
Returns instances initialized by data in the given FileObject . Note that instances created by this factory method are automatically storable (i.e. LocalizedBundleInfo.store and LocalizedBundleInfo.reload can be called) if the given object represents a regular java.io.File .
Parameters:
  bundleFO - FileObject representing localizing bundle.Usually bundle.properties or its branded version.Given as an array so you can pass multiple locale variants (most specific last). instance representing data in the given bundle



load
public static LocalizedBundleInfo load(InputStream[] bundleISs) throws IOException(Code)
Returns instances initialized by data in the given FileObject . Instances created by this factory method are not storable (i.e. LocalizedBundleInfo.store and LocalizedBundleInfo.reload cannot be called) until the LocalizedBundleInfo.setPath is called upon this object.
Parameters:
  bundleIS - input stream representing localizing bundle. Usuallybundle.properties or its branded version. instance representing data in the given bundle



reload
public void reload() throws IOException(Code)
Reload data of this localizing bundle info from the file represented by previously set path. Note that this instance already listens to the bundle properties file (or files if localized). So it just gives a possibility to force reloading in the case the properties were e.g. changed outside of IDE or using java.io.File .



removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener pchl)(Code)



setCategory
public void setCategory(String category)(Code)



setDisplayName
public void setDisplayName(String name)(Code)



setLongDescription
public void setLongDescription(String longDescription)(Code)



setShortDescription
public void setShortDescription(String shortDescription)(Code)



store
public void store() throws IOException(Code)
Reload this localizing bundle from the file specified by previously set path.



toEditableProperties
public EditableProperties toEditableProperties()(Code)
Converts entries this instance represents into EditableProperties .



toString
public String toString()(Code)



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.