1
2
3
4
5 package org.rcfaces.core.preference;
6
7
8
9
10
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 }