Two interfaces added for outlineable objects
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / Outlineable.java
1 package net.sourceforge.phpdt.internal.compiler.parser;
2
3 import org.eclipse.jface.resource.ImageDescriptor;
4
5 /**
6  * Here is an interface that object that can be in the outline view must implement.
7  * @author Matthieu Casanova
8  */
9 public interface Outlineable {
10
11   /**
12    * This will return the image for the outline of the object.
13    * @return an image
14    */
15   ImageDescriptor getImage();
16
17   Object getParent();
18 }