| 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.Type; |
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
public class TypeTableBase extends JammyjoesTable { |
| 31 | |
|
| 32 | 0 | private Column col_id = null; |
| 33 | 0 | private Column col_type = null; |
| 34 | 0 | private Column col_ecentives = null; |
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
public TypeTableBase( |
| 47 | |
Database database, String name, |
| 48 | |
DefinitionSource definitionSource) throws PoemException { |
| 49 | 0 | super(database, name, definitionSource); |
| 50 | 0 | } |
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
public JammyjoesDatabaseTables getJammyjoesDatabaseTables() { |
| 60 | 0 | return (JammyjoesDatabaseTables)getDatabase(); |
| 61 | |
} |
| 62 | |
|
| 63 | |
public void init() throws PoemException { |
| 64 | 0 | super.init(); |
| 65 | 0 | defineColumn(col_id = |
| 66 | |
new Column(this, "id", |
| 67 | |
new TroidPoemType(), |
| 68 | |
DefinitionSource.dsd) { |
| 69 | |
public Object getCooked(Persistent g) |
| 70 | |
throws AccessPoemException, PoemException { |
| 71 | 0 | return ((Type)g).getId(); |
| 72 | |
} |
| 73 | |
|
| 74 | |
public void setCooked(Persistent g, Object cooked) |
| 75 | |
throws AccessPoemException, ValidationPoemException { |
| 76 | 0 | ((Type)g).setId((Integer)cooked); |
| 77 | 0 | } |
| 78 | |
|
| 79 | |
public Field asField(Persistent g) { |
| 80 | 0 | return ((Type)g).getIdField(); |
| 81 | |
} |
| 82 | |
|
| 83 | |
protected boolean defaultUserEditable() { |
| 84 | 0 | return false; |
| 85 | |
} |
| 86 | |
|
| 87 | |
protected boolean defaultUserCreateable() { |
| 88 | 0 | return false; |
| 89 | |
} |
| 90 | |
|
| 91 | |
protected DisplayLevel defaultDisplayLevel() { |
| 92 | 0 | return DisplayLevel.record; |
| 93 | |
} |
| 94 | |
|
| 95 | |
protected Searchability defaultSearchability() { |
| 96 | 0 | return Searchability.no; |
| 97 | |
} |
| 98 | |
|
| 99 | |
protected int defaultDisplayOrder() { |
| 100 | 0 | return 0; |
| 101 | |
} |
| 102 | |
|
| 103 | |
public Object getRaw_unsafe(Persistent g) |
| 104 | |
throws AccessPoemException { |
| 105 | 0 | return ((Type)g).getId_unsafe(); |
| 106 | |
} |
| 107 | |
|
| 108 | |
public void setRaw_unsafe(Persistent g, Object raw) |
| 109 | |
throws AccessPoemException { |
| 110 | 0 | ((Type)g).setId_unsafe((Integer)raw); |
| 111 | 0 | } |
| 112 | |
|
| 113 | |
public Object getRaw(Persistent g) |
| 114 | |
throws AccessPoemException { |
| 115 | 0 | return ((Type)g).getId(); |
| 116 | |
} |
| 117 | |
|
| 118 | 0 | public void setRaw(Persistent g, Object raw) |
| 119 | |
throws AccessPoemException { |
| 120 | 0 | ((Type)g).setId((Integer)raw); |
| 121 | 0 | } |
| 122 | |
}); |
| 123 | |
|
| 124 | 0 | defineColumn(col_type = |
| 125 | |
new Column(this, "type", |
| 126 | |
new StringPoemType(false, -1), |
| 127 | |
DefinitionSource.dsd) { |
| 128 | |
public Object getCooked(Persistent g) |
| 129 | |
throws AccessPoemException, PoemException { |
| 130 | 0 | return ((Type)g).getType(); |
| 131 | |
} |
| 132 | |
|
| 133 | |
public void setCooked(Persistent g, Object cooked) |
| 134 | |
throws AccessPoemException, ValidationPoemException { |
| 135 | 0 | ((Type)g).setType((String)cooked); |
| 136 | 0 | } |
| 137 | |
|
| 138 | |
public Field asField(Persistent g) { |
| 139 | 0 | return ((Type)g).getTypeField(); |
| 140 | |
} |
| 141 | |
|
| 142 | |
protected DisplayLevel defaultDisplayLevel() { |
| 143 | 0 | return DisplayLevel.primary; |
| 144 | |
} |
| 145 | |
|
| 146 | |
protected Searchability defaultSearchability() { |
| 147 | 0 | return Searchability.yes; |
| 148 | |
} |
| 149 | |
|
| 150 | |
protected String defaultDisplayName() { |
| 151 | 0 | return "Type"; |
| 152 | |
} |
| 153 | |
|
| 154 | |
protected int defaultDisplayOrder() { |
| 155 | 0 | return 1; |
| 156 | |
} |
| 157 | |
|
| 158 | |
protected boolean defaultUnique() { |
| 159 | 0 | return true; |
| 160 | |
} |
| 161 | |
|
| 162 | |
protected int defaultWidth() { |
| 163 | 0 | return 20; |
| 164 | |
} |
| 165 | |
|
| 166 | |
public Object getRaw_unsafe(Persistent g) |
| 167 | |
throws AccessPoemException { |
| 168 | 0 | return ((Type)g).getType_unsafe(); |
| 169 | |
} |
| 170 | |
|
| 171 | |
public void setRaw_unsafe(Persistent g, Object raw) |
| 172 | |
throws AccessPoemException { |
| 173 | 0 | ((Type)g).setType_unsafe((String)raw); |
| 174 | 0 | } |
| 175 | |
|
| 176 | |
public Object getRaw(Persistent g) |
| 177 | |
throws AccessPoemException { |
| 178 | 0 | return ((Type)g).getType(); |
| 179 | |
} |
| 180 | |
|
| 181 | 0 | public void setRaw(Persistent g, Object raw) |
| 182 | |
throws AccessPoemException { |
| 183 | 0 | ((Type)g).setType((String)raw); |
| 184 | 0 | } |
| 185 | |
}); |
| 186 | |
|
| 187 | 0 | defineColumn(col_ecentives = |
| 188 | |
new Column(this, "ecentives", |
| 189 | |
new StringPoemType(true, -1), |
| 190 | |
DefinitionSource.dsd) { |
| 191 | |
public Object getCooked(Persistent g) |
| 192 | |
throws AccessPoemException, PoemException { |
| 193 | 0 | return ((Type)g).getEcentives(); |
| 194 | |
} |
| 195 | |
|
| 196 | |
public void setCooked(Persistent g, Object cooked) |
| 197 | |
throws AccessPoemException, ValidationPoemException { |
| 198 | 0 | ((Type)g).setEcentives((String)cooked); |
| 199 | 0 | } |
| 200 | |
|
| 201 | |
public Field asField(Persistent g) { |
| 202 | 0 | return ((Type)g).getEcentivesField(); |
| 203 | |
} |
| 204 | |
|
| 205 | |
protected DisplayLevel defaultDisplayLevel() { |
| 206 | 0 | return DisplayLevel.record; |
| 207 | |
} |
| 208 | |
|
| 209 | |
protected Searchability defaultSearchability() { |
| 210 | 0 | return Searchability.yes; |
| 211 | |
} |
| 212 | |
|
| 213 | |
protected String defaultDisplayName() { |
| 214 | 0 | return "Ecentives Category"; |
| 215 | |
} |
| 216 | |
|
| 217 | |
protected int defaultDisplayOrder() { |
| 218 | 0 | return 2; |
| 219 | |
} |
| 220 | |
|
| 221 | |
protected int defaultWidth() { |
| 222 | 0 | return 40; |
| 223 | |
} |
| 224 | |
|
| 225 | |
public Object getRaw_unsafe(Persistent g) |
| 226 | |
throws AccessPoemException { |
| 227 | 0 | return ((Type)g).getEcentives_unsafe(); |
| 228 | |
} |
| 229 | |
|
| 230 | |
public void setRaw_unsafe(Persistent g, Object raw) |
| 231 | |
throws AccessPoemException { |
| 232 | 0 | ((Type)g).setEcentives_unsafe((String)raw); |
| 233 | 0 | } |
| 234 | |
|
| 235 | |
public Object getRaw(Persistent g) |
| 236 | |
throws AccessPoemException { |
| 237 | 0 | return ((Type)g).getEcentives(); |
| 238 | |
} |
| 239 | |
|
| 240 | 0 | public void setRaw(Persistent g, Object raw) |
| 241 | |
throws AccessPoemException { |
| 242 | 0 | ((Type)g).setEcentives((String)raw); |
| 243 | 0 | } |
| 244 | |
}); |
| 245 | 0 | } |
| 246 | |
|
| 247 | |
|
| 248 | |
|
| 249 | |
|
| 250 | |
|
| 251 | |
|
| 252 | |
|
| 253 | |
|
| 254 | |
|
| 255 | |
public final Column getIdColumn() { |
| 256 | 0 | return col_id; |
| 257 | |
} |
| 258 | |
|
| 259 | |
|
| 260 | |
|
| 261 | |
|
| 262 | |
|
| 263 | |
|
| 264 | |
|
| 265 | |
|
| 266 | |
|
| 267 | |
public final Column getTypeColumn() { |
| 268 | 0 | return col_type; |
| 269 | |
} |
| 270 | |
|
| 271 | |
|
| 272 | |
|
| 273 | |
|
| 274 | |
|
| 275 | |
|
| 276 | |
|
| 277 | |
|
| 278 | |
|
| 279 | |
public final Column getEcentivesColumn() { |
| 280 | 0 | return col_ecentives; |
| 281 | |
} |
| 282 | |
|
| 283 | |
|
| 284 | |
|
| 285 | |
|
| 286 | |
|
| 287 | |
|
| 288 | |
|
| 289 | |
|
| 290 | |
|
| 291 | |
public Type getTypeObject(Integer troid) { |
| 292 | 0 | return (Type)getObject(troid); |
| 293 | |
} |
| 294 | |
|
| 295 | |
|
| 296 | |
|
| 297 | |
|
| 298 | |
|
| 299 | |
|
| 300 | |
|
| 301 | |
|
| 302 | |
|
| 303 | |
public Type getTypeObject(int troid) { |
| 304 | 0 | return (Type)getObject(troid); |
| 305 | |
} |
| 306 | |
|
| 307 | |
protected JdbcPersistent _newPersistent() { |
| 308 | 0 | return new Type(); |
| 309 | |
} |
| 310 | |
protected String defaultDisplayName() { |
| 311 | 0 | return "Type"; |
| 312 | |
} |
| 313 | |
|
| 314 | |
protected String defaultDescription() { |
| 315 | 0 | return "Type"; |
| 316 | |
} |
| 317 | |
|
| 318 | |
protected boolean defaultRememberAllTroids() { |
| 319 | 0 | return true; |
| 320 | |
} |
| 321 | |
|
| 322 | |
protected String defaultCategory() { |
| 323 | 0 | return "Codes"; |
| 324 | |
} |
| 325 | |
|
| 326 | |
protected int defaultDisplayOrder() { |
| 327 | 0 | return 1000; |
| 328 | |
} |
| 329 | |
} |
| 330 | |
|