blob: 661d578bfb8c27023b078036b106eaf7eb03da0e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.filebuffers;
/**
* This interface provides the list of status codes that are used by the file
* buffer plug-in when it throws {@link org.eclipse.core.runtime.CoreException}.
* <p>
* Not yet for public use. API under construction.
*
* @since 3.1
*/
public interface IFileBufferStatusCodes {
/**
* Changing the content of a file buffer failed.
*/
int CONTENT_CHANGE_FAILED= 1;
/**
* Creation of file buffer failed.
*/
int CREATION_FAILED= 2;
}