*/
protected Filter lengthRestriction(int length ){
if ( length < 0 ) {
return null;
}
LengthFunction lengthFunction = (LengthFunction)ff.function("LengthFunction",
new Expression[]{ff.property(".")});
if( lengthFunction == null ) {
return null;
}
Filter cf = null;