|
From: <tri...@us...> - 2008-01-28 15:11:17
|
Revision: 275
http://equanda.svn.sourceforge.net/equanda/?rev=275&view=rev
Author: triathlon98
Date: 2008-01-28 07:11:13 -0800 (Mon, 28 Jan 2008)
Log Message:
-----------
EQ-123 fix code style and assure project header is there
Modified Paths:
--------------
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/AppModule.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessages.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesGroup.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesImpl.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesInjectionProvider.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSource.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSourceImpl.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslator.java
trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslatorImpl.java
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/AppModule.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/AppModule.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/AppModule.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -24,13 +24,7 @@
package org.equanda.t5gui.services;
-import java.io.IOException;
-
import javassist.runtime.Desc;
-
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpSession;
-
import org.apache.tapestry.Translator;
import org.apache.tapestry.ioc.Configuration;
import org.apache.tapestry.ioc.MappedConfiguration;
@@ -48,6 +42,10 @@
import org.equanda.t5gui.translators.UoidTranslator;
import org.slf4j.Logger;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpSession;
+import java.io.IOException;
+
/**
* This module is automatically included as part of the Tapestry IoC Registry, it's a good place to configure and extend
* Tapestry, or to place your own service definitions.
@@ -129,7 +127,8 @@
HttpSession session = servletRequest.getSession();
if ( session.getAttribute( SESSION_SELECTORSSTATE ) != null )
{
- SelectorsState.setSelectorsState( (SelectorsStateType)session.getAttribute( SESSION_SELECTORSSTATE ));
+ SelectorsState.setSelectorsState(
+ (SelectorsStateType) session.getAttribute( SESSION_SELECTORSSTATE ) );
}
try
@@ -167,9 +166,8 @@
/**
* Building Equanda Messages Source
- *
- * @param equandaMessageTranslator
- * Equanda Message Translator
+ *
+ * @param equandaMessageTranslator Equanda Message Translator
* @return new Messages Source
*/
public static EquandaMessagesSource build( EquandaMessagesTranslator equandaMessageTranslator )
@@ -181,7 +179,7 @@
/**
* Building Equanda Message Translator
- *
+ *
* @return new Message Translator
*/
public static EquandaMessagesTranslator build()
@@ -191,30 +189,27 @@
/**
* Contributes the injection providers
- *
- * @param configuration
- * configuration
+ *
+ * @param configuration configuration
*/
public static void contributeInjectionProvider( OrderedConfiguration<InjectionProvider> configuration )
{
- configuration.add( "EqundaMessages", new EquandaMessagesInjectionProvider() );
+ configuration.add( "EquandaMessages", new EquandaMessagesInjectionProvider() );
}
/**
* Contributes the factory for equanda binding prefixes
- *
- * @param configuration
- * configuration to add to
- * @param messagesSource
- * Equanda Message Source
- * @param equandaMessageTranslator
- * Equanda Message Translator
+ *
+ * @param configuration configuration to add to
+ * @param messagesSource Equanda Message Source
+ * @param equandaMessageTranslator Equanda Message Translator
*/
public static void contributeBindingSource( MappedConfiguration<String, BindingFactory> configuration,
- EquandaMessagesSource messagesSource, EquandaMessagesTranslator equandaMessageTranslator )
+ EquandaMessagesSource messagesSource,
+ EquandaMessagesTranslator equandaMessageTranslator )
{
configuration.add( EquandaTapestryConstants.EQUANDA_MESSAGE_BINDING_PREFIX, new EquandaMessageBindingFactory(
- messagesSource ) );
+ messagesSource ) );
}
}
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessages.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessages.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessages.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
import org.apache.tapestry.ioc.Messages;
@@ -4,33 +28,31 @@
/**
* Provides access to translated message catalog
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
*/
-public interface EquandaMessages extends Messages
+public interface EquandaMessages
+ extends Messages
{
/**
* Sets language for translation
- *
- * @param language
- * language
+ *
+ * @param language language
*/
public void setLanguage( String language );
/**
* Sets page name
- *
- * @param page
- * page name
+ *
+ * @param page page name
*/
public void setPage( String page );
/**
* Sets message groups
- *
- * @param messagesGroups
- * message groups
+ *
+ * @param messagesGroups message groups
*/
public void setMessagesGroups( String[] messagesGroups );
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesGroup.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesGroup.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesGroup.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
/**
@@ -2,3 +26,3 @@
* Group contexts for Equanda base pages
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
@@ -9,7 +33,7 @@
{
/**
* Gets message groups
- *
+ *
* @return array of the message groups
*/
public String[] getMessagesGroups();
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesImpl.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesImpl.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesImpl.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
import org.apache.tapestry.ioc.MessageFormatter;
@@ -4,10 +28,11 @@
/**
* Equanda Message implementation
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
*/
-public class EquandaMessagesImpl implements EquandaMessages
+public class EquandaMessagesImpl
+ implements EquandaMessages
{
private String language;
private String page;
@@ -16,11 +41,10 @@
/**
* Creates Equanda Messages
- *
- * @param equandaMessageTranslator
- * equanda message translator
+ *
+ * @param equandaMessageTranslator equanda message translator
*/
- public EquandaMessagesImpl ( EquandaMessagesTranslator equandaMessageTranslator )
+ public EquandaMessagesImpl( EquandaMessagesTranslator equandaMessageTranslator )
{
this.equandaMessageTranslator = equandaMessageTranslator;
}
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesInjectionProvider.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesInjectionProvider.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesInjectionProvider.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
import org.apache.tapestry.ioc.ObjectLocator;
@@ -8,26 +32,27 @@
/**
* Performs injection of translated messages
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
*/
-public class EquandaMessagesInjectionProvider implements InjectionProvider
+public class EquandaMessagesInjectionProvider
+ implements InjectionProvider
{
@SuppressWarnings( "unchecked" )
public boolean provideInjection( String fieldName, Class fieldType, ObjectLocator locator,
- ClassTransformation transformation, MutableComponentModel componentModel )
+ ClassTransformation transformation, MutableComponentModel componentModel )
{
if ( fieldType.equals( EquandaMessages.class ) )
{
- // String resourcesField = transformation.getResourcesFieldName();
String msgSourceField = transformation.addInjectedField( EquandaMessagesSource.class,
- "equandaMessageSource", locator.getService( EquandaMessagesSource.class ) );
+ "equandaMessagesSource",
+ locator.getService(
+ EquandaMessagesSource.class ) );
String body = String.format( "%s = %s.%s( %s );", fieldName, msgSourceField, "getMessages", transformation
- .getResourcesFieldName() );
+ .getResourcesFieldName() );
transformation.makeReadOnly( fieldName );
- // transformation.extendConstructor( body );
transformation.extendMethod( TransformConstants.CONTAINING_PAGE_DID_LOAD_SIGNATURE, body );
return true;
}
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSource.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSource.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSource.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
import org.apache.tapestry.ComponentResources;
@@ -4,7 +28,7 @@
/**
* Message source for translation
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
*/
public interface EquandaMessagesSource
@@ -12,9 +36,8 @@
/**
* Gets equanda messages for specified component
- *
- * @param componentResources
- * component resources
+ *
+ * @param componentResources component resources
* @return messages
*/
public EquandaMessages getMessages( ComponentResources componentResources );
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSourceImpl.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSourceImpl.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesSourceImpl.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
import org.apache.tapestry.ComponentResources;
@@ -4,21 +28,21 @@
/**
* Equanda Message Source implementation
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
*/
-public class EquandaMessagesSourceImpl implements EquandaMessagesSource
+public class EquandaMessagesSourceImpl
+ implements EquandaMessagesSource
{
private EquandaMessagesTranslator equandaMessageTranslator;
/**
* Creates message source
- *
- * @param equandaMessageTranslator
- * message translator
+ *
+ * @param equandaMessageTranslator message translator
*/
- public EquandaMessagesSourceImpl ( EquandaMessagesTranslator equandaMessageTranslator )
+ public EquandaMessagesSourceImpl( EquandaMessagesTranslator equandaMessageTranslator )
{
this.equandaMessageTranslator = equandaMessageTranslator;
}
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslator.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslator.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslator.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,3 +1,27 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
/**
@@ -2,3 +26,3 @@
* Message Translator
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
@@ -9,15 +33,11 @@
{
/**
* Gets translation for specified key
- *
- * @param language
- * language
- * @param strKey
- * message key
- * @param page
- * page name
- * @param messagesGroups
- * array of message groups
+ *
+ * @param language language
+ * @param strKey message key
+ * @param page page name
+ * @param messagesGroups array of message groups
* @return translated message
*/
public String getTranslation( String language, String strKey, String page, String[] messagesGroups );
Modified: trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslatorImpl.java
===================================================================
--- trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslatorImpl.java 2008-01-28 14:37:07 UTC (rev 274)
+++ trunk/equanda-t5gui/src/main/java/org/equanda/t5gui/services/EquandaMessagesTranslatorImpl.java 2008-01-28 15:11:13 UTC (rev 275)
@@ -1,17 +1,42 @@
+/**
+ * This file is part of the equanda project.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ * ANY KIND, either express or implied. See the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ */
+
package org.equanda.t5gui.services;
+import org.equanda.translations.TranslatorEJBLocal;
+import org.equanda.translations.TranslatorEJBUtil;
+
import java.util.ArrayList;
import java.util.List;
-import org.equanda.translations.TranslatorEJBLocal;
-import org.equanda.translations.TranslatorEJBUtil;
-
/**
* Implementation of Message Translator
- *
+ *
* @author <a href="mailto:vla...@gm...">Vladimir Tkachenko</a>
*/
-public class EquandaMessagesTranslatorImpl implements EquandaMessagesTranslator
+public class EquandaMessagesTranslatorImpl
+ implements EquandaMessagesTranslator
{
/**
* Instance of EJB translator
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|