c6ed4c2325d6948bcb277e520d918edb6ac539a9
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / AnnotationType.java
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
7
8 Contributors:
9     IBM Corporation - Initial implementation
10 **********************************************************************/
11 package net.sourceforge.phpeclipse.phpeditor;
12
13 public final class AnnotationType {
14         
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();
22         
23         private AnnotationType() {
24         }
25 }