com.googlecode.jsfFlex.renderkit.annotationDocletParser.AnnotationDocletParser15Impl.java Source code

Java tutorial

Introduction

Here is the source code for com.googlecode.jsfFlex.renderkit.annotationDocletParser.AnnotationDocletParser15Impl.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.googlecode.jsfFlex.renderkit.annotationDocletParser;

import javax.faces.render.Renderer;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.googlecode.jsfFlex.renderkit.annotation.IJsfFlexAttribute;
import com.googlecode.jsfFlex.renderkit.annotation.IJsfFlexAttributeProperties;
import com.googlecode.jsfFlex.shared.beans.templates.TokenValue;
import com.googlecode.jsfFlex.shared.exception.ComponentBuildException;

/**
 * A class that extends AbstractAnnotationDocletParser for JRE greater than 1.4. This class will get<br>
 * the fields to inspect by inspecting the class' annotation.<br>
 * 
 * @author Ji Hoon Kim
 */
public final class AnnotationDocletParser15Impl extends AbstractAnnotationDocletParser {

    private final static Log _log = LogFactory.getLog(AnnotationDocletParser15Impl.class);

    public AnnotationDocletParser15Impl() {
        super();
    }

    /* (non-Javadoc)
     * @see com.googlecode.jsfFlex.framework.annotationDocletParser.AbstractAnnotationDocletParser#mapComponentFields(java.lang.Class, java.lang.ClassLoader, java.lang.Object, java.lang.String)
     * 
     * since mapComponentFields and getTokenValueSet must support JRE < & >= 1.5, suppressing the warning rather than specifying the parameter.
     */
    @SuppressWarnings("unchecked")
    public void mapComponentFields(Class<? extends Renderer> mapClass, final Object componentObj,
            final String replaceMappingXML) {

        IJsfFlexAttributeProperties jsfFlexAttributeList = IJsfFlexAttributeProperties.class
                .cast(mapClass.getAnnotation(IJsfFlexAttributeProperties.class));

        IJsfFlexAttribute[] jsfFlexAttributes = jsfFlexAttributeList.jsfFlexAttributes();

        for (IJsfFlexAttribute currAttribute : jsfFlexAttributes) {

            FLEX_MAPPER currMapper = currAttribute.byMethod() ? FLEX_MAPPER.FLEX_METHOD_MAPPER
                    : FLEX_MAPPER.FLEX_ATTRIBUTE_MAPPER;

            try {
                TokenValue tokenValue = currMapper.mapField(currAttribute.attribute(), componentObj);
                if (tokenValue != null) {
                    getTokenValueSet().add(tokenValue);
                }
            } catch (ComponentBuildException _componentBuildExcept) {
                _log.debug("Exception thrown for [ Class : " + componentObj.getClass().getName()
                        + ", replaceToken : " + currAttribute.attribute() + " ] ");
            }

        }

    }

}