A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.xml.ui / src / net / sourceforge / phpeclipse / xml / ui / internal / outline / XMLOutlineLabelProvider.java
index 29c3d7a..38fd25c 100644 (file)
@@ -8,17 +8,17 @@
  * Contributors:
  *     Christopher Lenz - initial API and implementation
  * 
- * $Id: XMLOutlineLabelProvider.java,v 1.1 2004-09-02 18:28:05 jsurfer Exp $
+ * $Id: XMLOutlineLabelProvider.java,v 1.3 2006-10-21 23:14:14 pombredanne Exp $
  */
 
 package net.sourceforge.phpeclipse.xml.ui.internal.outline;
 
-import org.eclipse.jface.viewers.LabelProvider;
-import org.eclipse.swt.graphics.Image;
-
 import net.sourceforge.phpeclipse.xml.core.model.IXMLElement;
 import net.sourceforge.phpeclipse.xml.ui.XMLPlugin;
 
+import org.eclipse.jface.viewers.LabelProvider;
+import org.eclipse.swt.graphics.Image;
+
 /**
  * Label provider for the XML outline page.
  */
@@ -32,7 +32,7 @@ public class XMLOutlineLabelProvider extends LabelProvider {
        public Image getImage(Object element) {
                if (element instanceof IXMLElement) {
                        return XMLPlugin.getDefault().getImageRegistry().get(
-                               XMLPlugin.ICON_ELEMENT);
+                                       XMLPlugin.ICON_ELEMENT);
                }
                return null;
        }