1 19 20 package org.netbeans.modules.ant.freeform.spi; 21 22 import java.util.List ; 23 24 30 public final class TargetDescriptor { 31 32 private String actionName; 33 private List <String > defaultTargets; 34 private String actionLabel; 35 private String accessibleLabel; 36 37 45 public TargetDescriptor(String actionName, List <String > defaultTargets, String actionLabel, String accessibleLabel) { 46 this.actionName = actionName; 47 this.defaultTargets = defaultTargets; 48 this.actionLabel = actionLabel; 49 this.accessibleLabel = accessibleLabel; 50 } 51 52 55 public String getIDEActionName() { 56 return actionName; 57 } 58 59 65 public List <String > getDefaultTargets() { 66 return defaultTargets; 67 } 68 69 73 public String getIDEActionLabel() { 74 return actionLabel; 75 } 76 77 80 public String getAccessibleLabel() { 81 return accessibleLabel; 82 } 83 84 } 85 | Popular Tags |