| Home >> All >> com >> loihl >> [ sqltool Javadoc ] |
Source code: com/loihl/sqltool/QueryFactory.java
1 package com.loihl.sqltool; 2 3 import java.rmi.Remote; 4 import java.rmi.RemoteException; 5 6 /** 7 * @stereotype factory 8 * @author Robert J. Loihl 9 * @version 0.5.0*/ 10 public interface QueryFactory extends Remote{ 11 Query getQuery() throws RemoteException; 12 }