![JAR search and dependency download from the Maven repository](/logo.png)
org.chromattic.metamodel.bean.PropertyInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chromattic.metamodel Show documentation
Show all versions of chromattic.metamodel Show documentation
Chromattic Framework Metamodel
The newest version!
/*
* Copyright (C) 2010 eXo Platform SAS.
*
* This 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 software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.chromattic.metamodel.bean;
import org.reflext.api.MethodInfo;
import org.reflext.api.annotation.AnnotationType;
import org.reflext.api.introspection.AnnotationIntrospector;
import org.reflext.api.introspection.AnnotationTarget;
import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* @author Julien Viet
* @version $Revision$
*/
public class PropertyInfo {
/** The owner bean. */
private final BeanInfo owner;
/** The parent property. */
private PropertyInfo parent;
/** The property name. */
private final String name;
/** The the most adapter getter. */
private final MethodInfo getter;
/** The the most adapted setter. */
private final MethodInfo setter;
/** . */
private final K valueKind;
/** . */
private final V value;
PropertyInfo(
BeanInfo owner,
PropertyInfo parent,
String name,
MethodInfo getter,
MethodInfo setter,
K valueKind,
V value) throws NullPointerException, IllegalArgumentException {
if (owner == null) {
throw new NullPointerException("Owner cannot be null");
}
if (name == null) {
throw new NullPointerException("Name cannot be null");
}
if (value == null) {
throw new NullPointerException("Value cannot be null");
}
if (valueKind == null) {
throw new NullPointerException("Value kind cannot be null");
}
if (getter == null && setter == null) {
throw new IllegalArgumentException("Both setter and getter cannot be null");
}
//
this.owner = owner;
this.parent = parent;
this.name = name;
this.getter = getter;
this.setter = setter;
this.value = value;
this.valueKind = valueKind;
}
public K getValueKind() {
return valueKind;
}
public V getValue() {
return value;
}
public BeanInfo getOwner() {
return owner;
}
public PropertyInfo getParent() {
return parent;
}
public String getName() {
return name;
}
public MethodInfo getGetter() {
return getter;
}
public MethodInfo getSetter() {
return setter;
}
public Collection extends Annotation> getAnnotations(Class extends Annotation>... annotationClassTypes) {
List props = new ArrayList();
for (Class extends Annotation> annotationClassType : annotationClassTypes) {
Annotation annotation = getAnnotation(annotationClassType);
if (annotation != null) {
props.add(annotation);
}
}
return props;
}
public A getAnnotation(Class annotationClassType) {
if (annotationClassType == null) {
throw new NullPointerException();
}
//
AnnotationTarget annotation = null;
//
AnnotationType annotationType = AnnotationType.get(annotationClassType);
//
if (getter != null) {
annotation = new AnnotationIntrospector(annotationType).resolve(getter);
}
//
if (setter != null) {
AnnotationTarget setterAnnotation = new AnnotationIntrospector(annotationType).resolve(setter);
if (setterAnnotation != null) {
if (annotation != null) {
throw new IllegalStateException("The same annotation " + annotation + " is present on a getter " +
getter + " and setter" + setter);
}
annotation = setterAnnotation;
}
}
//
if (annotation != null) {
return annotation.getAnnotation();
} else {
return null;
}
}
@Override
public String toString() {
return "PropertyInfo[name=" + name + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy