View Javadoc
1   package otherTests;
2   
3   import java.util.Set;
4   
5   /**
6    * The Class BaseClass.
7    */
8   public class BaseClass {
9   
10      /** The base int. */
11      protected int baseInt;
12  
13      /** The base string. */
14      protected String baseString;
15  
16      /** The base set. */
17      protected Set<Boolean> baseSet;
18  
19      /** The long field. */
20      @SuppressWarnings({ "FieldCanBeLocal", "unused" })
21      private long longField;
22  
23      /**
24       * Sets the long field.
25       *
26       * @param value
27       *            the new long field
28       */
29      void setLongField(long value) {
30          longField = value;
31      }
32  }