1 11 12 package org.eclipse.jdt.internal.corext.buildpath; 13 14 import org.eclipse.jdt.internal.ui.wizards.buildpaths.newsourcepage.ClasspathModifierAction; 15 16 17 21 public class PackageExplorerActionEvent { 22 23 private String [] fEnabledActionsDescriptions; 24 private ClasspathModifierAction[] fEnabledActions; 25 26 41 public PackageExplorerActionEvent(String [] enabledActionsDescriptions, ClasspathModifierAction[] enabledActions) { 42 fEnabledActionsDescriptions= enabledActionsDescriptions; 43 fEnabledActions= enabledActions; 44 } 45 46 56 public ClasspathModifierAction[] getEnabledActions() { 57 return fEnabledActions; 58 } 59 60 69 public String [] getEnabledActionsText() { 70 return fEnabledActionsDescriptions; 71 } 72 } 73 | Popular Tags |