preparing new release
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / model / ColumnImpl.java
index 7944c2b..66a5674 100644 (file)
@@ -7,7 +7,7 @@ import com.quantum.util.sql.TypesHelper;
  */
 class ColumnImpl implements Column, Comparable {
 
-    private int size;
+    private long size;
     private boolean nullable;
     private int primaryKeyOrder;
     private String name;
@@ -19,7 +19,7 @@ class ColumnImpl implements Column, Comparable {
     private String remarks;
     
     ColumnImpl(Entity entity, String name, String typeName, int type, 
-        int size, int numberOfFractionalDigits, boolean nullable, int position,
+        long size, int numberOfFractionalDigits, boolean nullable, int position,
         String remarks) {
            
         this.entity = entity;
@@ -127,7 +127,7 @@ class ColumnImpl implements Column, Comparable {
     /**
      * @return
      */
-    public int getSize() {
+    public long getSize() {
         return size;
     }