⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 background.java

📁 《JSP时尚编程百例》一例源代码81-100
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -