textitemcontents.java
来自「eclipse开发笔记」· Java 代码 · 共 21 行
JAVA
21 行
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 + =
减小字号Ctrl + -
显示快捷键?