001 // GraphLab Project: http://graphlab.sharif.edu 002 // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology 003 // Distributed under the terms of the GNU Lesser General Public License (LGPL): http://www.gnu.org/licenses/ 004 005 package graphlab.library.genericcloners; 006 007 import graphlab.library.BaseEdge; 008 import graphlab.library.BaseVertex; 009 010 /** 011 * @author Omid 012 */ 013 014 public interface EdgeVertexCopier 015 <VertexType extends BaseVertex, 016 EdgeType extends BaseEdge<VertexType>> 017 extends 018 EdgeVertexConverter<VertexType, VertexType, EdgeType, EdgeType> { 019 }