All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.chandre.admintool.db.ExampleStatement Maven / Gradle / Ivy

There is a newer version: 1.1.7.3
Show newest version
package de.chandre.admintool.db;

import java.io.Serializable;

/**
 * 
 * @author Andre
 *
 */
public class ExampleStatement implements Serializable
{
	private static final long serialVersionUID = 1L;
	
	private String statement;
	private String description;
	
	/**
	 * @return the statement
	 */
	public String getStatement() {
		return statement;
	}
	
	/**
	 * the sql statement
	 * @param statement the statement to set
	 */
	public void setStatement(String statement) {
		this.statement = statement;
	}
	
	/**
	 * @return the description
	 */
	public String getDescription() {
		return description;
	}
	
	/**
	 * a description what the statement is for, or what it should return
	 * @param description the description to set
	 */
	public void setDescription(String description) {
		this.description = description;
	}
	
	
	@Override
	public String toString() {
		StringBuilder builder = new StringBuilder();
		builder.append("ExampleStatement [statement=").append(statement).append(", description=").append(description)
				.append("]");
		return builder.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy