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

aQute.bnd.ant.ConsoleProgress Maven / Gradle / Ivy

package aQute.bnd.ant;

import aQute.bnd.service.progress.*;

public class ConsoleProgress implements ProgressPlugin {

	public Task startTask(String name, int size) {
		System.out.print(name);
		return new Task() {
			public void worked(int units) {
				// TODO
			}
			public void done(String message, Throwable e) {
				System.out.println(": " + message);
				if (e != null)
					e.printStackTrace();
			}
		};
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy