Home | History | Annotate | Download | only in templates

Lines Matching full:m_properties

68     m_properties = new Properties(defaults);
83 m_properties = new Properties(
101 cloned.m_properties = (Properties) cloned.m_properties.clone();
141 m_properties.put(key, value);
155 return m_properties.getProperty(key.toNamespacedString());
172 return m_properties.getProperty(key);
184 m_properties.put(key.toNamespacedString(), value ? "yes" : "no");
196 m_properties.put(key, value ? "yes" : "no");
228 return OutputPropertyUtils.getBooleanProperty(key, m_properties);
252 m_properties.put(key, Integer.toString(value));
284 return OutputPropertyUtils.getIntProperty(key, m_properties);
309 String defaultMethod = m_properties.getProperty(OutputKeys.METHOD);
322 Properties savedProps = m_properties;
325 m_properties = new Properties(newDefaults);
371 return getQNameProperty(key, m_properties);
435 m_properties.put(key, fsb.toString());
467 return getQNameProperties(key, m_properties);
566 return m_properties;
604 Object oldValue = m_properties.get(key);
614 m_properties.put(key, val);
618 m_properties.put(key, (String) oldValue + " " + (String) src.get(key));
668 private Properties m_properties = null;