Class ParameterExternalImage


public class ParameterExternalImage extends ParameterImage
A image placeholder variable parameter used in either the recording or execution of a script action. This type of image parameter indicates that the image is not generated by other script actions; it must be specified externally by whatever is running the script that this parameter is used in.
  • Constructor Details

    • ParameterExternalImage

      public ParameterExternalImage(String paramLabel) throws ParserException
      Creates a new ParameterImage object.
      Parameters:
      paramLabel - The label/name to give to this parameter.
      Throws:
      ParserException - If there is a problem creating the parameter.
    • ParameterExternalImage

      public ParameterExternalImage(String paramLabel, String paramTypeString, String paramValueString) throws ParserException
      Creates a new ParameterExternalImage object.
      Parameters:
      paramLabel - The label/name to give to this parameter.
      paramTypeString - The type of this parameter, in string form.
      paramValueString - The new parameter value.
      Throws:
      ParserException - If there is a problem creating the parameter.
    • ParameterExternalImage

      public ParameterExternalImage(String paramLabel, int paramType, String paramValueString) throws ParserException
      Creates a new ParameterExternalImage object.
      Parameters:
      paramLabel - The label/name to give to this parameter.
      paramType - The type of this parameter (should be PARAM_EXTERNAL_IMAGE).
      paramValueString - The new parameter value.
      Throws:
      ParserException - If there is a problem creating the parameter.