In progress of refining the Tomoyo policies for process jailing; will define a set...
[iot2.git] / iotjava / iotruntime / master / RuntimeOutput.java
1 package iotruntime.master;
2
3 /** Class RuntimeOutput is a class that controls the verboseness
4  *  of the runtime system
5  *
6  * @author      Rahmadi Trimananda <rahmadi.trimananda @ uci.edu>
7  * @version     1.0
8  * @since       2016-05-11
9  */
10 public final class RuntimeOutput {
11
12         /**
13          * print() method to print messages
14          *
15          * @param       strMessage      Message to print out
16          * @return  void
17          */
18         public static void print(String strMessage, boolean bVerbose) {
19
20                 if (bVerbose == true) {
21                         System.out.println(strMessage);
22                 }
23         }
24 }