X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xml.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/XMLAnnotation.java b/net.sourceforge.phpeclipse.xml.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/XMLAnnotation.java index 153c7f7..fb371b8 100644 --- a/net.sourceforge.phpeclipse.xml.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/XMLAnnotation.java +++ b/net.sourceforge.phpeclipse.xml.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/XMLAnnotation.java @@ -8,23 +8,21 @@ * Contributors: * Igor Malinin - initial contribution * - * $Id: XMLAnnotation.java,v 1.1 2004-09-02 18:28:03 jsurfer Exp $ + * $Id: XMLAnnotation.java,v 1.2 2006-10-21 23:14:13 pombredanne Exp $ */ package net.sourceforge.phpeclipse.xml.ui.internal.text; import org.eclipse.jface.text.source.Annotation; - /** * @author Igor Malinin */ public class XMLAnnotation extends Annotation { - public static final String TYPE_ERROR = - "org.eclipse.ui.workbench.texteditor.warning"; //$NON-NLS-1$ - public static final String TYPE_WARNING = - "org.eclipse.ui.workbench.texteditor.error"; //$NON-NLS-1$ - public static final String TYPE_INFO = - "org.eclipse.ui.workbench.texteditor.info"; //$NON-NLS-1$ + public static final String TYPE_ERROR = "org.eclipse.ui.workbench.texteditor.warning"; //$NON-NLS-1$ + + public static final String TYPE_WARNING = "org.eclipse.ui.workbench.texteditor.error"; //$NON-NLS-1$ + + public static final String TYPE_INFO = "org.eclipse.ui.workbench.texteditor.info"; //$NON-NLS-1$ public XMLAnnotation(String type, boolean persistent, String text) { super(type, persistent, text);