| 1 24 package org.riotfamily.components.export; 25 26 import java.util.List ; 27 import java.util.Map ; 28 29 37 public class SimpleComponent { 38 39 private String type; 40 41 private Map properties; 42 43 private Map stringProperties; 44 45 private List childLists; 46 47 public String getType() { 48 return this.type; 49 } 50 51 public void setType(String type) { 52 this.type = type; 53 } 54 55 public Map getProperties() { 56 return this.properties; 57 } 58 59 public void setProperties(Map properties) { 60 this.properties = properties; 61 } 62 63 public Map getStringProperties() { 64 return this.stringProperties; 65 } 66 67 public void setStringProperties(Map stringProperties) { 68 this.stringProperties = stringProperties; 69 } 70 71 public List getChildLists() { 72 return this.childLists; 73 } 74 75 public void setChildLists(List childLists) { 76 this.childLists = childLists; 77 } 78 79 } 80 | Popular Tags |