Home | History | Annotate | Download | only in header

Lines Matching refs:method

47     /** method field
49 protected String method;
62 method = m;
65 /** get the method field
69 return method;
73 * Set the method member
74 * @param method method to set.
76 public void setMethod(String method) throws ParseException {
77 if (method == null)
80 + ", Allow, setMethod(), the method parameter is null.");
81 this.method = method;
88 return method;