Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / src / com / stevesoft / pat / MessageManager.java
1 package com.stevesoft.pat;
2
3 /**
4  * just a temporary implementation to avoid cross-referencing to jalview.
5  * @author Bob Hanson
6  *
7  */
8 public class MessageManager {
9
10         public static String getString(String string) {
11                 return string;
12         }
13
14         public static String formatMessage(String s, String...fields) {
15                 // just a super super simple implementation to get us rolling
16                 for (int i = 0; i < fields.length; i++)
17                         s += " " + fields[i];
18                 return s;
19         }
20
21 }