Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a537bbf authored by Rubin Xu's avatar Rubin Xu
Browse files

Add more javadoc to ConnectEvent and DnsEvent

Bug: 63382615
Test: make -j32 docs
Change-Id: I78c35ac2e4fee827d835e0b40b8e769bf1fa553d
parent ef416123
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -23,7 +23,11 @@ import java.net.InetAddress;
import java.net.UnknownHostException;

/**
 * A class that represents a connect library call event.
 * A class that represents a TCP connect event initiated through the standard network stack.
 *
 * <p>It contains information about the originating app as well as the remote TCP endpoint.
 *
 * <p>Support both IPv4 and IPv6 connections.
 */
public final class ConnectEvent extends NetworkEvent implements Parcelable {

+4 −1
Original line number Diff line number Diff line
@@ -26,7 +26,10 @@ import java.util.Collections;
import java.util.List;

/**
 * A class that represents a DNS lookup event.
 * A class that represents a DNS lookup event initiated through the standard network stack.
 *
 * <p>It contains information about the originating app as well as the DNS hostname and resolved
 * IP addresses.
 */
public final class DnsEvent extends NetworkEvent implements Parcelable {