alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.web.core.syntax;

import org.netbeans.editor.Syntax;
import org.netbeans.modules.web.core.syntax.spi.JSPColoringData;

/** Handles syntax coloring for JSP 1.1. This involves handling custom tags. 
 * This class relies on an external source of data, which provides information 
 * about tag libraries. The information necessary is:
 * 
    *
  • Prefixes of tag libraries imported by the page (and its included pages !)
  • *
  • For individual tags inside the tag libraries, it's bodyContent property
  • *
* This class is able to deal with cases when this information is incomplete, * i.e. if the information for individual tags is missing (for example in the case when the * .tld descriptor of the library was not found). In such a case the tags for which the information * is missing are treated as if they had bodycontent set to JSP. * * // PENDING - handle TAG_DEPENDENT tags correctly, change JspMultiSyntax and JspTagSyntax accordingly * * @author petr.jiricka@netbeans.com * @version */ public class Jsp11Syntax extends JspMultiSyntax { /** Creates new Jsp11Syntax */ public Jsp11Syntax() { super(); } public Jsp11Syntax(Syntax contentSyntax, Syntax scriptingSyntax) { super(contentSyntax, scriptingSyntax); } /** Only keep reference to listener which listens on the JSP DataObject so * it's not garbage collected. */ Object listenerReference; /** Data providing the information about tag libraries. */ JSPColoringData data; protected boolean isJspTag(String tagName) { // not calling super() for performance reasons if (tagName.startsWith("jsp:")) { // NOI18N // standard JSP tag return true; } if (data == null) return false; int colonIndex = tagName.indexOf(':'); if (colonIndex == -1) { // not a JSP tag return false; } // return true if there is information for a library with our prefix return data.isTagLibRegistered(tagName.substring(0, colonIndex)); } /** Determines whether any EL expressions should be colored as expressions, * or ignored. Returna the correct value per section JSP.3.3.2 * of the specification. * @param whether this expression is inside the JSP tag value, or just in template text * @return true if the expression should be ignored, false if it should be treated as an expression */ protected boolean isELIgnored(boolean inJspTag) { if (data == null) { return false; } // PENDING: what we could do is the following: // for a 2.3 application, see if the page uses a tag library that hacks // EL support (JSTL or JSF) and if it does, enable EL expressions inside // JSP tag attribute values for this page. if (inJspTag) { return false; } return data.isELIgnored(); } protected boolean isXMLSyntax(){ if (data == null) { return false; } return data.isXMLSyntax(); } }
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.