1 /**********************************************************************
2 Copyright (c) 2000, 2002 IBM Corp. and others.
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Common Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/cpl-v10.html
9 IBM Corporation - Initial implementation
10 **********************************************************************/
11 package net.sourceforge.phpeclipse.phpeditor;
13 public final class AnnotationType {
15 public final static AnnotationType ALL= new AnnotationType();
16 public final static AnnotationType UNKNOWN= new AnnotationType();
17 public final static AnnotationType BOOKMARK= new AnnotationType();
18 public final static AnnotationType TASK= new AnnotationType();
19 public final static AnnotationType ERROR= new AnnotationType();
20 public final static AnnotationType WARNING= new AnnotationType();
21 public final static AnnotationType SEARCH_RESULT= new AnnotationType();
23 private AnnotationType() {