com.github.datalking.annotation.meta.StandardClassMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-ioc Show documentation
Show all versions of play-ioc Show documentation
simple ioc container with aop support.
The newest version!
package com.github.datalking.annotation.meta;
/**
* @author yaoo on 4/13/18
*/
public class StandardClassMetadata implements ClassMetadata {
private final Class> introspectedClass;
public StandardClassMetadata(Class> introspectedClass) {
this.introspectedClass = introspectedClass;
}
public final Class> getIntrospectedClass() {
return this.introspectedClass;
}
@Override
public String getClassName() {
return this.introspectedClass.getName();
}
@Override
public boolean isInterface() {
return this.introspectedClass.isInterface();
}
@Override
public boolean isAnnotation() {
return this.introspectedClass.isAnnotation();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy