From: jprocter Date: Wed, 22 Aug 2007 13:26:25 +0000 (+0000) Subject: added facility for sending non-fatal warnings back to caller. X-Git-Tag: Release_2_4~314 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=1233e68299e9a3c8b2a075f18e5179d8480e2aee;p=jalview.git added facility for sending non-fatal warnings back to caller. --- diff --git a/src/jalview/io/FileParse.java b/src/jalview/io/FileParse.java index eb10375..f4f765c 100755 --- a/src/jalview/io/FileParse.java +++ b/src/jalview/io/FileParse.java @@ -37,6 +37,7 @@ public class FileParse protected BufferedReader dataIn=null; protected String errormessage="UNITIALISED SOURCE"; protected boolean error=true; + protected String warningMessage=null; /** * size of readahead buffer used for when initial stream position is marked. */ @@ -206,4 +207,18 @@ public class FileParse throw new IOException("Implementation Error: Reset called for invalid source."); } } + /** + * + * @return true if there is a warning for the user + */ + public boolean hasWarningMessage() { + return (warningMessage!=null && warningMessage.length()>0); + } + /** + * + * @return empty string or warning message about file that was just parsed. + */ + public String getWarningMessage() { + return warningMessage; + } }