KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > prevayler > demos > scalability > QueryConnection


1 package org.prevayler.demos.scalability;
2
3 import java.util.List JavaDoc;
4
5 public interface QueryConnection {
6
7     /** Returns the List of all Record with the given name.
8     */

9     public List JavaDoc queryByName(String JavaDoc name);
10
11 }
12
Popular Tags