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

jscl.text.AbstractConverter Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package jscl.text;

import javax.annotation.Nonnull;

/**
 * User: serso
 * Date: 10/27/11
 * Time: 3:21 PM
 */
abstract class AbstractConverter implements Parser {
	@Nonnull
	protected final Parser parser;

	AbstractConverter(@Nonnull Parser parser) {
		this.parser = parser;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy