1 package mobisnap.mobile_trx;
2
3 public class MSQLTableField
4 {
5 public String name;
6 public ASTTypeDeclaration type;
7 public boolean notnull, unique, primarykey;
8
9 MSQLTableField( String name) {
10 this.name = name;
11 notnull = false;
12 unique = false;
13 primarykey = false;
14 }
15 }
This page was automatically generated by Maven