Home | History | Annotate | Download | only in templates

Lines Matching refs:Properties

24 import java.util.Properties;
39 * a wrapper for {@link java.util.Properties}, but can not extend that class
66 public OutputProperties(Properties defaults)
68 m_properties = new Properties(defaults);
74 * the form output_[method].properties (for instance, output_html.properties).
75 * The output_xml.properties file is always used as the base.
77 * use the output_xml.properties file.</p>
83 m_properties = new Properties(
88 * Clone this OutputProperties, including a clone of the wrapped Properties
101 cloned.m_properties = (Properties) cloned.m_properties.clone();
302 * Reset the default properties based on the method.
313 // but it is because both output_xml.properties and
314 // output_unknown.properties have the same method=xml
322 Properties savedProps = m_properties;
323 Properties newDefaults =
325 m_properties = new Properties(newDefaults);
381 * @param props the list of properties to search in.
385 public static QName getQNameProperty(String key, Properties props)
439 * Searches for the list of qname properties with the specified key in
455 * Searches for the list of qname properties with the specified key in
471 * Searches for the list of qname properties with the specified key in
478 * @param props the list of properties to search in.
482 public static Vector getQNameProperties(String key, Properties props)
560 * Get the Properties object that this class wraps.
562 * @return non-null reference to Properties object.
564 public Properties getProperties()
575 * @param src non-null reference to the source properties.
577 public void copyFrom(Properties src)
588 * @param src non-null reference to the source properties.
592 public void copyFrom(Properties src, boolean shouldResetDefaults)
666 /** The output properties.
668 private Properties m_properties = null;
673 * the form output_[method].properties (for instance, output_html.properties).
674 * The output_xml.properties file is always used as the base.
676 * use the output_xml.properties file.</p>
680 * @return Properties object that holds the defaults for the given method.
685 static public Properties getDefaultMethodProperties(String method)