com.agimatec.sql.meta.A_IntegrityRuleDescription Maven / Gradle / Ivy
package com.agimatec.sql.meta;
import java.io.Serializable;
/**
* Description: Base class for different kinds of integrity rule descriptions
* Copyright: Copyright (c) 2007
* Company: Agimatec GmbH
* Creation Date: 17.11.2007
*
* @author Roman Stumm
*/
public abstract class A_IntegrityRuleDescription implements Serializable, Cloneable {
protected String tableName;
protected String tableSpace;
public String getTableName() {
return tableName;
}
public void setTableName(String aTableName) {
tableName = aTableName;
}
public String getTableSpace() {
return tableSpace;
}
public void setTableSpace(String aTableSpace) {
tableSpace = aTableSpace;
}
public abstract int getColumnSize();
public abstract String getColumn(int i);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy