Examples of IDTExternalContext


Examples of org.eclipse.jst.jsf.designtime.context.IDTExternalContext

        {
            return symbol;
        }
       
        // next check the scope maps from request up to application
        final IDTExternalContext externalContext =
            context.getDTExternalContext(externalContextKey);
       
        if (externalContext == null)
        {
            // TODO: try to find bean here?
            return null;
        }
       
        symbol = externalContext.getRequestMap().get(name);
       
        // check request scope
        if (symbol == null)
        {
            symbol = externalContext.getSessionMap().get(name);
           
            // then check session scope
            if (symbol == null)
            {
                symbol = externalContext.getApplicationMap().get(name);
               
                // if the symbol is not found at any scope, then look for a
                // a bean.
                if (symbol == null)
                {
View Full Code Here

Examples of org.eclipse.jst.jsf.designtime.context.IDTExternalContext

    {
        final List  allSymbols = new ArrayList();

        addBuiltins(allSymbols, externalContextKey);

        final IDTExternalContext externalContext = 
            facesContext.getDTExternalContext(externalContextKey);

        if (externalContext != null)
        {
            addExternalContextSymbols(allSymbols, externalContext);
View Full Code Here

Examples of org.eclipse.jst.jsf.designtime.context.IDTExternalContext

                    .getInstance(_externalContextKey.getProject());

            if (manager != null)
            {

                final IDTExternalContext externalContext = manager
                        .getFacesContext(_externalContextKey)
                        .getDTExternalContext(_externalContextKey);

                scopeMap.putAll(externalContext.getMapForScope(_scopeMask));
               
                DTUIViewRoot viewRoot = manager
                  .getFacesContext(_externalContextKey)
                  .getViewRootHandle().getCachedViewRoot();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.