Class InsertOverprintOptions

java.lang.Object
eu.bandm.tools.option.runtime.Model<InsertOverprintOptions>
eu.bandm.tools.doctypes.ps.InsertOverprintOptions

public class InsertOverprintOptions extends Model<InsertOverprintOptions>
Generated source for command line processing.
(A parallel GUI class has not been generated. The normal way of operation is:
  1. Create a fresh instance by the only constructor InsertOverprintOptions().
  2. Analyse command line by invoking Model.parse(String[],MessageReceiver,String)
  3. Inquire whether a particular option X has been set on the commandline by invoking has_[X]().
  4. The arguments of each option are determined by a sequence of types: first a leading sequence, values for which appear exactly once, followed by a sequence which may be repeated. Both type sequences may be empty.
    Inquire value of the options n-th argument in the fixed, leading argument sequence by get_[X]_[n]().
  5. Inquire value of the options n-th argument in the k-th repetition group by get_[X]_[n](k).

If anything went wrong in parsing, errors have been sent to the MessageReceiver. Then further analysis methods can be applied (Model.getParsingProtocol(), Model.getMissingOptions(), Model.usage(), etc.)
For further details. please see the documentation of the methods inherited from the superclass Model and the option compiler's user documentation.

Here is the source text.

There have been description texts only in one language, namely en.

The usage() method will show this screen:

 ======
 USAGE:
 ======
 -0 / --inputfile      uri(="")
 input file
 -1 / --outputfile     uri(="")
 output file
 -t / --text           ( string(="") )+
 text to overprint on each page
 -a / --angle          int(=65)
 angle of overprinted text
 -g / --grayvalue      float(=0.9)
 grey value used for overprinted text
 
 
Created on 2024-03-03_16h28m08
by program bandm/metatools/option/compiler, version 2.1
command line =
bandm/metatools/option/compiler InsertOverprint.options eu.bandm.tools.doctypes.ps InsertOverprintOptions $(HOME)/metatools/src
  • Field Details

    • has_inputfile

      protected boolean has_inputfile
    • value_inputfile_0

      protected String value_inputfile_0
    • has_outputfile

      protected boolean has_outputfile
    • value_outputfile_0

      protected String value_outputfile_0
    • has_text

      protected boolean has_text
    • repvalues_text

      protected List<InsertOverprintOptions.Values_text> repvalues_text
    • serialize_text

      public final Function<InsertOverprintOptions.Values_text,String> serialize_text
    • has_angle

      protected boolean has_angle
    • value_angle_0

      protected int value_angle_0
    • has_grayvalue

      protected boolean has_grayvalue
    • value_grayvalue_0

      protected double value_grayvalue_0
  • Constructor Details

    • InsertOverprintOptions

      public InsertOverprintOptions()
  • Method Details

    • makeDefaultInstance

      public InsertOverprintOptions makeDefaultInstance()
      Description copied from class: Model
      Overriden by the generated code to make a constructor call of the actual Model (sub-)class.
      Specified by:
      makeDefaultInstance in class Model<InsertOverprintOptions>
    • checkActive

      protected void checkActive()
      Description copied from class: Model
      The generated code will evaluate all conditions to activate/deactive options in the GUI.
      Specified by:
      checkActive in class Model<InsertOverprintOptions>
    • has_inputfile

      @Deprecated public boolean has_inputfile()
      Deprecated.
      Returns:
      whether the option has been set on the command line. (The result is of no significance when using GUI input, and should neither be used in command line mode.) For details of this option see the method get_inputfile_0().
    • get_inputfile_0

      public String get_inputfile_0()
      Getter method for the only argument of option inputfile.
      This option indicates: input file.

      The format of this option on the command line is
       
         -0 / --inputfile      uri(="")
       
    • has_outputfile

      @Deprecated public boolean has_outputfile()
      Deprecated.
      Returns:
      whether the option has been set on the command line. (The result is of no significance when using GUI input, and should neither be used in command line mode.) For details of this option see the method get_outputfile_0().
    • get_outputfile_0

      public String get_outputfile_0()
      Getter method for the only argument of option outputfile.
      This option indicates: output file.

      The format of this option on the command line is
       
         -1 / --outputfile     uri(="")
       
    • has_text

      @Deprecated public boolean has_text()
      Deprecated.
      Returns:
      whether the option has been set on the command line. (The result is of no significance when using GUI input, and should neither be used in command line mode.) For details of this option see the method get_text().
    • get_text

      Getter method for all repetition groups of option text.
      This option indicates: text to overprint on each page.

      The format of this option on the command line is
       
         -t / --text           ( string(="") )+
       
    • get_text_0

      public String get_text_0(int index)
      Getter method for the only repeated argument of option text. For details of this option see the method get_text().
      Parameters:
      index - the index of the repetition group, zero based.
    • has_angle

      @Deprecated public boolean has_angle()
      Deprecated.
      Returns:
      whether the option has been set on the command line. (The result is of no significance when using GUI input, and should neither be used in command line mode.) For details of this option see the method get_angle_0().
    • get_angle_0

      public int get_angle_0()
      Getter method for the only argument of option angle.
      This option indicates: angle of overprinted text.

      The format of this option on the command line is
       
         -a / --angle          int(=65)
       
    • has_grayvalue

      @Deprecated public boolean has_grayvalue()
      Deprecated.
      Returns:
      whether the option has been set on the command line. (The result is of no significance when using GUI input, and should neither be used in command line mode.) For details of this option see the method get_grayvalue_0().
    • get_grayvalue_0

      public double get_grayvalue_0()
      Getter method for the only argument of option grayvalue.
      This option indicates: grey value used for overprinted text.

      The format of this option on the command line is
       
         -g / --grayvalue      float(=0.9)
       
    • serialize

      public String serialize()
      Description copied from class: Model
      Called to generate a String representation of the model's state. Code is overridden by the compiled code.
      Specified by:
      serialize in class Model<InsertOverprintOptions>
    • usage

      public void usage(PrintStream pr)
      Print usage information in the default language.
      Specified by:
      usage in class Model<InsertOverprintOptions>
    • usage

      public void usage(PrintStream pr, String lang)
      Print usage information in the requested language. Falls back to default language, if that language is not supported.
      Specified by:
      usage in class Model<InsertOverprintOptions>
    • usage_en

      public void usage_en()
      Print usage information in the language 'en' on System.err.
    • usage_en

      public void usage_en(PrintStream pr)
      Print usage information in the language 'en'.
    • parseAbbrev

      protected void parseAbbrev(String select)
      Description copied from class: Model
      Callback, overridden by compiled code, which realizes a switch over all one character option names. The generated code calls the argument parsers and stores the resulting values to the model's fields.
      Specified by:
      parseAbbrev in class Model<InsertOverprintOptions>
      Parameters:
      select - the one-character option name, as parsed by this code.
    • parseName

      protected void parseName(String select)
      Description copied from class: Model
      Callback, overridden by compiled code, which realizes a switch over all long option names. The generated code calls the argument parsers and stores the resulting values to the model's fields.
      Specified by:
      parseName in class Model<InsertOverprintOptions>
      Parameters:
      select - the multi-character option name, as parsed by this code.
    • numberOfPositionals

      protected int numberOfPositionals()
      Description copied from class: Model
      The generated code will return the number of positional parameters.
      Specified by:
      numberOfPositionals in class Model<InsertOverprintOptions>
    • parsePositionals

      protected void parsePositionals()
      Description copied from class: Model
      Callback, overridden by compiled code, which calls one after the other the positional parameters. Each of them corresponds to an implicit option (with short names "-0", "-1", "-2", ...). These can also be defined explicitly, e.g. be given a long name, etc. Anyhow, they can be set explicitly by their short name. If one single positional option is given explicitly, the implicit parsing of the others is suppressed and this code will not be called.
      Specified by:
      parsePositionals in class Model<InsertOverprintOptions>
    • _finalCheck

      protected void _finalCheck()
      Description copied from class: Model
      Callback, overridden by compiled code.
      Specified by:
      _finalCheck in class Model<InsertOverprintOptions>
    • _getMissingOptions

      public String _getMissingOptions()
      Description copied from class: Model
      Is overridden in the generated code and concatenates the "longest names" of all otions marked as required, but not present in the parsed input. Length==0 iff none is missing. Cf "sourcedtd required='yes'" in tools/tdom_withOptions/Options.xml
      Specified by:
      _getMissingOptions in class Model<InsertOverprintOptions>
    • _getRedundantOptions

      public String _getRedundantOptions()
      Description copied from class: Model
      Callback, overridden by compiled code.
      Specified by:
      _getRedundantOptions in class Model<InsertOverprintOptions>