1 19 20 package org.netbeans.spi.project.support.ant; 21 22 import java.util.EventObject ; 23 24 30 public final class AntProjectEvent extends EventObject { 31 32 private final String path; 33 private final boolean expected; 34 35 AntProjectEvent(AntProjectHelper helper, String path, boolean expected) { 36 super(helper); 37 this.path = path; 38 this.expected = expected; 39 } 40 41 45 public AntProjectHelper getHelper() { 46 return (AntProjectHelper)getSource(); 47 } 48 49 62 public String getPath() { 63 return path; 64 } 65 66 73 public boolean isExpected() { 74 return expected; 75 } 76 77 } 78 | Popular Tags |