tribble.sql.test
Class EmployeeInfo

java.lang.Object
  extended by 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_id
          Employee ID.
(package private) static java.lang.String REV
           
 
Constructor Summary
EmployeeInfo()
           
 
Method Summary
(package private)  int getEmployeeID()
           
(package private)  java.lang.String getFirstName()
           
(package private)  java.util.Date getHireDate()
           
(package private)  java.lang.String getLastName()
           
(package private)  void print(java.io.PrintStream out)
          Pretty-print the contents of this EmployeeInfo object.
 void setFirstName(java.lang.String s)
           
 void setHireDate(java.util.Date when)
           
 void setLastName(java.lang.String s)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

REV

static final java.lang.String REV
See Also:
Constant Field Values

m_id

public int m_id
Employee ID.

Constructor Detail

EmployeeInfo

public EmployeeInfo()
Method Detail

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 EmployeeInfo object.

Throws:
java.io.IOException
Since:
1.1, 2008-09-02