X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/AnnotationType.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/AnnotationType.java new file mode 100644 index 0000000..c6ed4c2 --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/AnnotationType.java @@ -0,0 +1,25 @@ +/********************************************************************** +Copyright (c) 2000, 2002 IBM Corp. 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 implementation +**********************************************************************/ +package net.sourceforge.phpeclipse.phpeditor; + +public final class AnnotationType { + + public final static AnnotationType ALL= new 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 SEARCH_RESULT= new AnnotationType(); + + private AnnotationType() { + } +}