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

Commit 682a98d8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add documentation on EthernetNetworkSpecifier API"

parents 3dd880ec f9dae9fe
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -42,15 +42,22 @@ public final class EthernetNetworkSpecifier extends NetworkSpecifier implements
    @NonNull
    private final String mInterfaceName;

    /**
     * Create a new EthernetNetworkSpecifier.
     * @param interfaceName Name of the ethernet interface the specifier refers to.
     */
    public EthernetNetworkSpecifier(@NonNull String interfaceName) {
        Preconditions.checkStringNotEmpty(interfaceName);
        mInterfaceName = interfaceName;
    }

    // This may be null in the future to support specifiers based on data other than the interface
    // name.
    /**
     * Get the name of the ethernet interface the specifier refers to.
     */
    @Nullable
    public String getInterfaceName() {
        // This may be null in the future to support specifiers based on data other than the
        // interface name.
        return mInterfaceName;
    }