Example usage for com.google.gwt.core.linker IFrameLinker subclass-usage

List of usage examples for com.google.gwt.core.linker IFrameLinker subclass-usage

Introduction

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

Usage

From source file com.ait.toolkit.flash.linker.SwfIFrameLinker.java

@LinkerOrder(Order.PRIMARY)
public class SwfIFrameLinker extends IFrameLinker {

    @Override
    public String getDescription() {
        return "Flash (" + super.getDescription() + " with support for injected SWF \"scripts\")";

From source file com.bedatadriven.rebar.appcache.linker.AppCacheIFrameLinker.java

/**
 * Extends the standard <code>IFrameLinker</code> to generate manifests for
 * <code>ManagedResourceStores</code>, and to enable server-side selection of
 * permutations.
 */
@LinkerOrder(Order.PRIMARY)

From source file com.cgxlib.xq.linker.IFrameWithDocTypeLinker.java

/**
 * Adds doctype to the iframe used to load the application.
 * Without this code, IE8 does not enable document.querySelectorAll feature.
 */
@LinkerOrder(LinkerOrder.Order.PRIMARY)
@Shardable

From source file com.emitrom.pilot.linker.SwfIFrameLinker.java

public class SwfIFrameLinker extends IFrameLinker {

    @Override
    public String getDescription() {
        return "Flash (" + super.getDescription() + " with support for injected SWF \"scripts\")";
    }

From source file com.google.code.gwt.appcache.linker.IFrameAppCacheLinker.java

/**
 * Fixes the output of the GWT compiler to work with the HTML 5 Application
 * Cache feature.
 * 
 * @author bguijt
 */

From source file com.smartgwt.linker.SmartGwtDomainSyncLinker.java

/**
 * Linker that inject domain sync Javascript to bypass same-origin policy restrictions on scripts
 * deployed on different subdomains under the same parent domain (eg. a portal environment)
 */
public class SmartGwtDomainSyncLinker extends IFrameLinker {

From source file org.cruxframework.crux.core.rebind.offline.OfflineLinker.java

/**
 * A GWT linker that modifies the generated html files to use a cache manifest.
 */
@LinkerOrder(Order.PRIMARY)
@Shardable
public class OfflineLinker extends IFrameLinker {

From source file org.opencms.gwt.linker.CmsIFrameLinker.java

/**
 * Custom linker to display error message if no permutation is available for client browser version.<p>
 */
public class CmsIFrameLinker extends IFrameLinker {

    /**

From source file org.xwiki.gwt.core.linker.StandardsModeIFrameLinker.java

/**
 * Ensures that the {@code *.cache.html} files are loaded in standards mode by adding the document type declaration.
 * <p>
 * NOTE: This linker was added manly to overcome http://code.google.com/p/google-web-toolkit/issues/detail?id=4567 .
 * 
 * @version $Id: f2296969cdc88343365c8fa7d4fdf55c249963c8 $