Skip to content

Commit

Permalink
merge javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardttom2 committed Feb 21, 2020
1 parent c51ce91 commit 5d30f71
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,13 @@
<exec dir="esperio/esperio-springjms" executable="cmd"> <arg value="/c"/> <arg value="mvn dependency:copy"/></exec>
<exec dir="examples/cycledetect" executable="cmd"> <arg value="/c"/> <arg value="mvn dependency:copy"/></exec>
</target>

<target name="generatejavadoc" description="Generate all JavaDoc">
<exec dir="doc/api" executable="cmd"> <arg value="/c"/> <arg value="ant javadoc"/></exec>
<exec dir="esperio/doc/api" executable="cmd"> <arg value="/c"/> <arg value="ant javadoc"/></exec>
<exec dir="common" executable="cmd"> <arg value="/c"/> <arg value="mvn javadoc:javadoc"/></exec>
<exec dir="common-avro" executable="cmd"> <arg value="/c"/> <arg value="mvn javadoc:javadoc"/></exec>
<exec dir="compiler" executable="cmd"> <arg value="/c"/> <arg value="mvn javadoc:javadoc"/></exec>
<exec dir="runtime" executable="cmd"> <arg value="/c"/> <arg value="mvn javadoc:javadoc"/></exec>
</target>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public Constructor resolveCtor(Class clazz, Class[] paramTypes) throws Classpath
* @param className is the class name to find
* @param requireAnnotation whether the class must be an annotation
* @param forAnnotationUse whether resolving class for use with annotations
* @param classpathExtension for additional classes
* @return class
* @throws ClassNotFoundException if the class cannot be loaded
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public class ParseResult {
* @param expressionWithoutAnnotations expression text no annotations, or null if same
* @param scripts script list
* @param tokenStream tokens
* @param classes class list
*/
public ParseResult(Tree tree, String expressionWithoutAnnotations, CommonTokenStream tokenStream, List<String> scripts, List<String> classes) {
this.tree = tree;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public interface RuntimeExtensionServicesSPI extends RuntimeExtensionServices {
* @param servicesContext the runtime
* @param runtimeSPI runtime SPI
* @param adminSPI admin SPI
* @param stageServiceSPI stage service SPI
*/
public void init(EPServicesContext servicesContext, EPEventServiceSPI runtimeSPI, EPDeploymentServiceSPI adminSPI, EPStageServiceSPI stageServiceSPI);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public class InboundUnitSendAvro implements InboundUnitRunnable {
* @param genericRecordDotData to send
* @param eventTypeName type name
* @param runtime to process
* @param services services
*/
public InboundUnitSendAvro(Object genericRecordDotData, String eventTypeName, EPRuntimeEventProcessWrapped runtime, EPServicesEvaluation services) {
this.eventTypeName = eventTypeName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public interface ThreadingService extends ThreadingCommon {
* Initialize thread pools.
*
* @param uri uri
* @param services services
*/
public void initThreading(String uri, EPServicesEvaluation services);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public final class SchedulingServiceImpl implements SchedulingServiceSPI {
* Constructor.
*
* @param timeSourceService time source provider
* @param stageId stage id or -1 when not applicable
*/
public SchedulingServiceImpl(int stageId, TimeSourceService timeSourceService) {
this.stageId = stageId;
Expand Down

0 comments on commit 5d30f71

Please sign in to comment.