Searched refs:TokenList (Results 1 - 2 of 2) sorted by relevance

/openjdk10/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java36 public class TokenList extends ArrayList<String> implements CharSequence { class in inherits:ArrayList,CharSequence
41 public TokenList() { method in class:TokenList
45 public TokenList(Collection<? extends Object> tokens) { method in class:TokenList
51 public TokenList(Collection<? extends Object> tokens, String separator) { method in class:TokenList
57 public TokenList(Object[] tokens) { method in class:TokenList
63 public TokenList(Object[] tokens, int beg, int end) { method in class:TokenList
69 public TokenList(Object[] tokens, int beg, int end, String separator) { method in class:TokenList
75 public TokenList(String tokenStr) { method in class:TokenList
79 public TokenList(String tokenStr, String separator) { method in class:TokenList
83 public TokenList(Strin method in class:TokenList
[all...]
H A DXMLKit.java137 * int addContent(int i=0, TokenList|Element|Object|null)
138 * void XMLKit.addContent(TokenList|Element|Object|null, Collection sink|null)
899 * Otherwise, returns a TokenList of all sub-elements.
907 return new TokenList(parts, 0, size);
947 return new TokenList();
1018 if (text instanceof TokenList) {
1020 addAll(0, (TokenList) text);
1035 * return multiple tokens (in a TokenList) are respected.
1040 * text (i.e., if it is a TokenList), are preserved. However,
1045 * If the given text is a TokenList, ad
[all...]

Completed in 101 milliseconds