1 package org.apache.ojb.broker.util.ui; 2 3 17 18 import org.apache.ojb.broker.util.Version; 19 20 public class AsciiSplash 21 { 22 23 26 public AsciiSplash() 27 { 28 super(); 29 } 30 31 public static String getSplashArt() 32 { 33 String eol = System.getProperty("line.separator"); 34 return " _ _" + eol + 35 " __ (_)| |_" + eol + 36 "/ _\\| || _ \\ ~ be persistent ~" + eol + 37 "\\__/| ||___/ v. " + Version.OJB_VERSION_FULLQUALIFIED + eol + 38 " /_/" + eol; 39 } 40 41 } 42 | Popular Tags |