📄 placeholder.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -