package edu.vt.vbi.pathport.client.plugin.taverna; import edu.vt.vbi.pathport.client.toolbus.*; /** * A simple View with no real functions. This is used as * a tutorial for developers wishing to create a new * ToolBus visualization plugin. */ public class TavernaView extends View { /** * The name for this View Type. */ private static String viewType = "Taverna View"; /** * Constructor. * * @param m Model with which this View is associated. */ public TavernaView(Model m) { super(m); setViewType(viewType); } /** * Creates initial display for View. * In this version, the method is empty. */ public void display() {} /** * Updates the current display of this View. * In this Version, the method is empty. */ public void update() {} } /*--- Formatted in Sun Java Convention Style on Wed, Jun 15, '05 ---*/ /*------ Formatted by Jindent 3.24 Gold 1.02 --- http://www.jindent.de ------*/