1 22 package org.jboss.xb.binding.metadata; 23 24 25 29 public class PropertyMetaData 30 { 31 private String name; 32 private String collectionType; 33 34 public String getName() 35 { 36 return name; 37 } 38 39 public void setName(String name) 40 { 41 this.name = name; 42 } 43 44 public String getCollectionType() 45 { 46 return collectionType; 47 } 48 49 public void setCollectionType(String collectionType) 50 { 51 this.collectionType = collectionType; 52 } 53 } 54 | Popular Tags |