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 / events / ProjectionEvent.java @ 42543

History | View | Annotate | Download (2.1 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
package org.gvsig.fmap.mapcontext.events;
25

    
26
import org.cresques.cts.IProjection;
27

    
28
/**
29
 * <p>Event produced when the projection of the view port has changed.</p>
30
 */
31
public class ProjectionEvent extends FMapEvent {
32
        /**
33
         * <p>The new projection.</p>
34
         */
35
        private IProjection newProyection;
36

    
37
        /**
38
         * <p>Identifies this object as an event related with the projection.</p>
39
         */
40
        private static final int PROJECTION_EVENT = 0;
41

    
42
        /**
43
         * <p>Creates a new projection event.</p>
44
         * 
45
         * @param proj the new projection
46
         * 
47
         * @return a new projection event
48
         */
49
        public static ProjectionEvent createProjectionEvent(IProjection proj){
50
                return new ProjectionEvent(proj, PROJECTION_EVENT);
51
        }
52

    
53
        /**
54
         * <p>Creates a new projection event of the specified type.</p>
55
         *
56
         * @param proj the new projection
57
         * @param eventType identifier of this kind of event
58
         */
59
        private ProjectionEvent(IProjection proj, int eventType) {
60
                setEventType(eventType);
61
                newProyection = proj;
62
        }
63

    
64
        /**
65
         * <p>Gets the new projection.</p>
66
         *
67
         * @return the new projection
68
         */
69
        public IProjection getNewProjection() {
70
                return newProyection;
71
        }
72
}