Library | Package Java Toolkit

Interface FeatureParamActionListener

package com.ptc.wfc.wfcFeature;

public interface FeatureParamActionListener
  extends com.ptc.pfc.pfcBase.ActionListener



Description

This class defines an action listener for features.



Method Summary
voidOnAfterParameterDelete (Feature Owner, String Name, Unit Units, ParamValue OldValue)
     This is the listener method called after deleting a parameter.
voidOnAfterParameterModify (Parameter Param, Unit NewUnits, ParamValue NewValue, Unit OldUnits, ParamValue OldValue)
     This is the notification function called after a parameter is modified.
voidOnBeforeParameterCreate (Feature Owner, String Name, Unit Units, ParamValue Value)
     This is the notification function called before a parameter is created.
voidOnBeforeParameterModify (Parameter Param, Unit NewUnits, ParamValue NewValue, Unit OldUnits, ParamValue OldValue)
     This is the notification function called before a parameter is modified.

Method Detail

OnBeforeParameterCreate

voidOnBeforeParameterCreate (Feature Owner, String Name, Unit Units, ParamValue Value)


     This is the notification function called before a parameter is created.
Manual References:
Action Listeners: Feature Level Action Listeners, Action Listeners: Feature Level Action Listeners
Parameters:
Owner
Owner of the parameter being created.
Name
Parameter name.
Units
Parameter Units.
Value
Parameter Value.
Returns:


OnBeforeParameterModify

voidOnBeforeParameterModify (Parameter Param, Unit NewUnits, ParamValue NewValue, Unit OldUnits, ParamValue OldValue)


     This is the notification function called before a parameter is modified.
Manual References:
Action Listeners: Feature Level Action Listeners, Action Listeners: Feature Level Action Listeners
Parameters:
Param
Parameter which is being modified.
NewUnits
New units of the parameter.
NewValue
New value of the parameter.
OldUnits
Old units of the parameter.
OldValue
Old value of the parameter.
Returns:


OnAfterParameterModify

voidOnAfterParameterModify (Parameter Param, Unit NewUnits, ParamValue NewValue, Unit OldUnits, ParamValue OldValue)


     This is the notification function called after a parameter is modified.
Manual References:
Action Listeners: Feature Level Action Listeners, Action Listeners: Feature Level Action Listeners
Parameters:
Param
Parameter which is being modified.
NewUnits
New units of the parameter.
NewValue
New value of the parameter.
OldUnits
Old units of the parameter.
OldValue
Old value of the parameter.
Returns:


OnAfterParameterDelete

voidOnAfterParameterDelete (Feature Owner, String Name, Unit Units, ParamValue OldValue)


     This is the listener method called after deleting a parameter.
Manual References:
Action Listeners: Feature Level Action Listeners
Parameters:
Owner
Owner of the parameter being deleted.
Name
Parameter name.
Units
Parameter Units.
OldValue
Returns: