Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/DeCamelExternalization.java

Diff revisions: vs.
  @@ -1,34 +1,34 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.forms.server;
3 -
4 - import org.litesoft.GWT.forms.server.support.nonpublic.*;
5 - import org.litesoft.commonfoundation.base.*;
6 - import org.litesoft.ui_1_5.*;
7 -
8 - public class DeCamelExternalization extends AbstractCachingExternalization {
9 - public static final ExternalizationInterface INSTANCE = new DeCamelExternalization();
10 -
11 - public ExternalizationInterface addContext( String pRootType ) {
12 - return this;
13 - }
14 -
15 - protected String LLresolveLabel( String pLabelID ) {
16 - return DeCamelizer.resolve( pLabelID );
17 - }
18 -
19 - protected String LLresolveAction( String pActionID ) {
20 - return DeCamelizer.resolve( pActionID );
21 - }
22 -
23 - protected String LLresolveActionTooltip( String pActionID ) {
24 - return null;
25 - }
26 -
27 - protected String LLresolveInputTooltip( String pInputID ) {
28 - return null;
29 - }
30 -
31 - protected String LLresolveError( String pErrorID ) {
32 - return DeCamelizer.resolve( pErrorID );
33 - }
34 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.forms.server;
3 +
4 + import org.litesoft.GWT.forms.server.support.nonpublic.*;
5 + import org.litesoft.commonfoundation.base.*;
6 + import org.litesoft.ui_1_5.*;
7 +
8 + public class DeCamelExternalization extends AbstractCachingExternalization {
9 + public static final ExternalizationInterface INSTANCE = new DeCamelExternalization();
10 +
11 + public ExternalizationInterface addContext( String pRootType ) {
12 + return this;
13 + }
14 +
15 + protected String LLresolveLabel( String pLabelID ) {
16 + return DeCamelizer.resolve( pLabelID );
17 + }
18 +
19 + protected String LLresolveAction( String pActionID ) {
20 + return DeCamelizer.resolve( pActionID );
21 + }
22 +
23 + protected String LLresolveActionTooltip( String pActionID ) {
24 + return null;
25 + }
26 +
27 + protected String LLresolveInputTooltip( String pInputID ) {
28 + return null;
29 + }
30 +
31 + protected String LLresolveError( String pErrorID ) {
32 + return DeCamelizer.resolve( pErrorID );
33 + }
34 + }