Example usage for com.google.common.css.compiler.passes BiDiFlipper BiDiFlipper

List of usage examples for com.google.common.css.compiler.passes BiDiFlipper BiDiFlipper

Introduction

In this page you can find the example usage for com.google.common.css.compiler.passes BiDiFlipper BiDiFlipper.

Prototype

public BiDiFlipper(MutatingVisitController visitController, boolean swapLtrRtlInUrl, boolean swapLeftRightInUrl,
            boolean shouldFlipConstantReferences) 

Source Link

Usage

From source file:com.google.gwt.resources.gss.RecordingBidiFlipper.java

public RecordingBidiFlipper(MutatingVisitController visitController, boolean swapLtrRtlInUrl,
        boolean swapLeftRightInUrl, boolean shouldFlipConstantReferences) {

    this.mutatingVisitController = new RecordingMutatingVisitController(visitController);
    this.delegate = new BiDiFlipper(mutatingVisitController, swapLtrRtlInUrl, swapLeftRightInUrl,
            shouldFlipConstantReferences);
}