Class YourParameters

  • All Implemented Interfaces:
    org.processmining.basicutils.parameters.PluginParameters

    public class YourParameters
    extends org.processmining.basicutils.parameters.impl.PluginParametersImpl
    Example class of Parameters - not used in Prime Miner
    Author:
    E.Verbeek
    • Field Summary

      • Fields inherited from interface org.processmining.basicutils.parameters.PluginParameters

        DEBUG, ERROR, MESSAGE, WARNING
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object object)
      example method of equal
      int getYourInteger()  
      java.lang.String getYourString()  
      boolean isYourBoolean()  
      void setYourBoolean​(boolean yourBoolean)  
      void setYourInteger​(int yourInteger)  
      void setYourString​(java.lang.String yourString)  
      java.lang.String toString()
      example toString method
      • Methods inherited from class org.processmining.basicutils.parameters.impl.PluginParametersImpl

        displayError, displayError, displayMessage, displayMessage, displayWarning, displayWarning, getMessageLevel, isTryConnections, setMessageLevel, setTryConnections
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • YourParameters

        public YourParameters​(YourParameters parameters)
        Parameters:
        parameters - parameters
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object object)
        example method of equal
        Overrides:
        equals in class org.processmining.basicutils.parameters.impl.PluginParametersImpl
        Parameters:
        object - object
      • setYourBoolean

        public void setYourBoolean​(boolean yourBoolean)
        Parameters:
        yourBoolean - yourBoolean
      • isYourBoolean

        public boolean isYourBoolean()
        Returns:
        yourBoolean yourBoolean
      • setYourInteger

        public void setYourInteger​(int yourInteger)
        Parameters:
        yourInteger - yourInteger
      • getYourInteger

        public int getYourInteger()
        Returns:
        yourInteger yourInteger
      • setYourString

        public void setYourString​(java.lang.String yourString)
        Parameters:
        yourString - yourString
      • getYourString

        public java.lang.String getYourString()
        Returns:
        yourString yourString
      • toString

        public java.lang.String toString()
        example toString method
        Overrides:
        toString in class java.lang.Object