Class JCasGenMojo.JCasGenProgressMonitor
- java.lang.Object
-
- org.apache.uima.tools.jcasgen.maven.JCasGenMojo.JCasGenProgressMonitor
-
- All Implemented Interfaces:
IProgressMonitor
- Enclosing class:
- JCasGenMojo
private class JCasGenMojo.JCasGenProgressMonitor extends java.lang.Object implements IProgressMonitor
-
-
Constructor Summary
Constructors Constructor Description JCasGenProgressMonitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beginTask(java.lang.String name, int totalWorked)
Begin task.void
done()
Done.void
subTask(java.lang.String message)
Sub task.void
worked(int work)
Worked.
-
-
-
Method Detail
-
done
public void done()
Description copied from interface:IProgressMonitor
Done.- Specified by:
done
in interfaceIProgressMonitor
-
beginTask
public void beginTask(java.lang.String name, int totalWorked)
Description copied from interface:IProgressMonitor
Begin task.- Specified by:
beginTask
in interfaceIProgressMonitor
- Parameters:
name
- the nametotalWorked
- the total worked
-
subTask
public void subTask(java.lang.String message)
Description copied from interface:IProgressMonitor
Sub task.- Specified by:
subTask
in interfaceIProgressMonitor
- Parameters:
message
- the name
-
worked
public void worked(int work)
Description copied from interface:IProgressMonitor
Worked.- Specified by:
worked
in interfaceIProgressMonitor
- Parameters:
work
- the work
-
-