Package org.eclipse.jst.jsp.core.internal.document

Examples of org.eclipse.jst.jsp.core.internal.document.PageDirectiveAdapter.adapt()


        }
       
        potentialModelQueryObject = (ModelQuery) embeddedModelQueries.get(effectiveContentType);
       
        if (potentialModelQueryObject == null) {
          ModelQueryAdapter embeddedAdapter = (ModelQueryAdapter) pageDirectiveAdapter.adapt((INodeNotifier) node, ModelQueryAdapter.class);
          if (embeddedAdapter != null) {
            // we will cache one model query per content type
            embeddedModelQuery = embeddedAdapter.getModelQuery();
            embeddedModelQueries.put(effectiveContentType, embeddedModelQuery);
          }
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.