1 27 package olstore.dto; 28 29 32 import java.util.Collection; 33 34 35 public class TypeValue { 36 37 private String Name; 38 39 private Collection Properties; 42 43 44 public String getName () { 45 return Name ; 46 } 47 public void setName ( String name) { 48 Name = name ; 49 } 50 51 public Collection getProperties () { 52 return Properties ; 53 } 54 public void setProperties ( Collection properties ) { 55 Properties = properties; 56 } 57 } 58 | Popular Tags |