Examples of ViewDrag


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

        assertEquals(Position.North, position);
    }

    @Test
    public void dropOnBottom() throws Exception {
        final ViewDrag drag = dragTo(new Location(500, 295));
        view.drop(drag);
        assertEquals(Position.South, position);
    }
View Full Code Here

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

        assertEquals(Position.South, position);
    }

    @Test
    public void dropOnTopLeft() throws Exception {
        final ViewDrag drag = dragTo(new Location(405, 205));
        view.drop(drag);
        assertEquals(Position.North, position);
    }
View Full Code Here

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

        assertEquals(Position.North, position);
    }

    @Test
    public void dropOnTopRight() throws Exception {
        final ViewDrag drag = dragTo(new Location(595, 205));
        view.drop(drag);
        assertEquals(Position.North, position);
    }
View Full Code Here

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

        assertEquals(Position.North, position);
    }

    @Test
    public void dropOnBottomLeft() throws Exception {
        final ViewDrag drag = dragTo(new Location(405, 295));
        view.drop(drag);
        assertEquals(Position.South, position);
    }
View Full Code Here

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

        assertEquals(Position.South, position);
    }

    @Test
    public void dropOnBottomRight() throws Exception {
        final ViewDrag drag = dragTo(new Location(595, 295));
        view.drop(drag);
        assertEquals(Position.South, position);
    }
View Full Code Here

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

        assertEquals(Position.South, position);
    }

    private ViewDrag dragTo(final Location location) {
        final Mockery context = new Mockery();
        final ViewDrag drag = context.mock(ViewDrag.class);
        context.checking(new Expectations() {
            {
                exactly(3).of(drag).getSourceView();
                will(returnValue(sourceView));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.