Skip to content

Commit 9626c7b

Browse files
Merge pull request #76 from cisco-system-traffic-generator/fix-javadoc-warnings
Fix javadoc warnings
2 parents fba08c0 + 06c0250 commit 9626c7b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/main/java/com/cisco/trex/stateful/TRexAstfClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ public List<String> getTemplateGroupNames(String profileId) {
427427
* get template group statistics
428428
*
429429
* @param tgNames
430-
* @return
430+
* @return group statistics
431431
*/
432432
public Map<String, AstfStatistics> getTemplateGroupStatistics(List<String> tgNames) {
433433
return getTemplateGroupStatistics("", tgNames);

src/main/java/com/cisco/trex/stateful/api/lowlevel/ASTFIpGenDist.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public enum Distribution {
230230
/**
231231
* get type
232232
*
233-
* @return
233+
* @return type
234234
*/
235235
public String getType() {
236236
return type;
@@ -252,7 +252,7 @@ public enum PerCoreDistributionVals {
252252
/**
253253
* get type
254254
*
255-
* @return
255+
* @return type
256256
*/
257257
public String getType() {
258258
return type;

src/main/java/com/cisco/trex/stateful/api/lowlevel/ASTFIpGenGlobal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public ASTFIpGenGlobal() {
3131
/**
3232
* to json format
3333
*
34-
* @return
34+
* @return json
3535
*/
3636
public JsonObject toJson() {
3737
return fields;

src/main/java/com/cisco/trex/stateful/api/lowlevel/ASTFProgram.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ public void jmpNz(String varId, String label) {
437437
/**
438438
* get the total send bytes of the program
439439
*
440-
* @return
440+
* @return sent bytes
441441
*/
442442
public int getTotalSendBytes() {
443443
return totalSendBytes;
@@ -446,7 +446,7 @@ public int getTotalSendBytes() {
446446
/**
447447
* return true if it's stream
448448
*
449-
* @return
449+
* @return if stream
450450
*/
451451
public boolean isStream() {
452452
return stream;
@@ -471,7 +471,7 @@ public static void classReset() {
471471
/**
472472
* get buffer list size
473473
*
474-
* @return
474+
* @return buffer size
475475
*/
476476
public static int getBufSize() {
477477
return bufList.getLen();
@@ -499,7 +499,7 @@ public JsonObject toJson() {
499499
/**
500500
* get payload length
501501
*
502-
* @return
502+
* @return payload length
503503
*/
504504
public int getPayloadLen() {
505505
return payloadLen;

0 commit comments

Comments
 (0)