1 18 19 package org.apache.tools.ant; 20 21 import java.util.EventListener ; 22 23 31 public interface BuildListener extends EventListener { 32 33 40 void buildStarted(BuildEvent event); 41 42 51 void buildFinished(BuildEvent event); 52 53 61 void targetStarted(BuildEvent event); 62 63 72 void targetFinished(BuildEvent event); 73 74 82 void taskStarted(BuildEvent event); 83 84 93 void taskFinished(BuildEvent event); 94 95 105 void messageLogged(BuildEvent event); 106 } 107 | Popular Tags |