Attribute.java
上传用户:haojie1228
上传日期:2022-08-08
资源大小:347k
文件大小:1k
源码类别:

通讯/手机编程

开发平台:

Java

  1. package org.kxml;
  2. /** Attribute class, used by both kDom and the pullparser.  The
  3.     instances of this class are immutable. This restriction allows
  4.     manipulation aware element implementations without needing to care
  5.     about hidden changes in attributes. */
  6. public class Attribute  {
  7.     String namespace;
  8.     String name;
  9.     String value;
  10.     
  11.     /** Creates a new Attribute instance with the given name and
  12.         value. The namespace is set to "". */
  13.     public Attribute (String name, String value) {
  14. this.namespace = "";
  15. this.name = name;
  16. this.value = value;
  17.     }
  18.     /** creates a new Attribute with the given namespace, name and
  19.         value */
  20.     public Attribute (String namespace, String name, String value) {
  21. this.namespace = namespace == null ? "" : namespace;
  22. this.name = name;
  23. this.value = value;
  24.     }
  25.     
  26.     /** returns the string value of the attribute */
  27.     public String getValue () {
  28. return value;
  29.     }
  30.     /** returns the name of the attribute */
  31.     
  32.     public String getName () {
  33. return name;
  34.     }
  35.     /** returns the namespace of the attribute */
  36.     public String getNamespace () {
  37. return namespace;
  38.     }
  39.     public String toString () {
  40. return (!namespace.equals ("") 
  41. ? ("{"+namespace+"}"+name)
  42. : name) + "=""+value+""";
  43.     }
  44. }