
org.fife.rsta.ac.asm6502.Asm6502LanguageSupport 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.
The newest version!
/*
* This library is distributed under a modified BSD license. See the included
* RSTALanguageSupport.License.txt file for details.
*/
package org.fife.rsta.ac.asm6502;
import org.fife.rsta.ac.AbstractLanguageSupport;
import org.fife.ui.autocomplete.AutoCompletion;
import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea;
/**
* Language support for 6502 assembler.
*
* @author Robert Futrell
* @version 1.0
*/
public class Asm6502LanguageSupport extends AbstractLanguageSupport {
/**
* The completion provider, shared amongst all text areas editing 6502 assembler.
*/
private Asm6502CompletionProvider provider;
/**
* Constructor.
*/
public Asm6502LanguageSupport() {
setAutoActivationEnabled(true);
setAutoActivationDelay(500);
setParameterAssistanceEnabled(true);
//setShowDescWindow(true);
}
//@Override
//protected ListCellRenderer
© 2015 - 2025 Weber Informatics LLC | Privacy Policy