Package org.richfaces.renderkit.html.images

Source Code of org.richfaces.renderkit.html.images.SliderArrowSelectedImageLeft

/**
* License Agreement.
*
* JBoss RichFaces - Ajax4jsf Component Library
*
* Copyright (C) 2008 CompuGROUP Holding AG
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

*/
package org.richfaces.renderkit.html.images;

import javax.faces.context.FacesContext;

import org.ajax4jsf.util.HtmlColor;
import org.richfaces.skin.Skin;
import org.richfaces.skin.SkinFactory;

/**
* @author mpopiolek
*
*/
public class SliderArrowSelectedImageLeft extends SliderArrowImageLeft {
    protected Object getDataToStore(FacesContext context, Object data) {
        Skin skin = SkinFactory.getInstance().getSkin(context);

        String skinParameter = "tipBorderColor";
        String tmp = (String) skin.getParameter(context, skinParameter);
        if (null == tmp || "".equals(tmp)) {
            Skin defaultSkin = SkinFactory.getInstance()
                    .getDefaultSkin(context);
            tmp = (String) defaultSkin.getParameter(context, skinParameter);
        }
        int intValue = HtmlColor.decode(tmp == null ? "#000000" : tmp).getRGB();
        return new Integer(intValue);
    }
}
TOP

Related Classes of org.richfaces.renderkit.html.images.SliderArrowSelectedImageLeft

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.