All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.butterfaces.util.TrivialComponentsReflectionUtil Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
/*
 * Copyright Lars Michaelis and Stephan Zerhusen 2016.
 * Distributed under the MIT License.
 * (See accompanying file README.md file or copy at http://opensource.org/licenses/MIT)
 */
package org.butterfaces.util;

/**
 * TODO Trivial components does not support {{foo.bar}} so ButterFaces replaces it by {{foo#bar}}.
 * TODO this could removed if https://github.com/trivial-components/trivial-components/issues/36 is fixed
 * @author Lars Michaelis
 */
public class TrivialComponentsReflectionUtil extends ReflectionUtil {

    public static final char ATTRIBUTE_SEPARATOR = '#';

    @Override
    protected char getAttributeSeparator() {
        return ATTRIBUTE_SEPARATOR;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy