package fucoin.gui; public class LogMessage { private String message; private boolean transactionRelated; public LogMessage(String message, boolean transactionRelated){ this.message = message; this.transactionRelated = transactionRelated; } public String getMessage() { return message; } public boolean isTransactionRelated() { return transactionRelated; } @Override public String toString(){ return getMessage(); } }