Package com.salesforce.omakase.plugin.basic

Examples of com.salesforce.omakase.plugin.basic.Conditionals


            return this;
        }

        /** eliminate conditionals not matching this client type */
        public ParserConfiguration clientType(Client.Type client) {
            Conditionals conditionals = new Conditionals();
            if (client != null) {
                conditionals.manager().addTrueConditions(client.name().toLowerCase());
            }
            plugins.add(conditionals);
            return this;
        }
View Full Code Here

TOP

Related Classes of com.salesforce.omakase.plugin.basic.Conditionals

Copyright © 2018 www.massapicom. 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.