Fixing malformed Javadoc warnings in jetty-ant

This commit is contained in:
Joakim Erdfelt 2013-08-14 12:24:09 -07:00
parent 1abad26e99
commit d1631b69af
3 changed files with 3 additions and 19 deletions

View File

@ -432,9 +432,9 @@ public class AntWebAppContext extends WebAppContext
/**
* Default constructor. Takes application name as an argument
* Default constructor. Takes project as an argument
*
* @param name web application name.
* @param project the project.
*/
public AntWebAppContext(Project project) throws Exception
{
@ -669,9 +669,6 @@ public class AntWebAppContext extends WebAppContext
}
}
/**
* @see WebApplicationProxy#stop()
*/
public void doStop()
{
try

View File

@ -136,9 +136,6 @@ public class JettyRunTask extends Task
this.contextHandlers = handlers;
}
/**
* @return
*/
public File getTempDirectory()
{
return tempDirectory;
@ -152,9 +149,6 @@ public class JettyRunTask extends Task
this.tempDirectory = tempDirectory;
}
/**
* @return
*/
public File getJettyXml()
{
return jettyXml;
@ -191,9 +185,6 @@ public class JettyRunTask extends Task
}
}
/**
* @return
*/
public String getRequestLog()
{
if (requestLog != null)
@ -301,9 +292,6 @@ public class JettyRunTask extends Task
TaskLog.log("Daemon="+daemon);
}
/**
* @return
*/
public int getScanIntervalSeconds()
{
return scanIntervalSeconds;

View File

@ -27,8 +27,7 @@ public interface ServerProxy
/**
* Adds a new web application to this server.
*
* @param webApp a WebApplicationProxy object.
* @param scanIntervalSeconds
* @param awc a AntWebAppContext object.
*/
public void addWebApplication(AntWebAppContext awc);