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 General Public License (GPL): http://www.gnu.org/licenses/ 004 005 package graphlab.plugins.algorithmanimator; 006 007 import graphlab.library.event.EventDispatcher; 008 import graphlab.plugins.algorithmanimator.extension.AlgorithmExtension; 009 010 import javax.swing.*; 011 012 013 public class More implements AlgorithmExtension { 014 015 public String getName() { 016 return "more"; 017 } 018 019 public String getDescription() { 020 return "more"; 021 } 022 023 public void doAlgorithm() { 024 JOptionPane.showMessageDialog(null, "There are more algorithms available in Graphlab Library that do not have an extension \nin Graphlab GUI yet. You are welcome to explore."); 025 } 026 027 public void acceptEventDispatcher(EventDispatcher e) { 028 } 029 030 }