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

📄 setproperty.java

📁 精通从JavaScript到Jsp范例程序设计
💻 JAVA
字号:
public class SetProperty{
 	
 	private String backgroundColor="";
	private String textColor="";
	private int size=1;
	
 	public SetProperty(){
	}
	
	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 + -