Java tutorial
/* * Copyright (c) 2008-2016 Haulmont. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.haulmont.cuba.gui.xml.layout.loaders; import com.haulmont.chile.core.datatypes.impl.EnumClass; import com.haulmont.cuba.core.global.AppBeans; import com.haulmont.cuba.core.global.Scripting; import com.haulmont.cuba.gui.components.CaptionMode; import com.haulmont.cuba.gui.components.DatasourceComponent; import com.haulmont.cuba.gui.components.OptionsField; import com.haulmont.cuba.gui.data.CollectionDatasource; import com.haulmont.cuba.gui.data.Datasource; import org.apache.commons.lang.StringUtils; import org.dom4j.Element; public abstract class AbstractOptionsBaseLoader<T extends OptionsField> extends AbstractFieldLoader<T> { @Override public void loadComponent() { super.loadComponent(); loadTabIndex(resultComponent, element); } protected void loadCaptionProperty(T component, Element element) { String captionProperty = element.attributeValue("captionProperty"); if (!StringUtils.isEmpty(captionProperty)) { component.setCaptionMode(CaptionMode.PROPERTY); component.setCaptionProperty(captionProperty); } } @SuppressWarnings("unchecked") protected void loadOptionsEnum(T resultComponent, Element element) { String optionsEnumClass = element.attributeValue("optionsEnum"); if (StringUtils.isNotEmpty(optionsEnumClass)) { Scripting scripting = AppBeans.get(Scripting.class); resultComponent.setOptionsEnum((Class<? extends EnumClass>) scripting.loadClass(optionsEnumClass)); } } @Override protected void loadDatasource(DatasourceComponent component, Element element) { String multiselect = element.attributeValue("multiselect"); if (StringUtils.isNotEmpty(multiselect)) { ((OptionsField) component).setMultiSelect(Boolean.parseBoolean(multiselect)); } String datasource = element.attributeValue("optionsDatasource"); if (!StringUtils.isEmpty(datasource)) { Datasource ds = context.getDsContext().get(datasource); ((T) component).setOptionsDatasource((CollectionDatasource) ds); } super.loadDatasource(component, element); } }