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    /**
006     *
007     */
008    package graphlab.library.event.typedef;
009    
010    import graphlab.library.BaseEdge;
011    import graphlab.library.BaseGraph;
012    import graphlab.library.BaseVertex;
013    import graphlab.library.event.GraphEvent;
014    
015    /**
016     * @author Omid
017     */
018    public class BaseGraphEvent extends GraphEvent<BaseVertex, BaseEdge<BaseVertex>> {
019    
020        public BaseGraphEvent(BaseGraph<BaseVertex, BaseEdge<BaseVertex>> g, EventType et) {
021            super(g, et);
022            // TODO Auto-generated constructor stub
023        }
024    
025    
026        public BaseGraphEvent(BaseGraph<BaseVertex, BaseEdge<BaseVertex>> g) {
027            super(g);
028            // TODO Auto-generated constructor stub
029        }
030    
031        public String getMessage() {
032            return null;
033        }
034    }