KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > league > ejb > entity > MatchLocalBusiness


1
2 package league.ejb.entity;
3
4
5 /**
6  * This is the business interface for Match enterprise bean.
7  */

8 public interface MatchLocalBusiness {
9     public abstract java.math.BigDecimal JavaDoc getId();
10
11     public abstract void setId(java.math.BigDecimal JavaDoc id);
12
13     public abstract java.sql.Timestamp JavaDoc getDatePlayed();
14
15     public abstract void setDatePlayed(java.sql.Timestamp JavaDoc datePlayed);
16
17     public abstract java.util.Collection JavaDoc getResult();
18
19     public abstract void setResult(java.util.Collection JavaDoc result);
20
21     league.ejb.entity.RoundLocal getRound();
22
23     void setRound(league.ejb.entity.RoundLocal round);
24     
25 }
26
Popular Tags