// WARNING: file "SimpleClass.java" generated from "SimpleClass.tj" // Changes should be applied on the source file. package com.somusar.tjpptest.subpackage; /** * Class SimpleClass: * * A simple software entity. */ // begin include "header.tjh" // // Sample header file for Java preprocessor // // end include "header.tjh" // begin include "subinc/subhdr.tjh" // // Sample header file for Java preprocessor from a subdirectory // of include root directory "/home/qa/pocs/java/tjpp/tjpp_include" // // end include "subinc/subhdr.tjh" // date of preprocessing: timestamp for "date": Sat Apr 02 2005 // time of preprocessing: timestamp for "time": 12:30:10.521 public class SimpleClass { private String aStringOfChar; private int anInt; private Object aThing; /* * Get methods */ public String getAStringOfChar() { return aStringOfChar; } public int getAnInt() { return anInt; } public Object getAThing() { System.err.println("[T] File SimpleClass.java, line 46 (src: SimpleClass.tj, 39)"); System.err.println("[T] [aThing = '" + aThing + "']"); return aThing; } /* * Set methods */ public void setAStringOfChar( String aStringOfChar ) { this.aStringOfChar = aStringOfChar; } public void setAnInt( int anInt ) { this.anInt = anInt; } public void setAThing( Object aThing ) { System.err.println("[T] File SimpleClass.java, line 64 (src: SimpleClass.tj, 56)"); System.err.println("[T] [aThing = '" + aThing + "']"); this.aThing = aThing; } } // WARNING: file "SimpleClass.java" generated from "SimpleClass.tj" // Changes should be applied on the source file.