?? selectioncriteria.java
字號:
package pl.criteria;
/**
* This class is the base class for all criteria elements.
*
* @author: Artyom Rudoy
*/
public abstract class SelectionCriteria implements CriteriaPart
{
private pl.map.AttributeMap attributeMap = null;
private pl.map.ClassMap classMap = null;
/**
* SelectionCriteria constructor.
*/
public SelectionCriteria(pl.map.ClassMap classMap, pl.map.AttributeMap attributeMap)
{
super();
this.attributeMap = attributeMap;
this.classMap = classMap;
}
/**
* Returns attribute map for this criteria's attribute.
*
* @return attribute map for this criteria's attribute
*/
public pl.map.AttributeMap getAttributeMap()
{
return attributeMap;
}
public pl.map.ClassMap getClassMap()
{
return classMap;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -