KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jmock > builder > BuilderNamespace


1 /* Copyright (c) 2000-2004 jMock.org
2  */

3 package org.jmock.builder;
4
5
6 public interface BuilderNamespace
7 {
8     MatchBuilder lookupID( String JavaDoc id );
9
10     void registerMethodName( String JavaDoc id, MatchBuilder invocation );
11
12     void registerUniqueID( String JavaDoc id, MatchBuilder invocation );
13 }
14
Popular Tags