1 package com.atlassian.plugin.web.model; 2 3 /** 4 * Represents an icon link 5 */ 6 public interface WebIcon 7 { 8 WebLink getUrl(); 9 10 int getWidth(); 11 12 int getHeight(); 13 }