Lines Matching refs:parameter

286          * @param param The parameter that should be added.
298 * Returns the set of parameter names for this property.
299 * @return The set of parameter names for this property.
316 * Returns the first parameter with the specified name. May return
317 * nll if there is no such parameter.
318 * @param name The name of the parameter that should be returned.
319 * @return The first parameter with the specified name.
355 * A parameter defined for an iCalendar property.
363 * Creates a new empty parameter.
369 * Creates a new parameter with the specified name and value.
370 * @param name The name of the parameter.
371 * @param value The value of the parameter.
386 * Helper method that appends this parameter to a StringBuilder.
511 Parameter parameter = null;
512 while ((parameter = extractParameter(state)) != null) {
513 property.addParameter(parameter);
539 * Extracts the next parameter from the line, if any. If there are no more
546 Parameter parameter = null;
552 if (parameter != null) {
555 + "parameter in " + text);
557 parameter.value = text.substring(equalIndex + 1,
560 return parameter; // may be null
562 if (parameter != null) {
565 + "parameter in " + text);
567 parameter.value = text.substring(equalIndex + 1,
569 return parameter;
571 parameter = new Parameter();
576 if ((parameter == null) || (startIndex == -1)) {
580 parameter.name = text.substring(startIndex + 1, equalIndex);
582 if (parameter == null) {
583 throw new FormatException("Expected parameter before '\"' in " + text);
586 throw new FormatException("Expected '=' within parameter in " + text);
595 parameter.value = text.substring(state.index + 1, endQuote);
597 return parameter;