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 the IFix during the IFix.onRegistration(FixDescriptor) fix initialization cycle. The fix could provide additional components, like context factories and change processors
  • Constructor Details

    • FixDescriptor

      public FixDescriptor()
  • Method Details

    • setContextFactory

      public void setContextFactory(IFixContextFactory<? extends IFixContext> contextFactory)
      Sets the quick fix context factory
      Parameters:
      contextFactory - the context factory, cannot be null
    • 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 be null
    • getChangeProcessor

      public IFixChangeProcessor<? extends IFixChange,? extends IFixContext> getChangeProcessor()
      Provides the change processor
      Returns:
      the changeProcessor, never null