First versioned eu.etaxonomy.taxeditor
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / prototype2 / controller / ActionPopulatePropertySheet.java
1 package eu.etaxonomy.taxeditor.prototype2.controller;
2
3 import org.eclipse.jface.action.Action;
4
5 import eu.etaxonomy.cdm.model.name.TaxonNameBase;
6
7 /**
8 * Open up a celleditor in the taxonomic tree
9 * to add a quickname to taxon
10 *
11 * @author p.ciardelli
12 *
13 */
14 public class ActionPopulatePropertySheet extends Action {
15 TaxonNameBase name;
16
17 public ActionPopulatePropertySheet(TaxonNameBase name) {
18 this.name = name;
19 }
20
21 public void run() {
22
23
24 // Open new node
25 // System.out.println(PlatformUI.getWorkbench().getActiveWorkbenchWindow().
26 // getActivePage().getActiveEditor().getSite().getPart()..getId());
27 // MultiPageTaxonView mptv;
28 // mptv.get
29
30
31 }
32 }