org.fife.rsta.ac.jsp.TldElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagesupport Show documentation
Show all versions of languagesupport Show documentation
A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.
/*
* 07/05/2011
*
* Copyright (C) 2011 Robert Futrell
* robert_futrell at users.sourceforge.net
* http://fifesoft.com/rsyntaxtextarea
*
* This library is distributed under a modified BSD license. See the included
* RSTALanguageSupport.License.txt file for details.
*/
package org.fife.rsta.ac.jsp;
import org.fife.ui.autocomplete.MarkupTagCompletion;
/**
* An element defined in a TLD.
*
* @author Robert Futrell
* @version 1.0
*/
class TldElement extends MarkupTagCompletion {
public TldElement(JspCompletionProvider provider, String name, String desc){
super(provider, name);
setDescription(desc);
}
}