com.liferay.taglib.aui.SelectTag.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.taglib.aui.SelectTag.java

Source

/**
 * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library 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 Lesser General Public License for more
 * details.
 */

package com.liferay.taglib.aui;

import com.liferay.portal.kernel.bean.BeanPropertiesUtil;
import com.liferay.portal.kernel.util.ParamUtil;
import com.liferay.portal.kernel.util.StringPool;
import com.liferay.portal.kernel.util.TextFormatter;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.taglib.aui.base.BaseSelectTag;

import javax.servlet.http.HttpServletRequest;

/**
 * @author Julio Camarero
 * @author Jorge Ferrer
 * @author Brian Wing Shun Chan
 */
public class SelectTag extends BaseSelectTag {

    @Override
    protected boolean isCleanUpSetAttributes() {
        return _CLEAN_UP_SET_ATTRIBUTES;
    }

    @Override
    protected void setAttributes(HttpServletRequest request) {
        super.setAttributes(request);

        Object bean = getBean();

        if (bean == null) {
            bean = pageContext.getAttribute("aui:model-context:bean");
        }

        String name = getName();

        int pos = name.indexOf(StringPool.DOUBLE_DASH);

        if (pos != -1) {
            name = name.substring(pos + 2, name.length() - 2);
        }

        String id = getId();

        if (Validator.isNull(id)) {
            id = name;
        }

        String label = getLabel();

        if (label == null) {
            label = TextFormatter.format(name, TextFormatter.K);
        }

        String listType = getListType();
        String listTypeFieldName = getListTypeFieldName();

        if (Validator.isNotNull(listType) && Validator.isNull(listTypeFieldName)) {

            listTypeFieldName = "typeId";
        }

        String value = StringPool.BLANK;

        if (Validator.isNull(listType)) {
            if (bean != null) {
                value = BeanPropertiesUtil.getStringSilent(bean, name, value);
            }

            if (!getIgnoreRequestValue()) {
                value = ParamUtil.getString(request, name, value);
            }
        }

        setNamespacedAttribute(request, "bean", bean);
        setNamespacedAttribute(request, "id", id);
        setNamespacedAttribute(request, "label", label);
        setNamespacedAttribute(request, "listTypeFieldName", listTypeFieldName);
        setNamespacedAttribute(request, "value", value);
    }

    private static final boolean _CLEAN_UP_SET_ATTRIBUTES = true;

}