Interface IQuickFix


public interface IQuickFix
Quick-fix interface needed by a quick-fix private object to integrate with Eclipse.
Author:
Christopher Mindus
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Defined Quick-Fixes from the Designer package.
    static final String
     
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets a class that is used to instantiate a new instance of this QuickFix interface implementor class when loaded from XML.
    void
    loadFrom(Element element)
    Called when loaded from file to fill the quick-fix with data from XML.
    void
    saveTo(Element element)
    Saves the data into an element.
  • Field Details

  • Method Details

    • getConstructor

      Class<IQuickFix> getConstructor()
      Gets a class that is used to instantiate a new instance of this QuickFix interface implementor class when loaded from XML.
    • loadFrom

      void loadFrom(Element element) throws Exception
      Called when loaded from file to fill the quick-fix with data from XML.
      Throws:
      Exception - For errors.
    • saveTo

      void saveTo(Element element)
      Saves the data into an element.
      Parameters:
      element - The parent element, typically the properties main element.