1 /******************************************************************************* 2 * Copyright (c) 2005, 2007 BEA Systems, Inc. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * tyeung@bea.com - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.apt.core.env; 12 13 /** 14 * Enum for APT related operation phase. 15 */ 16 public enum Phase { 17 18 /** During Reconcile phase */ 19 RECONCILE, 20 /** During Build phase */ 21 BUILD, 22 /** 23 * Neither reconcile or build. Completion would be an example. 24 */ 25 OTHER 26 } 27