Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dataFile / src-test / org / gvsig / fmap / data / feature / file / PrepareResourceObserver.java @ 22373

History | View | Annotate | Download (2.03 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (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
* 2008 IVER T.I   {{Task}}
26
*/
27

    
28
/**
29
 *
30
 */
31
package org.gvsig.fmap.data.feature.file;
32

    
33
import java.io.File;
34

    
35
import org.gvsig.fmap.data.InitializeException;
36
import org.gvsig.fmap.data.ResourceNotification;
37
import org.gvsig.fmap.data.feature.file.FileResource;
38
import org.gvsig.util.observer.Observable;
39
import org.gvsig.util.observer.Observer;
40

    
41
/**
42
 * @author jmvivo
43
 *
44
 */
45
public class PrepareResourceObserver implements Observer {
46

    
47
        private File original;
48
        public PrepareResourceObserver(File original){
49
                this.original=original;
50
        }
51

    
52
        public void update(Observable observable, Object notification) {
53
                if (!(notification instanceof ResourceNotification)) {
54
                        return;
55
                }
56
                ResourceNotification resNot = (ResourceNotification) notification;
57
                if (!resNot.getType().equals(ResourceNotification.PREPARE)){
58
                        return;
59
                }
60
                FileResource res = (FileResource)resNot.getResource();
61
                if (res.getFile().getName().equals(original.getName())){
62
                        try {
63
                                res.setFile(original);
64
                                System.out.println("Prepared: "+res.getKey()+" <== "+res.getFile().getAbsolutePath());
65
                        } catch (InitializeException e) {
66
                                throw new RuntimeException(e);
67
                        }
68
                }
69

    
70

    
71
        }
72

    
73
}
74