1 16 19 package org.apache.xalan.templates; 20 21 24 public class XMLNSDecl 25 implements java.io.Serializable { 27 28 35 public XMLNSDecl(String prefix, String uri, boolean isExcluded) 36 { 37 38 m_prefix = prefix; 39 m_uri = uri; 40 m_isExcluded = isExcluded; 41 } 42 43 45 private String m_prefix; 46 47 52 public String getPrefix() 53 { 54 return m_prefix; 55 } 56 57 59 private String m_uri; 60 61 65 public String getURI() 66 { 67 return m_uri; 68 } 69 70 72 private boolean m_isExcluded; 73 74 80 public boolean getIsExcluded() 81 { 82 return m_isExcluded; 83 } 84 } 85 | Popular Tags |