Open Source Repository

Home /json/flexjson-2.1 | Repository Home



flexjson/transformer/Inline.java
package flexjson.transformer;

public interface Inline {

    /**
     * CAUTION: THIS IS FOR ADVANCED FEATURES
     *
     * If you want your transformer to handle writing of the property
     * name and the value have it implement this interface. This will
     * flag FlexJSON to not generate property names for this Transform.
     @return
     */
    public Boolean isInline();

}