placeholder.java

来自「一个完整的XACML工程,学习XACML技术的好例子!」· Java 代码 · 共 34 行

JAVA
34
字号
package ke.defaultimpl.utils.xml.parsing;

import java.util.Hashtable;

public class PlaceHolder
{
	public PlaceHolder()
	{
		this.atts = new Hashtable();
	}

	public void setType(String type)
	{
		this.type = type;
	}

	public void setAttribute(String name, Object value)
	{
		this.atts.put(name, value);
	}

	public String getType()
	{
		return this.type;
	}

	public Object getAttribute(String name)
	{
		return this.atts.get(name);
	}

	private Hashtable atts;
	private String type;
}

⌨️ 快捷键说明

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