All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.tmm.NumberFormat Maven / Gradle / Ivy

Go to download

An application to easily create syntax highlighting for custom languages in RSyntaxTextArea.

The newest version!
package org.fife.tmm;


/**
 * Available number formats (int, hex, floating point) implement this
 * interface.
 *
 * @author Robert Futrell
 * @version 1.0
 */
public interface NumberFormat {

	/**
	 * Returns the format string, as it will be inserted into the JFlex file.
	 *
	 * @return The format string.
	 */
	String getFormat();

	/**
	 * Returns a sample of literals that would be matched by this format.
	 *
	 * @return A sample of literals that would be matched.
	 */
	String getSample();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy