1
2
3
4 package org.rcfaces.core.internal.content;
5
6 import java.util.Map;
7
8 import org.apache.commons.logging.Log;
9 import org.apache.commons.logging.LogFactory;
10
11
12
13
14
15
16 public class AbstractBufferOperation implements IBufferOperation {
17
18 private static final String REVISION = "$Revision: 1.1 $";
19
20 private static final Log LOG = LogFactory
21 .getLog(AbstractBufferOperation.class);
22
23 private String name;
24
25 public String getName() {
26 return name;
27 }
28
29 public void setName(String name) {
30 this.name = name;
31 }
32
33 public void configure(Map configuration) {
34 }
35
36 }