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

com.artemis.weaver.CallableTransmuter Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.artemis.weaver;

import java.io.IOException;
import java.util.concurrent.Callable;

abstract class CallableTransmuter implements Callable {
	private final String file;

	protected CallableTransmuter(String file) {
		this.file = file;
	}

	protected abstract T process(String file) throws IOException;

	@Override
	public final T call() throws Exception {
		T t = process(file);
		return t;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy