Source code: com/the/test/Test1Impl.java
1 package com.the.test;
2 import java.util.*;
3 import java.math.*;
4 import java.sql.*;
5 import com.gopas.rt.util.*;
6 import com.gopas.rt.model.*;
7 public class Test1Impl extends Test1Core
8 {
9 public Test1Impl()
10 {
11 super();
12 }
13 public Test1Impl(Object uid)
14 {
15 super(uid);
16 }
17 public Test1Impl(Object uid, int status)
18 {
19 super(uid, status);
20 }
21 public Test1Impl(Object uid, int status, TypeDesc typeDesc)
22 {
23 super(uid, status, typeDesc);
24 }
25 //
26 public String toString() {
27 StringBuffer buf = new StringBuffer();
28 //
29 buf.append("uid = " + getUid());
30 buf.append(" / project = " + getProject());
31 buf.append(" / name = " + getName());
32 buf.append(" / deleted = " + isObjectDeleted());
33 buf.append(" / modified = " + isObjectModified());
34 buf.append(" / valText = " + getValText());
35 buf.append(" / valInt = " + getValInt());
36 buf.append(" / valDouble = " + getValDouble());
37 buf.append(" / valLong = " + getValLong());
38 buf.append(" / valBoolean = " + isValBoolean());
39 buf.append(" / valTextMemo = " + getValTextMemo());
40 buf.append(" / valBigDecimal = " + getValBigDecimal());
41 //
42 boolean gui = getAttrValAttr2BD().isValidGui();
43 buf.append(" / [valAttr2BD = " + getValAttr2BD() +
44 " / isValidGui = " + gui);
45 getAttrValAttr2BD().setValidGui(!gui);
46 buf.append(" / hiddenVal = " + getValAttr2BD() + " ]");
47 getAttrValAttr2BD().setValidGui(gui);
48 //
49 buf.append(" / valLongSimpl = " + getValLongSimpl());
50 //
51 return buf.toString();
52 }
53 }