📄 textitemcontents.java
字号:
package com.plugindev.addressbook.editors.models;
public class TextItemContents{
String key;
String value;
public TextItemContents(String key, String value){
this.key = key;
this.value = value;
}
public String getKey(){
return this.key;
}
public String getValue(){
return this.value;
}
public void setValue(String value){
this.value = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -