Examples of lookupCollection()


Examples of org.brixcms.registry.ExtensionPointRegistry.lookupCollection()

     * @author ivaynberg
     */
    public static class Helper {
        public static Collection<Tile> getTiles(Brix brix) {
            final ExtensionPointRegistry registry = brix.getConfig().getRegistry();
            return registry.lookupCollection(Tile.POINT);
        }

        public static Tile getTileOfType(String type, Brix brix) {
            //hackish-fix for backward-compatibility required!!!
            //TODO: better solutions?
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.