ifeedimage.java
来自「FACEBOOK上」· Java 代码 · 共 29 行
JAVA
29 行
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 + =
减小字号Ctrl + -
显示快捷键?