
com.draagon.meta.manager.db.defs.BaseArgDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metaobjects-omdb Show documentation
Show all versions of metaobjects-omdb Show documentation
Relational Database ObjectManager libraries for MetaData-driven development.
The newest version!
package com.draagon.meta.manager.db.defs;
public class BaseArgDef {
private String name = null;
private int SQLType = 0;
public BaseArgDef( String name, int type ) {
setName( name );
setSQLType( type );
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getSQLType() {
return SQLType;
}
public void setSQLType(int type) {
SQLType = type;
}
public String toString() {
return getClass().getSimpleName()+" ["+getName()+"]("+getSQLType()+")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy