검색결과 리스트
전체 글에 해당되는 글 238건
- 2009.05.02 JAVA
글
JAVA
프로그래밍
2009. 5. 2. 14:35
import org.kwis.msp.lcdui.*;
import org.kwis.msp.lwc.*;
public class XorEx extends Jlet
{
protected void startApp(String args[])
{
Display dp = Display.getDefaultDisplay();
XorClass card = new XorClass();
dp.pushCard(card);
}
protected void destroyApp(boolean b){}
}
class XorClass extends Card {
protected void paint(Graphics g) {
int i = 30; //위 아래 좌우 공간을 동일한 비율로 설정
int x[] = {(getWidth()/2), i, (getWidth()-i)};
int y[] = {10, (getHeight()-i), (getHeight()-i)};
g.setColor(0x000000);
g.drawPolygon(x, y);
g.setColor(0xFFFF99);
g.fillRect(10, 10, 70, 70);
//XOR 모드로 설정
g.setXORMode(true);
g.setColor(0xFF0066);
g.fillRect(30, 30, 80, 90);
}
}