org.jsimpledb.JListFieldScanner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-main Show documentation
Show all versions of jsimpledb-main Show documentation
JSimpleDB classes that map Java model classes onto the core API.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb;
import java.lang.reflect.Method;
import java.util.List;
import org.jsimpledb.annotation.JField;
import org.jsimpledb.annotation.JListField;
import org.jsimpledb.annotation.JSimpleClass;
/**
* Scans for {@link JListField @JListField} annotations.
*/
class JListFieldScanner extends AbstractFieldScanner {
JListFieldScanner(JClass jclass, JSimpleClass jsimpleClass) {
super(jclass, JListField.class, jsimpleClass);
}
@Override
protected JListField getDefaultAnnotation() {
return new DefaultJListField(this.jsimpleClass);
}
@Override
protected boolean includeMethod(Method method, JListField annotation) {
this.checkNotStatic(method);
this.checkReturnType(method, List.class);
this.checkParameterTypes(method);
return true;
}
@Override
protected boolean isAutoPropertyCandidate(Method method) {
return super.isAutoPropertyCandidate(method) && List.class.isAssignableFrom(method.getReturnType());
}
// DefaultJListField
private static class DefaultJListField implements JListField {
private JSimpleClass jsimpleClass;
DefaultJListField(JSimpleClass jsimpleClass) {
this.jsimpleClass = jsimpleClass;
}
@Override
public Class annotationType() {
return JListField.class;
}
@Override
public String name() {
return "";
}
@Override
public int storageId() {
return 0;
}
@Override
public JField element() {
return JFieldScanner.getDefaultJField(this.jsimpleClass);
}
}
}