ClassWithOptions.java 514 B

12345678910111213141516
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. package org.mozilla.gecko.annotationProcessors.classloader;
  5. public class ClassWithOptions {
  6. public final Class<?> wrappedClass;
  7. public final String generatedName;
  8. public ClassWithOptions(Class<?> someClass, String name) {
  9. wrappedClass = someClass;
  10. generatedName = name;
  11. }
  12. }