01: package com.jeta.forms.store.support;
02:
03: import java.io.Serializable;
04: import java.util.HashMap;
05:
06: /**
07: * This is just a tagging interface for the PropertiesMemento.
08: *
09: * Do not add any methods to this class or it can break existing forms.
10: *
11: *
12: * @author Jeff Tassin
13: */
14: public class PropertyMap extends HashMap implements Serializable {
15:
16: private static final long serialVersionUID = 135817357234113L;
17:
18: public PropertyMap() {
19:
20: }
21:
22: public PropertyMap(HashMap src) {
23: super(src);
24: }
25:
26: }
|