org.smyld.db.schema.SchemaObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smyld-main-db Show documentation
Show all versions of smyld-main-db Show documentation
This projects contains SMYLD DB
package org.smyld.db.schema;
import org.smyld.SMYLDObject;
public class SchemaObject extends SMYLDObject implements SchemaConstants {
/**
*
*/
private static final long serialVersionUID = 1L;
String name;
String schemaType;
public SchemaObject() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSchemaType() {
return schemaType;
}
public void setSchemaType(String schemaType) {
this.schemaType = schemaType;
}
public String printSchemaData() {
return schemaType + " " + name;
}
}