1 /*
2 * MIT License
3 * Copyright (c) 2006-2025 JMockit developers
4 * See LICENSE file for full license text.
5 */
6 package otherTests;
7
8 import java.util.Set;
9
10 /**
11 * The Class BaseClass.
12 */
13 public class BaseClass {
14
15 /** The base int. */
16 protected int baseInt;
17
18 /** The base string. */
19 protected String baseString;
20
21 /** The base set. */
22 protected Set<Boolean> baseSet;
23
24 /** The long field. */
25 @SuppressWarnings({ "FieldCanBeLocal", "unused" })
26 private long longField;
27
28 /**
29 * Sets the long field.
30 *
31 * @param value
32 * the new long field
33 */
34 void setLongField(long value) {
35 longField = value;
36 }
37 }