134135136137138139140141142
} } private SourceProperty getItemSource( String itemExpression ) { if( itemExpression == null ) return new NoOpSourceProperty(); else return sourcePropertyFactory.getSourceProperty( itemExpression ); }
190191192193194195196197198
} } private SourceProperty getSourceProperty( String sourceExpression ) { if ( sourceExpression == null ) return new NoOpSourceProperty(); else return sourcePropertyFactory.getSourceProperty( sourceExpression ); }