<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.jface.text"/>
<import plugin="org.eclipse.core.resources"/>
- <import plugin="org.apache.lucene"/>
</requires>
<!-- <import plugin="org.apache.lucene"/> -->
<extension
</menu>
<action
label="Do nothing 1"
- class="net.sourceforge.example.outline.Import2Console"
+ class="net.sourceforge.phpeclipse.example.outline.Import2Console"
menubarPath="net.sourceforge.phpdt.import1/infoGroup"
enablesFor="1"
id="net.sourceforge.phpdt.donothing1">
</action>
<action
label="Print source to Console"
- class="net.sourceforge.example.outline.Import2Console"
+ class="net.sourceforge.phpeclipse.example.outline.Import2Console"
menubarPath="net.sourceforge.phpdt.import1/actionsGroup"
enablesFor="1"
id="net.sourceforge.example.outline.Import2Console">
</action>
<action
label="Do nothing 2"
- class="net.sourceforge.example.outline.Import2Console"
+ class="net.sourceforge.phpeclipse.example.outline.Import2Console"
menubarPath="net.sourceforge.phpdt.import1/mainActionsGroup"
enablesFor="1"
id="net.sourceforge.phpdt.donothing2">
</menu>
<action
label="Do nothing 3"
- class="net.sourceforge.example.outline.Type2Console"
+ class="net.sourceforge.phpeclipse.example.outline.Type2Console"
menubarPath="net.sourceforge.phpdt.type1/infoGroup"
enablesFor="1"
id="net.sourceforge.phpdt.donothing3">
</action>
<action
label="Print source to Console"
- class="net.sourceforge.example.outline.Type2Console"
+ class="net.sourceforge.phpeclipse.example.outline.Type2Console"
menubarPath="net.sourceforge.phpdt.type1/actionsGroup"
enablesFor="1"
id="net.sourceforge.example.outline.Type2Console">
</action>
<action
label="Do nothing 4"
- class="net.sourceforge.example.outline.Type2Console"
+ class="net.sourceforge.phpeclipse.example.outline.Type2Console"
menubarPath="net.sourceforge.phpdt.type1/mainActionsGroup"
enablesFor="1"
id="net.sourceforge.phpdt.donothing4">
--- /dev/null
+package net.sourceforge.phpeclipse.example.outline;
+
+import org.eclipse.core.resources.*;
+import net.sourceforge.phpdt.core.*;
+import org.eclipse.jface.action.*;
+import org.eclipse.jface.viewers.*;
+import org.eclipse.ui.*;
+
+public class Import2Console implements IObjectActionDelegate {
+
+ private IWorkbenchPartSite myPartSite = null;
+
+ private IWorkspace myWorkspace = null;
+
+ private IWorkbenchPart myWorkbenchPart = null;
+
+ private IImportDeclaration myType = null;
+
+ public Import2Console() {
+ // this(new PackageSelector());
+ }
+
+ // public CreateMock(IPackageSelector aPackageSelector) {
+ // myPackageSelector = aPackageSelector;
+ // }
+
+ /**
+ * @see IObjectActionDelegate#setActivePart(IAction, IWorkbenchPart)
+ */
+ public void setActivePart(IAction action, IWorkbenchPart targetPart) {
+ myWorkspace = ResourcesPlugin.getWorkspace();
+ myWorkbenchPart = targetPart;
+ }
+
+ /**
+ * @see IActionDelegate#run(IAction)
+ */
+ public void run(IAction action) {
+ try {
+ String actionId = action.getId();
+ showSourceInConsole(actionId);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ /**
+ * @see IActionDelegate#selectionChanged(IAction, ISelection)
+ */
+ public void selectionChanged(IAction action, ISelection selection) {
+ if (selection instanceof IStructuredSelection) {
+ Object item = ((IStructuredSelection) selection).getFirstElement();
+ myType = (IImportDeclaration) item; // this plugin only reacts to IImportDeclaration's
+ }
+ }
+
+ private void showSourceInConsole(String actionId) throws Exception {
+
+ String src = myType.getSource();
+ System.out.println("Source :"+src);
+
+ }
+
+}
\ No newline at end of file
--- /dev/null
+package net.sourceforge.phpeclipse.example.outline;
+
+
+import org.eclipse.core.resources.*;
+import net.sourceforge.phpdt.core.*;
+import org.eclipse.jface.action.*;
+import org.eclipse.jface.viewers.*;
+import org.eclipse.swt.widgets.*;
+import org.eclipse.ui.*;
+
+public class Type2Console implements IObjectActionDelegate {
+ private IWorkbenchPartSite myPartSite = null;
+
+ private IWorkspace myWorkspace = null;
+
+ private IWorkbenchPart myWorkbenchPart = null;
+
+ private IType myType = null;
+
+ private Shell myShell = new Shell(); // TBReplaced with getShell()
+
+ public Type2Console() {
+ }
+
+ /**
+ * @see IObjectActionDelegate#setActivePart(IAction, IWorkbenchPart)
+ */
+ public void setActivePart(IAction action, IWorkbenchPart targetPart) {
+ myWorkspace = ResourcesPlugin.getWorkspace();
+ myWorkbenchPart = targetPart;
+ }
+
+ /**
+ * @see IActionDelegate#run(IAction)
+ */
+ public void run(IAction action) {
+ try {
+
+ String actionId = action.getId();
+ showSourceInConsole(actionId);
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ /**
+ * @see IActionDelegate#selectionChanged(IAction, ISelection)
+ */
+ public void selectionChanged(IAction action, ISelection selection) {
+ if (selection instanceof IStructuredSelection) {
+ Object item = ((IStructuredSelection) selection).getFirstElement();
+ myType = (IType) item; // this plugin only reacts to
+ // "org.eclipse.jdt.core.IType" objects
+ }
+ }
+
+ private void showSourceInConsole(String actionId) throws Exception {
+ if (!(myType.isInterface() || myType.isClass())) {
+ throw new Exception("incompatible Type");
+ }
+
+ IMethod[] methods = myType.getMethods();
+
+ String fqname = myType.getFullyQualifiedName(); // a.b.c.d.MyClass
+ System.out.println(fqname + '\n');
+ for (int i = 0; i < methods.length; i++) {
+ System.out.println("Method " + i + ":"
+ + methods[i].getElementName());
+ }
+
+ }
+
+}