Fixing malformed Javadoc warnings in jetty-ant
This commit is contained in:
parent
1abad26e99
commit
d1631b69af
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue