?? mas.java
字號:
package com.proreg;
public class Mas {
private String mtime;
private String name;
private String content;
private String title;
public Mas() {
mtime="";
name="";
content="";
title="";
}
public void setTitle(String title){
this.title=title;
}
public String getTitle(){
return this.title;
}
public void setContent(String content){
this.content=content;
}
public String getContent(){
return this.content;
}
public void setName(String name){
this.name=name;
}
public String getName(){
return this.name;
}
public void setMtime(String mtime){
this.mtime=mtime;
}
public String getMtime(){
return this.mtime;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -