
org.fife.ui.rsyntaxtextarea.modes.AssemplerX86TokenRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsyntaxtextarea Show documentation
Show all versions of rsyntaxtextarea Show documentation
A Logo interpreter written in Java.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.fife.ui.rsyntaxtextarea.modes;
import org.fife.ui.rsyntaxtextarea.TokenMakerRegistration;
import org.fife.ui.rsyntaxtextarea.folding.FoldParser;
/**
*
* @author matta
*/
public class AssemplerX86TokenRegistration implements TokenMakerRegistration {
public static final String SYNTAX_STYLE = "text/asm";
@Override
public String getLanguage() {
return SYNTAX_STYLE;
}
@Override
public String getTokenMaker() {
return AssemblerX86TokenMaker.class.getName();
}
@Override
public FoldParser getFoldParser() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy