📄 tagextensionfield.java
字号:
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 <code>TagExtensionField</code>.
*/
public TagExtensionField(String key, String value) {
this.key = key;
this.value = value;
}
/*****************************************************************************/
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -