Package org.jfree.data.xy

Examples of org.jfree.data.xy.Vector


   
    /**
     * Immutable class is not cloneable.
     */
    public void testCloning() {
        Vector v1 = new Vector(1.0, 2.0);
        assertFalse(v1 instanceof Cloneable);
    }
View Full Code Here


    /**
     * Serialize an instance, restore it, and check for equality.
     */
    public void testSerialization() {
        Vector v1 = new Vector(1.0, 2.0);
        Vector v2 = null;
        try {
            ByteArrayOutputStream buffer = new ByteArrayOutputStream();
            ObjectOutput out = new ObjectOutputStream(buffer);
            out.writeObject(v1);
            out.close();
View Full Code Here

TOP

Related Classes of org.jfree.data.xy.Vector

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.