OSDN Git Service

作業中
[ea2ddl/ea2ddl.git] / ea2ddl-dao / src / main / java / jp / sourceforge / ea2ddl / dao / bsentity / BsTOperation.java
1 package jp.sourceforge.ea2ddl.dao.bsentity;\r
2 \r
3 import java.util.*;\r
4     \r
5 import jp.sourceforge.ea2ddl.dao.allcommon.Entity;\r
6 import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMeta;\r
7 import jp.sourceforge.ea2ddl.dao.allcommon.dbmeta.DBMetaInstanceHandler;\r
8 import jp.sourceforge.ea2ddl.dao.exentity.*;\r
9 \r
10 /**\r
11  * The entity of t_operation(TABLE).\r
12  * <pre>\r
13  * [primary-key]\r
14  *     OperationID\r
15  * \r
16  * [column]\r
17  *     OperationID, Object_ID, Name, Scope, Type, ReturnArray, Stereotype, IsStatic, Concurrency, Notes, Behaviour, GenOption, Pos, Style, Pure, Classifier, Code, IsRoot, IsLeaf, IsQuery, StateFlags, ea_guid, StyleEx\r
18  * \r
19  * [sequence]\r
20  *     \r
21  * \r
22  * [identity]\r
23  *     \r
24  * \r
25  * [version-no]\r
26  *     \r
27  * \r
28  * [foreign-table]\r
29  *     t_object\r
30  * \r
31  * [referrer-table]\r
32  *     t_operationparams\r
33  * \r
34  * [foreign-property]\r
35  *     tObject\r
36  * \r
37  * [referrer-property]\r
38  *     tOperationparamsList\r
39  * </pre>\r
40  * @author DBFlute(AutoGenerator)\r
41  */
42 @SuppressWarnings("unchecked")\r
43 public abstract class BsTOperation implements Entity, java.io.Serializable {\r
44 \r
45     // ===================================================================================\r
46     //                                                                          Definition\r
47     //                                                                          ==========\r
48     /** Serial version UID. (Default) */\r
49     private static final long serialVersionUID = 1L;\r
50 \r
51     /** TABLE-Annotation for S2Dao. The value is t_operation. */\r
52     public static final String TABLE = "t_operation";\r
53 \r
54 \r
55     // ===================================================================================\r
56     //                                                                           Attribute\r
57     //                                                                           =========\r
58     // -----------------------------------------------------\r
59     //                                                Column\r
60     //                                                ------\r
61     /** The attribute of the column 'OperationID'. {PK : UQ : COUNTER : NotNull} */\r
62     protected java.lang.Integer _operationid;\r
63 \r
64     /** The attribute of the column 'Object_ID'. {INTEGER} */\r
65     protected java.lang.Integer _objectId;\r
66 \r
67     /** The attribute of the column 'Name'. {VARCHAR(255)} */\r
68     protected String _name;\r
69 \r
70     /** The attribute of the column 'Scope'. {VARCHAR(50)} */\r
71     protected String _scope;\r
72 \r
73     /** The attribute of the column 'Type'. {VARCHAR(255)} */\r
74     protected String _type;\r
75 \r
76     /** The attribute of the column 'ReturnArray'. {VARCHAR(1)} */\r
77     protected String _returnarray;\r
78 \r
79     /** The attribute of the column 'Stereotype'. {VARCHAR(50)} */\r
80     protected String _stereotype;\r
81 \r
82     /** The attribute of the column 'IsStatic'. {VARCHAR(1)} */\r
83     protected String _isstatic;\r
84 \r
85     /** The attribute of the column 'Concurrency'. {VARCHAR(50)} */\r
86     protected String _concurrency;\r
87 \r
88     /** The attribute of the column 'Notes'. {LONGCHAR(2147483647)} */\r
89     protected String _notes;\r
90 \r
91     /** The attribute of the column 'Behaviour'. {LONGCHAR(2147483647)} */\r
92     protected String _behaviour;\r
93 \r
94     /** The attribute of the column 'GenOption'. {LONGCHAR(2147483647)} */\r
95     protected String _genoption;\r
96 \r
97     /** The attribute of the column 'Pos'. {INTEGER} */\r
98     protected java.lang.Integer _pos;\r
99 \r
100     /** The attribute of the column 'Style'. {VARCHAR(255)} */\r
101     protected String _style;\r
102 \r
103     /** The attribute of the column 'Pure'. {BIT : NotNull} */\r
104     protected Boolean _pure;\r
105 \r
106     /** The attribute of the column 'Classifier'. {VARCHAR(50)} */\r
107     protected String _classifier;\r
108 \r
109     /** The attribute of the column 'Code'. {LONGCHAR(2147483647)} */\r
110     protected String _code;\r
111 \r
112     /** The attribute of the column 'IsRoot'. {BIT : NotNull} */\r
113     protected Boolean _isroot;\r
114 \r
115     /** The attribute of the column 'IsLeaf'. {BIT : NotNull} */\r
116     protected Boolean _isleaf;\r
117 \r
118     /** The attribute of the column 'IsQuery'. {BIT : NotNull} */\r
119     protected Boolean _isquery;\r
120 \r
121     /** The attribute of the column 'StateFlags'. {VARCHAR(255)} */\r
122     protected String _stateflags;\r
123 \r
124     /** The attribute of the column 'ea_guid'. {VARCHAR(50)} */\r
125     protected String _eaGuid;\r
126 \r
127     /** The attribute of the column 'StyleEx'. {LONGCHAR(2147483647)} */\r
128     protected String _styleex;\r
129 \r
130     // -----------------------------------------------------\r
131     //                                              Internal\r
132     //                                              --------\r
133     /** The attribute of entity modified properties. (for S2Dao) */\r
134     protected EntityModifiedProperties _modifiedProperties = newEntityModifiedProperties();\r
135     \r
136     // ===================================================================================\r
137     //                                                                         Constructor\r
138     //                                                                         ===========\r
139     public BsTOperation() {\r
140     }\r
141 \r
142     // ===================================================================================\r
143     //                                                                          Table Name\r
144     //                                                                          ==========\r
145     public String getTableDbName() {\r
146         return "t_operation";\r
147     }\r
148 \r
149     public String getTablePropertyName() {// as JavaBeansRule\r
150         return "TOperation";\r
151     }\r
152 \r
153     // ===================================================================================\r
154     //                                                                              DBMeta\r
155     //                                                                              ======\r
156     public DBMeta getDBMeta() {\r
157         return DBMetaInstanceHandler.findDBMeta(getTableDbName());\r
158     }\r
159 \r
160     // ===================================================================================\r
161     //                                                          Classification Classifying\r
162     //                                                          ==========================\r
163     // ===================================================================================\r
164     //                                                        Classification Determination\r
165     //                                                        ============================\r
166     // ===================================================================================\r
167     //                                                           Classification Name/Alias\r
168     //                                                           =========================\r
169     // ===================================================================================\r
170     //                                                                    Foreign Property\r
171     //                                                                    ================\r
172     // /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\r
173     //   Foreign Property = [TObject]\r
174     // * * * * * * * * */\r
175     public static final int TObject_RELNO = 0;\r
176     public static final String TObject_RELKEYS = "Object_ID:Object_ID";\r
177 \r
178     /** The entity of foreign property 'TObject'. */\r
179     protected TObject _parentTObject;\r
180 \r
181     /**\r
182      * Get the entity of foreign property 'TObject'. {without lazy-load}\r
183      * @return The entity of foreign property 'TObject'. (Nullable: If the foreign key does not have 'NotNull' constraint, please check null.)\r
184      */\r
185     public TObject getTObject() {\r
186         return _parentTObject;\r
187     }\r
188 \r
189     /**\r
190      * Set the entity of foreign property 'TObject'.\r
191      * @param tObject The entity of foreign property 'TObject'. (Nullable)\r
192      */\r
193     public void setTObject(TObject tObject) {\r
194         _parentTObject = tObject;\r
195     }\r
196 \r
197     // ===================================================================================\r
198     //                                                                   Referrer Property\r
199     //                                                                   =================\r
200     // /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\r
201     //   Referrer Property = [TOperationparamsList]\r
202     // * * * * * * * * */\r
203 \r
204     /** The entity list of referrer property 'TOperationparamsList'. */\r
205     protected List<TOperationparams> _childrenTOperationparamsList;\r
206 \r
207     /**\r
208      * Get the entity list of referrer property 'TOperationparamsList'. {without lazy-load} <br />\r
209      * @return The entity list of referrer property 'TOperationparamsList'. (NotNull: If it's not loaded yet, initializes the list instance of referrer as empty and returns it.)\r
210      */\r
211     public List<TOperationparams> getTOperationparamsList() {\r
212         if (_childrenTOperationparamsList == null) { _childrenTOperationparamsList = new ArrayList<TOperationparams>(); }\r
213         return _childrenTOperationparamsList;\r
214     }\r
215 \r
216     /**\r
217      * Set the entity list of referrer property 'TOperationparamsList'.\r
218      * @param tOperationparamsList The entity list of referrer property 'TOperationparamsList'. (Nullable)\r
219      */\r
220     public void setTOperationparamsList(List<TOperationparams> tOperationparamsList) {\r
221         _childrenTOperationparamsList = tOperationparamsList;\r
222     }\r
223 \r
224 \r
225     // ===================================================================================\r
226     //                                                                       Determination\r
227     //                                                                       =============\r
228     public boolean hasPrimaryKeyValue() {\r
229         if (_operationid == null) { return false; }\r
230         return true;\r
231     }\r
232 \r
233     // ===================================================================================\r
234     //                                                                 Modified Properties\r
235     //                                                                 ===================\r
236     public Set<String> getModifiedPropertyNames() {\r
237         return _modifiedProperties.getPropertyNames();\r
238     }\r
239 \r
240     protected EntityModifiedProperties newEntityModifiedProperties() {\r
241         return new EntityModifiedProperties();\r
242     }\r
243 \r
244     public void clearModifiedPropertyNames() {\r
245         _modifiedProperties.clear();\r
246     }\r
247 \r
248     public boolean hasModification() {\r
249         return !_modifiedProperties.isEmpty();\r
250     }\r
251 \r
252     // ===================================================================================\r
253     //                                                                      Basic Override\r
254     //                                                                      ==============\r
255     /**\r
256      * If the primary-key of the other is same as this one, returns true.\r
257      * @param other Other entity.\r
258      * @return Comparing result.\r
259      */\r
260     public boolean equals(Object other) {\r
261         if (other == null || !(other instanceof BsTOperation)) { return false; }\r
262         BsTOperation otherEntity = (BsTOperation)other;\r
263         if (!helpComparingValue(getOperationid(), otherEntity.getOperationid())) { return false; }\r
264         return true;\r
265     }\r
266 \r
267     protected boolean helpComparingValue(Object value1, Object value2) {\r
268         if (value1 == null && value2 == null) { return true; }\r
269         return value1 != null && value2 != null && value1.equals(value2);\r
270     }\r
271 \r
272     /**\r
273      * Calculates hash-code from primary-key.\r
274      * @return Hash-code from primary-keys.\r
275      */\r
276     public int hashCode() {\r
277         int result = 17;\r
278         if (this.getOperationid() != null) { result = result + getOperationid().hashCode(); }\r
279         return result;\r
280     }\r
281 \r
282     /**\r
283      * @return The view string of columns. (NotNull)\r
284      */\r
285     public String toString() {\r
286         String delimiter = ",";\r
287         StringBuilder sb = new StringBuilder();\r
288         sb.append(delimiter).append(getOperationid());\r
289         sb.append(delimiter).append(getObjectId());\r
290         sb.append(delimiter).append(getName());\r
291         sb.append(delimiter).append(getScope());\r
292         sb.append(delimiter).append(getType());\r
293         sb.append(delimiter).append(getReturnarray());\r
294         sb.append(delimiter).append(getStereotype());\r
295         sb.append(delimiter).append(getIsstatic());\r
296         sb.append(delimiter).append(getConcurrency());\r
297         sb.append(delimiter).append(getNotes());\r
298         sb.append(delimiter).append(getBehaviour());\r
299         sb.append(delimiter).append(getGenoption());\r
300         sb.append(delimiter).append(getPos());\r
301         sb.append(delimiter).append(getStyle());\r
302         sb.append(delimiter).append(getPure());\r
303         sb.append(delimiter).append(getClassifier());\r
304         sb.append(delimiter).append(getCode());\r
305         sb.append(delimiter).append(getIsroot());\r
306         sb.append(delimiter).append(getIsleaf());\r
307         sb.append(delimiter).append(getIsquery());\r
308         sb.append(delimiter).append(getStateflags());\r
309         sb.append(delimiter).append(getEaGuid());\r
310         sb.append(delimiter).append(getStyleex());\r
311         if (sb.length() > 0) { sb.delete(0, delimiter.length()); }\r
312         sb.insert(0, "{").append("}");\r
313         return sb.toString();\r
314     }\r
315 \r
316     // ===================================================================================\r
317     //                                                                            Accessor\r
318     //                                                                            ========\r
319 \r
320     /** The column annotation for S2Dao. {PK : UQ : COUNTER : NotNull} */\r
321     public static final String operationid_COLUMN = "OperationID";\r
322 \r
323     /**\r
324      * Get the value of the column 'OperationID'. <br />\r
325      * {PK : UQ : COUNTER : NotNull}\r
326      * @return The value of the column 'OperationID'. (Nullable)\r
327      */\r
328     public java.lang.Integer getOperationid() {\r
329         return _operationid;\r
330     }\r
331 \r
332     /**\r
333      * Set the value of the column 'OperationID'. <br />\r
334      * {PK : UQ : COUNTER : NotNull}\r
335      * @param operationid The value of the column 'OperationID'. (Nullable)\r
336      */\r
337     public void setOperationid(java.lang.Integer operationid) {\r
338         _modifiedProperties.addPropertyName("operationid");\r
339         this._operationid = operationid;\r
340     }\r
341 \r
342     /** The column annotation for S2Dao. {INTEGER} */\r
343     public static final String objectId_COLUMN = "Object_ID";\r
344 \r
345     /**\r
346      * Get the value of the column 'Object_ID'. <br />\r
347      * {INTEGER}\r
348      * @return The value of the column 'Object_ID'. (Nullable)\r
349      */\r
350     public java.lang.Integer getObjectId() {\r
351         return _objectId;\r
352     }\r
353 \r
354     /**\r
355      * Set the value of the column 'Object_ID'. <br />\r
356      * {INTEGER}\r
357      * @param objectId The value of the column 'Object_ID'. (Nullable)\r
358      */\r
359     public void setObjectId(java.lang.Integer objectId) {\r
360         _modifiedProperties.addPropertyName("objectId");\r
361         this._objectId = objectId;\r
362     }\r
363 \r
364     /** The column annotation for S2Dao. {VARCHAR(255)} */\r
365     public static final String name_COLUMN = "Name";\r
366 \r
367     /**\r
368      * Get the value of the column 'Name'. <br />\r
369      * {VARCHAR(255)}\r
370      * @return The value of the column 'Name'. (Nullable)\r
371      */\r
372     public String getName() {\r
373         return _name;\r
374     }\r
375 \r
376     /**\r
377      * Set the value of the column 'Name'. <br />\r
378      * {VARCHAR(255)}\r
379      * @param name The value of the column 'Name'. (Nullable)\r
380      */\r
381     public void setName(String name) {\r
382         _modifiedProperties.addPropertyName("name");\r
383         this._name = name;\r
384     }\r
385 \r
386     /** The column annotation for S2Dao. {VARCHAR(50)} */\r
387     public static final String scope_COLUMN = "Scope";\r
388 \r
389     /**\r
390      * Get the value of the column 'Scope'. <br />\r
391      * {VARCHAR(50)}\r
392      * @return The value of the column 'Scope'. (Nullable)\r
393      */\r
394     public String getScope() {\r
395         return _scope;\r
396     }\r
397 \r
398     /**\r
399      * Set the value of the column 'Scope'. <br />\r
400      * {VARCHAR(50)}\r
401      * @param scope The value of the column 'Scope'. (Nullable)\r
402      */\r
403     public void setScope(String scope) {\r
404         _modifiedProperties.addPropertyName("scope");\r
405         this._scope = scope;\r
406     }\r
407 \r
408     /** The column annotation for S2Dao. {VARCHAR(255)} */\r
409     public static final String type_COLUMN = "Type";\r
410 \r
411     /**\r
412      * Get the value of the column 'Type'. <br />\r
413      * {VARCHAR(255)}\r
414      * @return The value of the column 'Type'. (Nullable)\r
415      */\r
416     public String getType() {\r
417         return _type;\r
418     }\r
419 \r
420     /**\r
421      * Set the value of the column 'Type'. <br />\r
422      * {VARCHAR(255)}\r
423      * @param type The value of the column 'Type'. (Nullable)\r
424      */\r
425     public void setType(String type) {\r
426         _modifiedProperties.addPropertyName("type");\r
427         this._type = type;\r
428     }\r
429 \r
430     /** The column annotation for S2Dao. {VARCHAR(1)} */\r
431     public static final String returnarray_COLUMN = "ReturnArray";\r
432 \r
433     /**\r
434      * Get the value of the column 'ReturnArray'. <br />\r
435      * {VARCHAR(1)}\r
436      * @return The value of the column 'ReturnArray'. (Nullable)\r
437      */\r
438     public String getReturnarray() {\r
439         return _returnarray;\r
440     }\r
441 \r
442     /**\r
443      * Set the value of the column 'ReturnArray'. <br />\r
444      * {VARCHAR(1)}\r
445      * @param returnarray The value of the column 'ReturnArray'. (Nullable)\r
446      */\r
447     public void setReturnarray(String returnarray) {\r
448         _modifiedProperties.addPropertyName("returnarray");\r
449         this._returnarray = returnarray;\r
450     }\r
451 \r
452     /** The column annotation for S2Dao. {VARCHAR(50)} */\r
453     public static final String stereotype_COLUMN = "Stereotype";\r
454 \r
455     /**\r
456      * Get the value of the column 'Stereotype'. <br />\r
457      * {VARCHAR(50)}\r
458      * @return The value of the column 'Stereotype'. (Nullable)\r
459      */\r
460     public String getStereotype() {\r
461         return _stereotype;\r
462     }\r
463 \r
464     /**\r
465      * Set the value of the column 'Stereotype'. <br />\r
466      * {VARCHAR(50)}\r
467      * @param stereotype The value of the column 'Stereotype'. (Nullable)\r
468      */\r
469     public void setStereotype(String stereotype) {\r
470         _modifiedProperties.addPropertyName("stereotype");\r
471         this._stereotype = stereotype;\r
472     }\r
473 \r
474     /** The column annotation for S2Dao. {VARCHAR(1)} */\r
475     public static final String isstatic_COLUMN = "IsStatic";\r
476 \r
477     /**\r
478      * Get the value of the column 'IsStatic'. <br />\r
479      * {VARCHAR(1)}\r
480      * @return The value of the column 'IsStatic'. (Nullable)\r
481      */\r
482     public String getIsstatic() {\r
483         return _isstatic;\r
484     }\r
485 \r
486     /**\r
487      * Set the value of the column 'IsStatic'. <br />\r
488      * {VARCHAR(1)}\r
489      * @param isstatic The value of the column 'IsStatic'. (Nullable)\r
490      */\r
491     public void setIsstatic(String isstatic) {\r
492         _modifiedProperties.addPropertyName("isstatic");\r
493         this._isstatic = isstatic;\r
494     }\r
495 \r
496     /** The column annotation for S2Dao. {VARCHAR(50)} */\r
497     public static final String concurrency_COLUMN = "Concurrency";\r
498 \r
499     /**\r
500      * Get the value of the column 'Concurrency'. <br />\r
501      * {VARCHAR(50)}\r
502      * @return The value of the column 'Concurrency'. (Nullable)\r
503      */\r
504     public String getConcurrency() {\r
505         return _concurrency;\r
506     }\r
507 \r
508     /**\r
509      * Set the value of the column 'Concurrency'. <br />\r
510      * {VARCHAR(50)}\r
511      * @param concurrency The value of the column 'Concurrency'. (Nullable)\r
512      */\r
513     public void setConcurrency(String concurrency) {\r
514         _modifiedProperties.addPropertyName("concurrency");\r
515         this._concurrency = concurrency;\r
516     }\r
517 \r
518     /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
519     public static final String notes_COLUMN = "Notes";\r
520 \r
521     /**\r
522      * Get the value of the column 'Notes'. <br />\r
523      * {LONGCHAR(2147483647)}\r
524      * @return The value of the column 'Notes'. (Nullable)\r
525      */\r
526     public String getNotes() {\r
527         return _notes;\r
528     }\r
529 \r
530     /**\r
531      * Set the value of the column 'Notes'. <br />\r
532      * {LONGCHAR(2147483647)}\r
533      * @param notes The value of the column 'Notes'. (Nullable)\r
534      */\r
535     public void setNotes(String notes) {\r
536         _modifiedProperties.addPropertyName("notes");\r
537         this._notes = notes;\r
538     }\r
539 \r
540     /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
541     public static final String behaviour_COLUMN = "Behaviour";\r
542 \r
543     /**\r
544      * Get the value of the column 'Behaviour'. <br />\r
545      * {LONGCHAR(2147483647)}\r
546      * @return The value of the column 'Behaviour'. (Nullable)\r
547      */\r
548     public String getBehaviour() {\r
549         return _behaviour;\r
550     }\r
551 \r
552     /**\r
553      * Set the value of the column 'Behaviour'. <br />\r
554      * {LONGCHAR(2147483647)}\r
555      * @param behaviour The value of the column 'Behaviour'. (Nullable)\r
556      */\r
557     public void setBehaviour(String behaviour) {\r
558         _modifiedProperties.addPropertyName("behaviour");\r
559         this._behaviour = behaviour;\r
560     }\r
561 \r
562     /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
563     public static final String genoption_COLUMN = "GenOption";\r
564 \r
565     /**\r
566      * Get the value of the column 'GenOption'. <br />\r
567      * {LONGCHAR(2147483647)}\r
568      * @return The value of the column 'GenOption'. (Nullable)\r
569      */\r
570     public String getGenoption() {\r
571         return _genoption;\r
572     }\r
573 \r
574     /**\r
575      * Set the value of the column 'GenOption'. <br />\r
576      * {LONGCHAR(2147483647)}\r
577      * @param genoption The value of the column 'GenOption'. (Nullable)\r
578      */\r
579     public void setGenoption(String genoption) {\r
580         _modifiedProperties.addPropertyName("genoption");\r
581         this._genoption = genoption;\r
582     }\r
583 \r
584     /** The column annotation for S2Dao. {INTEGER} */\r
585     public static final String pos_COLUMN = "Pos";\r
586 \r
587     /**\r
588      * Get the value of the column 'Pos'. <br />\r
589      * {INTEGER}\r
590      * @return The value of the column 'Pos'. (Nullable)\r
591      */\r
592     public java.lang.Integer getPos() {\r
593         return _pos;\r
594     }\r
595 \r
596     /**\r
597      * Set the value of the column 'Pos'. <br />\r
598      * {INTEGER}\r
599      * @param pos The value of the column 'Pos'. (Nullable)\r
600      */\r
601     public void setPos(java.lang.Integer pos) {\r
602         _modifiedProperties.addPropertyName("pos");\r
603         this._pos = pos;\r
604     }\r
605 \r
606     /** The column annotation for S2Dao. {VARCHAR(255)} */\r
607     public static final String style_COLUMN = "Style";\r
608 \r
609     /**\r
610      * Get the value of the column 'Style'. <br />\r
611      * {VARCHAR(255)}\r
612      * @return The value of the column 'Style'. (Nullable)\r
613      */\r
614     public String getStyle() {\r
615         return _style;\r
616     }\r
617 \r
618     /**\r
619      * Set the value of the column 'Style'. <br />\r
620      * {VARCHAR(255)}\r
621      * @param style The value of the column 'Style'. (Nullable)\r
622      */\r
623     public void setStyle(String style) {\r
624         _modifiedProperties.addPropertyName("style");\r
625         this._style = style;\r
626     }\r
627 \r
628     /** The column annotation for S2Dao. {BIT : NotNull} */\r
629     public static final String pure_COLUMN = "Pure";\r
630 \r
631     /**\r
632      * Get the value of the column 'Pure'. <br />\r
633      * {BIT : NotNull}\r
634      * @return The value of the column 'Pure'. (Nullable)\r
635      */\r
636     public Boolean getPure() {\r
637         return _pure;\r
638     }\r
639 \r
640     /**\r
641      * Set the value of the column 'Pure'. <br />\r
642      * {BIT : NotNull}\r
643      * @param pure The value of the column 'Pure'. (Nullable)\r
644      */\r
645     public void setPure(Boolean pure) {\r
646         _modifiedProperties.addPropertyName("pure");\r
647         this._pure = pure;\r
648     }\r
649 \r
650     /** The column annotation for S2Dao. {VARCHAR(50)} */\r
651     public static final String classifier_COLUMN = "Classifier";\r
652 \r
653     /**\r
654      * Get the value of the column 'Classifier'. <br />\r
655      * {VARCHAR(50)}\r
656      * @return The value of the column 'Classifier'. (Nullable)\r
657      */\r
658     public String getClassifier() {\r
659         return _classifier;\r
660     }\r
661 \r
662     /**\r
663      * Set the value of the column 'Classifier'. <br />\r
664      * {VARCHAR(50)}\r
665      * @param classifier The value of the column 'Classifier'. (Nullable)\r
666      */\r
667     public void setClassifier(String classifier) {\r
668         _modifiedProperties.addPropertyName("classifier");\r
669         this._classifier = classifier;\r
670     }\r
671 \r
672     /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
673     public static final String code_COLUMN = "Code";\r
674 \r
675     /**\r
676      * Get the value of the column 'Code'. <br />\r
677      * {LONGCHAR(2147483647)}\r
678      * @return The value of the column 'Code'. (Nullable)\r
679      */\r
680     public String getCode() {\r
681         return _code;\r
682     }\r
683 \r
684     /**\r
685      * Set the value of the column 'Code'. <br />\r
686      * {LONGCHAR(2147483647)}\r
687      * @param code The value of the column 'Code'. (Nullable)\r
688      */\r
689     public void setCode(String code) {\r
690         _modifiedProperties.addPropertyName("code");\r
691         this._code = code;\r
692     }\r
693 \r
694     /** The column annotation for S2Dao. {BIT : NotNull} */\r
695     public static final String isroot_COLUMN = "IsRoot";\r
696 \r
697     /**\r
698      * Get the value of the column 'IsRoot'. <br />\r
699      * {BIT : NotNull}\r
700      * @return The value of the column 'IsRoot'. (Nullable)\r
701      */\r
702     public Boolean getIsroot() {\r
703         return _isroot;\r
704     }\r
705 \r
706     /**\r
707      * Set the value of the column 'IsRoot'. <br />\r
708      * {BIT : NotNull}\r
709      * @param isroot The value of the column 'IsRoot'. (Nullable)\r
710      */\r
711     public void setIsroot(Boolean isroot) {\r
712         _modifiedProperties.addPropertyName("isroot");\r
713         this._isroot = isroot;\r
714     }\r
715 \r
716     /** The column annotation for S2Dao. {BIT : NotNull} */\r
717     public static final String isleaf_COLUMN = "IsLeaf";\r
718 \r
719     /**\r
720      * Get the value of the column 'IsLeaf'. <br />\r
721      * {BIT : NotNull}\r
722      * @return The value of the column 'IsLeaf'. (Nullable)\r
723      */\r
724     public Boolean getIsleaf() {\r
725         return _isleaf;\r
726     }\r
727 \r
728     /**\r
729      * Set the value of the column 'IsLeaf'. <br />\r
730      * {BIT : NotNull}\r
731      * @param isleaf The value of the column 'IsLeaf'. (Nullable)\r
732      */\r
733     public void setIsleaf(Boolean isleaf) {\r
734         _modifiedProperties.addPropertyName("isleaf");\r
735         this._isleaf = isleaf;\r
736     }\r
737 \r
738     /** The column annotation for S2Dao. {BIT : NotNull} */\r
739     public static final String isquery_COLUMN = "IsQuery";\r
740 \r
741     /**\r
742      * Get the value of the column 'IsQuery'. <br />\r
743      * {BIT : NotNull}\r
744      * @return The value of the column 'IsQuery'. (Nullable)\r
745      */\r
746     public Boolean getIsquery() {\r
747         return _isquery;\r
748     }\r
749 \r
750     /**\r
751      * Set the value of the column 'IsQuery'. <br />\r
752      * {BIT : NotNull}\r
753      * @param isquery The value of the column 'IsQuery'. (Nullable)\r
754      */\r
755     public void setIsquery(Boolean isquery) {\r
756         _modifiedProperties.addPropertyName("isquery");\r
757         this._isquery = isquery;\r
758     }\r
759 \r
760     /** The column annotation for S2Dao. {VARCHAR(255)} */\r
761     public static final String stateflags_COLUMN = "StateFlags";\r
762 \r
763     /**\r
764      * Get the value of the column 'StateFlags'. <br />\r
765      * {VARCHAR(255)}\r
766      * @return The value of the column 'StateFlags'. (Nullable)\r
767      */\r
768     public String getStateflags() {\r
769         return _stateflags;\r
770     }\r
771 \r
772     /**\r
773      * Set the value of the column 'StateFlags'. <br />\r
774      * {VARCHAR(255)}\r
775      * @param stateflags The value of the column 'StateFlags'. (Nullable)\r
776      */\r
777     public void setStateflags(String stateflags) {\r
778         _modifiedProperties.addPropertyName("stateflags");\r
779         this._stateflags = stateflags;\r
780     }\r
781 \r
782     /** The column annotation for S2Dao. {VARCHAR(50)} */\r
783     public static final String eaGuid_COLUMN = "ea_guid";\r
784 \r
785     /**\r
786      * Get the value of the column 'ea_guid'. <br />\r
787      * {VARCHAR(50)}\r
788      * @return The value of the column 'ea_guid'. (Nullable)\r
789      */\r
790     public String getEaGuid() {\r
791         return _eaGuid;\r
792     }\r
793 \r
794     /**\r
795      * Set the value of the column 'ea_guid'. <br />\r
796      * {VARCHAR(50)}\r
797      * @param eaGuid The value of the column 'ea_guid'. (Nullable)\r
798      */\r
799     public void setEaGuid(String eaGuid) {\r
800         _modifiedProperties.addPropertyName("eaGuid");\r
801         this._eaGuid = eaGuid;\r
802     }\r
803 \r
804     /** The column annotation for S2Dao. {LONGCHAR(2147483647)} */\r
805     public static final String styleex_COLUMN = "StyleEx";\r
806 \r
807     /**\r
808      * Get the value of the column 'StyleEx'. <br />\r
809      * {LONGCHAR(2147483647)}\r
810      * @return The value of the column 'StyleEx'. (Nullable)\r
811      */\r
812     public String getStyleex() {\r
813         return _styleex;\r
814     }\r
815 \r
816     /**\r
817      * Set the value of the column 'StyleEx'. <br />\r
818      * {LONGCHAR(2147483647)}\r
819      * @param styleex The value of the column 'StyleEx'. (Nullable)\r
820      */\r
821     public void setStyleex(String styleex) {\r
822         _modifiedProperties.addPropertyName("styleex");\r
823         this._styleex = styleex;\r
824     }\r
825 \r
826 }\r