Java Doc for AbstractInjector.java in  » Inversion-of-Control » PicoContainer » org » picocontainer » injectors » 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 » Inversion of Control » PicoContainer » org.picocontainer.injectors 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.picocontainer.injectors.AbstractInjector

All known Subclasses:   org.picocontainer.injectors.IterativeInjector,  org.picocontainer.injectors.MultiInjector,
AbstractInjector
abstract public class AbstractInjector extends AbstractAdapter implements LifecycleStrategy(Code)
This ComponentAdapter will instantiate a new object for each call to org.picocontainer.ComponentAdapter.getComponentInstance(PicoContainer) . That means that when used with a PicoContainer, getComponent will return a new object each time.
author:
   Aslak Hellesøy
author:
   Paul Hammant
author:
   Jörg Schaible
author:
   Mauro Talevi

Inner Class :abstract static class ThreadLocalCyclicDependencyGuard extends ThreadLocal
Inner Class :public static class CyclicDependencyException extends PicoCompositionException
Inner Class :final public static class AmbiguousComponentResolutionException extends PicoCompositionException
Inner Class :public static class UnsatisfiableDependenciesException extends PicoCompositionException
Inner Class :public static class NotConcreteRegistrationException extends PicoCompositionException

Field Summary
protected  LifecycleStrategylifecycleStrategy
    
protected transient  Parameter[]parameters
     The parameters to use for initialization.
protected transient  ThreadLocalCyclicDependencyGuardverifyingGuard
     The cycle guard for the verification.

Constructor Summary
protected  AbstractInjector(Object componentKey, Class componentImplementation, Parameter[] parameters, ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy, boolean useNames)
     Constructs a new ComponentAdapter for the given key and implementation.

Method Summary
public  voidaccept(PicoVisitor visitor)
    
protected  Classbox(Class parameterType)
    
protected  TcaughtIllegalAccessException(ComponentMonitor componentMonitor, Constructor<T> constructor, IllegalAccessException e, PicoContainer container)
     inform monitor about access exception.
protected  ObjectcaughtIllegalAccessException(ComponentMonitor componentMonitor, Member member, Object componentInstance, IllegalAccessException e)
    
protected  TcaughtInstantiationException(ComponentMonitor componentMonitor, Constructor<T> constructor, InstantiationException e, PicoContainer container)
    
protected  TcaughtInvocationTargetException(ComponentMonitor componentMonitor, Member member, Object componentInstance, InvocationTargetException e)
    
protected  Parameter[]createDefaultParameters(Class[] parameters)
     Create default parameters for the given types.
public  voiddispose(Object component)
    
public  booleanhasLifecycle(Class type)
    
protected  TnewInstance(Constructor<T> constructor, Object[] parameters)
     Instantiate an object with given parameters and respect the accessible flag.
public  voidstart(Object component)
    
public  voidstop(Object component)
    
public  booleanuseNames()
    
abstract public  voidverify(PicoContainer container)
    

Field Detail
lifecycleStrategy
protected LifecycleStrategy lifecycleStrategy(Code)
The strategy used to control the lifecycle



parameters
protected transient Parameter[] parameters(Code)
The parameters to use for initialization.



verifyingGuard
protected transient ThreadLocalCyclicDependencyGuard verifyingGuard(Code)
The cycle guard for the verification.




Constructor Detail
AbstractInjector
protected AbstractInjector(Object componentKey, Class componentImplementation, Parameter[] parameters, ComponentMonitor monitor, LifecycleStrategy lifecycleStrategy, boolean useNames)(Code)
Constructs a new ComponentAdapter for the given key and implementation.
Parameters:
  componentKey - the search key for this implementation
Parameters:
  componentImplementation - the concrete implementation
Parameters:
  parameters - the parameters to use for the initialization
Parameters:
  monitor - the component monitor used by this ComponentAdapter
Parameters:
  lifecycleStrategy - the lifecycle strategy used by this ComponentAdapter
throws:
  org.picocontainer.injectors.AbstractInjector.NotConcreteRegistrationException - if the implementation is not a concrete class
throws:
  NullPointerException - if one of the parameters is null




Method Detail
accept
public void accept(PicoVisitor visitor)(Code)



box
protected Class box(Class parameterType)(Code)



caughtIllegalAccessException
protected T caughtIllegalAccessException(ComponentMonitor componentMonitor, Constructor<T> constructor, IllegalAccessException e, PicoContainer container)(Code)
inform monitor about access exception.
Parameters:
  componentMonitor -
Parameters:
  constructor -
Parameters:
  e -
Parameters:
  container -



caughtIllegalAccessException
protected Object caughtIllegalAccessException(ComponentMonitor componentMonitor, Member member, Object componentInstance, IllegalAccessException e)(Code)



caughtInstantiationException
protected T caughtInstantiationException(ComponentMonitor componentMonitor, Constructor<T> constructor, InstantiationException e, PicoContainer container)(Code)
inform monitor about component instantiation failure
Parameters:
  componentMonitor -
Parameters:
  constructor -
Parameters:
  e -
Parameters:
  container -



caughtInvocationTargetException
protected T caughtInvocationTargetException(ComponentMonitor componentMonitor, Member member, Object componentInstance, InvocationTargetException e)(Code)
inform monitor about exception while instantiating component
Parameters:
  componentMonitor -
Parameters:
  member -
Parameters:
  componentInstance -
Parameters:
  e -



createDefaultParameters
protected Parameter[] createDefaultParameters(Class[] parameters)(Code)
Create default parameters for the given types.
Parameters:
  parameters - the parameter types the array with the default parameters.



dispose
public void dispose(Object component)(Code)



hasLifecycle
public boolean hasLifecycle(Class type)(Code)



newInstance
protected T newInstance(Constructor<T> constructor, Object[] parameters) throws InstantiationException, IllegalAccessException, InvocationTargetException(Code)
Instantiate an object with given parameters and respect the accessible flag.
Parameters:
  constructor - the constructor to use
Parameters:
  parameters - the parameters for the constructor the new object.
throws:
  InstantiationException -
throws:
  IllegalAccessException -
throws:
  InvocationTargetException -



start
public void start(Object component)(Code)



stop
public void stop(Object component)(Code)



useNames
public boolean useNames()(Code)



verify
abstract public void verify(PicoContainer container) throws PicoCompositionException(Code)



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