Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2011 / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / tools / persistence / Rectangle2DPersistenceFactory.java @ 33562

History | View | Annotate | Download (3.07 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Gobernment (CIT)
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 2
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
 */
22

    
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2009 {}  {{Task}}
26
 */
27
package org.gvsig.fmap.mapcontext.tools.persistence;
28

    
29
import java.awt.geom.Rectangle2D;
30

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

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

    
46
        private static final String DYNCLASS_NAME = "Rectangle2D";
47
        private static final String DYNCLASS_DESCRIPTION = "Rectangle2D";
48

    
49
        public static final String FIELD_X = "x";
50
        public static final String FIELD_Y = "y";
51
        public static final String FIELD_WIDTH = "width";
52
        public static final String FIELD_HEIGHT = "height";
53

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

    
62
                DynStruct definition = this.getDefinition();
63

    
64
                definition.addDynFieldDouble(FIELD_X).setMandatory(true);
65
                definition.addDynFieldDouble(FIELD_Y).setMandatory(true);
66
                definition.addDynFieldDouble(FIELD_WIDTH).setMandatory(true);
67
                definition.addDynFieldDouble(FIELD_HEIGHT).setMandatory(true);
68
        }
69

    
70
        public Object createFromState(PersistentState state)
71
                        throws PersistenceException {
72

    
73
                double x = state.getDouble(FIELD_X);
74
                double y = state.getDouble(FIELD_Y);
75
                double width = state.getDouble(FIELD_WIDTH);
76
                double height = state.getDouble(FIELD_HEIGHT);
77

    
78
                return new Rectangle2D.Double(x, y, width, height);
79
        }
80

    
81
        public void saveToState(PersistentState state, Object obj)
82
                        throws PersistenceException {
83
                Rectangle2D rec = (Rectangle2D) obj;
84

    
85
                state.set(FIELD_X, rec.getX());
86
                state.set(FIELD_Y, rec.getY());
87
                state.set(FIELD_WIDTH, rec.getWidth());
88
                state.set(FIELD_HEIGHT, rec.getHeight());
89
        }
90
}