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

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

The newest version!
package com.artemis.weaver;

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);

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy