Example usage for org.eclipse.jdt.internal.core.util Messages build_done

List of usage examples for org.eclipse.jdt.internal.core.util Messages build_done

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.util Messages build_done.

Prototype

String build_done

To view the source code for org.eclipse.jdt.internal.core.util Messages build_done.

Click Source Link

Usage

From source file:net.sf.j2s.core.builder.BuildNotifier.java

License:Open Source License

public void done() {
    NewErrorCount = this.newErrorCount;
    FixedErrorCount = this.fixedErrorCount;
    NewWarningCount = this.newWarningCount;
    FixedWarningCount = this.fixedWarningCount;

    updateProgress(1.0f);//w w w . j  av a  2  s  . c o m
    subTask(Messages.build_done);
    if (this.monitor != null)
        this.monitor.done();
    this.previousSubtask = null;
}