blob: 9fce189d7d07cb448d3e148fbfee62016f0c132b [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:
* mkaufman@bea.com - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.compiler;
/**
* An result class used as a return value from ICompilationParticipant's notify() method
* when responding to a CatastrophicBuildFailureEvent.
*
* @see ICompilationParticipant#notify(CompilationParticipantEvent)
* @since 3.2
*/
public class BrokenClasspathBuildFailureResult extends
CompilationParticipantResult {
/**
* @return an integer flag indicating the kind of event. In this case,
* BROKEN_CLASSPATH_BUILD_FAILURE_EVENT
* @see ICompilationParticipant#BROKEN_CLASSPATH_BUILD_FAILURE_EVENT
*/
public int getKind() { return ICompilationParticipant.BROKEN_CLASSPATH_BUILD_FAILURE_EVENT; }
}