Package org.apache.isis.viewer.dnd.view

Examples of org.apache.isis.viewer.dnd.view.InternalDrag


    public void testDragStart() {
        final DummyView view = new DummyView();
        view.setupAbsoluteLocation(new Location(30, 60));

        final InternalDrag id = new SimpleInternalDrag(view, new Location(100, 110));
        assertEquals(new Location(70, 50), id.getLocation());

        // id.drag(null, new Location(110, 130), 0);
        // assertEquals(new Location(80, 70), id.getLocation());
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.dnd.view.InternalDrag

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.