Exemplo n.º 1
0
 /**
  * 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);
 }
Exemplo n.º 2
0
 /**
  * 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);
 }
Exemplo n.º 3
0
 /**
  * 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);
 }
Exemplo n.º 4
0
 /**
  * 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);
 }
Exemplo n.º 5
0
 /**
  * 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);
 }
Exemplo n.º 6
0
 /**
  * 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);
 }
Exemplo n.º 7
0
 /**
  * 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);
 }