/* fEMR - fast Electronic Medical Records Copyright (C) 2014 Team fEMR fEMR is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. fEMR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with fEMR. If not, see <http://www.gnu.org/licenses/>. If you have any questions, contact <info@teamfemr.org>. */ package femr.common.models; public class TabFieldItem { private String name; private String type; private String size; private Integer order; private String placeholder; private String value; private Boolean isCustom; private String chiefComplaint; //TODO: is this needed private String userName; //since the total number of tabfields is dependant on the number of chief complaints, //this assigns each tabfielditem an index for the html name element attribute private Integer index; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getSize() { return size; } public void setSize(String size) { this.size = size; } public Integer getOrder() { return order; } public void setOrder(Integer order) { this.order = order; } public String getPlaceholder() { return placeholder; } public void setPlaceholder(String placeholder) { this.placeholder = placeholder; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public Boolean getIsCustom() { return isCustom; } public void setIsCustom(Boolean isCustom) { this.isCustom = isCustom; } public String getChiefComplaint() { return chiefComplaint; } public void setChiefComplaint(String chiefComplaint) { this.chiefComplaint = chiefComplaint; } public Integer getIndex() { return index; } public void setIndex(Integer index) { this.index = index; } public void setUserName(String userName) { this.userName = userName; } public String getUserName() { return userName; } }