package net.sourceforge.phpeclipse.phpeditor.phpparser; import net.sourceforge.phpdt.internal.ui.PHPUiImages; import org.eclipse.jface.resource.ImageDescriptor; /** * * @author khartlage */ public class PHPFunctionDeclaration extends PHPSegment { public PHPFunctionDeclaration(Object parent, String name, int index) { super(parent, name, index); } public ImageDescriptor getImage() { return PHPUiImages.DESC_FUN; } }