Example usage for com.google.gwt.core.ext.linker.impl SelectionScriptLinker subclass-usage

List of usage examples for com.google.gwt.core.ext.linker.impl SelectionScriptLinker subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.core.ext.linker.impl SelectionScriptLinker subclass-usage.

Usage

From source file com.envjs.gwt.linker.ServerSingleScriptLinker.java

/**
 * A Linker for producing a single JavaScript file from a GWT module. The use of
 * this Linker requires that the module has exactly one distinct compilation
 * result.
 */
@LinkerOrder(Order.PRIMARY)

From source file fr.lucboutier.gwt.webworker.linker.DedicatedWorkerLinker.java

/**
 * Linker for HTML 5 Dedicated Web Workers.
 */
@LinkerOrder(Order.PRIMARY)
public class DedicatedWorkerLinker extends SelectionScriptLinker {

From source file gwt.ns.webworker.linker.WorkerModuleLinker.java

/**
 * A Linker for producing a single JavaScript file from a GWT module and
 * packaging it as a Web Worker. The use of this Linker requires that the
 * module have exactly one distinct compilation result. If it does not, a
 * (hopefully useful) list of properties that would cause multiple compilation
 * results will be logged.

From source file org.chromium.distiller.dev.DistillerScriptLinker.java

/**
 * A Linker for producing a single JavaScript file from a GWT module. The use of
 * this Linker requires that the module has exactly one distinct compilation
 * result. This linker produces less unused boilerplate than the GWT
 * SingleScriptLinker.
 */

From source file org.drools.workbench.services.verifier.webworker.linker.VerifierLinker.java

@LinkerOrder(LinkerOrder.Order.PRIMARY)
public class VerifierLinker extends SelectionScriptLinker {

    @Override
    public String getDescription() {
        return "Dedicated Web Worker Linker";

From source file org.gwtproject.gwt.worker.linker.SingleScriptLinker.java

/**
 * A Linker for producing a single JavaScript file from a GWT module. The use of
 * this Linker requires that the module has exactly one distinct compilation
 * result.
 * 
 * Customized to support worker linker. See //#worker comments

From source file uk.co.thinkofdeath.thinkcraft.html.linker.WorkerLinker.java

@LinkerOrder(LinkerOrder.Order.PRIMARY)
public class WorkerLinker extends SelectionScriptLinker {

    @Override
    protected Collection<Artifact<?>> doEmitCompilation(TreeLogger logger, LinkerContext context,
            CompilationResult result, ArtifactSet artifacts) throws UnableToCompleteException {