dnslistener.java
来自「这是远程web服务调用的一个包,可以将JSP直接作为服务」· Java 代码 · 共 19 行
JAVA
19 行
package com.meterware.httpunit;/** * A listener for DNS Requests. Users may implement this interface to bypass the normal DNS lookup. * * @author <a href="russgold@httpunit.org">Russell Gold</a> **/public interface DNSListener { /** * Returns the IP address as a string for the specified host name. * Note: no validation is done to verify that the returned value is an actual IP address or * that the passed host name was not an IP address. **/ String getIpAddress( String hostName );}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?