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

Commit e05d9495 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add documentation on EthernetNetworkSpecifier API" am: 682a98d8 am:...

Merge "Add documentation on EthernetNetworkSpecifier API" am: 682a98d8 am: 02471bd9 am: 7fa8f1fa am: 2eb331a0

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1669186

Change-Id: I363487538cfd74349c860024e7aadd207c82e593
parents b577dd30 2eb331a0
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;
    }