Package com.e1c.g5.v8.dt.check.qfix
Class FixDescriptor
java.lang.Object
com.e1c.g5.v8.dt.check.qfix.FixDescriptor
This descriptor contains data being provided by the
IFix
during the IFix.onRegistration(FixDescriptor)
fix initialization cycle. The fix could provide additional components, like context factories and change processors-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionIFixChangeProcessor<? extends IFixChange,
? extends IFixContext> Provides the change processorIFixContextFactory<? extends IFixContext>
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
-
Constructor Details
-
FixDescriptor
public FixDescriptor()
-
-
Method Details
-
setContextFactory
Sets the quick fix context factory- Parameters:
contextFactory
- the context factory, cannot benull
-
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
Provides the change processor- Returns:
- the changeProcessor, never
null
-