org.cruxframework.crux.core.client
Interface ClientMessages

All Superinterfaces:
com.google.gwt.i18n.shared.Localizable, com.google.gwt.i18n.client.LocalizableResource, com.google.gwt.i18n.client.Messages

public interface ClientMessages
extends com.google.gwt.i18n.client.Messages

Contains all client messages used by Crux Framework

Author:
Thiago da Rosa de Bustamante -

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.google.gwt.i18n.client.Messages
com.google.gwt.i18n.client.Messages.AlternateMessage, com.google.gwt.i18n.client.Messages.DefaultMessage, com.google.gwt.i18n.client.Messages.Example, com.google.gwt.i18n.client.Messages.Offset, com.google.gwt.i18n.client.Messages.Optional, com.google.gwt.i18n.client.Messages.PluralCount, com.google.gwt.i18n.client.Messages.PluralText, com.google.gwt.i18n.client.Messages.Select
 
Nested classes/interfaces inherited from interface com.google.gwt.i18n.client.LocalizableResource
com.google.gwt.i18n.client.LocalizableResource.DefaultLocale, com.google.gwt.i18n.client.LocalizableResource.Description, com.google.gwt.i18n.client.LocalizableResource.Generate, com.google.gwt.i18n.client.LocalizableResource.GeneratedFrom, com.google.gwt.i18n.client.LocalizableResource.GenerateKeys, com.google.gwt.i18n.client.LocalizableResource.Key, com.google.gwt.i18n.client.LocalizableResource.Meaning
 
Method Summary
 String asyncCallbackInvalidHandlerError()
           
 String crossDocumentCanNotIdentifyMethod()
           
 String crossDocumentInvalidCrossDocumentController(String controller)
           
 String crossDocumentInvalidTarget()
           
 String crossDocumentInvocationError()
           
 String crossDocumentInvocationGeneralError(String screenId, String errorMessage)
           
 String crossDocumentMethodNotFound()
           
 String crossDocumentSerializationErrorStreamClosed()
           
 String cruxAlreadyInitializedError()
           
 String dataSourceErrorColumnNotComparable(String columnName)
           
 String dataSourceNotLoaded()
           
 String emptyStringAsStyleNameValue()
           
 String eventFactoryInvalidHandlerMethodDeclaration(String evt)
           
 String eventProcessorClientControllerNotFound(String controller)
           
 String eventProcessorClientError(String call, String errMsg)
           
 String localDataSourceErrorLoadingData(String message)
           
 String methodIsAlreadyBeingProcessed()
           
 String moduleComunicationInvalidParamType(String name)
           
 String nullElementAtSetStyleName()
           
 String remoteDataSourceErrorLoadingData(String message)
           
 String remoteDataSourcePageDirty()
           
 String resourceCsssInjected(String cssClassName)
           
 String resourcesInitialized(String resourceId)
           
 String restServiceMissingStateEtag(String uri)
           
 String restServiceUnexpectedError(String errorMesg)
           
 String screenAccessorCallingCrossDocument(String screenId, String controller, String method, String target)
           
 String screenAccessorCrossDocumentExecuted(String screenId, String controller, String method, String target)
           
 String screenFactoryCrux2OldInterfacesCompatibilityDisabled()
           
 String screenFactoryLayoutPanelWithoutSize(String widgetId)
           
 String screenFactoryScreenIdRequired()
           
 String screenInvalidObjectError()
           
 String styleErrorInvalidProperty(String camelizedName, String value)
           
 String viewContainerCreatingView(String identifier)
           
 String viewContainerErrorCreatingView(String id)
           
 String viewContainerUnsupportedWidget()
           
 String viewContainerViewCreated(String identifier)
           
 String viewContainerViewRendered(String identifier)
           
 String viewFactoryCanNotBeLoaded(String controller)
           
 String viewNotInitialized(String viewId, String widgetId)
           
 String viewOjectIsNotAwareOfView()
           
 

Method Detail

eventProcessorClientControllerNotFound

@Messages.DefaultMessage(value="Client Controller Named \'\'{0}\'\' not found.")
String eventProcessorClientControllerNotFound(String controller)

eventProcessorClientError

@Messages.DefaultMessage(value="Error running client method \'\'{0}\'\'. Message: \'\'{1}\'\'")
String eventProcessorClientError(String call,
                                                         String errMsg)

eventFactoryInvalidHandlerMethodDeclaration

@Messages.DefaultMessage(value="Invalid declaration for handler method \'\'{0}\'\'. Correct syntaxe is .")
String eventFactoryInvalidHandlerMethodDeclaration(String evt)

viewFactoryCanNotBeLoaded

@Messages.DefaultMessage(value="Error loading screen fragment {0}.")
String viewFactoryCanNotBeLoaded(String controller)

methodIsAlreadyBeingProcessed

@Messages.DefaultMessage(value="Please wait. Your request is still being processed.")
String methodIsAlreadyBeingProcessed()

crossDocumentInvalidCrossDocumentController

@Messages.DefaultMessage(value="Client Controller Named \'\'{0}\'\' does not implement CrossDocument interface and can not be called outside document.")
String crossDocumentInvalidCrossDocumentController(String controller)

crossDocumentInvocationError

@Messages.DefaultMessage(value="Error on cross document call. No responde received from method.")
String crossDocumentInvocationError()

crossDocumentInvalidTarget

@Messages.DefaultMessage(value="Error on cross document call. Invalid Target.")
String crossDocumentInvalidTarget()

crossDocumentInvocationGeneralError

@Messages.DefaultMessage(value="Error on cross document call: Screen [{0}]. Error Message: [{1}].")
String crossDocumentInvocationGeneralError(String screenId,
                                                                   String errorMessage)

crossDocumentCanNotIdentifyMethod

@Messages.DefaultMessage(value="Can not identify the method to be called.")
String crossDocumentCanNotIdentifyMethod()

crossDocumentMethodNotFound

@Messages.DefaultMessage(value="Can not find the method to be called.")
String crossDocumentMethodNotFound()

crossDocumentSerializationErrorStreamClosed

@Messages.DefaultMessage(value="WriterStream is not open.")
String crossDocumentSerializationErrorStreamClosed()

screenFactoryLayoutPanelWithoutSize

@Messages.DefaultMessage(value="The widget \'\'{0}\'\' is a layout panel that does not have its dimensions defined. Explicity define it, or append it directly on body element.")
String screenFactoryLayoutPanelWithoutSize(String widgetId)

screenFactoryScreenIdRequired

@Messages.DefaultMessage(value="The id attribute is required for CRUX Screens.")
String screenFactoryScreenIdRequired()

viewContainerErrorCreatingView

@Messages.DefaultMessage(value="Error creating view [{0}]. ")
String viewContainerErrorCreatingView(String id)

asyncCallbackInvalidHandlerError

@Messages.DefaultMessage(value="An Invalid controller was passed to AsyncCallbackAdapter.")
String asyncCallbackInvalidHandlerError()

screenInvalidObjectError

@Messages.DefaultMessage(value="An Invalid object was passed to update screen or DTOs.")
String screenInvalidObjectError()

viewContainerCreatingView

@Messages.DefaultMessage(value="Creating the view for screen {0}.")
String viewContainerCreatingView(String identifier)

viewContainerViewCreated

@Messages.DefaultMessage(value="View {0} created.")
String viewContainerViewCreated(String identifier)

viewContainerViewRendered

@Messages.DefaultMessage(value="View {0} rendered.")
String viewContainerViewRendered(String identifier)

viewContainerUnsupportedWidget

@Messages.DefaultMessage(value="This application contains components that are not fully supported by your brownser.")
String viewContainerUnsupportedWidget()

screenFactoryCrux2OldInterfacesCompatibilityDisabled

@Messages.DefaultMessage(value="To use this feature you must enabled compatibility with Crux 2 old interfaces.")
String screenFactoryCrux2OldInterfacesCompatibilityDisabled()

moduleComunicationInvalidParamType

@Messages.DefaultMessage(value="Type \'\'{0}\'\' can not be shared between modules. Only primitives (and its wrappers), Strings, Dates, Arrays (not multidimesional) and classes implementing CruxSerializable can be used.")
String moduleComunicationInvalidParamType(String name)

localDataSourceErrorLoadingData

@Messages.DefaultMessage(value="Error loading dataSource data: {0}")
String localDataSourceErrorLoadingData(String message)

remoteDataSourceErrorLoadingData

@Messages.DefaultMessage(value="Error loading dataSource remote data: {0}")
String remoteDataSourceErrorLoadingData(String message)

dataSourceNotLoaded

@Messages.DefaultMessage(value="Error processing requested operation. DataSource is not loaded yet.")
String dataSourceNotLoaded()

remoteDataSourcePageDirty

@Messages.DefaultMessage(value="DataSource has changes on page. You must save or discard them before perform this operation.")
String remoteDataSourcePageDirty()

dataSourceErrorColumnNotComparable

@Messages.DefaultMessage(value="The column {0} can not be sorted.")
String dataSourceErrorColumnNotComparable(String columnName)

nullElementAtSetStyleName

@Messages.DefaultMessage(value="Found a null element reference when trying to modify it\'\'s styleName property.")
String nullElementAtSetStyleName()

emptyStringAsStyleNameValue

@Messages.DefaultMessage(value="Empty strings can not be used as a styleName property value.")
String emptyStringAsStyleNameValue()

cruxAlreadyInitializedError

@Messages.DefaultMessage(value="Crux Engine is already loaded.")
String cruxAlreadyInitializedError()

screenAccessorCallingCrossDocument

@Messages.DefaultMessage(value="Calling a cross document method. Screen[{0}], Controller[{1}], Method[{2}], Target[{3}]")
String screenAccessorCallingCrossDocument(String screenId,
                                                                  String controller,
                                                                  String method,
                                                                  String target)

screenAccessorCrossDocumentExecuted

@Messages.DefaultMessage(value="Cross document method executed. Screen[{0}], Controller[{1}], Method[{2}], Target[{3}]")
String screenAccessorCrossDocumentExecuted(String screenId,
                                                                   String controller,
                                                                   String method,
                                                                   String target)

styleErrorInvalidProperty

@Messages.DefaultMessage(value="Invalid value for style property: [{0}]:[{1}]")
String styleErrorInvalidProperty(String camelizedName,
                                                         String value)

viewNotInitialized

@Messages.DefaultMessage(value="Can not retrieve the widget [{1}] from view [{0}]. View is not loaded. Load this view into a ViewContainer first.")
String viewNotInitialized(String viewId,
                                                  String widgetId)

viewOjectIsNotAwareOfView

@Messages.DefaultMessage(value="Informed object is not aware of current view. This method must be used to discover current view for controllers, datasouces or other ViewAware objects.")
String viewOjectIsNotAwareOfView()

resourcesInitialized

@Messages.DefaultMessage(value="Resources [{0}] initialized.")
String resourcesInitialized(String resourceId)

resourceCsssInjected

@Messages.DefaultMessage(value="Css Resource [{0}] injected.")
String resourceCsssInjected(String cssClassName)

restServiceUnexpectedError

@Messages.DefaultMessage(value="Unexpected error calling rest service. Error [{0}].")
String restServiceUnexpectedError(String errorMesg)

restServiceMissingStateEtag

@Messages.DefaultMessage(value="Can not invoke write operation for uri[{0}] without previously loading it.")
String restServiceMissingStateEtag(String uri)


Copyright © 2014. All rights reserved.