Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 16 19 package org.apache.xalan.templates; 20 21 27 public class NamespaceAlias extends ElemTemplateElement 28 { 29 30 36 public NamespaceAlias(int docOrderNumber) 37 { 38 super(); 39 m_docOrderNumber = docOrderNumber; 40 } 41 42 46 private String m_StylesheetPrefix; 47 48 53 public void setStylesheetPrefix(String v) 54 { 55 m_StylesheetPrefix = v; 56 } 57 58 63 public String getStylesheetPrefix() 64 { 65 return m_StylesheetPrefix; 66 } 67 68 72 private String m_StylesheetNamespace; 73 74 79 public void setStylesheetNamespace(String v) 80 { 81 m_StylesheetNamespace = v; 82 } 83 84 89 public String getStylesheetNamespace() 90 { 91 return m_StylesheetNamespace; 92 } 93 94 98 private String m_ResultPrefix; 99 100 105 public void setResultPrefix(String v) 106 { 107 m_ResultPrefix = v; 108 } 109 110 115 public String getResultPrefix() 116 { 117 return m_ResultPrefix; 118 } 119 120 124 private String m_ResultNamespace; 125 126 131 public void setResultNamespace(String v) 132 { 133 m_ResultNamespace = v; 134 } 135 136 141 public String getResultNamespace() 142 { 143 return m_ResultNamespace; 144 } 145 146 151 public void recompose(StylesheetRoot root) 152 { 153 root.recomposeNamespaceAliases(this); 154 } 155 156 } 157
| Popular Tags
|