| 1 | |
|
| 2 | |
|
| 3 | |
package org.paneris.jammyjoes.model.generated; |
| 4 | |
|
| 5 | |
import org.melati.poem.AccessPoemException; |
| 6 | |
import org.melati.poem.Column; |
| 7 | |
import org.melati.poem.Database; |
| 8 | |
import org.melati.poem.DefinitionSource; |
| 9 | |
import org.melati.poem.DisplayLevel; |
| 10 | |
import org.melati.poem.Field; |
| 11 | |
import org.melati.poem.JdbcPersistent; |
| 12 | |
import org.melati.poem.Persistent; |
| 13 | |
import org.melati.poem.PoemException; |
| 14 | |
import org.melati.poem.Searchability; |
| 15 | |
import org.melati.poem.StringPoemType; |
| 16 | |
import org.melati.poem.TroidPoemType; |
| 17 | |
import org.melati.poem.ValidationPoemException; |
| 18 | |
import org.paneris.jammyjoes.model.JammyjoesDatabaseTables; |
| 19 | |
import org.paneris.jammyjoes.model.JammyjoesTable; |
| 20 | |
import org.paneris.jammyjoes.model.OrderType; |
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
public class OrderTypeTableBase extends JammyjoesTable { |
| 31 | |
|
| 32 | 0 | private Column col_id = null; |
| 33 | 0 | private Column col_type = null; |
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
|
| 44 | |
|
| 45 | |
public OrderTypeTableBase( |
| 46 | |
Database database, String name, |
| 47 | |
DefinitionSource definitionSource) throws PoemException { |
| 48 | 0 | super(database, name, definitionSource); |
| 49 | 0 | } |
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
public JammyjoesDatabaseTables getJammyjoesDatabaseTables() { |
| 59 | 0 | return (JammyjoesDatabaseTables)getDatabase(); |
| 60 | |
} |
| 61 | |
|
| 62 | |
public void init() throws PoemException { |
| 63 | 0 | super.init(); |
| 64 | 0 | defineColumn(col_id = |
| 65 | |
new Column(this, "id", |
| 66 | |
new TroidPoemType(), |
| 67 | |
DefinitionSource.dsd) { |
| 68 | |
public Object getCooked(Persistent g) |
| 69 | |
throws AccessPoemException, PoemException { |
| 70 | 0 | return ((OrderType)g).getId(); |
| 71 | |
} |
| 72 | |
|
| 73 | |
public void setCooked(Persistent g, Object cooked) |
| 74 | |
throws AccessPoemException, ValidationPoemException { |
| 75 | 0 | ((OrderType)g).setId((Integer)cooked); |
| 76 | 0 | } |
| 77 | |
|
| 78 | |
public Field asField(Persistent g) { |
| 79 | 0 | return ((OrderType)g).getIdField(); |
| 80 | |
} |
| 81 | |
|
| 82 | |
protected boolean defaultUserEditable() { |
| 83 | 0 | return false; |
| 84 | |
} |
| 85 | |
|
| 86 | |
protected boolean defaultUserCreateable() { |
| 87 | 0 | return false; |
| 88 | |
} |
| 89 | |
|
| 90 | |
protected DisplayLevel defaultDisplayLevel() { |
| 91 | 0 | return DisplayLevel.record; |
| 92 | |
} |
| 93 | |
|
| 94 | |
protected Searchability defaultSearchability() { |
| 95 | 0 | return Searchability.no; |
| 96 | |
} |
| 97 | |
|
| 98 | |
protected int defaultDisplayOrder() { |
| 99 | 0 | return 0; |
| 100 | |
} |
| 101 | |
|
| 102 | |
public Object getRaw_unsafe(Persistent g) |
| 103 | |
throws AccessPoemException { |
| 104 | 0 | return ((OrderType)g).getId_unsafe(); |
| 105 | |
} |
| 106 | |
|
| 107 | |
public void setRaw_unsafe(Persistent g, Object raw) |
| 108 | |
throws AccessPoemException { |
| 109 | 0 | ((OrderType)g).setId_unsafe((Integer)raw); |
| 110 | 0 | } |
| 111 | |
|
| 112 | |
public Object getRaw(Persistent g) |
| 113 | |
throws AccessPoemException { |
| 114 | 0 | return ((OrderType)g).getId(); |
| 115 | |
} |
| 116 | |
|
| 117 | 0 | public void setRaw(Persistent g, Object raw) |
| 118 | |
throws AccessPoemException { |
| 119 | 0 | ((OrderType)g).setId((Integer)raw); |
| 120 | 0 | } |
| 121 | |
}); |
| 122 | |
|
| 123 | 0 | defineColumn(col_type = |
| 124 | |
new Column(this, "type", |
| 125 | |
new StringPoemType(false, -1), |
| 126 | |
DefinitionSource.dsd) { |
| 127 | |
public Object getCooked(Persistent g) |
| 128 | |
throws AccessPoemException, PoemException { |
| 129 | 0 | return ((OrderType)g).getType(); |
| 130 | |
} |
| 131 | |
|
| 132 | |
public void setCooked(Persistent g, Object cooked) |
| 133 | |
throws AccessPoemException, ValidationPoemException { |
| 134 | 0 | ((OrderType)g).setType((String)cooked); |
| 135 | 0 | } |
| 136 | |
|
| 137 | |
public Field asField(Persistent g) { |
| 138 | 0 | return ((OrderType)g).getTypeField(); |
| 139 | |
} |
| 140 | |
|
| 141 | |
protected DisplayLevel defaultDisplayLevel() { |
| 142 | 0 | return DisplayLevel.primary; |
| 143 | |
} |
| 144 | |
|
| 145 | |
protected Searchability defaultSearchability() { |
| 146 | 0 | return Searchability.yes; |
| 147 | |
} |
| 148 | |
|
| 149 | |
protected String defaultDisplayName() { |
| 150 | 0 | return "Type"; |
| 151 | |
} |
| 152 | |
|
| 153 | |
protected int defaultDisplayOrder() { |
| 154 | 0 | return 1; |
| 155 | |
} |
| 156 | |
|
| 157 | |
protected boolean defaultUnique() { |
| 158 | 0 | return true; |
| 159 | |
} |
| 160 | |
|
| 161 | |
protected int defaultWidth() { |
| 162 | 0 | return 20; |
| 163 | |
} |
| 164 | |
|
| 165 | |
public Object getRaw_unsafe(Persistent g) |
| 166 | |
throws AccessPoemException { |
| 167 | 0 | return ((OrderType)g).getType_unsafe(); |
| 168 | |
} |
| 169 | |
|
| 170 | |
public void setRaw_unsafe(Persistent g, Object raw) |
| 171 | |
throws AccessPoemException { |
| 172 | 0 | ((OrderType)g).setType_unsafe((String)raw); |
| 173 | 0 | } |
| 174 | |
|
| 175 | |
public Object getRaw(Persistent g) |
| 176 | |
throws AccessPoemException { |
| 177 | 0 | return ((OrderType)g).getType(); |
| 178 | |
} |
| 179 | |
|
| 180 | 0 | public void setRaw(Persistent g, Object raw) |
| 181 | |
throws AccessPoemException { |
| 182 | 0 | ((OrderType)g).setType((String)raw); |
| 183 | 0 | } |
| 184 | |
}); |
| 185 | 0 | } |
| 186 | |
|
| 187 | |
|
| 188 | |
|
| 189 | |
|
| 190 | |
|
| 191 | |
|
| 192 | |
|
| 193 | |
|
| 194 | |
|
| 195 | |
public final Column getIdColumn() { |
| 196 | 0 | return col_id; |
| 197 | |
} |
| 198 | |
|
| 199 | |
|
| 200 | |
|
| 201 | |
|
| 202 | |
|
| 203 | |
|
| 204 | |
|
| 205 | |
|
| 206 | |
|
| 207 | |
public final Column getTypeColumn() { |
| 208 | 0 | return col_type; |
| 209 | |
} |
| 210 | |
|
| 211 | |
|
| 212 | |
|
| 213 | |
|
| 214 | |
|
| 215 | |
|
| 216 | |
|
| 217 | |
|
| 218 | |
|
| 219 | |
public OrderType getOrderTypeObject(Integer troid) { |
| 220 | 0 | return (OrderType)getObject(troid); |
| 221 | |
} |
| 222 | |
|
| 223 | |
|
| 224 | |
|
| 225 | |
|
| 226 | |
|
| 227 | |
|
| 228 | |
|
| 229 | |
|
| 230 | |
|
| 231 | |
public OrderType getOrderTypeObject(int troid) { |
| 232 | 0 | return (OrderType)getObject(troid); |
| 233 | |
} |
| 234 | |
|
| 235 | |
protected JdbcPersistent _newPersistent() { |
| 236 | 0 | return new OrderType(); |
| 237 | |
} |
| 238 | |
protected String defaultDisplayName() { |
| 239 | 0 | return "Order Type"; |
| 240 | |
} |
| 241 | |
|
| 242 | |
protected String defaultDescription() { |
| 243 | 0 | return "Order Type"; |
| 244 | |
} |
| 245 | |
|
| 246 | |
protected boolean defaultRememberAllTroids() { |
| 247 | 0 | return true; |
| 248 | |
} |
| 249 | |
|
| 250 | |
protected String defaultCategory() { |
| 251 | 0 | return "Codes"; |
| 252 | |
} |
| 253 | |
|
| 254 | |
protected int defaultDisplayOrder() { |
| 255 | 0 | return 1005; |
| 256 | |
} |
| 257 | |
} |
| 258 | |
|