Package org.jboss.dna.graph.property.basic

Examples of org.jboss.dna.graph.property.basic.BasicMultiValueProperty


    public AstNode setProperty( Name name,
                                Object... values ) {
        assert name != null;
        assert values != null;
        if (values.length != 0) {
            properties.put(name, new BasicMultiValueProperty(name, values));
        }
        return this;
    }
View Full Code Here

TOP

Related Classes of org.jboss.dna.graph.property.basic.BasicMultiValueProperty

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.