Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Array


    public void testArray()
    {
        final DataFlowSource source = new DataFlowSource("ID");
        source.setArray(null);
        assertNull(source.getArray());
        final Array array = new IntArray(16);
        source.setArray(array);
        assertSame(array, source.getArray());
        source.setArray(null);
        assertNull(source.getArray());
    }
View Full Code Here

TOP

Related Classes of de.ailis.jollada.model.Array

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.