1 16 package com.blandware.atleap.model.core; 17 18 36 public class ContentImage extends ContentResource { 37 38 40 43 protected Integer width; 44 47 protected Integer height; 48 49 51 60 public Integer getWidth() { 61 return width; 62 } 63 64 69 public void setWidth(Integer width) { 70 this.width = width; 71 } 72 73 82 public Integer getHeight() { 83 return height; 84 } 85 86 91 public void setHeight(Integer height) { 92 this.height = height; 93 } 94 95 } 96 | Popular Tags |