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


java.lang.Object
   org.netbeans.jemmy.BundleManager

BundleManager
public class BundleManager extends Object (Code)
Provides functionality to work with a bunch of resource files.

See Also:   org.netbeans.jemmy.Bundle
author:
   Alexandre Iline (alexandre.iline@sun.com)



Constructor Summary
public  BundleManager()
     Bundle manager constructor.

Method Summary
public  BundleaddBundle(Bundle bundle, String ID)
     Adds a Bundle to the managed collection of resource files.
public  intcalculateResources(String key)
     Counts the number of resource occurences in all the managed Bundles.
public  BundleManagercloneThis()
     Creates a shallow copy of this BundleManager.
public  BundlegetBundle(String ID)
     Returns a Bundle given it's symbolic ID.
Parameters:
  ID - Symbolic bundle ID the Bundle.
public  StringgetResource(String bundleID, String key)
     Returns resource from ID bundle.
Parameters:
  bundleID - Bundle ID.
Parameters:
  key - Resource key.
public  StringgetResource(String key)
     Searches for a resource in all the managed Bundles.
public  Bundleload()
     Loads resources from simple text file pointed by jemmy.resources system property.
public  BundleloadBundleFromFile(String fileName, String ID)
     Create a new Bundle, load resources from a simple text file, and add the bundle. Load resources from a text file to a new Bundle object.
public  BundleloadBundleFromJar(String fileName, String entryName, String ID)
     Loads resources from file in jar archive into new Bundle object and adds it.
public  BundleloadBundleFromZip(String fileName, String entryName, String ID)
     Loads resources from file in zip archive into new Bundle object and adds it.
public  voidprint(PrintWriter writer)
     Prints bundles contents.
public  voidprint(PrintStream stream)
     Prints bundles contents.
public  BundleremoveBundle(String ID)
     Removes a Bundle from the managed collection of resource files.


Constructor Detail
BundleManager
public BundleManager()(Code)
Bundle manager constructor.




Method Detail
addBundle
public Bundle addBundle(Bundle bundle, String ID)(Code)
Adds a Bundle to the managed collection of resource files.
Parameters:
  bundle - Bundle object
Parameters:
  ID - Symbolic bundle id First parameter or null if bundle with ID already exists.
See Also:   org.netbeans.jemmy.Bundle



calculateResources
public int calculateResources(String key)(Code)
Counts the number of resource occurences in all the managed Bundles.
Parameters:
  key - Resource key the number of resource occurences with the given key amongall the Bundles managed by this BundleManager.



cloneThis
public BundleManager cloneThis()(Code)
Creates a shallow copy of this BundleManager. Does not copy bundles, only their references. a copy of this BundleManager.



getBundle
public Bundle getBundle(String ID)(Code)
Returns a Bundle given it's symbolic ID.
Parameters:
  ID - Symbolic bundle ID the Bundle. A null reference is returned ifno bundle with the symbolic ID was found.



getResource
public String getResource(String bundleID, String key)(Code)
Returns resource from ID bundle.
Parameters:
  bundleID - Bundle ID.
Parameters:
  key - Resource key. the resource value. If the bundle ID does not existif the resource with the given key cannot be found, a nullreference is returned.



getResource
public String getResource(String key)(Code)
Searches for a resource in all the managed Bundles.
Parameters:
  key - Resource key. first resource value found that is indexed by the given key.If no resource is found, return a null reference.



load
public Bundle load() throws IOException, FileNotFoundException(Code)
Loads resources from simple text file pointed by jemmy.resources system property. The resources are loaded into the Bundle with ID "". Does not do anything if jemmy.resources has not been set or is empty. a newly created bundle.
exception:
  IOException -
exception:
  FileNotFoundException -



loadBundleFromFile
public Bundle loadBundleFromFile(String fileName, String ID) throws IOException, FileNotFoundException(Code)
Create a new Bundle, load resources from a simple text file, and add the bundle. Load resources from a text file to a new Bundle object. The new Bundle is added to the collection of objects managed by this BundleManager.
Parameters:
  fileName - Name of a file to load resources from.
Parameters:
  ID - Symbolic bundle ID used to identify the new bundle usedto manage the resources from the file. a newly created bundle.
exception:
  IOException -
exception:
  FileNotFoundException -



loadBundleFromJar
public Bundle loadBundleFromJar(String fileName, String entryName, String ID) throws IOException, FileNotFoundException(Code)
Loads resources from file in jar archive into new Bundle object and adds it.
Parameters:
  fileName - Name of jar file.
Parameters:
  entryName - ?enryName? Name of file to load resources from.
Parameters:
  ID - Symbolic bundle id a newly created bundle.
exception:
  IOException -
exception:
  FileNotFoundException -



loadBundleFromZip
public Bundle loadBundleFromZip(String fileName, String entryName, String ID) throws IOException, FileNotFoundException, ZipException(Code)
Loads resources from file in zip archive into new Bundle object and adds it.
Parameters:
  fileName - Name of jar file.
Parameters:
  entryName - ?enryName? Name of file to load resources from.
Parameters:
  ID - Symbolic bundle id a newly created bundle.
exception:
  ZipException -
exception:
  IOException -
exception:
  FileNotFoundException -



print
public void print(PrintWriter writer)(Code)
Prints bundles contents.
Parameters:
  writer - Writer to print data in.



print
public void print(PrintStream stream)(Code)
Prints bundles contents.
Parameters:
  stream - Stream to print data in.



removeBundle
public Bundle removeBundle(String ID)(Code)
Removes a Bundle from the managed collection of resource files.
Parameters:
  ID - Symbolic bundle id Removed bundle or null if no bundle ID is.



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.