Skip to content

Commit d855942

Browse files
ericsson-peiwuyangleomaatEric
authored andcommitted
support trim packet size
1 parent fe2acea commit d855942

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.cisco.trex.stateless.model.vm;
2+
3+
public class TrimPktSize extends VMInstruction {
4+
5+
private String type;
6+
private String name;
7+
8+
public TrimPktSize(String name) {
9+
super();
10+
this.type = "trim_pkt_size";
11+
this.name = name;
12+
}
13+
14+
public String getType() {
15+
return type;
16+
}
17+
18+
public String getName() {
19+
return name;
20+
}
21+
}

0 commit comments

Comments
 (0)