1   package com.atlassian.plugins.codegen.modules.common;
2   
3   /**
4    * @since 3.6
5    */
6   public class Icon
7   {
8   
9       private int width;
10      private int height;
11      private Link link;
12  
13      public Icon(int width, int height)
14      {
15          this.width = width;
16          this.height = height;
17      }
18  
19      public int getWidth()
20      {
21          return width;
22      }
23  
24      public void setWidth(int width)
25      {
26          this.width = width;
27      }
28  
29      public int getHeight()
30      {
31          return height;
32      }
33  
34      public void setHeight(int height)
35      {
36          this.height = height;
37      }
38  
39      public Link getLink()
40      {
41          return link;
42      }
43  
44      public void setLink(Link link)
45      {
46          this.link = link;
47      }
48  }