Package spoon.processing
Class ProcessorPropertiesImpl
- java.lang.Object
-
- spoon.processing.ProcessorPropertiesImpl
-
- All Implemented Interfaces:
ProcessorProperties
public class ProcessorPropertiesImpl extends Object implements ProcessorProperties
-
-
Constructor Summary
Constructors Constructor Description ProcessorPropertiesImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
get(Class<T> type, String name)
Gets the property converted in given type or null (can be an array).String
getProcessorName()
Gets the corresponding processor name.void
set(String name, Object o)
Sets the given property.
-
-
-
Method Detail
-
get
public <T> T get(Class<T> type, String name)
Description copied from interface:ProcessorProperties
Gets the property converted in given type or null (can be an array).- Specified by:
get
in interfaceProcessorProperties
-
set
public void set(String name, Object o)
Description copied from interface:ProcessorProperties
Sets the given property.- Specified by:
set
in interfaceProcessorProperties
-
getProcessorName
public String getProcessorName()
Gets the corresponding processor name.- Specified by:
getProcessorName
in interfaceProcessorProperties
-
-