Package com.e1c.g5.v8.dt.check.qfix
Class FixDescriptor
- java.lang.Object
-
- com.e1c.g5.v8.dt.check.qfix.FixDescriptor
-
public final class FixDescriptor extends Object
This descriptor contains data being provided by theIFix
during theIFix.onRegistration(FixDescriptor)
fix initialization cycle. The fix could provide additional components, like context factories and change processors
-
-
Constructor Summary
Constructors Constructor Description FixDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IFixChangeProcessor<? extends IFixChange,? extends IFixContext>
getChangeProcessor()
Provides the change processorIFixContextFactory<? extends IFixContext>
getContextFactory()
Provides the context factoryvoid
setChangeProcessor(IFixChangeProcessor<? extends IFixChange,? extends IFixContext> changeProcessor)
Sets the change processorvoid
setContextFactory(IFixContextFactory<? extends IFixContext> contextFactory)
Sets the quick fix context factory
-
-
-
Method Detail
-
setContextFactory
public void setContextFactory(IFixContextFactory<? extends IFixContext> contextFactory)
Sets the quick fix context factory- Parameters:
contextFactory
- the context factory, cannot benull
-
getContextFactory
public IFixContextFactory<? extends IFixContext> getContextFactory()
Provides the context factory- Returns:
- the contextFactory, never
null
-
setChangeProcessor
public void setChangeProcessor(IFixChangeProcessor<? extends IFixChange,? extends IFixContext> changeProcessor)
Sets the change processor- Parameters:
changeProcessor
- the change processor, cannot benull
-
getChangeProcessor
public IFixChangeProcessor<? extends IFixChange,? extends IFixContext> getChangeProcessor()
Provides the change processor- Returns:
- the changeProcessor, never
null
-
-