1 16 package org.apache.cocoon.portal.layout; 17 18 22 public class SkinDescription { 23 24 protected String name; 25 protected String basePath; 26 protected String thumbnailPath; 27 28 29 32 public String getBasePath() { 33 return basePath; 34 } 35 38 public void setBasePath(String basePath) { 39 this.basePath = basePath; 40 } 41 44 public String getName() { 45 return name; 46 } 47 50 public void setName(String name) { 51 this.name = name; 52 } 53 56 public String getThumbnailPath() { 57 return thumbnailPath; 58 } 59 62 public void setThumbnailPath(String thumbnailPath) { 63 this.thumbnailPath = thumbnailPath; 64 } 65 } | Popular Tags |