Returns the IP address.
()
| 679 | * Returns the IP address. |
| 680 | */ |
| 681 | public InetAddress |
| 682 | getAddress() { |
| 683 | try { |
| 684 | return InetAddress.getByAddress(address); |
| 685 | } catch (UnknownHostException e) { |
| 686 | return null; |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | /** |
| 691 | * Returns the IP protocol. |
nothing calls this directly
no test coverage detected