You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
789 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package model;
import java.awt.Dimension;
/**
* 方格类,是组成块的基本元素,用自己的颜色来表示块的外观
*/
public class Box {
private boolean isColor;
/**
* 方格类的构造函数
* @param isColor 是不是用前景色来为此方格着色,
* true前景色false用背景色
*/
public Box(boolean isColor) {
this.isColor = isColor;
}
/**
* 此方格是不是用前景色表现
* @return boolean,true用前景色表现false用背景色表现
*/
public boolean isColorBox() {
return isColor;
}
/**
* 设置方格的颜色,
* @param isColor boolean,true用前景色表现false用背景色表现
*/
public void setColor(boolean isColor) {
this.isColor = isColor;
}
}