Skip to content

Commit

Permalink
Fix Doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gohai committed Mar 13, 2017
1 parent 44d3d7f commit d130dcf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gohai/simpletweet/SimpleTweet.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public SimpleTweet(PApplet parent) {
* This is necessary to do before the Twitter API can be used
* To get this key it is necessary to register your application
* at https://apps.twitter.com/app/new
* @param key consumer key
*/
public void setOAuthConsumerKey(String key) {
oAuthConsumerKey = key;
Expand All @@ -73,6 +74,7 @@ public void setOAuthConsumerKey(String key) {
* This is necessary to do before the Twitter API can be used
* To get this key it is necessary to register your application
* at https://apps.twitter.com/app/new
* @param secret consumer secret
*/
public void setOAuthConsumerSecret(String secret) {
oAuthConsumerSecret = secret;
Expand All @@ -84,6 +86,7 @@ public void setOAuthConsumerSecret(String secret) {
* This is necessary to do before the Twitter API can be used
* To get this key it is necessary to register your application
* at https://apps.twitter.com/app/new
* @param token access token
*/
public void setOAuthAccessToken(String token) {
oAuthAccessToken = token;
Expand All @@ -95,6 +98,7 @@ public void setOAuthAccessToken(String token) {
* This is necessary to do before the Twitter API can be used
* To get this key it is necessary to register your application
* at https://apps.twitter.com/app/new
* @param secret access token secret
*/
public void setOAuthAccessTokenSecret(String secret) {
oAuthAccessTokenSecret = secret;
Expand Down

0 comments on commit d130dcf

Please # to comment.