Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 94e1437e9253245d6ff08b461bf4752b04e92832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*******************************************************************************
 * Copyright (c) 2007 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:
 *    wharley@bea.com - initial API and implementation
 *    
 *******************************************************************************/

package org.eclipse.jdt.internal.apt.pluggable.core.dispatch;

import org.eclipse.jdt.apt.core.env.Phase;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.internal.compiler.Compiler;

/**
 * ProcessingEnvironment for build phase in IDE.
 * @since 3.3
 */
public class IdeBuildProcessingEnvImpl extends IdeProcessingEnvImpl {

	public IdeBuildProcessingEnvImpl(IdeAnnotationProcessorManager dispatchManager,
			IJavaProject jproject, Compiler compiler) {
		super(dispatchManager, jproject, compiler);
	}

	@Override
	public Phase getPhase() {
		return Phase.BUILD;
	}

}

Back to the top