From: <iam...@us...> - 2010-03-24 17:36:43
|
Revision: 1351 http://eulergui.svn.sourceforge.net/eulergui/?rev=1351&view=rev Author: iamlolive Date: 2010-03-24 17:36:37 +0000 (Wed, 24 Mar 2010) Log Message: ----------- global locale management Added Paths: ----------- trunk/eulergui/src/main/java/n3_project/helpers/GlobalLocale.java Added: trunk/eulergui/src/main/java/n3_project/helpers/GlobalLocale.java =================================================================== --- trunk/eulergui/src/main/java/n3_project/helpers/GlobalLocale.java (rev 0) +++ trunk/eulergui/src/main/java/n3_project/helpers/GlobalLocale.java 2010-03-24 17:36:37 UTC (rev 1351) @@ -0,0 +1,23 @@ +package n3_project.helpers; + +import java.util.Locale; + +/** + * Created by IntelliJ IDEA. + * User: lolive + * Date: 23 mars 2010 + * Time: 17:29:51 + * To change this template use File | Settings | File Templates. + */ +public class GlobalLocale { + public static Locale currentLocale = Locale.ENGLISH; + public static Locale getLocale(){ + return currentLocale; + } + + public static void setLocale(Locale l){ + currentLocale = l; + } + + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |