Home | History | Annotate | Download | only in jheer

Lines Matching refs:values

154      * @param values the values of the attributes
159 protected void tag(String tag, String[] names, String[] values,
170 escapeString(values[i]);
187 * @param values the values of the attributes
190 public void tag(String tag, String[] names, String[] values, int nattr) throws IOException
192 tag(tag, names, values, nattr, true);
200 * @param values the values of the attributes
203 public void start(String tag, String[] names, String[] values, int nattr) throws IOException
205 tag(tag, names, values, nattr, false);
278 * @param values the values of the attributes
283 protected void tag(String tag, ArrayList names, ArrayList values,
294 escapeString((String)values.get(i));
311 * @param values the values of the attributes
314 public void tag(String tag, ArrayList names, ArrayList values, int nattr) throws IOException
316 tag(tag, names, values, nattr, true);
324 * @param values the values of the attributes
327 public void start(String tag, ArrayList names, ArrayList values, int nattr) throws IOException
329 tag(tag, names, values, nattr, false);