package chat; import java.awt.Color; import java.awt.Dimension; /** * **/ public class Properties { /** * **/ public static String defaultContentType = "text/plain"; /** * **/ public static String prefix = "** "; /** * **/ public static String i_say_prefix = "> "; /** * **/ public static String i_do_prefix = "] "; /** * **/ public static String public_open = "<"; /** * **/ public static String public_close = "> "; /** * **/ public static String pager_open = "["; /** * **/ public static String pager_close = "] "; /** * **/ public static String private_open = "*"; /** * **/ public static String private_close = "* "; /** * **/ public static String placeTitlePrefix = "Place: "; /** * **/ public static String userTitlePrefix = "Person: "; /** * **/ public static String statusTitle = "Status"; /** * **/ public static String messageTitle = "Identification"; /** * **/ public static String userProgramQueryMessage = // "Where can I find your user program?"; /** * **/ public static String passwordQueryMessage = "Please input your password"; /** * **/ public static String userProgramNotReachableMessage = // "User program not reachable!"; /** * **/ public static String invalidPasswordMessage = "Invalid password!"; /** * **/ public static Color BG_COLOR = Color.black; /** * **/ public static Color STATUS_COLOR = Color.green; /** * **/ public static Color TEXT_COLOR = Color.orange; /** * **/ public static Dimension ConferencingViewSize = new Dimension(500,200); /** * **/ public static Dimension ConferencingPeopleSize = new Dimension(100,200); /** * **/ public static Dimension BuddySize = new Dimension(50,150); /** * **/ private Properties() { } }