View Javadoc

1   /*
2    * $Id: AbstractBufferOperation.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   import org.apache.commons.logging.Log;
9   import org.apache.commons.logging.LogFactory;
10  
11  /**
12   * 
13   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
14   * @version $Revision: 1.1 $ $Date: 2007/10/30 13:46:42 $
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  }