Class TagCalculationQueryConfigPanel

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible

public class TagCalculationQueryConfigPanel extends QueryConfigPanel
Filename: TagCalculationQueryConfigPanel.java Created on Aug 06, 2015 Author: Kathy Applebaum Copyright Inductive Automation 2015 Project: Reporting
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • dispose

      public void dispose()
      Description copied from class: QueryConfigPanel
      Ensures that the panel is properly disposed if the designer tears down the owning workspace in order to open a new project. Child classes should override this to unregister, unsubscribe, or dispose of any references to resources this panel is holding on to.
      Overrides:
      dispose in class QueryConfigPanel
    • setConfigObject

      public void setConfigObject(TagCalculationQueryConfig configObject)
    • getConfigObject

      @Nonnull public QueryConfig getConfigObject()
      Description copied from class: QueryConfigPanel

      Implement this to return a new query config that will be saved in the report resource. The class you use for this must be:

      • In Common Scope (because it's used in designer and gateway
      • Traditionally java.io.Serializable
      • Ignition's bean-style XML serializable (public, empty ctor and getter/setters

      Make sure to make new copies of your query config object each time; don't mutate and re-use an existing instance of your config object.

      Specified by:
      getConfigObject in class QueryConfigPanel