src/java.base/share/classes/java/net/InetSocketAddress.java
changeset 48435 20fe8cd3179d
parent 47216 71c04702a3d5
child 52220 9c260a6b6471
equal deleted inserted replaced
48434:2d250a0174a6 48435:20fe8cd3179d
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   315     public final int getPort() {
   315     public final int getPort() {
   316         return holder.getPort();
   316         return holder.getPort();
   317     }
   317     }
   318 
   318 
   319     /**
   319     /**
   320      *
       
   321      * Gets the {@code InetAddress}.
   320      * Gets the {@code InetAddress}.
   322      *
   321      *
   323      * @return the InetAdress or {@code null} if it is unresolved.
   322      * @return the InetAddress or {@code null} if it is unresolved.
   324      */
   323      */
   325     public final InetAddress getAddress() {
   324     public final InetAddress getAddress() {
   326         return holder.getAddress();
   325         return holder.getAddress();
   327     }
   326     }
   328 
   327