blob: e96b1e7cfb2502bdfa55223a73af4932c6d49fb8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.ant.ui.internal.editor.text;
import org.eclipse.jface.util.Assert;
final public class AnnotationType {
public final static AnnotationType UNKNOWN= new AnnotationType();
public final static AnnotationType BOOKMARK= new AnnotationType();
public final static AnnotationType TASK= new AnnotationType();
public final static AnnotationType ERROR= new AnnotationType();
public final static AnnotationType WARNING= new AnnotationType();
public final static AnnotationType INFO= new AnnotationType();
public final static AnnotationType SEARCH= new AnnotationType();
private AnnotationType() {
}
public String toString() {
if (this == UNKNOWN)
return "AnnotationType.UNKNOWN"; //$NON-NLS-1$
if (this == BOOKMARK)
return "AnnotationType.BOOKMARK"; //$NON-NLS-1$
if (this == TASK)
return "AnnotationType.TASK"; //$NON-NLS-1$
if (this == ERROR)
return "AnnotationType.ERROR"; //$NON-NLS-1$
if (this == WARNING)
return "AnnotationType.WARNING"; //$NON-NLS-1$
if (this == SEARCH)
return "AnnotationType.SEARCH"; //$NON-NLS-1$
Assert.isLegal(false);
return ""; //$NON-NLS-1$
}
}