Statistics
| Revision:

root / org.gvsig.hyperlink.app / trunk / org.gvsig.hyperlink.app / org.gvsig.hyperlink.app.extension / src / main / java / org / gvsig / hyperlink / app / extension / LinkTarget.java @ 1082

History | View | Annotate | Download (566 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.hyperlink.app.extension;
7

    
8
import java.io.File;
9
import java.net.URI;
10
import java.net.URL;
11

    
12
/**
13
 *
14
 * @author osc
15
 */
16
public interface LinkTarget {
17
    
18
    public URL getURL();
19
    
20
    public void setURL(URL url);
21
    
22
    public Object getFromProfile();
23
    
24
    public String getProfileName();
25
    
26
    public File toFile();
27
    
28
    public URI toURI();
29
    
30
}