Class NoopDelegate
- java.lang.Object
-
- org.apache.tapestry5.internal.plastic.NoopDelegate
-
- All Implemented Interfaces:
PlasticClassTransformer
,PlasticManagerDelegate
- Direct Known Subclasses:
StandardDelegate
public class NoopDelegate extends Object implements PlasticManagerDelegate
-
-
Constructor Summary
Constructors Constructor Description NoopDelegate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassInstantiator
configureInstantiator(String className, ClassInstantiator instantiator)
Configures the instantiator for a transformed PlasticClass.void
transform(PlasticClass plasticClass)
Perform whatever transformations are appropriate on this PlasticClass.
-
-
-
Constructor Detail
-
NoopDelegate
public NoopDelegate()
-
-
Method Detail
-
transform
public void transform(PlasticClass plasticClass)
Description copied from interface:PlasticClassTransformer
Perform whatever transformations are appropriate on this PlasticClass.- Specified by:
transform
in interfacePlasticClassTransformer
-
configureInstantiator
public ClassInstantiator configureInstantiator(String className, ClassInstantiator instantiator)
Description copied from interface:PlasticManagerDelegate
Configures the instantiator for a transformed PlasticClass.- Specified by:
configureInstantiator
in interfacePlasticManagerDelegate
- Parameters:
className
- fully qualified class name that was transformedinstantiator
- default instantiator, which has an emptyInstanceContext
- Returns:
- the same instantiator, or a new one configured with additional
InstanceContext
values
-
-