1   /*
2    * Jour - java profiler and monitoring library
3    *
4    * Copyright (C) 2004 Jour team
5    *
6    * This library is free software; you can redistribute it and/or
7    * modify it under the terms of the GNU Library General Public
8    * License as published by the Free Software Foundation; either
9    * version 2 of the License, or (at your option) any later version.
10   *
11   * This library is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   * Library General Public License for more details.
15   *
16   * You should have received a copy of the GNU Library General Public
17   * License along with this library; if not, write to the
18   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19   * Boston, MA  02111-1307, USA.
20   */
21  package uut;
22  
23  import java.util.*;
24  
25  /***
26   * TODO Add docs
27   *
28   * Created on 05.12.2004
29   * Contributing Author(s):
30   *
31   *   Misha Lifschitz <mishalifschitz at users.sourceforge.net> (Inital implementation)
32   *   Vlad Skarzhevskyy <vlads at users.sourceforge.net> (Inital implementation)
33   *
34   * @author vlads
35   * @version $Revision: 1.5 $ ($Author: vlads $)  $Date: 2004/12/08 19:37:27 $
36   */
37  public class PointcutCase implements PointcutCaseInterface {
38  
39      String foo;
40      
41      List bar;
42      
43      public static void main(String[] args) {
44      }
45  
46      public int doFoo(String foo, List bar) {
47          return 0;
48      }
49      
50      public int getint() {
51          return 0;
52      }
53      
54      private int getintprivate() {
55          return 0;
56      }
57      
58      final int getintfinal() {
59          return 0;
60      }
61      
62  	synchronized private int getintprivatesyn() {
63          return 0;
64      }
65  	
66  	synchronized static private int getintprivatesynstat() {
67          return 0;
68      }
69  	
70      public void setint(int i) {
71      }
72  
73      
74      public String getString() {
75          return "";
76      }
77  
78      public String[] getStringArray() {
79          return new String[1];
80      }
81      
82      public boolean getboolean() {
83          return true;
84      }
85      
86      /***
87       * @return Returns the foo.
88       */
89      public String getFoo() {
90          return foo;
91      }
92      
93      /***
94       * @return Returns the foo.
95       */
96      public String getFooBar(int bar) {
97          return foo;
98      }
99      
100     /***
101      * @param foo The foo to set.
102      */
103     public void setFoo(String foo) {
104         this.foo = foo;
105     }
106     
107     /***
108      * @return Returns the bar.
109      */
110     public List getBar() {
111         return bar;
112     }
113     
114     public List getBarList() {
115         return bar;
116     }
117     
118     /***
119      * @param bar The bar to set.
120      */
121     public void setBar(List bar) {
122         this.bar = bar;
123     }
124 }