Home | History | Annotate | Download | only in util

Lines Matching defs:Part

48     /** Get the possible values for the last part of a domain name.
72 private ArrayList<Part> parts;
104 this.parts = new ArrayList<Part>();
121 /** Return the part at the given index. */
122 public final Part getPart(int index) { return parts.get(index); }
125 public final List<Part> getParts() { return parts; }
237 parts.add(new Part());
242 // The first part inherits the meText of the line.
248 /** Returns the last part in the list. */
249 private Part lastPart() { return parts.get(parts.size() - 1); }
402 // tricky part here is that some URL characters are also punctuation, so
1243 for (Part part : parts) {
1247 for (Token token : part.getTokens()) {
1429 public static class Part {
1433 public Part() {
1455 * Convenience method for getting the Token of a Part that represents
1459 * returns the Token representing the media contained in this Part,
1469 /** Adds the given token to this part. */
1481 /** Returns the original text of this part. */
1493 /** Returns the tokens in this part. */