# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /s/nb/t/nb_all/lexer/src/org/netbeans/spi/lexer # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: LanguageEmbedding.java *** /s/nb/t/nb_all/lexer/src/org/netbeans/spi/lexer/LanguageEmbedding.java Base (1.5) --- /s/nb/t/nb_all/lexer/src/org/netbeans/spi/lexer/LanguageEmbedding.java Locally Modified (Based On 1.5) *************** *** 69,75 **** --- 69,94 ---- */ public abstract int endSkipLength(); + /** + * Whether this embedding joins sections of the same language path across + * the input. + *
+ * For example the html embedding in the jsp should have this flag + * turned on to properly interpret the following code snippet: + *
+ * <!-- Comment start <% System.out.println("Nazdar"); %> still in comment --> + * + * @return true if the sections with the same language path should be joined + * or false otherwise. + *
+ * By default the sections are not joined. + */ + public boolean joinSections() { + return false; } + + }