⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queryconfig.java

📁 这是一个轻便的j2ee的web应用框架,是一个在多个项目中运用的实际框架,采用struts,hebinate,xml等技术,有丰富的tag,role,navigation,session,dictio
💻 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 + -