Qooxdoo 로 클레스 만들기.
// 클레스 - 기본상속 (qx.core.Object)
qx.Class.define("projectName.path.fileName" {
statics:{},
construct:function() { /* 생성자 */ this.base(arguments); },
events:{},
properties:{},
members:{},
destruct:function() { /*파괴자*/ }
});
// qx.core.Object 상속
qx.Class.define("projectName.path.fileName" {
extend:qx.core.Object,
statics:{},
construct:function() { /* 생성자 */ this.base(arguments); },
events:{},
properties:{},
members:{},
destruct:function() { /*파괴자*/ }
});
// 싱글톤
qx.Class.define("projectName.path.fileName" {
type:"Singleton",
statics:{},
construct:function() { /* 생성자 */ this.base(arguments); },
events:{},
properties:{},
members:{},
destruct:function() { /*파괴자*/ }
});
// 싱글톤
qx.Class.define("projectName.path.fileName" {
type:"Singleton",
statics:{},
construct:function() { /* 생성자 */ this.base(arguments); },
events:{},
properties:{},
members:{},
destruct:function() { /*파괴자*/ }
});
'Dev > Qooxdoo' 카테고리의 다른 글
랩핑했어요. pureMVC-for-Qooxdoo (0) | 2015.03.03 |
---|---|
qooxdoo로 만든 socket class (0) | 2015.03.03 |
1. qooxdoo Project 만들기 (0) | 2012.07.27 |
JQuery Animation을 통해서 Qooxdoo 프로퍼티로 애니메이션 구현 예제 (0) | 2012.07.09 |
Qooxdoo를 이용한 객체 생성 및 해제 예제 (0) | 2012.07.09 |
appearances, decorations 추가 하기 (예-버튼) (0) | 2012.05.30 |
이미지 미리받아놓기 (0) | 2012.05.23 |
다국어 지원 (0) | 2012.05.18 |
해제 관련 (0) | 2012.05.09 |
qooxdoo 오른쪽 버튼 활성화 (0) | 2012.05.09 |