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 / FontPersistenceFactory.java @ 40559

History | View | Annotate | Download (2.82 KB)

1 40559 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40559 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 40435 jjdelcerro
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40559 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10 40559 jjdelcerro
 *
11 40435 jjdelcerro
 * 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 40559 jjdelcerro
 *
16 40435 jjdelcerro
 * 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 40559 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 40435 jjdelcerro
 * MA  02110-1301, USA.
20 40559 jjdelcerro
 *
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 40435 jjdelcerro
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2009 {}  {{Task}}
27
 */
28
package org.gvsig.fmap.mapcontext.tools.persistence;
29
30
import java.awt.Font;
31
32
import org.gvsig.tools.dynobject.DynStruct;
33
import org.gvsig.tools.persistence.AbstractSinglePersistenceFactory;
34
import org.gvsig.tools.persistence.PersistentState;
35
import org.gvsig.tools.persistence.exception.PersistenceException;
36
37
/**
38
 * Factory to manage the persistence of {@link Font} objects.
39
 *
40
 * @author 2009- <a href="cordinyana@gvsig.org">C?sar Ordi?ana</a> - gvSIG team
41
 * @author 2010- <a href="jjdelcerro@gvsig.org">Joaquin Jose del Cerro</a> -
42
 *         gvSIG team
43
 */
44
public class FontPersistenceFactory extends AbstractSinglePersistenceFactory {
45
46
        static final String FIELD_NAME = "name";
47
        static final String FIELD_STYLE = "style";
48
        static final String FIELD_SIZE = "size";
49
50
        private static final String DYNCLASS_NAME = "AwtFont";
51
        private static final String DYNCLASS_DESCRIPTION = "Awt Font";
52
53
        /**
54
         * Creates a new {@link FontPersistenceFactory} with the {@link DynStruct}
55
         * definition for the {@link Font} objects.
56
         */
57
        public FontPersistenceFactory() {
58
                super(Font.class, DYNCLASS_NAME, DYNCLASS_DESCRIPTION, null, null);
59
60
                DynStruct definition = this.getDefinition();
61
62
                definition.addDynFieldString(FIELD_NAME).setMandatory(true);
63
                definition.addDynFieldInt(FIELD_STYLE).setMandatory(true);
64
                definition.addDynFieldInt(FIELD_SIZE).setMandatory(true);
65
        }
66
67
        public Object createFromState(PersistentState state)
68
                        throws PersistenceException {
69
                String name = state.getString(FIELD_NAME);
70
                int style = state.getInt(FIELD_STYLE);
71
                int size = state.getInt(FIELD_SIZE);
72
73
                return new Font(name, style, size);
74
        }
75
76
        public void saveToState(PersistentState state, Object obj)
77
                        throws PersistenceException {
78
                Font font = (Font) obj;
79
                state.set(FIELD_NAME, font.getName());
80
                state.set(FIELD_STYLE, font.getStyle());
81
                state.set(FIELD_SIZE, font.getSize());
82
        }
83
}