springpython.factory
index
/home/gturnquist/spring-python-1.0.x/src/springpython/factory/__init__.py

Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
    http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

 
Package Contents
       

 
Classes
       
__builtin__.object
InitializingObject
ObjectFactory
PythonObjectFactory
ReflectiveObjectFactory

 
class InitializingObject(__builtin__.object)
    This allows definition of a method which is invoked by the container after an object has had all properties set.
 
  Methods defined here:
after_properties_set(self)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class ObjectFactory(__builtin__.object)
     Methods defined here:
create_object(self, constr, named_constr)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class PythonObjectFactory(ObjectFactory)
    
Method resolution order:
PythonObjectFactory
ObjectFactory
__builtin__.object

Methods defined here:
__init__(self, method, wrapper)
__str__(self)
create_object(self, constr, named_constr)

Data descriptors inherited from ObjectFactory:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class ReflectiveObjectFactory(ObjectFactory)
    
Method resolution order:
ReflectiveObjectFactory
ObjectFactory
__builtin__.object

Methods defined here:
__init__(self, module_and_class)
__str__(self)
create_object(self, constr, named_constr)

Data descriptors inherited from ObjectFactory:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)