Package org.locationtech.udig.project.internal

Examples of org.locationtech.udig.project.internal.ContextModelListenerAdapter


     * Add a context listener that listens to when layers are added/removed
     * from the map.
     */
    private void addContextListener(){
        final Map overviewmap = this.mapviewer.getMap();
        contextListener = new ContextModelListenerAdapter(){
            protected void layerAdded( Notification msg ) {
                updateMapAndRefresh(msg);
            }

            protected void manyLayersAdded( Notification msg ) {
View Full Code Here


     * @param manager
     * @returnContext
     */
    static ContextModelListenerAdapter createContextModelListener(
            final RenderManagerDynamic manager ) {
        return new ContextModelListenerAdapter(){
            /**
             * @see org.locationtech.udig.project.ContextModelListenerAdapter#commandExecuted(org.eclipse.emf.common.notify.Notification)
             */
            public void notifyChanged( Notification msg ) {
                super.notifyChanged(msg);
View Full Code Here

     * @returnContext
     */
    static ContextModelListenerAdapter createContextModelListener(
            final TiledRenderManagerDynamic manager ) {
       
        return new ContextModelListenerAdapter(){
            /**
             * @see org.locationtech.udig.project.ContextModelListenerAdapter#commandExecuted(org.eclipse.emf.common.notify.Notification)
             */
            public void notifyChanged( Notification msg ) {
                super.notifyChanged(msg);
View Full Code Here

TOP

Related Classes of org.locationtech.udig.project.internal.ContextModelListenerAdapter

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.