deleted old phpparser package
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / phpparser / PHPClassDeclaration.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPClassDeclaration.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPClassDeclaration.java
deleted file mode 100644 (file)
index 325785c..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-package net.sourceforge.phpeclipse.phpeditor.phpparser;
-
-import net.sourceforge.phpdt.internal.ui.PHPUiImages;
-
-import org.eclipse.jface.resource.ImageDescriptor;
-/**
- * A class declaration.
- * @author khartlage
- */
-public class PHPClassDeclaration extends PHPSegmentWithChildren {
-
-  /**
-   * Create a class declaration.
-   * @param parent the parent object (it should be a php class)
-   * @param name the name of the class
-   * @param index where the class is in the file
-   */
-  public PHPClassDeclaration(Object parent, String name, int index) {
-    super(parent, name, index);
-  }
-
-  /**
-   * Get the image of a class.
-   * @return the image that represents a php class
-   */
-  public ImageDescriptor getImage() {
-    return PHPUiImages.DESC_CLASS;
-  }
-}