Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.gvsig3d / org.gvsig.gvsig3d.lib / org.gvsig.gvsig3d.lib.api / src / main / java / org / gvsig / gvsig3d / Gvsig3DService.java @ 385

History | View | Annotate | Download (1.9 KB)

1
/* gvSIG 3D extension for gvSIG
2
 *
3
 * Copyright (C) 2012 Prodevelop.
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *   Prodevelop, S.L.
22
 *   Pza. Don Juan de Villarrasa, 14 - 5
23
 *   46001 Valencia
24
 *   Spain
25
 *
26
 *   +34 963 510 612
27
 *   +34 963 510 968
28
 *   prode@prodevelop.es
29
 *   http://www.prodevelop.es
30
 */
31
/*
32
 * AUTHORS:
33
 * 2012 AI2 - Instituto Universitario de Automatica e Informatica Industrial.
34
 * Universitat Politecnica de Valencia (UPV)
35
 * http://www.ai2.upv.es
36
 */
37

    
38

    
39

    
40
package org.gvsig.gvsig3d;
41

    
42
import java.util.Date;
43

    
44
import org.gvsig.tools.service.Service;
45

    
46
/**
47
 * Represents a Gvsig3D element.
48
 * 
49
 * @author gvSIG Team & AI2
50
 * @version $Id$
51
 */
52
public interface Gvsig3DService extends Service {
53

    
54
    /**
55
     * Returns the Gvsig3D's message.
56
     * 
57
     * @return the message associated to a Gvsig3DService
58
     */
59
    public String getMessage() throws Gvsig3DMessageException;
60

    
61
    /**
62
     * Returns the Gvsig3D's creation date.
63
     * 
64
     * @return the creation date associated to a Gvsig3DService
65
     */
66
    public Date getDate();
67

    
68
    /**
69
     * Returns the information about the service provider
70
     * 
71
     * @return a string with the provider information
72
     */
73
    public String getProviderInfo();
74

    
75
}