Skip to content

Commit

Permalink
Add some documentation related to method, @param and @return
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidePastore committed Jul 13, 2019
1 parent a2e8a5c commit 7559d30
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
public class JsonUtil {

/**
*
* @param ddmGeolocationString
* @return
* Get a DDMGeolocation instance from the given String.
* @param ddmGeolocationString The String to convert into a DDMGeolocation object.
* @return Returns the DDMGeolocation object.
* @throws JsonSyntaxException
* @throws JsonIOException
*/
Expand All @@ -31,9 +31,9 @@ public static DDMGeolocation getDDMGeolocation(String ddmGeolocationString) thro
}

/**
*
* @param ddmImageString
* @return
* Get a DDMImage instance from the given String.
* @param ddmImageString The String to convert into a DDMImage object.
* @return Returns the DDMImage object.
* @throws JsonSyntaxException
* @throws JsonIOException
*/
Expand All @@ -45,9 +45,9 @@ public static DDMImage getDDMImage(String ddmImageString) throws JsonSyntaxExcep
}

/**
*
* @param ddmDocumentAndMediaString
* @return
* Get a DDMDocumentAndMedia instance from the given String.
* @param ddmDocumentAndMediaString The String to convert into a DDMDocumentAndMedia object.
* @return Returns the DDMDocumentAndMedia object.
* @throws JsonSyntaxException
* @throws JsonIOException
*/
Expand Down

0 comments on commit 7559d30

Please sign in to comment.