corpus-services  1.0
Metadata.java
Go to the documentation of this file.
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 de.uni_hamburg.corpora;
7 
8 import java.net.MalformedURLException;
9 import java.net.URISyntaxException;
10 import java.net.URL;
11 import java.util.Collection;
12 
17 interface Metadata extends CorpusData{
18 
19  public Collection<URL> getReferencedCorpusDataURLs() throws MalformedURLException, URISyntaxException;
20 }