org.smyld.db.schema.ProcedureColumn 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;
public class ProcedureColumn extends TableColumn {
/**
*
*/
private static final long serialVersionUID = 1L;
int direction;
public ProcedureColumn() {
}
public int getDirection() {
return direction;
}
public void setDirection(int direction) {
this.direction = direction;
}
}