Skip to content

Commit

Permalink
Minor JavaDoc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaillard committed Oct 21, 2017
1 parent 9e3ec34 commit 5de54b1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main/java/org/gomoob/model/IState.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

package org.gomoob.model;

import org.gomoob.model.IEntityWithCreationDate;
import org.json.JSONObject;

/**
Expand Down Expand Up @@ -41,23 +40,22 @@ public interface IState extends IEntityWithCreationDate<String> {
* Sets the message, in most cases this message is empty. The message is used to describe the state or to describe
* the reason why this state has been created.
*
* @param the message.
* @param message the message.
*/
public void setMessage(final String message);

/**
* Sets the generic metadata attached to this state, this is an array which can contain any keys or values. This is
* useful to make the state usable in every application.
*
* @param the JSON Object of metadata.
* @param metadata the JSON Object of metadata.
*/
public void setMetadata(final JSONObject metadata);

/**
* Sets the name of the state.
*
* @param the name of the state.
* @param name the name of the state.
*/
public void setName(final String name);

}

0 comments on commit 5de54b1

Please sign in to comment.