Statistics
| Revision:

gvsig-lrs / org.gvsig.lrs / trunk / org.gvsig.lrs / org.gvsig.lrs.swing / org.gvsig.lrs.swing.impl / src / main / java / org / gvsig / lrs / swing / impl / DefaultLrsAlgorithmsSwingManager.java @ 6

History | View | Annotate | Download (3.29 KB)

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

    
25
import org.gvsig.fmap.mapcontext.layers.FLayers;
26
import org.gvsig.lrs.lib.api.LrsCreateRouteAlgorithmParams;
27
import org.gvsig.lrs.swing.api.JLrsAlgorithmParams;
28
import org.gvsig.lrs.swing.api.JLrsProgressDialog;
29
import org.gvsig.lrs.swing.api.LrsAlgorithmsSwingManager;
30
import org.gvsig.tools.dynobject.DynObject;
31
import org.gvsig.tools.service.Service;
32
import org.gvsig.tools.service.ServiceException;
33
import org.gvsig.tools.task.TaskStatus;
34

    
35

    
36
/**
37
 * @author fdiaz
38
 *
39
 */
40
public class DefaultLrsAlgorithmsSwingManager implements LrsAlgorithmsSwingManager {
41

    
42
    /* (non-Javadoc)
43
     * @see org.gvsig.tools.service.Manager#createServiceParameters(java.lang.String)
44
     */
45
    public DynObject createServiceParameters(String serviceName) throws ServiceException {
46
        // TODO Auto-generated method stub
47
        return null;
48
    }
49

    
50
    /* (non-Javadoc)
51
     * @see org.gvsig.tools.service.Manager#getService(org.gvsig.tools.dynobject.DynObject)
52
     */
53
    public Service getService(DynObject parameters) throws ServiceException {
54
        // TODO Auto-generated method stub
55
        return null;
56
    }
57

    
58
    /* (non-Javadoc)
59
     * @see org.gvsig.lrs.swing.api.LrsAlgorithmsSwingManager#createJLrsAlgorithmParameters()
60
     */
61
    public JLrsAlgorithmParams createJLrsAlgorithmParameters() {
62
        // TODO Auto-generated method stub
63
        return null;
64
    }
65

    
66
    /* (non-Javadoc)
67
     * @see org.gvsig.lrs.swing.api.LrsAlgorithmsSwingManager#createJLrsAlgorithmParameters(org.gvsig.tools.dynobject.DynObject)
68
     */
69
    public JLrsAlgorithmParams createJLrsAlgorithmParameters(DynObject parameters) {
70
        // TODO Auto-generated method stub
71
        return null;
72
    }
73

    
74
    /* (non-Javadoc)
75
     * @see org.gvsig.lrs.swing.api.LrsAlgorithmsSwingManager#createJLrsCreateRouteAlgorithmParameters(org.gvsig.lrs.lib.api.LrsCreateRouteAlgorithmParams)
76
     */
77
    public JLrsAlgorithmParams createJLrsCreateRouteAlgorithmParameters(FLayers layers, LrsCreateRouteAlgorithmParams parameters) {
78
        return new JLrsCreateRouteParamsController(layers, parameters);
79
    }
80

    
81
    /* (non-Javadoc)
82
     * @see org.gvsig.lrs.swing.api.LrsAlgorithmsSwingManager#createJLrsProgressDialog(org.gvsig.tools.task.TaskStatus)
83
     */
84
    public JLrsProgressDialog createJLrsProgressDialog(TaskStatus taskStatus) {
85
        return new DefaultProgressDialogController(taskStatus);
86
    }
87

    
88
}