Lines Matching defs:defaults
45 * "defaults"; this second property list is searched if
129 protected Properties defaults;
139 * Creates an empty property list with the specified defaults.
141 * @param defaults the defaults.
143 public Properties(Properties defaults) {
144 this.defaults = defaults;
720 * Properties from the defaults table of this <code>Properties</code>
777 * Properties from the defaults table of this <code>Properties</code>
942 * and its defaults, recursively, are then checked. The method returns
948 * @see #defaults
953 return ((sval == null) && (defaults != null)) ? defaults.getProperty(key) : sval;
959 * and its defaults, recursively, are then checked. The method returns the
967 * @see #defaults
985 * @see java.util.Properties#defaults
1009 * @see java.util.Properties#defaults
1075 if (defaults != null) {
1076 defaults.enumerate(h);
1090 if (defaults != null) {
1091 defaults.enumerateStringProperties(h);