1 /*
2 * Created on 2003-6-20 17:11:34 by joel guo
3 *
4 * vTradEx Information Technology Inc.
5 */
6 package com.cyclops.dbdigger.model.base.table;
7 /*** Add description <font color="red">HERE</font>!
8 *
9 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a>
10 * @since 2003-6-27 11:27:48
11 */
12 /*** Add description <font color="red">HERE</font>!
13 *
14 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a>
15 * @since 2003-6-20 17:11:34
16 */
17 public class BaseDBObject1 extends BaseTableObject {
18 private int id;
19 private String objectName;
20 private int sequence;
21 private String title;
22 /*** Method getId()
23 * @return Id property value
24 */
25 public int getId() {
26 return id;
27 }
28 /*** Method getObjectName()
29 * @return ObjectName property value
30 */
31 public String getObjectName() {
32 return objectName;
33 }
34 /*** Method getSequence()
35 * @return Sequence property value
36 */
37 public int getSequence() {
38 return sequence;
39 }
40 /*** Method getTitle()
41 * @return Title property value
42 */
43 public String getTitle() {
44 return title;
45 }
46 /*** Method setId()
47 * @param i Id value
48 */
49 public void setId(int i) {
50 updateChangedFlag(id, i);
51 id = i;
52 }
53 /*** Method setObjectName()
54 * @param string ObjectName value
55 */
56 public void setObjectName(String string) {
57 updateChangedFlag(objectName, string);
58 objectName = string;
59 }
60 /*** Method setSequence()
61 * @param i Sequence value
62 */
63 public void setSequence(int i) {
64 updateChangedFlag(sequence, i);
65 sequence = i;
66 }
67 /*** Method setTitle()
68 * @param string Title value
69 */
70 public void setTitle(String string) {
71 updateChangedFlag(title, string);
72 title = string;
73 }
74 }
This page was automatically generated by Maven