001    
002    package groovy.sql;
003    
004    /**
005     * @author rfuller
006     *
007     * A typed parameter passed to, and returned from a CallableStatement.
008     */
009    public interface InOutParameter extends InParameter, OutParameter {
010    
011    }