summaryrefslogtreecommitdiff
path: root/src/main/java/org/cristalise/gui/DomainKeyConsumer.java
blob: 7b03e7021994b46444db87e650e089242cc88af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.cristalise.gui;

import org.cristalise.kernel.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);

}