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

org.fife.ctags.TagExtensionField Maven / Gradle / Ivy

package org.fife.ctags;


/**
 * This class contains information about an extension field for a tag.
 * These exist at the end of the tag in the form "key:value".  This particular
 * class is public domain.
 *
 * @author Robert Futrell
 * @version 0.01
 */
public class TagExtensionField {

	public String key;		/* the key of the extension field */
	public String value;	/* the value of the extension field (may be an empty string) */


	/**
	 * Creates a new TagExtensionField.
	 */
	public TagExtensionField(String key, String value) {
		this.key = key;
		this.value = value;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy