package com.jspxcms.common.web;
/**
* html img 接口
*
* @author liufang
*
*/
public interface ImageAnchor {
public String getTitle();
public String getUrl();
public Boolean getNewWindow();
public String getSrc();
public Integer getWidth();
public Integer getHeight();
}