package com.c2kernel.gui;
import com.c2kernel.lookup.DomainPath;
/**
* Things that can be told when a barcode etc is entered
* @version $Revision: 1.2 $ $Date: 2003/03/13 16:42:38 $
* @author $Author: abranson $
*/
public interface DomainKeyConsumer {
public void push(DomainPath key);
public void push(String name);
}