HomeSort by relevance Sort by last modified time
    Searched defs:optionTag (Results 1 - 4 of 4) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
ProxyRequire.java 52 * Optiontag field
54 protected String optionTag;
68 optionTag = s;
76 return optionTag;
80 * Sets the option tag value to the new supplied <var>optionTag</var>
83 * @param optionTag - the new string value of the option tag.
85 * unexpectedly while parsing the optionTag value.
87 public void setOptionTag(String optionTag) throws ParseException {
88 if (optionTag == null)
89 throw new NullPointerException("JAIN-SIP Exception, ProxyRequire, setOptionTag(), the optionTag parameter is null")
    [all...]
Require.java 50 /** optionTag field
52 protected String optionTag;
66 optionTag = s;
74 return optionTag;
78 * Sets the option tag value to the new supplied <var>optionTag</var>
81 * @param optionTag - the new string value of the option tag.
83 * unexpectedly while parsing the optionTag value.
85 public void setOptionTag(String optionTag) throws ParseException {
86 if (optionTag == null)
89 + "setOptionTag(), the optionTag parameter is null")
    [all...]
Supported.java 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
    [all...]
Unsupported.java 52 protected String optionTag;
65 optionTag = ot;
73 return optionTag;
80 return optionTag;
92 optionTag = o;

Completed in 66 milliseconds