001 package com.mockrunner.jdbc;
002
003 import com.mockrunner.mock.jdbc.MockResultSet;
004
005 /**
006 * Interface for <code>ResultSet</code> factories.
007 * Currently there's only the {@link FileResultSetFactory}
008 * but you can implement your own factories.
009 */
010 public interface ResultSetFactory
011 {
012 public MockResultSet create(String id);
013 }