/******************************************************************************* * Copyright © 2011, 2013 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.ide.ui.internal.util; public interface IEGLStatusConstants { public static final int INTERNAL_ERROR= 10001; /** * Status constant indicating that an exception occurred on * storing or loading templates. */ public static final int TEMPLATE_IO_EXCEPTION = 10002; /** * Status constant indicating that an validateEdit call has changed the * content of a file on disk. */ public static final int VALIDATE_EDIT_CHANGED_CONTENT= 10003; /** * Status constant indicating that a <tt>ChangeAbortException</tt> has been * caught. */ public static final int CHANGE_ABORTED= 10004; /** * Status constant indicating that an exception occurred while * parsing template file. */ public static final int TEMPLATE_PARSE_EXCEPTION = 10005; /** * Status constant indicating that a problem occurred while notifying a post * save listener. * * @see IPostSaveListener * @since 3.3 */ public static final int EDITOR_POST_SAVE_NOTIFICATION= 10006; public static final int EDITOR_CHANGED_REGION_CALCULATION= 10007; /** * Status constant indication that a problem occurred while opening an editor: * no editor input could be created. See {@link EditorUtility#openInEditor(Object, boolean)}. * @since 3.4 */ public static final int EDITOR_NO_EDITOR_INPUT= 10008; }