001 // Java tool bridge SvgBridge
002 // This file is generated automatically, please do not edit!
003 // generation time: Mar 11, 2007 3:42:54 PM
004
005 package nl.cwi.sen1.gui.plugin;
006
007 import aterm.*;
008
009 public class SvgBridge
010 extends SvgTool
011 {
012 private SvgTif tool;
013
014 public SvgBridge(ATermFactory factory, SvgTif tool)
015 {
016 super(factory);
017 this.tool = tool;
018 }
019
020 public void display(String s0, String s1)
021 {
022 if (tool != null) {
023 tool.display(s0, s1);
024 }
025 else {
026 throw new UnsupportedOperationException("method `display' not supported.");
027 }
028 }
029 public void recTerminate(ATerm t0)
030 {
031 if (tool != null) {
032 tool.recTerminate(t0);
033 }
034 else {
035 throw new UnsupportedOperationException("method `recTerminate' not supported.");
036 }
037 }
038 }