View Javadoc

1   // %833795854:hoplugins.teamAnalyzer.vo%
2   package hoplugins.teamAnalyzer.vo;
3   
4   /***
5    * Extension of the spotLineup that holds user team data, as loaded from HO Lineup tab
6    *
7    * @author <a href=mailto:draghetto@users.sourceforge.net>Massimiliano Amato</a>
8    */
9   public class UserTeamSpotLineup extends SpotLineup {
10      //~ Instance fields ----------------------------------------------------------------------------
11  
12      /*** The special event code */
13      private int specialEvent;
14  
15      /*** The tactic code  constant for Offenive Midfielder, Winger Towards middle etc.. */
16      private int tacticCode;
17  
18      //~ Methods ------------------------------------------------------------------------------------
19  
20      /***
21       * DOCUMENT ME!
22       *
23       * @param i
24       */
25      public void setSpecialEvent(int i) {
26          specialEvent = i;
27      }
28  
29      /***
30       * DOCUMENT ME!
31       *
32       * @return
33       */
34      public int getSpecialEvent() {
35          return specialEvent;
36      }
37  
38      /***
39       * Document Me!
40       *
41       * @param i
42       */
43      public void setTacticCode(int i) {
44          tacticCode = i;
45      }
46  
47      /***
48       * Document Me!
49       *
50       * @return
51       */
52      public int getTacticCode() {
53          return tacticCode;
54      }
55  }