Package org.eclipse.jst.jsp.ui.internal.editor

Source Code of org.eclipse.jst.jsp.ui.internal.editor.JSPSourceEditingTextTools

/*******************************************************************************
* Copyright (c) 2004, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsp.ui.internal.editor;



import org.eclipse.jst.jsp.core.internal.document.PageDirectiveAdapter;
import org.eclipse.jst.jsp.core.internal.provisional.JSP11Namespace;
import org.eclipse.jst.jsp.core.internal.provisional.JSP12Namespace;
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
import org.eclipse.wst.xml.ui.internal.provisional.XMLSourceEditingTextTools;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

/**
* Implements ISourceEditingTextTools interface
*/
public class JSPSourceEditingTextTools extends XMLSourceEditingTextTools {

  public String getPageLanguage(Node node) {
    String language = null;
    Document doc = null;
    if (node.getNodeType() == Node.DOCUMENT_NODE) {
      doc = (Document) node;
    }
    else {
      doc = node.getOwnerDocument();
    }
    if (doc != null) {
      if (doc instanceof IDOMDocument) {
        PageDirectiveAdapter adapter = (PageDirectiveAdapter) ((IDOMDocument) doc).getAdapterFor(PageDirectiveAdapter.class);
        if (adapter != null)
          language = adapter.getLanguage();
      }
      else {
        // iterate through all of the page directives
        NodeList pageDirectives = doc.getElementsByTagName(JSP12Namespace.ElementName.DIRECTIVE_PAGE);
        for (int i = 0; i < pageDirectives.getLength(); i++) {
          Element pageDirective = (Element) pageDirectives.item(i);
          // last one to declare a language wins
          if (pageDirective.hasAttribute(JSP11Namespace.ATTR_NAME_LANGUAGE))
            language = pageDirective.getAttribute(JSP11Namespace.ATTR_NAME_LANGUAGE);
        }
      }
    }
    // if no language was specified anywhere, assume Java
    if (language == null)
      language = JSP11Namespace.ATTR_VALUE_JAVA;
    return language;
  }
}
TOP

Related Classes of org.eclipse.jst.jsp.ui.internal.editor.JSPSourceEditingTextTools

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.