⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ifeedimage.java

📁 FACEBOOK上
💻 JAVA
字号:
package com.facebook.api;import java.net.URL;/** * Interface for an image that appears in a newsfeed/minifeed story and the  * destination URL for a click on that image. *  * @see IFacebookRestClient * @see FacebookRestClient#handleFeedImages */public interface IFeedImage {  /**   * The image "url" can be either:   * <ul>   * <li> a URL linking to an image: this image will be    *    be shrunk to fit within 75x75, cached, and formatted by Facebook. </li>   * <li> a Facebook photo ID</li>   * </ul>   * @return the String representation of the feed image URL   */  public String getImageUrlString();  /**   * @return the URL to which the feed image should link   */  public URL getLinkUrl();}

⌨️ 快捷键说明

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