congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ApplicationWrapper
Code IndexAdd Tabnine to your IDE (free)

How to use
ApplicationWrapper
in
javax.faces.application

Best Java code snippets using javax.faces.application.ApplicationWrapper (Showing top 20 results out of 315)

Refine searchRefine arrow

  • Application
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#createComponent(javax.el.ValueExpression, javax.faces.context.FacesContext, String)}
 * on the wrapped {@link Application} object.</p>
 */
@Override
public UIComponent createComponent(ValueExpression componentExpression,
                  FacesContext context,
                  String componentType)
   throws FacesException {
  return getWrapped().createComponent(componentExpression, context, componentType);
}
origin: philwebb/springfaces

  @Override
  public Converter createConverter(String converterId) {
    Converter converter = createConverterBean(converterId);
    if (converter != null) {
      return converter;
    }
    return super.createConverter(converterId);
  }
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#createConverter(Class)} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public Converter createConverter(Class<?> targetClass) {
  return getWrapped().createConverter(targetClass);
}
origin: com.sun.faces/jsf-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getViewHandler} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public ViewHandler getViewHandler() {
  return getWrapped().getViewHandler();
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getExpressionFactory} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public ExpressionFactory getExpressionFactory() {
  return getWrapped().getExpressionFactory();
}
origin: com.sun.faces/jsf-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getMessageBundle} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public String getMessageBundle() {
  return getWrapped().getMessageBundle();
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#createValueBinding(String)} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public ValueBinding createValueBinding(String ref)
   throws ReferenceSyntaxException {
  return getWrapped().createValueBinding(ref);
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getNavigationHandler} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public NavigationHandler getNavigationHandler() {
  return getWrapped().getNavigationHandler();
}
origin: org.apache.myfaces.core/myfaces-api

@Override
public ResourceHandler getResourceHandler()
{
  return getWrapped().getResourceHandler();
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#createValidator(String)} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public Validator createValidator(String validatorId) throws FacesException {
  return getWrapped().createValidator(validatorId);
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getStateManager} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public StateManager getStateManager() {
  return getWrapped().getStateManager();
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#addConverter(String, String)} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public void addConverter(String converterId, String converterClass) {
  getWrapped().addConverter(converterId, converterClass);
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#subscribeToEvent(Class, javax.faces.event.SystemEventListener)} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public void subscribeToEvent(Class<? extends SystemEvent> systemEventClass,
               SystemEventListener listener) {
  getWrapped().subscribeToEvent(systemEventClass, listener);
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getDefaultLocale} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public Locale getDefaultLocale() {
  return getWrapped().getDefaultLocale();
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getDefaultRenderKitId} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public String getDefaultRenderKitId() {
  return getWrapped().getDefaultRenderKitId();
}
origin: com.sun.faces/jsf-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getProjectStage} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public ProjectStage getProjectStage() {
  return getWrapped().getProjectStage();
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getSupportedLocales} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public Iterator<Locale> getSupportedLocales() {
  return getWrapped().getSupportedLocales();
}
origin: org.apache.myfaces.core/myfaces-api

@Override
public ResourceBundle getResourceBundle(FacesContext ctx, String name)
{
  return getWrapped().getResourceBundle(ctx, name);
}
origin: org.apache.myfaces.core/myfaces-api

@Override
public void publishEvent(FacesContext facesContext, Class<? extends SystemEvent> systemEventClass,
             Class<?> sourceBaseType, Object source)
{
  getWrapped().publishEvent(facesContext, systemEventClass, sourceBaseType, source);
}
origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">The default behavior of this method
 * is to call {@link Application#getELResolver} on the
 * wrapped {@link Application} object.</p>
 */
@Override
public ELResolver getELResolver() {
  return getWrapped().getELResolver();
}
javax.faces.applicationApplicationWrapper

Javadoc

Provides a simple implementation of Applicationthat can be subclassed by developers wishing to provide specialized behavior to an existing Application instance. The default implementation of all methods is to call through to the wrapped Application.

Usage: extend this class and push the implementation being wrapped to the constructor and use #getWrapped to access the instance being wrapped.

Most used methods

  • getWrapped
  • publishEvent
    The default behavior of this method is to call Application#publishEvent(javax.faces.context.FacesCon
  • addELContextListener
    The default behavior of this method is to call Application#addELContextListener(javax.el.ELContextLi
  • addELResolver
    The default behavior of this method is to call Application#addELResolver(javax.el.ELResolver) on the
  • createConverter
    The default behavior of this method is to call Application#createConverter(String) on the wrapped Ap
  • createValidator
    The default behavior of this method is to call Application#createValidator(String) on the wrapped Ap
  • getExpressionFactory
    The default behavior of this method is to call Application#getExpressionFactory on the wrapped Appli
  • setStateManager
    The default behavior of this method is to call Application#setStateManager(StateManager) on the wrap
  • setViewHandler
    The default behavior of this method is to call Application#setViewHandler(ViewHandler) on the wrappe
  • createComponent
    The default behavior of this method is to call Application#createComponent(javax.faces.el.ValueBindi
  • getResourceHandler
    The default behavior of this method is to call Application#getResourceHandler on the wrapped Applica
  • getResourceHandler

Popular in Java

  • Finding current android device location
  • setRequestProperty (URLConnection)
  • getContentResolver (Context)
  • runOnUiThread (Activity)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JList (javax.swing)
  • JOptionPane (javax.swing)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now