Package org.eclipse.jst.jsf.designtime.symbols

Examples of org.eclipse.jst.jsf.designtime.symbols.DefaultBuiltInSymbolProvider


     * @see org.eclipse.jst.jsf.designtime.el.AbstractDTVariableResolver#resolveVariable(org.eclipse.jst.jsf.designtime.context.DTFacesContext, java.lang.String, org.eclipse.core.runtime.IAdaptable)
     */
    public ISymbol resolveVariable(DTFacesContext context, String name, IAdaptable externalContextKey)
    {
        // check implicits first
        final DefaultBuiltInSymbolProvider builtins =
            DefaultBuiltInSymbolProvider.getInstance();

        ISymbol  symbol = builtins.getSymbol(name, externalContextKey, ISymbolConstants.SYMBOL_SCOPE_ALL);

        if (symbol != null)
        {
            return symbol;
        }
View Full Code Here


     * @param externalContextKey
     */
    protected  void addBuiltins(final List list, final IAdaptable externalContextKey)
    {
        // check implicits first
        final DefaultBuiltInSymbolProvider builtins =
            DefaultBuiltInSymbolProvider.getInstance();

        list.addAll(Arrays.asList(builtins.getSymbols(externalContextKey,
                                     ISymbolConstants.SYMBOL_SCOPE_ALL)));
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.designtime.symbols.DefaultBuiltInSymbolProvider

Copyright © 2018 www.massapicom. 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.