Alienus Non diutius

고정 헤더 영역

글 제목

메뉴 레이어

Alienus Non diutius

메뉴 리스트

  • 홈
  • 태그
  • 미디어로그
  • 위치로그
  • 분류 전체보기 (403)
    • Programming (87)
      • asp.net (11)
      • javascript (24)
      • ms-sql (10)
      • php (11)
      • CodeIgniter (8)
      • mysql (2)
      • html (7)
      • etc (11)
      • language history (0)
    • Review (16)
    • hobby (14)
    • 청강컴정 (210)
      • 교육학개론 (6)
      • 중기청창업경진대회 (3)
      • 09소프트웨어공학기말 (6)
      • Embedded (1)
      • 09DataBase중간고사 (27)
      • 09DataBase기말고사 (16)
      • MFC (13)
      • 시스템프로그래밍 (35)
      • 소프트웨어공학 (21)
      • JAVA (6)
      • C# (8)
      • C++ (7)
      • C (1)
      • Board (2)
      • .NET (13)
      • DataBase (34)
      • 기타 (10)
    • smartPhone (18)
      • Android (13)
      • T옴니아 (1)
      • 뉴스&정보 (3)
    • IDEA (51)
      • 미래를꿈꾸는사람들 (6)
      • Social (0)
      • 스크랩자료 (7)
      • 요리 (1)
      • 경제 (2)
      • PenPalOn (5)
      • BookPalOn (2)
      • CKMC (11)

검색 레이어

Alienus Non diutius

검색 영역

컨텐츠 검색

Jlet

  • Font클래스

    2009.05.04 by luckey

  • TickerComponent

    2009.04.06 by luckey

  • DateFieldComponent

    2009.04.06 by luckey

  • DialogComponent

    2009.04.06 by luckey

  • Display, Card 복습

    2009.03.16 by luckey

  • 코드작성법 - 나름정리

    2009.03.09 by luckey

  • Jlet 기본코드 설명

    2009.03.09 by luckey

  • HelloJlet.java

    2009.03.02 by luckey

Font클래스

import org.kwis.msp.lcdui.*; import org.kwis.msp.lwc.*; public class fontTest extends Jlet { ShellComponent shell = new ShellComponent(); FontComponent font = new FontComponent(); protected void startApp(String[] args) { shell.addComponent(font); shell.show(); } protected void pauseApp(){} protected void resumeApp(){} protected void destroyApp(boolean b){} } //Component를 상속받는다. class FontCompone..

청강컴정/소프트웨어공학 2009. 5. 4. 09:36

TickerComponent

import org.kwis.msp.lcdui.*; import org.kwis.msp.lwc.*; import org.kwis.msp.handset.BackLight; public class exam_090406 extends Jlet implements ActionListener { ShellComponent shell = new ShellComponent(); FormComponent form = new FormComponent(); ButtonComponent button1 = new ButtonComponent("시작", null); ButtonComponent button2 = new ButtonComponent("정지", null); TickerComponent ticker = new Tic..

청강컴정/소프트웨어공학 2009. 4. 6. 12:21

DateFieldComponent

MODE_TIME, MODE_DATE, MODE_TIME_DATE import org.kwis.msp.lcdui.*; import org.kwis.msp.lwc.*; public class DataEx extends Jlet implements ActionListener { ShellComponent shell = new ShellComponent(); FormComponent form = new FormComponent(); ButtonComponent button = new ButtonComponent("모드 바꾸기", null); LabelComponent label = new LabelComponent("날짜출력"); DateFieldComponent date = new DateFieldCompo..

청강컴정/소프트웨어공학 2009. 4. 6. 12:02

DialogComponent

Dialog생성 DialogComponent dialog1 = new DialogComponent(label1, "문자메시지1", DialogComponent.TYPE_NONE); DialogComponent dialog2 = new DialogComponent(label2, "문자메시지2", DialogComponent.TYPE_OK, 10,10,100,100); dialog1.doModal(); //화면에 다이알로그를 띄운다. ActionListener를 상속받아 사용하고 abstrict method인 action method를 반드시 사용한다. ----Source---------------------------------------------------------------------------- ..

청강컴정/소프트웨어공학 2009. 4. 6. 11:01

Display, Card 복습

Display(액자) + Card(종이) -> LCD 화면 출력 Display 객체는 new 연산자를 이용하여 객체를 생성하지 않는다. Display dis = Display.getDefaultDisplay() Display dis = Display.getDisplay() 와 같은 형태로 선언할 수 있다. Card객체는 생성자를 이용하여 생성한다. Card tcard = new Card() 를 이용하여 생성한다. 만들어진 Card 객체를 Display에 뿌린다. dis.pushCard = (tCard) 와 같이 pushCard를 이용하여 준비된 tCard를 Display 객체에 넣어준다.

청강컴정/소프트웨어공학 2009. 3. 16. 09:36

코드작성법 - 나름정리

1. import 생성 2. 메인클래스 선언(반드시 Jlet을 상속받아야 한다.) 3. Jlet에 있는 abstrict Method를 선언한다. 3-1. startApp(String args[]), destroyApp(boolean b) 3-2. pauseApp(), resumeApp() 4. Display Class 객체변수 선언 5. Card Class 객체변수 선언 5-1. Card Class는 반드시 다른이름으로 선언한후 Card Class를 extend(상속) 받는다. 6. Card Class 선언(실제 카드를 만든다. 해야할일 지정) 6-1. Card Class는 반드시 extend 받게끔 작업을하고 5-1에서 선언한 이름을 사용한다. 6-2. Card Class는 abstrict Class이..

청강컴정/소프트웨어공학 2009. 3. 9. 12:39

Jlet 기본코드 설명

import org.kwis.msp.lcdui.*; public class HelloJlet extends Jlet { //Display 클래스 객체변수 display 선언 protected Display display; //TestCare 클래스 객체변수 testCard 선언 //하단에 선언한 TestCard는 Card를 상속받는다. protected TestCard testCard; protected TCard tCard; //상속받은 Jlet에 있는 추상 메소드 프로그램 시작점 //Jlet의 추상메소드중 하나인 startApp Method를 재정의한다. protected void startApp(String args[]) { //Display는 이미 생성이 되어 있기 때문에 new 생성자가 필요없다..

청강컴정/소프트웨어공학 2009. 3. 9. 12:37

HelloJlet.java

설치가 제대로 되었는지 실행은 되는지 샘플코드를 실행해서 확인해보도록 한다. Java의 파일명은 항상 public 이 있는 메인 클래스 이름과 동일하도록 한다. import org.kwis.msp.lcdui.*; public class HelloJlet extends Jlet { protected Display display; protected TestCard testCard; protected void startApp(String args[]) { display = Display.getDefaultDisplay(); testCard = new TestCard(); display.pushCard(testCard); } protected void pauseApp(){} protected void resum..

청강컴정/소프트웨어공학 2009. 3. 2. 11:39

추가 정보

인기글

최신글

페이징

이전
1 2
다음
TISTORY
Alienus Non diutius © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바