Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / tools / persistence / DimensionPersistenceFactory.java @ 40559

History | View | Annotate | Download (2.78 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2009 {}  {{Task}}
27
 */
28
package org.gvsig.fmap.mapcontext.tools.persistence;
29

    
30
import java.awt.Dimension;
31
import java.awt.geom.Rectangle2D;
32

    
33
import org.gvsig.tools.dynobject.DynStruct;
34
import org.gvsig.tools.persistence.AbstractSinglePersistenceFactory;
35
import org.gvsig.tools.persistence.PersistentState;
36
import org.gvsig.tools.persistence.exception.PersistenceException;
37

    
38
/**
39
 * Factory to manage the persistence of {@link Rectangle2D} objects.
40
 * 
41
 * @author 2009- <a href="cordinyana@gvsig.org">C?sar Ordi?ana</a> - gvSIG team
42
 * @author 2010- <a href="jjdelcerro@gvsig.org">Joaquin Jose del Cerro</a> -
43
 *         gvSIG team
44
 */
45
public class DimensionPersistenceFactory extends
46
                AbstractSinglePersistenceFactory {
47

    
48
        private static final String DYNCLASS_NAME = "AwtDimension";
49
        private static final String DYNCLASS_DESCRIPTION = "Dimension in AWT";
50

    
51
        public static final String FIELD_HEIGHT = "height";
52
        public static final String FIELD_WIDTH = "width";
53

    
54
        /**
55
         * Creates a new {@link DimensionPersistenceFactory} with the
56
         * {@link DynStruct} definition for the {@link Dimension} objects.
57
         */
58
        public DimensionPersistenceFactory() {
59
                super(Dimension.class, DYNCLASS_NAME, DYNCLASS_DESCRIPTION, null,
60
                                null);
61

    
62
                DynStruct definition = this.getDefinition();
63

    
64
                definition.addDynFieldInt(FIELD_WIDTH).setMandatory(true);
65
                definition.addDynFieldInt(FIELD_HEIGHT).setMandatory(true);
66
        }
67

    
68
        public Object createFromState(PersistentState state)
69
                        throws PersistenceException {
70
                Dimension dimension = new Dimension();
71
                dimension.width = state.getInt(FIELD_WIDTH);
72
                dimension.height = state.getInt(FIELD_HEIGHT); 
73
                return dimension;
74
        }
75

    
76
        public void saveToState(PersistentState state, Object obj)
77
                        throws PersistenceException {
78
                Dimension dim = (Dimension) obj;
79

    
80
                state.set(FIELD_HEIGHT, dim.height);
81
                state.set(FIELD_WIDTH, dim.width);
82
        }
83
}