/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.inbio.ara.dto.label; import java.util.Calendar; import org.inbio.ara.dto.GenericDTO; /** * * @author paulacorrales */ public class HistoryLabelDTO extends GenericDTO { //for GUI (List) proposity private boolean selected; private String contents; private Calendar finalTimestand; private Calendar initialTimestand; private Long labelId; private Long ancestorLabelId; /** * @return the selected */ public boolean isSelected() { return selected; } /** * @param selected the selected to set */ public void setSelected(boolean selected) { this.selected = selected; } /** * @return the contents */ public String getContents() { return contents; } /** * @param contents the contents to set */ public void setContents(String contents) { this.contents = contents; } /** * @return the labelId */ public Long getLabelId() { return labelId; } /** * @param labelId the labelId to set */ public void setLabelId(Long labelId) { this.labelId = labelId; } /** * @return the initialTimestand */ public Calendar getInitialTimestand() { return initialTimestand; } /** * @param initialTimestand the initialTimestand to set */ public void setInitialTimestand(Calendar initialTimestand) { this.initialTimestand = initialTimestand; } /** * @return the finalTimestand */ public Calendar getFinalTimestand() { return finalTimestand; } /** * @param finalTimestand the finalTimestand to set */ public void setFinalTimestand(Calendar finalTimestand) { this.finalTimestand = finalTimestand; } /** * @return the ancestorLabelId */ public Long getAncestorLabelId() { return ancestorLabelId; } /** * @param ancestorLabelId the ancestorLabelId to set */ public void setAncestorLabelId(Long ancestorLabelId) { this.ancestorLabelId = ancestorLabelId; } }