use module net.sourceforge.phpeclipse.phphelp instead of net.sourceforge.phpeclipse...
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.phphelp / src / net / sourceforge / phpdt / phphelp / actions / PHPFunctionHelpResource.java
diff --git a/net.sourceforge.phpeclipse.debug.phphelp/src/net/sourceforge/phpdt/phphelp/actions/PHPFunctionHelpResource.java b/net.sourceforge.phpeclipse.debug.phphelp/src/net/sourceforge/phpdt/phphelp/actions/PHPFunctionHelpResource.java
deleted file mode 100644 (file)
index 7f0249f..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. and others.
-All rights reserved. This program and the accompanying materials
-are made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-
-Contributors:
-    IBM Corporation - Initial implementation
-    Klaus Hartlage - www.eclipseproject.de
-**********************************************************************/
-package net.sourceforge.phpdt.phphelp.actions;
-
-import org.eclipse.help.IHelpResource;
-
-/**
- * 
- */
-public class PHPFunctionHelpResource implements IHelpResource {
-
-  private String word;
-
-  public PHPFunctionHelpResource(String word) {
-    this.word = word;
-  }
-
-  public String getHref() {
-    return "/net.sourceforge.phpeclipse.phphelp/doc/function." + word + ".html";
-  }
-
-  public String getLabel() {
-    return "PHP Context Help";
-  }
-
-}
\ No newline at end of file