/** * Set the doctype-system property from the attribute value. * * @see javax.xml.transform.OutputKeys#DOCTYPE_SYSTEM * @param newValue non-null reference to processed attribute value. */ public void setDoctypeSystem(String newValue) { m_outputProperties.setProperty(OutputKeys.DOCTYPE_SYSTEM, newValue); }
/** * Set the encoding property from the attribute value. * * @see javax.xml.transform.OutputKeys#ENCODING * @param newValue non-null reference to processed attribute value. */ public void setEncoding(String newValue) { m_outputProperties.setProperty(OutputKeys.ENCODING, newValue); }
/** * Set the doctype-public property from the attribute value. * * @see javax.xml.transform.OutputKeys#DOCTYPE_PUBLIC * @param newValue non-null reference to processed attribute value. */ public void setDoctypePublic(String newValue) { m_outputProperties.setProperty(OutputKeys.DOCTYPE_PUBLIC, newValue); }
/** * Set a foreign property from the attribute value. * * @param newValue non-null reference to attribute value. */ public void addLiteralResultAttribute( String attrUri, String attrLocalName, String attrRawName, String attrValue) { QName key = new QName(attrUri, attrLocalName); m_outputProperties.setProperty(key, attrValue); }
/** * Set a foreign property from the attribute value. * * @param newValue non-null reference to attribute value. */ public void setForeignAttr( String attrUri, String attrLocalName, String attrRawName, String attrValue) { QName key = new QName(attrUri, attrLocalName); m_outputProperties.setProperty(key, attrValue); }
/** * Set the version property from the attribute value. * * @see javax.xml.transform.OutputKeys#VERSION * @param newValue non-null reference to processed attribute value. */ public void setVersion(String newValue) { m_outputProperties.setProperty(OutputKeys.VERSION, newValue); }
/** * Set the media type property from the attribute value. * * @see javax.xml.transform.OutputKeys#MEDIA_TYPE * @param newValue non-null reference to processed attribute value. */ public void setMediaType(String newValue) { m_outputProperties.setProperty(OutputKeys.MEDIA_TYPE, newValue); }