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.

IOutputClassFileNameProvider.java 1.1KB

123456789101112131415161718192021222324
  1. /*******************************************************************************
  2. * Copyright (c) 2004 IBM Corporation and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v 2.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors:
  9. * IBM Corporation - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.ajdt.internal.compiler;
  12. import org.aspectj.org.eclipse.jdt.internal.compiler.CompilationResult;
  13. /**
  14. * @author colyer
  15. *
  16. * Implementors of this interface know how to create an output destination name
  17. * for a given compilation result and class file. This interface capures the variation
  18. * in strategy between ajc command-line compiles and an AJDT driven compilation.
  19. */
  20. public interface IOutputClassFileNameProvider {
  21. String getOutputClassFileName(char[] eclipseClassFileName, CompilationResult result);
  22. }