Show LogsCommand.java syntax highlighted
/*
* Created on 30/06/2004
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.kneobase.web.logs;
/**
* @author gustavo
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class LogsCommand {
String robot = "";
boolean exists;
String includeFile = "";
/**
* @return
*/
public String getRobot() {
return robot;
}
/**
* @param string
*/
public void setRobot(String string) {
robot = string;
}
/**
* @return
*/
public boolean isExists() {
return exists;
}
/**
* @return
*/
public String getIncludeFile() {
return includeFile;
}
/**
* @param b
*/
public void setExists(boolean b) {
exists = b;
}
/**
* @param string
*/
public void setIncludeFile(String string) {
includeFile = string;
}
}
See more files for this project here
Kneobase is an enterprise search engine, based upon the Lucene search engine and the Spring framework. It allows to perform full-text search across many different content sources. It is highly adaptable out-of-the-box and has a pluggable architecture.
Project homepage:
http://sourceforge.net/projects/kneobase
Programming language(s): Java,XML
License: other
LogsCommand.java
LogsController.java