1 /*
2  * Copyright (c) 2008-2019 Emmanuel Dupuy.
3  * This project is distributed under the GPLv3 license.
4  * This is a Copyleft license that gives the user the right to use,
5  * copy and modify the code freely for non-commercial purposes.
6  */
7 
8 package org.jd.gui.api.feature;
9 
10 import java.net.URI;
11 
12 public interface UriGettable {
getUri()13     URI getUri();
14 }
15