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

org.fife.rsta.ac.js.completion.JSCompletionUI Maven / Gradle / Ivy

Go to download

A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.

There is a newer version: 3.3.0
Show newest version
package org.fife.rsta.ac.js.completion;


public interface JSCompletionUI {

	static final int LOCAL_VARIABLE_RELEVANCE = 9;
	static final int GLOBAL_VARIABLE_RELEVANCE = 8;
	static final int DEFAULT_VARIABLE_RELEVANCE = 7;
	static final int STATIC_FIELD_RELEVANCE = 6;
	static final int BEAN_METHOD_RELEVANCE = 5;
	static final int DEFAULT_FUNCTION_RELEVANCE = 4;
	static final int GLOBAL_FUNCTION_RELEVANCE = 3;
	static final int DEFAULT_CLASS_RELEVANCE = 2;
	static final int BASIC_COMPLETION_RELEVANCE = 1;
	static final int TEMPLATE_RELEVANCE = 0;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy