001package state.ui; 002 003public class UIFactory { 004 private UIFactory() {} 005 static private TextUI UI = new TextUI(); 006 static public UI ui () { 007 return UI; 008 } 009}