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
|
public AntWebAppContext(Project project) throws Exception
|
||||||
{
|
{
|
||||||
|
@ -669,9 +669,6 @@ public class AntWebAppContext extends WebAppContext
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @see WebApplicationProxy#stop()
|
|
||||||
*/
|
|
||||||
public void doStop()
|
public void doStop()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
|
@ -136,9 +136,6 @@ public class JettyRunTask extends Task
|
||||||
this.contextHandlers = handlers;
|
this.contextHandlers = handlers;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public File getTempDirectory()
|
public File getTempDirectory()
|
||||||
{
|
{
|
||||||
return tempDirectory;
|
return tempDirectory;
|
||||||
|
@ -152,9 +149,6 @@ public class JettyRunTask extends Task
|
||||||
this.tempDirectory = tempDirectory;
|
this.tempDirectory = tempDirectory;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public File getJettyXml()
|
public File getJettyXml()
|
||||||
{
|
{
|
||||||
return jettyXml;
|
return jettyXml;
|
||||||
|
@ -191,9 +185,6 @@ public class JettyRunTask extends Task
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public String getRequestLog()
|
public String getRequestLog()
|
||||||
{
|
{
|
||||||
if (requestLog != null)
|
if (requestLog != null)
|
||||||
|
@ -301,9 +292,6 @@ public class JettyRunTask extends Task
|
||||||
TaskLog.log("Daemon="+daemon);
|
TaskLog.log("Daemon="+daemon);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public int getScanIntervalSeconds()
|
public int getScanIntervalSeconds()
|
||||||
{
|
{
|
||||||
return scanIntervalSeconds;
|
return scanIntervalSeconds;
|
||||||
|
|
|
@ -27,8 +27,7 @@ public interface ServerProxy
|
||||||
/**
|
/**
|
||||||
* Adds a new web application to this server.
|
* Adds a new web application to this server.
|
||||||
*
|
*
|
||||||
* @param webApp a WebApplicationProxy object.
|
* @param awc a AntWebAppContext object.
|
||||||
* @param scanIntervalSeconds
|
|
||||||
*/
|
*/
|
||||||
public void addWebApplication(AntWebAppContext awc);
|
public void addWebApplication(AntWebAppContext awc);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue