/* * Aipo is a groupware program developed by TOWN, Inc. * Copyright (C) 2004-2015 TOWN, Inc. * http://www.aipo.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.aimluck.eip.schedule; import java.util.List; import com.aimluck.commons.field.ALNumberField; import com.aimluck.commons.field.ALStringField; /** * カレンダー用スケジュールのResultDataです。 <br /> * */ public class AjaxScheduleResultData extends ScheduleResultData { private List<String> memberlist; private ALStringField place; /** <code>parent_id</code> スケジュールowner ID */ private ALNumberField user_id; private ALNumberField user_count; private ALNumberField facility_count; @Override public void initField() { user_id = new ALNumberField(); user_count = new ALNumberField(); facility_count = new ALNumberField(); place = new ALStringField(); super.initField(); } public void setUserId(int index) { this.user_id.setValue(index); } public List<String> getMemberList() { return memberlist; } @Override public ALStringField getPlace() { return place; } public int getUserId() { return (int) this.user_id.getValue(); } public void setMemberList(List<String> list) { memberlist = list; } @Override public void setPlace(String str) { place.setValue(str); } public void setUserCount(int count) { this.user_count.setValue(count); } public int getUserCount() { return (int) this.user_count.getValue(); } public void setFacilityCount(int count) { this.facility_count.setValue(count); } public int getFacilityCount() { return (int) this.facility_count.getValue(); } }