Skip to content

Commit 4e48ac4

Browse files
committed
Fix several JavaDoc issues
1 parent 49006e7 commit 4e48ac4

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

core/src/main/java/eu/bittrade/libs/steemj/base/models/operations/ClaimRewardBalanceOperation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public Asset getRewardSbd() {
139139
* Set the amount of Steem Dollers that should be collected. Please note
140140
* that it is not possible to collect more than that what is available. You
141141
* can check the available amount by requesting the Account information
142-
* using {@link eu.bittrade.libs.steemj.steemJ#getAccounts(java.util.List)
142+
* using {@link eu.bittrade.libs.steemj.SteemJ#getAccounts(List)
143143
* getAccounts(List)} method.
144144
*
145145
* @param rewardSbd
@@ -173,7 +173,7 @@ public Asset getRewardVests() {
173173
* Set the amount of Vests that should be collected. Please note that it is
174174
* not possible to collect more than that what is available. You can check
175175
* the available amount by requesting the Account information using
176-
* {@link eu.bittrade.libs.steemj.steemJ#getAccounts(java.util.List)
176+
* {@link eu.bittrade.libs.steemj.SteemJ#getAccounts(List)
177177
* getAccounts(List)} method.
178178
*
179179
* @param rewardVests

core/src/main/java/eu/bittrade/libs/steemj/base/models/operations/RequestAccountRecoveryOperation.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ public RequestAccountRecoveryOperation(@JsonProperty("recovery_account") Account
101101
*
102102
* @param recoveryAccount
103103
* The recovery account to set (see
104-
* {@link #setRecoveryAccount(Account)}).
104+
* {@link #setRecoveryAccount(AccountName)}).
105105
* @param accountToRecover
106106
* The account to recover (see
107-
* {@link #setAccountToRecover(Account)}).
107+
* {@link #setAccountToRecover(AccountName)}).
108108
* @param newOwnerAuthority
109109
* The new owner authority (see
110110
* {@link #setNewOwnerAuthority(Authority)}).
@@ -130,7 +130,7 @@ public AccountName getRecoveryAccount() {
130130
* {@link eu.bittrade.libs.steemj.base.models.Account#getRecoveryAccount()
131131
* getRecoveryAccount()} on the account to recover. You can receive this
132132
* account by using the
133-
* {@link eu.bittrade.libs.steemj.steemJ#getAccounts(List)
133+
* {@link eu.bittrade.libs.steemj.SteemJ#getAccounts(List)
134134
* getAccounts(List)} method when passing the {@link #accountToRecover
135135
* accountToRecover}. <b>Notice:</b> The private active key of this account
136136
* needs to be stored in the key storage.

core/src/main/java/eu/bittrade/libs/steemj/base/models/operations/VoteOperation.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ public class VoteOperation extends Operation {
4343
* {@link #setPermlink(String)}.
4444
* @param weight
4545
* Set the voting weight. {@link #setWeight(short)}.
46+
* @throws InvalidParameterException
47+
* If one of the arguments does not fulfill the requirements.
4648
*/
4749
@JsonCreator
4850
public VoteOperation(@JsonProperty("voter") AccountName voter, @JsonProperty("author") AccountName author,
@@ -67,7 +69,9 @@ public VoteOperation(@JsonProperty("voter") AccountName voter, @JsonProperty("au
6769
* {@link #setAuthor(AccountName)}.
6870
* @param permlink
6971
* Set the permanent link of the post/comment to vote for.
70-
* {@link #setPermlink(String)}.
72+
* {@link #setPermlink(Permlink)}.
73+
* @throws InvalidParameterException
74+
* If one of the arguments does not fulfill the requirements.
7175
*/
7276
public VoteOperation(AccountName voter, AccountName author, Permlink permlink) {
7377
super(false);

0 commit comments

Comments
 (0)