01: // LabelInterface.java
02: // $Id: LabelInterface.java,v 1.3 2000/08/16 21:37:43 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.pics;
07:
08: import java.net.URL;
09:
10: public interface LabelInterface {
11:
12: /**
13: * Dump this label in the given buffer.
14: * @param buffer The buffer to dump the label to.
15: * @param format The PICS format in which the label was requested.
16: */
17:
18: public void dump(StringBuffer buffer, int format);
19:
20: }
|