use of jodd.madvoc.ScopeType in project jodd by oblac.
the class ScopeDataResolver method inspectIn.
/**
* Inspects single IN annotation for a property.
*/
protected ScopeData.In inspectIn(In in, ScopeType scopeType, String propertyName, Class propertyType) {
if (in == null) {
return null;
}
ScopeType scope = in.scope();
if (scope != scopeType) {
return null;
}
ScopeData.In ii = new ScopeData.In();
saveNameTarget(ii, in.value(), propertyName);
ii.type = propertyType;
return ii;
}