| org.apache.tools.ant.Task org.apache.tools.ant.taskdefs.optional.splash.SplashTask
SplashTask | public class SplashTask extends Task (Code) | | Creates a splash screen. The splash screen is displayed
for the duration of the build and includes a handy progress bar as
well. Use in conjunction with the sound task to provide interest
whilst waiting for your builds to complete...
since: Ant1.5 |
Method Summary | |
public void | execute() Execute the task. | public void | setImageURL(String imgurl) A URL pointing to an image to display; optional, default antlogo.gif
from the classpath. | public void | setPassword(String password) Proxy password; required if user is set. | public void | setPort(String port) Proxy port; optional, default 80. | public void | setProxy(String proxy) name of proxy; optional. | public void | setShowduration(int duration) how long to show the splash screen in milliseconds,
optional; default 5000 ms. | public void | setUseproxy(boolean useProxy) | public void | setUser(String user) Proxy user; optional, default =none. |
setImageURL | public void setImageURL(String imgurl)(Code) | | A URL pointing to an image to display; optional, default antlogo.gif
from the classpath.
Parameters: imgurl - the url string pointing to the image |
setPassword | public void setPassword(String password)(Code) | | Proxy password; required if user is set.
Parameters: password - the proxy password |
setPort | public void setPort(String port)(Code) | | Proxy port; optional, default 80.
Parameters: port - the proxy port |
setProxy | public void setProxy(String proxy)(Code) | | name of proxy; optional.
Parameters: proxy - the name of the proxy host |
setShowduration | public void setShowduration(int duration)(Code) | | how long to show the splash screen in milliseconds,
optional; default 5000 ms.
Parameters: duration - the spash duration in milliseconds |
setUseproxy | public void setUseproxy(boolean useProxy)(Code) | | flag to enable proxy settings; optional, deprecated : consider
using <setproxy> instead
Parameters: useProxy - if ture, enable proxy settings |
setUser | public void setUser(String user)(Code) | | Proxy user; optional, default =none.
Parameters: user - the proxy user |
|
|