1   package org.daisy.pipeline.braille.libhyphen;
2   
3   import java.net.URI;
4   
5   import org.daisy.pipeline.braille.common.Hyphenator;
6   import org.daisy.pipeline.braille.common.HyphenatorProvider;
7   
8   public interface LibhyphenHyphenator extends Hyphenator {
9   	
10  	public abstract URI asLibhyphenTable();
11  	
12  	public interface Provider extends HyphenatorProvider<LibhyphenHyphenator> {}
13  	
14  }