📄 queryconfig.java
字号:
/*
* Created on 2004-4-2
*
*/
package com.esimple.service.query.config;
import java.util.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* @author steven
*
*/
public class QueryConfig extends Config{
private ArrayList conditions = new ArrayList();
private ArrayList results = new ArrayList();
protected Log logger = LogFactory.getLog(this.getClass());
private QueryACLConfig acl;
private String selectHint;
private String from ;
private String where;
private String export;
private boolean count;
private int beginNum;
private int pageLength;
private String action;
public void setAction(String action){
this.action =action;
}
public String getAction(){
return this.action;
}
public void setExport(String export){
this.export =export;
}
public String getExport(){
return this.export;
}
public void setFrom(String from){
this.from =from;
}
public String getFrom(){
return this.from;
}
public void setWhere(String where){
this.where =where;
}
public String getWhere(){
return this.where;
}
public void setSelectHint(String selectHint){
this.selectHint =selectHint;
}
public String getSelectHint(){
return this.selectHint;
}
public void setCount(boolean count){
this.count = count;
}
public boolean isCount(){
return this.count;
}
public void setPageLength(int pageLength){
this.pageLength =pageLength;
}
public int getPageLength(){
return this.pageLength;
}
public void setResults(ArrayList results){
this.results =results;
}
public ArrayList getResults(){
return this.results;
}
public void setConditions(ArrayList conditions){
this.conditions =conditions;
}
public ArrayList getConditions(){
return this.conditions;
}
public void setAcl(QueryACLConfig acl){
this.acl =acl;
}
public QueryACLConfig getAcl(){
return this.acl;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -