Lines Matching refs:properties

108         "http://xml.org/sax/properties/lexical-handler";
149 * Output properties of this transformer instance.
334 // Pass output properties to the translet
348 // Pass output properties to handler if identity
851 * Returns a copy of the output properties for the transformation. This is
852 * a set of layered properties. The first layer contains properties set by
885 * Set the output properties for the transformation. These properties
886 * will override properties set in the Templates with xsl:output.
887 * Unrecognised properties will be quitely ignored.
889 * @param properties The properties to use for the Transformer
892 public void setOutputProperties(Properties properties)
895 if (properties != null) {
896 final Enumeration names = properties.propertyNames();
901 // Ignore lower layer properties
902 if (isDefaultProperty(name, properties)) continue;
905 _properties.setProperty(name, properties.getProperty(name));
939 * Internal method to pass any properties to the translet prior to
944 // Return right now if no properties are set
947 // Get a list of all the defined properties
954 // Ignore default properties
1015 * This method is used to pass any properties to the output handler
1020 // Return right now if no properties are set
1026 // Get a list of all the defined properties
1033 // Ignore default properties
1116 * Internal method to create the initial set of properties. There
1117 * are two layers of properties: the default layer and the base layer.
1118 * The latter contains properties defined in the stylesheet or by
1155 * Internal method to get the default properties from the
1157 * @param props a java.util.Property object on which the properties are set.
1195 private boolean isDefaultProperty(String name, Properties properties) {
1196 return (properties.get(name) == null);