All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.liblouis.Table Maven / Gradle / Ivy

Go to download

JNA based Java bindings to liblouis, an open-source braille translator and back-translator.

There is a newer version: 5.1.0
Show newest version
package org.liblouis;

public class Table {
	
	private final String table;
	private final TableInfo info;
	private Translator translator = null;
	
	Table(String table) {
		this.table = table;
		this.info = new TableInfo(table);
	}
	
	public TableInfo getInfo() {
		return info;
	}
	
	public Translator getTranslator() throws CompilationException {
		if (translator == null)
			translator = new Translator(table);
		return translator;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy