Java tutorial
/** * This file is part of mycollab-mobile. * * mycollab-mobile 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. * * mycollab-mobile 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 mycollab-mobile. If not, see <http://www.gnu.org/licenses/>. */ package com.mycollab.mobile.module.project.view.milestone; import com.mycollab.common.i18n.GenericI18Enum; import com.mycollab.mobile.ui.FormSectionBuilder; import com.mycollab.mobile.ui.grid.GridFormLayoutHelper; import com.mycollab.module.project.i18n.MilestoneI18nEnum; import com.mycollab.vaadin.AppContext; import com.mycollab.vaadin.ui.AbstractFormLayoutFactory; import com.vaadin.ui.Component; import com.vaadin.ui.ComponentContainer; import com.vaadin.ui.Field; import com.vaadin.ui.VerticalLayout; /** * @author MyCollab Ltd. * @since 4.5.2 */ public class MilestoneFormLayoutFactory extends AbstractFormLayoutFactory { private static final long serialVersionUID = 1L; private GridFormLayoutHelper informationLayout; @Override public Component onAttachField(Object propertyId, final Field<?> field) { if (propertyId.equals("name")) { return informationLayout.addComponent(field, AppContext.getMessage(GenericI18Enum.FORM_NAME), 0, 0); } else if (propertyId.equals("status")) { return informationLayout.addComponent(field, AppContext.getMessage(GenericI18Enum.FORM_STATUS), 0, 1); } else if (propertyId.equals("owner")) { return informationLayout.addComponent(field, AppContext.getMessage(GenericI18Enum.FORM_ASSIGNEE), 0, 2); } else if (propertyId.equals("startdate")) { return informationLayout.addComponent(field, AppContext.getMessage(GenericI18Enum.FORM_START_DATE), 0, 3); } else if (propertyId.equals("enddate")) { return informationLayout.addComponent(field, AppContext.getMessage(GenericI18Enum.FORM_END_DATE), 0, 4); } else if (propertyId.equals("description")) { return informationLayout.addComponent(field, AppContext.getMessage(GenericI18Enum.FORM_DESCRIPTION), 0, 7); } return null; } @Override public ComponentContainer getLayout() { final VerticalLayout layout = new VerticalLayout(); layout.setWidth("100%"); layout.setMargin(false); layout.addComponent(FormSectionBuilder.build(AppContext.getMessage(MilestoneI18nEnum.SINGLE))); informationLayout = GridFormLayoutHelper.defaultFormLayoutHelper(1, 8); layout.addComponent(informationLayout.getLayout()); return layout; } }