summaryrefslogtreecommitdiff
path: root/src/com/redstoner/misc/mysql/elements/MysqlField.java
diff options
context:
space:
mode:
authorDavid <david@panic.tk>2018-11-06 16:16:01 +0100
committerDavid <david@panic.tk>2018-11-06 16:16:01 +0100
commit4810dcf339a59f49305e184fc22abf839d41c310 (patch)
treeb45f08b5832a71492f94c43d89a77ec6037908f6 /src/com/redstoner/misc/mysql/elements/MysqlField.java
parent54a6cbf4c86421ddec4852b2d764442f5b1c5b28 (diff)
Moved files to use the gradle structure
Diffstat (limited to 'src/com/redstoner/misc/mysql/elements/MysqlField.java')
-rw-r--r--src/com/redstoner/misc/mysql/elements/MysqlField.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/com/redstoner/misc/mysql/elements/MysqlField.java b/src/com/redstoner/misc/mysql/elements/MysqlField.java
deleted file mode 100644
index 61cba2e..0000000
--- a/src/com/redstoner/misc/mysql/elements/MysqlField.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.redstoner.misc.mysql.elements;
-
-import com.redstoner.misc.mysql.types.MysqlType;
-
-public class MysqlField {
- private String name;
- private MysqlType type;
- private boolean canBeNull;
-
- public MysqlField(String name, MysqlType type, boolean canBeNull) {
- this.name = name;
- this.type = type;
- this.canBeNull = canBeNull;
- }
-
- public MysqlField(String name, String type, boolean canBeNull) {
- this.name = name;
- this.type = MysqlType.getTypeFromString(type);
- this.canBeNull = canBeNull;
- }
-
- public String getName() {
- return name;
- }
-
- public MysqlType getType() {
- return type;
- }
-
- public boolean canBeNull() {
- return canBeNull;
- }
-}