You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IUnwovenClassFile.java 661B

123456789101112131415161718192021222324252627
  1. /* *******************************************************************
  2. * Copyright (c) 2008 Contributors
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * ******************************************************************/
  10. package org.aspectj.weaver;
  11. /**
  12. * History: 246125
  13. *
  14. * @author Andy Clement
  15. */
  16. public interface IUnwovenClassFile {
  17. String getFilename();
  18. String getClassName();
  19. byte[] getBytes();
  20. char[] getClassNameAsChars();
  21. }