home *** CD-ROM | disk | FTP | other *** search
- // -[KeepHeading]-
-
-
- // -[Copyright]-
-
- /**
- *
- */
- import java.lang.*;
-
-
- // -[KeepBeforeClass]-
-
-
- // -[Class]-
-
- /**
- * @jTitle Staff
- * @jAuthor Chris Colman
- * @jOverridability can be overridden
- * @jDescription
- * Describe here
- *
- * @see Person
- */
- public
- class Staff extends Person
- {
- // -[KeepWithinClass]-
-
-
- // -[Fields]-
-
-
-
- /**
- * NoDesc
- */
- protected int salary;
-
- /**
- * Association declarations
- */
-
-
-
-
- // -[Methods]-
-
-
-
- /**
- * Describe here
- */
- public void pay() {
- }
-
- }
-
-
-