View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package integration.tests;
7   
8   /**
9    * The Class ClassLoadedByCustomLoaderOnly.
10   */
11  public final class ClassLoadedByCustomLoaderOnly {
12  
13      /** The value. */
14      private final String value;
15  
16      /**
17       * Instantiates a new class loaded by custom loader only.
18       *
19       * @param value
20       *            the value
21       */
22      public ClassLoadedByCustomLoaderOnly(String value) {
23          this.value = value;
24      }
25  
26      /**
27       * Gets the value.
28       *
29       * @return the value
30       */
31      public String getValue() {
32          return value;
33      }
34  }