📄 searchcriteria.java
字号:
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package eti.bi.alphaminer.vo;
/**
* SearchCriteria is a class responsible for storing searching criteria for matching
* available Cases.
*/
public class SearchCriteria {
/**
* SearchCriteria details
*/
private String m_Keywords;
private String m_Industry;
private String m_ProblemType;
private String m_BusinessObjective;
private String m_DataMiningGoal;
private String m_CompanyName;
private String m_DepartmentName;
/**
* Contructs a SearchCriteria
*/
public SearchCriteria() {
}
/**
* Gets keywords.
* @return keywords
*/
public String getKeywords() {
return m_Keywords;
}
/**
* Sets keywords.
* @param a_Keywords the keywords to be set.
*/
public void setKeywords(String a_Keywords) {
m_Keywords = a_Keywords;
}
/**
* Gets industry.
* @return industry.
*/
public String getIndustry() {
return m_Industry;
}
/**
* Sets industry.
* @param a_Industry industry to be set.
*/
public void setIndustry(String a_Industry) {
m_Industry = a_Industry;
}
/**
* Gets problem type.
* @return problem type.
*/
public String getProblemType() {
return m_ProblemType;
}
/**
* Sets problem type.
* @param a_ProblemType problem type to be set.
*/
public void setProblemType(String a_ProblemType) {
m_ProblemType = a_ProblemType;
}
/**
* Gets business objective.
* @return business objective.
*/
public String getBusinessObjective() {
return m_BusinessObjective;
}
/**
* Sets business objective.
* @param a_BusinessObjective business objective to be set.
*/
public void setBusinessObjective(String a_BusinessObjective) {
m_BusinessObjective = a_BusinessObjective;
}
/**
* Gets data mining goal.
* @return data mining goal.
*/
public String getDataMiningGoal() {
return m_DataMiningGoal;
}
/**
* Set data mining goal.
* @param a_DataMiningGoal data mining goal to be set.
*/
public void setDataMiningGoal(String a_DataMiningGoal) {
m_DataMiningGoal = a_DataMiningGoal;
}
/**
* Gets company name.
* @return company name.
*/
public String getCompanyName() {
return m_CompanyName;
}
/**
* Sets company name.
* @param a_CompanyName the company name to be set.
*/
public void setCompanyName(String a_CompanyName) {
m_CompanyName = a_CompanyName;
}
/**
* Gets department name.
* @return department name.
*/
public String getDepartmentName() {
return m_DepartmentName;
}
/**
* Set department name.
* @param a_DepartmentName department name to be set.
*/
public void setDepartmentName(String a_DepartmentName) {
m_DepartmentName = a_DepartmentName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -