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.core.atoms.extension;
006    
007    import graphlab.platform.core.BlackBoard;
008    import graphlab.ui.AbstractExtensionAction;
009    
010    
011    public class AtomAnimatorExtensionAction
012            extends AbstractExtensionAction {
013        private AtomAnimatorExtension em;
014    
015        public AtomAnimatorExtensionAction(BlackBoard bb, AtomAnimatorExtension sp) {
016            super(bb, sp);
017            this.em = sp;
018        }
019    
020        @Override
021        public String getParentMenuName() {
022            return null;
023        }
024    
025        @Override
026        public final void performExtension() {
027    
028    
029        }
030    
031    }