SuperX-Kernmodul
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
891 B

/*
* Created on 23.07.2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package de.memtext.db;
/**
* @author Gast
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class ComparisonUnit {
private String name, sql;
public ComparisonUnit(String name, String sql) {
this.name = name;
this.sql = sql;
}
/**
* @return
*/
public String getName() {
return name;
}
/**
* @return
*/
public String getSql() {
return sql;
}
/**
* @param string
*/
public void setName(String string) {
name = string;
}
/**
* @param string
*/
public void setSql(String string) {
sql = string;
}
}