Package org.locationtech.udig.tools.edit.behaviour.accept

Examples of org.locationtech.udig.tools.edit.behaviour.accept.DeselectEditShapeAcceptBehaviour


    }

    @Override
    protected void initAcceptBehaviours( List<Behaviour> acceptBehaviours ) {
        acceptBehaviours.add( new AcceptChangesBehaviour(Polygon.class, false) );
        acceptBehaviours.add( new DeselectEditShapeAcceptBehaviour() );
    }
View Full Code Here


    @Override
    protected void initAcceptBehaviours( List<Behaviour> acceptBehaviours ) {
        List<Behaviour> defaults = DefaultEditToolBehaviour.createDefaultAcceptBehaviour(LineString.class);
        acceptBehaviours.addAll(defaults);

        acceptBehaviours.add( new DeselectEditShapeAcceptBehaviour() );
    }
View Full Code Here

                return super.isValid(handler&& handler.getCurrentGeom()!=null &&
                handler.getCurrentGeom().getShapeType()==ShapeType.LINE;
            }
        });

        acceptBehaviours.add( new DeselectEditShapeAcceptBehaviour() );

    }
View Full Code Here

    }

    @Override
    protected void initAcceptBehaviours( List<Behaviour> acceptBehaviours ) {
        acceptBehaviours.add( new AcceptChangesBehaviour(Point.class, false) );
        acceptBehaviours.add( new DeselectEditShapeAcceptBehaviour() );
    }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.tools.edit.behaviour.accept.DeselectEditShapeAcceptBehaviour

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.