Example usage for com.google.common.base CharEscapers nullEscaper

List of usage examples for com.google.common.base CharEscapers nullEscaper

Introduction

In this page you can find the example usage for com.google.common.base CharEscapers nullEscaper.

Prototype

public static CharEscaper nullEscaper() 

Source Link

Document

Returns a CharEscaper that does no escaping.

Usage

From source file:com.google.gxp.text.PlaintextClosures.java

public static PlaintextClosure fromLocalizable(final Localizable value) {
    return wrap(GxpClosures.fromLocalizable(value, CharEscapers.nullEscaper()));
}

From source file:com.google.gxp.base.GxpClosures.java

/**
 * Create a {@code GxpClosure} based on a {@code String}
 *//*from  w w w.j a v a2 s .  c o m*/
public static GxpClosure fromString(final String value) {
    return fromString(value, CharEscapers.nullEscaper());
}