Skip to content

Commit

Permalink
[Issue42] Javadoc errors prevented the javadoc jar file to be created
Browse files Browse the repository at this point in the history
  • Loading branch information
hekailiang committed Feb 13, 2015
1 parent 52988d2 commit eaf38b8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public interface Heartbeat {
void execute();

/**
* Adds a new command to the current Heartbeat. The command will be executed by {@link #end()}.
* Adds a new command to the current Heartbeat. The command will be executed by {@link #execute()}.
*
* @param command
* command to be executed at the end of the heartbeat
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,6 @@ public interface Reader<T extends StateMachine<T, S, E, C>, S, E, C> extends Ser
}

public interface Writer<T extends StateMachine<T, S, E, C>, S, E, C> extends Serializable {
/**
* @return state machine identifier
*/
void identifier(String id);

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
public interface Visitable {
/**
* Accepts a {@link #Visitor}.
* Accepts a {@link org.squirrelframework.foundation.fsm.Visitor}.
*
* @param visitor the visitor.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
*
* @author Henry.He
*
* @param <T> state machine type
* @param <S> state type
* @param <E> event type
* @param <C> context type
*/
class SCXMLVisitorImpl extends AbstractVisitor implements SCXMLVisitor {

Expand Down

0 comments on commit eaf38b8

Please sign in to comment.