1 22 package org.objectweb.petals.tools.ant; 23 24 import org.apache.tools.ant.BuildException; 25 import org.objectweb.petals.tools.ant.managers.ComponentAntTaskAbstract; 26 27 32 public class ShutdownComponentTask extends ComponentAntTaskAbstract { 33 34 public ShutdownComponentTask() { 35 super(); 36 } 37 38 43 public void execute() throws BuildException { 44 performAction(ComponentAntTaskAbstract.SHUTDOWN); 45 } 46 47 } 48 | Popular Tags |