background.java
来自「《JSP时尚编程百例》一例源代码81-100」· Java 代码 · 共 34 行
JAVA
34 行
public class Background{
private String backgroundColor="";
private String textColor="";
private int size=1;
public Background(){
}
public void setBackgroundColor( String backgroundColor ){
this.backgroundColor = backgroundColor;
}
public String getBackgroundColor(){
return this.backgroundColor;
}
public void setTextColor( String textColor ){
this.textColor = textColor;
}
public String getTextColor(){
return this.textColor;
}
public void setSize( int size ){
this.size = size;
}
public int getSize(){
return this.size;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?