View Javadoc

1   /*
2    * $Id: AbstractComponentPreferences.java,v 1.2 2009/03/04 10:10:47 oeuillot Exp $
3    * 
4    */
5   package org.rcfaces.core.preference;
6   
7   /**
8    * 
9    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
10   * @version $Revision: 1.2 $ $Date: 2009/03/04 10:10:47 $
11   */
12  public abstract class AbstractComponentPreferences implements
13          IComponentPreferences {
14      private static final String REVISION = "$Revision: 1.2 $";
15  
16      private static final long serialVersionUID = -161366892815882804L;
17  
18      private transient boolean transientValue;
19  
20      public boolean isTransient() {
21          return transientValue;
22      }
23  
24      public void setTransient(boolean newTransientValue) {
25          this.transientValue = newTransientValue;
26      }
27  
28  }