imagethumbnail.java

来自「SOApprocah方法的源程序下载 基于经典的PMI-IR方法」· Java 代码 · 共 32 行

JAVA
32
字号
package com.yahoo.search;import java.math.BigInteger;/** * Image thumbnail. * * @author Ryan Kennedy. */public interface ImageThumbnail {    /**     * The URL for the image thumbnail.     *     * @return The URL for the image thumbnail.     */    String getUrl();    /**     * The height of the image thumbnail in pixels. <b>This field is optional.</b>     *     * @return The height of the image thumbnail in pixels.     */    BigInteger getHeight();    /**     * The width of the image thumbnail in pixels. <b>This field is optional.</b>     *     * @return The width of the image thumbnail in pixels.     */    BigInteger getWidth();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?