1 /*
2 * $Id: IBufferOperation.java,v 1.1 2007/10/30 13:46:42 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.content;
5
6 import java.util.Map;
7
8 /**
9 *
10 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11 * @version $Revision: 1.1 $ $Date: 2007/10/30 13:46:42 $
12 */
13 public interface IBufferOperation {
14
15 String getName();
16
17 void setName(String name);
18
19 void configure(Map configuration);
20
21 }