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

org.docx4j.events.StartEvent Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 6.1.2
Show newest version
package org.docx4j.events;


public class StartEvent extends Docx4jEvent {

	
	/**
	 * Use this to signal the start of a Job.
	 * 
	 * @param job
	 * @param eventType
	 */
	public StartEvent(JobIdentifier job) {
		super( job);
	}

	/**
	 * Use this to signal the start of work on a specific pkg in a job.
	 * 
	 * @param job
	 * @param eventType
	 */
	public StartEvent(JobIdentifier job,  PackageIdentifier pkgIdentifier) {
		super( job,   pkgIdentifier);
	}
	
	/**
	 * Use this to signal the start of work on a specific pkg,
	 * where you didn't define an overall job.
	 * 
	 * @param job
	 * @param eventType
	 */
	public StartEvent(PackageIdentifier pkgIdentifier) { 
		super(  pkgIdentifier);
	}
	
	/**
	 * Use this to signal the start of a process step,
	 * where you didn't define an overall job.
	 * 
	 * @param job
	 * @param eventType
	 */
	public StartEvent(PackageIdentifier pkgIdentifier, ProcessStep processStep) {
		super( pkgIdentifier,  processStep);
	}
	
	/**
	 * Use this to signal the start of a process step,
	 * on some pkg in some overall job.
	 * 
	 * @param job
	 * @param eventType
	 */
	public StartEvent(JobIdentifier job,  PackageIdentifier pkgIdentifier, ProcessStep processStep) {
		
		super( job,   pkgIdentifier,  processStep);
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy