1 package net.sourceforge.phpdt.internal.compiler.parser;
3 import org.eclipse.jface.resource.ImageDescriptor;
4 import org.eclipse.jface.text.Position;
7 * Here is an interface that object that can be in the outline view must implement.
8 * @author Matthieu Casanova
10 public interface Outlineable {
13 * This will return the image for the outline of the object.
16 ImageDescriptor getImage();
20 Position getPosition();