001 // Java tool bridge ErrorViewerBridge
002 // This file is generated automatically, please do not edit!
003 // generation time: Jan 30, 2007 7:11:53 AM
004
005 package nl.cwi.sen1.error.viewer;
006
007 import aterm.*;
008
009 public class ErrorViewerBridge
010 extends ErrorViewerTool
011 {
012 private ErrorViewerTif tool;
013
014 public ErrorViewerBridge(ATermFactory factory, ErrorViewerTif tool)
015 {
016 super(factory);
017 this.tool = tool;
018 }
019
020 public void showFeedbackSummary(String s0, ATerm t1)
021 {
022 if (tool != null) {
023 tool.showFeedbackSummary(s0, t1);
024 }
025 else {
026 throw new UnsupportedOperationException("method `showFeedbackSummary' not supported.");
027 }
028 }
029 public void refreshFeedbackSummary(String s0, ATerm t1)
030 {
031 if (tool != null) {
032 tool.refreshFeedbackSummary(s0, t1);
033 }
034 else {
035 throw new UnsupportedOperationException("method `refreshFeedbackSummary' not supported.");
036 }
037 }
038 public void removeFeedbackSummary(String s0, String s1)
039 {
040 if (tool != null) {
041 tool.removeFeedbackSummary(s0, s1);
042 }
043 else {
044 throw new UnsupportedOperationException("method `removeFeedbackSummary' not supported.");
045 }
046 }
047 public void removeFeedbackSummary(String s0, String s1, String s2)
048 {
049 if (tool != null) {
050 tool.removeFeedbackSummary(s0, s1, s2);
051 }
052 else {
053 throw new UnsupportedOperationException("method `removeFeedbackSummary' not supported.");
054 }
055 }
056 public void recAckEvent(ATerm t0)
057 {
058 if (tool != null) {
059 tool.recAckEvent(t0);
060 }
061 else {
062 throw new UnsupportedOperationException("method `recAckEvent' not supported.");
063 }
064 }
065 public void recTerminate(ATerm t0)
066 {
067 if (tool != null) {
068 tool.recTerminate(t0);
069 }
070 else {
071 throw new UnsupportedOperationException("method `recTerminate' not supported.");
072 }
073 }
074 }