saker.java.compiler Documentation TaskDoc JavaDoc Packages
public interface JavaCompilationWorkerTaskIdentifier extends TaskIdentifier
Represents a task identifier for a Java compilation worker task.

The Java compiler worker task is the one that actually compiles the Java source files. The task has an output that is an instance of JavaCompilerWorkerTaskOutput. If you retrieve the result of a task that bears a task identifier that is the instance of this interface, then you can cast the result to JavaCompilerWorkerTaskOutput.

clients shouldn't implement this interface.

Methods
public static JavaCompilationWorkerTaskIdentifier
create(String passidentifier)
Creates a new instance with the given pass identifier.
public String
Gets the pass identifier of the compiler task.
Inherited methods
Creates a new instance with the given pass identifier.
passidentifierThe pass identifier.
The created task identifier.
NullPointerExceptionIf the argument is null.
public abstract String getPassIdentifier()
Gets the pass identifier of the compiler task.

The identifier is usually the one specified by the user, or automatically generated based on the input configuration.

The identifier.