tribble.sql.test
Class EmployeeInfo
java.lang.Object
   tribble.sql.test.EmployeeInfo
tribble.sql.test.EmployeeInfo
- public class EmployeeInfo 
- extends java.lang.Object
Test data class for class SqlObjectQuery.
 
 
 -  Source code: 
-  Available at:
   http://david.tribble.com/src/java/tribble/sql/test/EmployeeInfo.java
  
-  Documentation: 
-  Available at:
   http://david.tribble.com/docs/tribble/sql/test/EmployeeInfo.html
  
- Since:
- 2008-09-02
- Version:
- @(#)$Revision: 1.5 $ $Date: 2008/09/06 18:41:58 $
- Author:
- David R. Tribble (david@tribble.com)
        
        Copyright ©2008 by David R. Tribble, all rights reserved.
 Permission is granted to any person or entity except those designated by
        by the United States Department of State as a terrorist, or terrorist
        government or agency, to use and distribute this source code provided
        that the original copyright notice remains present and unaltered.
 
- See Also:
- Test1
| Field Summary | 
|  int | m_idEmployee ID.
 | 
| (package private) static java.lang.String | REV
 | 
 
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
REV
static final java.lang.String REV
- See Also:
- Constant Field Values
m_id
public int m_id
- Employee ID.
 
 
EmployeeInfo
public EmployeeInfo()
getEmployeeID
int getEmployeeID()
- 
 
getFirstName
java.lang.String getFirstName()
- 
 
setFirstName
public void setFirstName(java.lang.String s)
- 
 
getLastName
java.lang.String getLastName()
- 
 
setLastName
public void setLastName(java.lang.String s)
- 
 
getHireDate
java.util.Date getHireDate()
- 
 
setHireDate
public void setHireDate(java.util.Date when)
- 
 
print
void print(java.io.PrintStream out)
     throws java.io.IOException
- Pretty-print the contents of this EmployeeInfoobject.
 
- 
- Throws:
- java.io.IOException
- Since:
- 1.1, 2008-09-02