Java Doc for Environment.java in  » EJB-Server-resin-3.1.5 » resin » com » caucho » loader » 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 » EJB Server resin 3.1.5 » resin » com.caucho.loader 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.loader.Environment

Environment
public class Environment (Code)
Static utility classes.




Method Summary
public static  voidaddChildEnvironmentListener(EnvironmentListener listener)
     Add listener.
public static  voidaddChildEnvironmentListener(EnvironmentListener listener, ClassLoader loader)
     Add listener.
public static  voidaddChildLoaderListener(AddLoaderListener listener)
     Add listener.
public static  voidaddChildLoaderListener(AddLoaderListener listener, ClassLoader loader)
     Add listener.
public static  voidaddClassLoaderListener(ClassLoaderListener listener)
     Add listener.
public static  voidaddClassLoaderListener(ClassLoaderListener listener, ClassLoader loader)
     Add listener.
public static  voidaddCloseListener(Object obj)
     Add close listener.
public static  voidaddDependency(Dependency depend)
     Adds a dependency to the current environment.
public static  voidaddDependency(Dependency depend, ClassLoader loader)
     Adds a dependency to the current environment.
public static  voidaddDependency(Path path)
     Adds a dependency to the current environment.
public static  voidaddDependency(Path path, ClassLoader loader)
     Adds a dependency to the current environment.
public static  voidaddEnvironmentListener(EnvironmentListener listener)
     Add listener.
public static  voidaddEnvironmentListener(EnvironmentListener listener, ClassLoader loader)
     Add listener.
public static  voidaddPermission(Permission perm)
     Adds a permission to the current environment.
Parameters:
  perm - the permission to add.
public static  voidaddPermission(Permission perm, ClassLoader loader)
     Adds a permission to the current environment.
Parameters:
  perm - the permission to add.
public static  voidcloseGlobal()
     destroys the current environment.
public static  ObjectgetAttribute(String name)
     Gets a local variable for the current environment.
public static  ObjectgetAttribute(String name, ClassLoader loader)
     Gets a local variable for the current environment.
public static  ThrowablegetConfigException()
     Returns any configuration exception.
public static  longgetDependencyCheckInterval()
     Returns the current dependency check interval.
public static  longgetDependencyCheckInterval(ClassLoader loader)
     Returns the current dependency check interval.
public static  DynamicClassLoadergetDynamicClassLoader()
     Returns the topmost dynamic class loader.
public static  DynamicClassLoadergetDynamicClassLoader(ClassLoader loader)
     Returns the topmost dynamic class loader.
public static  EnvironmentClassLoadergetEnvironmentClassLoader()
     Returns the local environment.
public static  EnvironmentClassLoadergetEnvironmentClassLoader(ClassLoader loader)
     Returns the local environment.
public static  StringgetEnvironmentName()
     Returns the environment name.
public static  ObjectgetLevelAttribute(String name)
     Gets a local variable for the current environment.
public static  ObjectgetLevelAttribute(String name, ClassLoader loader)
     Gets a local variable for the current environment.
public static  StringgetLocalClassPath()
     Returns the classpath for the environment level.
public static  StringgetLocalClassPath(ClassLoader loader)
     Returns the classpath for the environment level.
public static  ObjectgetOwner()
     Gets the class loader owner.
public static  ObjectgetOwner(ClassLoader loader)
     Gets the class loader owner.
public static  voidinit()
     Starts the current environment.
public static  voidinit(ClassLoader loader)
     Starts the current environment.
public static  voidremoveEnvironmentListener(EnvironmentListener listener)
     Remove listener.
public static  voidremoveEnvironmentListener(EnvironmentListener listener, ClassLoader loader)
     Remove listener.
public static  ObjectsetAttribute(String name, Object value)
     Sets a local variable for the current environment.
public static  ObjectsetAttribute(String name, Object value, ClassLoader loader)
     Sets a local variable for the current environment.
public static  voidsetConfigException(Throwable e)
     Sets a configuration exception.
public static  voidstart()
     Starts the current environment.
public static  voidstart(ClassLoader loader)
     Starts the current environment.
public static  voidstop()
     Starts the current environment.
public static  voidstop(ClassLoader loader)
     Starts the current environment.



Method Detail
addChildEnvironmentListener
public static void addChildEnvironmentListener(EnvironmentListener listener)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addChildEnvironmentListener
public static void addChildEnvironmentListener(EnvironmentListener listener, ClassLoader loader)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addChildLoaderListener
public static void addChildLoaderListener(AddLoaderListener listener)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addChildLoaderListener
public static void addChildLoaderListener(AddLoaderListener listener, ClassLoader loader)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addClassLoaderListener
public static void addClassLoaderListener(ClassLoaderListener listener)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy



addClassLoaderListener
public static void addClassLoaderListener(ClassLoaderListener listener, ClassLoader loader)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addCloseListener
public static void addCloseListener(Object obj)(Code)
Add close listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addDependency
public static void addDependency(Dependency depend)(Code)
Adds a dependency to the current environment.
Parameters:
  depend - the dependency to add



addDependency
public static void addDependency(Dependency depend, ClassLoader loader)(Code)
Adds a dependency to the current environment.
Parameters:
  depend - the dependency to add
Parameters:
  loader - the context loader



addDependency
public static void addDependency(Path path)(Code)
Adds a dependency to the current environment.
Parameters:
  depend - the dependency to add



addDependency
public static void addDependency(Path path, ClassLoader loader)(Code)
Adds a dependency to the current environment.
Parameters:
  path - the dependency to add
Parameters:
  loader - the context loader



addEnvironmentListener
public static void addEnvironmentListener(EnvironmentListener listener)(Code)
Add listener.
Parameters:
  listener - object to listen for environment start/stop



addEnvironmentListener
public static void addEnvironmentListener(EnvironmentListener listener, ClassLoader loader)(Code)
Add listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



addPermission
public static void addPermission(Permission perm)(Code)
Adds a permission to the current environment.
Parameters:
  perm - the permission to add. the old attribute value



addPermission
public static void addPermission(Permission perm, ClassLoader loader)(Code)
Adds a permission to the current environment.
Parameters:
  perm - the permission to add. the old attribute value



closeGlobal
public static void closeGlobal()(Code)
destroys the current environment.



getAttribute
public static Object getAttribute(String name)(Code)
Gets a local variable for the current environment.
Parameters:
  name - the attribute name the attribute value



getAttribute
public static Object getAttribute(String name, ClassLoader loader)(Code)
Gets a local variable for the current environment.
Parameters:
  name - the attribute name
Parameters:
  loader - the context loader the attribute value



getConfigException
public static Throwable getConfigException()(Code)
Returns any configuration exception.



getDependencyCheckInterval
public static long getDependencyCheckInterval()(Code)
Returns the current dependency check interval.



getDependencyCheckInterval
public static long getDependencyCheckInterval(ClassLoader loader)(Code)
Returns the current dependency check interval.



getDynamicClassLoader
public static DynamicClassLoader getDynamicClassLoader()(Code)
Returns the topmost dynamic class loader.



getDynamicClassLoader
public static DynamicClassLoader getDynamicClassLoader(ClassLoader loader)(Code)
Returns the topmost dynamic class loader.
Parameters:
  loader - the context loader



getEnvironmentClassLoader
public static EnvironmentClassLoader getEnvironmentClassLoader()(Code)
Returns the local environment.



getEnvironmentClassLoader
public static EnvironmentClassLoader getEnvironmentClassLoader(ClassLoader loader)(Code)
Returns the local environment.



getEnvironmentName
public static String getEnvironmentName()(Code)
Returns the environment name.



getLevelAttribute
public static Object getLevelAttribute(String name)(Code)
Gets a local variable for the current environment.
Parameters:
  name - the attribute name the attribute value



getLevelAttribute
public static Object getLevelAttribute(String name, ClassLoader loader)(Code)
Gets a local variable for the current environment.
Parameters:
  name - the attribute name
Parameters:
  loader - the context loader the attribute value



getLocalClassPath
public static String getLocalClassPath()(Code)
Returns the classpath for the environment level.



getLocalClassPath
public static String getLocalClassPath(ClassLoader loader)(Code)
Returns the classpath for the environment level.



getOwner
public static Object getOwner()(Code)
Gets the class loader owner.



getOwner
public static Object getOwner(ClassLoader loader)(Code)
Gets the class loader owner.



init
public static void init()(Code)
Starts the current environment.



init
public static void init(ClassLoader loader)(Code)
Starts the current environment.



removeEnvironmentListener
public static void removeEnvironmentListener(EnvironmentListener listener)(Code)
Remove listener.
Parameters:
  listener - object to listen for environment start/stop



removeEnvironmentListener
public static void removeEnvironmentListener(EnvironmentListener listener, ClassLoader loader)(Code)
Remove listener.
Parameters:
  listener - object to listen for environment create/destroy
Parameters:
  loader - the context class loader



setAttribute
public static Object setAttribute(String name, Object value)(Code)
Sets a local variable for the current environment.
Parameters:
  name - the attribute name
Parameters:
  value - the new attribute value the old attribute value



setAttribute
public static Object setAttribute(String name, Object value, ClassLoader loader)(Code)
Sets a local variable for the current environment.
Parameters:
  name - the attribute name
Parameters:
  value - the new attribute value
Parameters:
  loader - the context loader the old attribute value



setConfigException
public static void setConfigException(Throwable e)(Code)
Sets a configuration exception.



start
public static void start() throws StartLifecycleException(Code)
Starts the current environment.



start
public static void start(ClassLoader loader) throws StartLifecycleException(Code)
Starts the current environment.



stop
public static void stop()(Code)
Starts the current environment.



stop
public static void stop(ClassLoader loader)(Code)
Starts the current environment.



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.