package org.akaza.openclinica.domain.xform.dto; import java.util.List; public class Select implements UserControl { private String ref; private String appearance; private Label label = null; private Hint hint = null; private List<Item> item; private ItemSet itemSet; public String getRef() { return ref; } public void setRef(String ref) { this.ref = ref; } public String getAppearance() { return appearance; } public void setAppearance(String appearance) { this.appearance = appearance; } public Label getLabel() { return label; } public void setLabel(Label label) { this.label = label; } public Hint getHint() { return hint; } public void setHint(Hint hint) { this.hint = hint; } public List<Item> getItem() { return item; } public void setItem(List<Item> item) { this.item = item; } public ItemSet getItemSet() { return itemSet; } public void setItemSet(ItemSet itemSet) { this.itemSet = itemSet; } @Override public String getMediatype() { // TODO Auto-generated method stub return null; } }