Lines Matching refs:key

58  * values to be used when a given key is not found in this {@code Properties}
77 + " <!ATTLIST entry key CDATA #REQUIRED >";
106 private void dumpString(StringBuilder buffer, String string, boolean key) {
108 if (!key && i < string.length() && string.charAt(i) == ' ') {
129 if ("\\#!=:".indexOf(ch) >= 0 || (key && ch == ' ')) {
204 String key = (String) keys.nextElement();
205 buffer.append(key);
207 String property = (String) super.get(key);
210 property = (String) def.get(key);
240 String key = (String) keys.nextElement();
241 buffer.append(key);
243 String property = (String) super.get(key);
246 property = (String) def.get(key);
272 * <li>A property line consists of the key, the space between the key and
273 * the value, and the value. The key goes up to the first whitespace, "=" or
274 * ":" that is not escaped. The space between the key and the value contains
277 * first character after the space between the key and the value.</li>
417 if (keyLength == -1) { // if parsing the key
428 // if key length == 0 or value length == 0
432 if (keyLength == -1) { // if parsing the key
491 * @throws ClassCastException if the key or value of a mapping is not a
506 * Maps the specified key to the specified value. If the key already exists,
507 * the old value is replaced. The key and value cannot be {@code null}.
510 * the key.
513 * @return the old value mapped to the key, or {@code null}.
531 * @throws ClassCastException if the key or value of a mapping is not a
553 String key = (String) entry.getKey();
554 dumpString(buffer, key, true);
639 String key = entry.getAttribute("key");
648 * key != null & value != null but key or(and) value can be
651 put(key, value);
748 printStream.print("<entry key=\"");