Package org.locationtech.udig.project.internal.impl

Source Code of org.locationtech.udig.project.internal.impl.SetLayerNameInterceptor

/* uDig - User Friendly Desktop Internet GIS client
* http://udig.refractions.net
* (C) 2004, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.project.internal.impl;

import java.io.IOException;

import org.locationtech.udig.catalog.IGeoResourceInfo;
import org.locationtech.udig.project.interceptor.LayerInterceptor;
import org.locationtech.udig.project.internal.Layer;
import org.locationtech.udig.ui.ProgressManager;

/**
* Sets the name of a newly created layer.
*
* @author Jesse
* @since 1.1.0
*/
public class SetLayerNameInterceptor implements LayerInterceptor {

    public void run( Layer layer ) {
        try {
            IGeoResourceInfo info = layer.getGeoResource().getInfo(ProgressManager.instance().get());
            nameLayer(info, layer);
        } catch (IOException e) {
            //shouldn't happen
            throw (RuntimeException) new RuntimeException( ).initCause( e );
        }
    }

    /**
     * Goes through some options for create a layer's default name.
     * <ol>
     * <li>info.getTitle() - long title; not the best but is at least human readable
     * <li>info.getName() - internal name - not really considered human readable
     *
     * @param info
     * @param layer
     */
    private void nameLayer( IGeoResourceInfo info, Layer layer ) {
        String label = info.getTitle(); // may be empty?
        if( label == null || label.trim().length() == 0){
            label = info.getName(); // really should not be empty?
        }
        if( label == null || label.trim().length() == 0){
            label = "newLayer";
        }
        layer.setName(label);
    }

}
TOP

Related Classes of org.locationtech.udig.project.internal.impl.SetLayerNameInterceptor

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.