Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.util / org.gvsig.tools.util.api / src / main / java / org / gvsig / tools / util / ToolsUtilManager.java @ 1562

History | View | Annotate | Download (1.2 KB)

1
package org.gvsig.tools.util;
2

    
3
import org.gvsig.desktopopen.DesktopOpen;
4

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

    
29
/**
30
 * @author fdiaz
31
 *
32
 */
33
public interface ToolsUtilManager  {
34

    
35
        /**
36
         * @return
37
         */
38
        public InformationBuilder createInformationBuilder();
39

    
40
    public DesktopOpen createDesktopOpen() ;
41
}