1 27 package org.objectweb.jonas_rar.deployment.api; 28 29 import java.io.Serializable ; 30 31 import org.objectweb.jonas_rar.deployment.xml.Icon; 32 33 38 39 public class IconDesc implements Serializable { 40 41 44 private String smallIcon = null; 45 46 49 private String largeIcon = null; 50 51 52 55 public IconDesc(Icon icon) { 56 if (icon != null) { 57 smallIcon = icon.getSmallIcon(); 58 largeIcon = icon.getLargeIcon(); 59 } 60 } 61 62 66 public String getSmallIcon() { 67 return smallIcon; 68 } 69 70 74 public String getLargeIcon() { 75 return largeIcon; 76 } 77 } 78 | Popular Tags |