Class PropertyClassDependencyManufacturer
- java.lang.Object
-
- net.officefloor.plugin.clazz.dependency.impl.PropertyClassDependencyManufacturer
-
- All Implemented Interfaces:
ServiceFactory<ClassDependencyManufacturer>
,ClassDependencyManufacturer
,ClassDependencyManufacturerServiceFactory
public class PropertyClassDependencyManufacturer extends java.lang.Object implements ClassDependencyManufacturer, ClassDependencyManufacturerServiceFactory
ClassDependencyManufacturer
for theProperty
.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description PropertyClassDependencyManufacturer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassDependencyFactory
createParameterFactory(ClassDependencyManufacturerContext context)
Creates theClassDependencyFactory
for the particular dependency.ClassDependencyManufacturer
createService(ServiceContext context)
Creates the service.
-
-
-
Method Detail
-
createService
public ClassDependencyManufacturer createService(ServiceContext context) throws java.lang.Throwable
Description copied from interface:ServiceFactory
Creates the service.- Specified by:
createService
in interfaceServiceFactory<ClassDependencyManufacturer>
- Parameters:
context
-ServiceContext
.- Returns:
- Service.
- Throws:
java.lang.Throwable
- If fails to create the service.
-
createParameterFactory
public ClassDependencyFactory createParameterFactory(ClassDependencyManufacturerContext context) throws java.lang.Exception
Description copied from interface:ClassDependencyManufacturer
Creates the
ClassDependencyFactory
for the particular dependency.Should the
ClassDependencyManufacturer
not handled the dependency, it should returnnull
. This is because the firstClassDependencyManufacturer
providing aClassDependencyFactory
will be used.- Specified by:
createParameterFactory
in interfaceClassDependencyManufacturer
- Parameters:
context
-ClassDependencyManufacturerContext
.- Returns:
ClassDependencyFactory
ornull
if not able to handle dependency.- Throws:
java.lang.Exception
- If fails to create theClassDependencyFactory
.
-
-