/* AWE - Amanzi Wireless Explorer * http://awe.amanzi.org * (C) 2008-2009, AmanziTel AB * * This library is provided under the terms of the Eclipse Public License * as described at http://www.eclipse.org/legal/epl-v10.html. Any use, * reproduction or distribution of the library constitutes recipient's * acceptance of this agreement. * * This library is distributed WITHOUT ANY WARRANTY; without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ package org.amanzi.awe.catalog.neo.resource; import net.refractions.udig.catalog.IGeoResourceInfo; import org.amanzi.awe.ui.icons.IconManager; import org.amanzi.neo.models.render.IGISModel; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.swt.graphics.ImageData; import org.geotools.geometry.jts.ReferencedEnvelope; public class GeoResourceInfo extends IGeoResourceInfo { GeoResourceInfo(final IGISModel sourceModel, final IProgressMonitor monitor) { name = sourceModel.getName(); title = name; description = sourceModel.getName(); bounds = sourceModel.getBounds(); // taken from previous implementation icon = new ImageDescriptor() { private ImageData imageData; @Override public ImageData getImageData() { if (imageData == null) { imageData = IconManager.getInstance().getImage(sourceModel.getSourceType()).getImageData(); } return imageData; } }; } @Override public ReferencedEnvelope getBounds() { return bounds; } }