Home | History | Annotate | Download | only in header

Lines Matching defs:optionTag

53     protected String optionTag;
60 optionTag = null;
69 optionTag = option_tag;
78 if (optionTag != null)
79 retval += SP + optionTag;
89 return optionTag != null ? optionTag : "";
93 * Sets the option tag value to the new supplied <var>optionTag</var>
96 * @param optionTag - the new string value of the option tag.
98 * unexpectedly while parsing the optionTag value.
100 public void setOptionTag(String optionTag) throws ParseException {
101 if (optionTag == null)
104 + "setOptionTag(), the optionTag parameter is null");
105 this.optionTag = optionTag;
109 * Gets the option tag of this OptionTag class.
114 return optionTag;