Skip to content

Commit 68cdd1c

Browse files
author
lukas81298
committed
update javadocs
1 parent 67b0c83 commit 68cdd1c

File tree

112 files changed

+420
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+420
-23
lines changed

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,26 @@
205205
<argLine>--add-opens java.base/java.util=ALL-UNNAMED</argLine>
206206
</configuration>
207207
</plugin>
208+
209+
<plugin>
210+
<groupId>org.jacoco</groupId>
211+
<artifactId>jacoco-maven-plugin</artifactId>
212+
<version>0.8.8</version>
213+
<executions>
214+
<execution>
215+
<goals>
216+
<goal>prepare-agent</goal>
217+
</goals>
218+
</execution>
219+
<execution>
220+
<id>generate-code-coverage-report</id>
221+
<phase>test</phase>
222+
<goals>
223+
<goal>report</goal>
224+
</goals>
225+
</execution>
226+
</executions>
227+
</plugin>
208228
</plugins>
209229
</build>
210230

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerAbilities.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ public class WrapperPlayServerAbilities extends AbstractPacket {
88

99
public static final PacketType TYPE = PacketType.Play.Server.ABILITIES;
1010

11+
/**
12+
* Constructs a new wrapper and initialize it with a packet handle with default values
13+
*/
1114
public WrapperPlayServerAbilities() {
1215
super(TYPE);
1316
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerAdvancements.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ public class WrapperPlayServerAdvancements extends AbstractPacket {
1313

1414
public static final PacketType TYPE = PacketType.Play.Server.ADVANCEMENTS;
1515

16+
/**
17+
* Constructs a new wrapper and initialize it with a packet handle with default values
18+
*/
1619
public WrapperPlayServerAdvancements() {
1720
super(TYPE);
1821
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerAnimation.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ public class WrapperPlayServerAnimation extends AbstractPacket {
1313

1414
public static final PacketType TYPE = PacketType.Play.Server.ANIMATION;
1515

16+
/**
17+
* Constructs a new wrapper and initialize it with a packet handle with default values
18+
*/
1619
public WrapperPlayServerAnimation() {
1720
super(TYPE);
1821
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerAttachEntity.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ public class WrapperPlayServerAttachEntity extends AbstractPacket {
88

99
public static final PacketType TYPE = PacketType.Play.Server.ATTACH_ENTITY;
1010

11+
/**
12+
* Constructs a new wrapper and initialize it with a packet handle with default values
13+
*/
1114
public WrapperPlayServerAttachEntity() {
1215
super(TYPE);
1316
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerAutoRecipe.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ public class WrapperPlayServerAutoRecipe extends AbstractPacket {
99

1010
public static final PacketType TYPE = PacketType.Play.Server.AUTO_RECIPE;
1111

12+
/**
13+
* Constructs a new wrapper and initialize it with a packet handle with default values
14+
*/
1215
public WrapperPlayServerAutoRecipe() {
1316
super(TYPE);
1417
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerBlockAction.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ public class WrapperPlayServerBlockAction extends AbstractPacket {
1515

1616
public static final PacketType TYPE = PacketType.Play.Server.BLOCK_ACTION;
1717

18+
/**
19+
* Constructs a new wrapper and initialize it with a packet handle with default values
20+
*/
1821
public WrapperPlayServerBlockAction() {
1922
super(TYPE);
2023
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerBlockBreakAnimation.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ public class WrapperPlayServerBlockBreakAnimation extends AbstractPacket {
1212

1313
public static final PacketType TYPE = PacketType.Play.Server.BLOCK_BREAK_ANIMATION;
1414

15+
/**
16+
* Constructs a new wrapper and initialize it with a packet handle with default values
17+
*/
1518
public WrapperPlayServerBlockBreakAnimation() {
1619
super(TYPE);
1720
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerBlockChange.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ public class WrapperPlayServerBlockChange extends AbstractPacket {
1313

1414
public static final PacketType TYPE = PacketType.Play.Server.BLOCK_CHANGE;
1515

16+
/**
17+
* Constructs a new wrapper and initialize it with a packet handle with default values
18+
*/
1619
public WrapperPlayServerBlockChange() {
1720
super(TYPE);
1821
}

src/main/java/com/comphenix/packetwrapper/wrappers/play/clientbound/WrapperPlayServerBlockChangedAck.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ public class WrapperPlayServerBlockChangedAck extends AbstractPacket {
1111

1212
public static final PacketType TYPE = PacketType.Play.Server.BLOCK_CHANGED_ACK;
1313

14+
/**
15+
* Constructs a new wrapper and initialize it with a packet handle with default values
16+
*/
1417
public WrapperPlayServerBlockChangedAck() {
1518
super(TYPE);
1619
}

0 commit comments

Comments
 (0)