attribute.java

来自「这个应用程序的总体思路其实很简单」· Java 代码 · 共 65 行

JAVA
65
字号
package org.kxml;


/** Attribute class, used by both kDom and the pullparser.  The
    instances of this class are immutable. This restriction allows
    manipulation aware element implementations without needing to care
    about hidden changes in attributes. */


public class Attribute  {

    String namespace;
    String name;
    String value;
    

    /** Creates a new Attribute instance with the given name and
        value. The namespace is set to "". */

    public Attribute (String name, String value) {
	this.namespace = "";
	this.name = name;
	this.value = value;
    }


    /** creates a new Attribute with the given namespace, name and
        value */

    public Attribute (String namespace, String name, String value) {
	this.namespace = namespace == null ? "" : namespace;
	this.name = name;
	this.value = value;
    }
    

    /** returns the string value of the attribute */

    public String getValue () {
	return value;
    }


    /** returns the name of the attribute */
    
    public String getName () {
	return name;
    }


    /** returns the namespace of the attribute */

    public String getNamespace () {
	return namespace;
    }


    public String toString () {
	return (!namespace.equals ("") 
		? ("{"+namespace+"}"+name)
		: name) + "=\""+value+"\"";
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?