All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.myfaces.view.facelets.tag.MetadataTargetImpl Maven / Gradle / Ivy

/*
 * 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 org.apache.myfaces.view.facelets.tag;

import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import jakarta.faces.view.facelets.MetadataTarget;

/**
 * 
 * @author Jacob Hookom
 * @version $Id$
 */
public final class MetadataTargetImpl extends MetadataTarget
{
    private final Map propertyDescriptors;
    private final Class type;

    public MetadataTargetImpl(Class type) throws IntrospectionException
    {
        this.type = type;
        
        PropertyDescriptor[] descriptors = Introspector.getBeanInfo(type).getPropertyDescriptors();
        if (descriptors == null || descriptors.length == 0)
        {
            this.propertyDescriptors = null;
        }
        else
        {
            this.propertyDescriptors = new HashMap<>(descriptors.length);
            for (PropertyDescriptor descriptor : descriptors)
            {
                this.propertyDescriptors.put(descriptor.getName(), descriptor);
            }
        }
    }

    @Override
    public PropertyDescriptor getProperty(String name)
    {
        if (propertyDescriptors == null)
        {
            return null;
        }
        return propertyDescriptors.get(name);
    }

    @Override
    public Class getPropertyType(String name)
    {
        PropertyDescriptor pd = getProperty(name);
        if (pd != null)
        {
            return pd.getPropertyType();
        }
        
        return null;
    }

    @Override
    public Method getReadMethod(String name)
    {
        PropertyDescriptor pd = getProperty(name);
        if (pd != null)
        {
            return pd.getReadMethod();
        }
        
        return null;
    }

    @Override
    public Class getTargetClass()
    {
        return type;
    }

    @Override
    public Method getWriteMethod(String name)
    {
        PropertyDescriptor pd = getProperty(name);
        if (pd != null)
        {
            return pd.getWriteMethod();
        }
        
        return null;
    }

    @Override
    public boolean isTargetInstanceOf(Class type)
    {
        return type.isAssignableFrom(type);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy