/* 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.neo.providers; import java.util.List; import org.amanzi.neo.models.exceptions.ModelException; import org.amanzi.neo.models.network.INetworkModel; import org.amanzi.neo.models.project.IProjectModel; import org.amanzi.neo.nodetypes.INodeType; import org.amanzi.neo.providers.internal.IDatasetModelProvider; import org.opengis.referencing.crs.CoordinateReferenceSystem; /** * TODO Purpose of * <p> * </p> * * @author Nikolay Lagutko (nikolay.lagutko@amanzitel.com) * @since 1.0.0 */ public interface INetworkModelProvider extends IDatasetModelProvider<INetworkModel, IProjectModel> { INetworkModel createModel(IProjectModel parent, String name, List<INodeType> structure, CoordinateReferenceSystem crs) throws ModelException; }