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.test; 006 007 import graphlab.library.BaseEdge; 008 import graphlab.library.BaseVertex; 009 010 /** 011 * @author Omid 012 */ 013 public class TestNewEdge extends BaseEdge<BaseVertex> { 014 015 public TestNewEdge(BaseVertex source, BaseVertex target) { 016 super(source, target); 017 018 } 019 020 public TestNewEdge copy() { 021 System.out.println("here3"); 022 return new TestNewEdge(source, target); 023 } 024 025 public static void main(String[] args) { 026 //TestNewEdge t = new TestNewEdge(null,null); 027 028 //t.copy(); 029 //String i = "hello"; 030 } 031 }