?? urlsearchresults.java
字號(hào):
package com.yahoo.myweb2;import java.math.BigInteger;public interface UrlSearchResults { /** * The number of URLs available. * * @return The number of URLs found by the search. */ BigInteger getTotalResultsAvailable(); /** * The number of URLs returned. This may be lower than the number of * URLs requested if there were fewer URLs available. * * @return The number of URLs returned. */ BigInteger getTotalResultsReturned(); /** * The position of the first URL. * * @return The position of the first URL. */ BigInteger getFirstResultPosition(); /** * The list of URLs from the request. * * @return The list of URLs from the request. */ UrlSearchResult[] listResults();}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -