blob: 291d8522c5bea8653e40ffeab926246b8b21a8e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 BEA Systems, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* sbandow@bea.com - initial API and implementation
*
*******************************************************************************/
package org.eclipse.jdt.apt.tests.annotations.filegen;
import java.io.IOException;
import java.io.PrintWriter;
import org.eclipse.jdt.apt.tests.annotations.BaseProcessor;
import org.eclipse.jdt.apt.tests.annotations.ProcessorTestStatus;
import com.sun.mirror.apt.AnnotationProcessorEnvironment;
import com.sun.mirror.apt.Filer;
public class FirstGenAnnotationProcessor extends BaseProcessor {
public FirstGenAnnotationProcessor(AnnotationProcessorEnvironment env) {
super(env);
}
public void process()
{
ProcessorTestStatus.setProcessorRan();
try
{
Filer f = _env.getFiler();
PrintWriter pw = f.createSourceFile("duptest.DupFile"); //$NON-NLS-1$
pw.print(CODE);
pw.close();
}
catch( IOException e )
{
e.printStackTrace();
}
}
protected String CODE =
"package duptest;" + "\n" +
"import org.eclipse.jdt.apt.tests.annotations.filegen.SecondGenAnnotation;" + "\n" +
"@SecondGenAnnotation" + "\n" +
"public class DupFile" + "\n" +
"{" + "\n" +
"}";
}