summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/DomainKeyConsumer.java
blob: 9eb878c4d261cf64b84ea0a51827079faa789908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);

}