1 11 12 package org.eclipse.ui.internal; 13 14 import org.eclipse.ui.internal.registry.IActionSetDescriptor; 15 16 38 public final class ActionSetsEvent { 39 40 44 private final IActionSetDescriptor[] newActionSets; 45 46 52 ActionSetsEvent(final IActionSetDescriptor[] newActionSets) { 53 this.newActionSets = newActionSets; 54 } 55 56 61 public final IActionSetDescriptor[] getNewActionSets() { 62 return newActionSets; 63 } 64 } 65 | Popular Tags |