Controller_Type_ Parent_Template C_T_P_T Fetcher C_T_P_T UIPackage 1.2 Function Library class Controller_Type_Parent_Base getargs mixed getargs(

Size: px
Start display at page:

Download "Controller_Type_ Parent_Template C_T_P_T Fetcher C_T_P_T UIPackage 1.2 Function Library class Controller_Type_Parent_Base getargs mixed getargs("

Transcription

1 1 SDK Class 1.1 상속관계 Is-a 관계 Controller_Type_ Parent_Base Controller_Type_ Rest Controller_Type_ Parent_Template Controller_ Api Controller_Type_ View Controller_Type_ Xans Controller_ Admin Controller_Type_ Exec Controller_ Front Controller_ AdminExec Controller_ FrontExec Has-a 관계 ApplicationInterface Request ApplicationInterface Response Service Controller_Type_ Parent_Base Storage RedisSdk Language Upload 1

2 Controller_Type_ Parent_Template C_T_P_T Fetcher C_T_P_T UIPackage 1.2 Function Library class Controller_Type_Parent_Base getargs mixed getargs( $sname ) URL 매개변수값을반환합니다. string $sname 반환할매개변수의값의키를입력합니다. [ URL ] $ino = $this->getargs('no'); $ino -> 3 setstatuscode object setstatuscode( $istatuscode ) 현재페이지의상태값을설정합니다. integer $istatuscode 설정할상태값을입력합니다. $this->setstatuscode(200); StatusCode -> 200 getstatuscode 2

3 int getstatuscode() 현재페이지의상태값을인트형으로반환합니다. $istatuscode = $this->getstatuscode(); $istatuscode -> 200 setmessage object setmessage( $smessage ) HTTP 메시지를설정합니다. string $smessage 설정할 HTTP 메시지를입력합니다. $this->setmessage('interface Error!'); Message -> Interface Error! getmessage string getmessage() HTTP 메시지를가져옵니다. $this->setmessage('ok.'); $smessage = $this->getmessage(); $smessage -> 'Ok.' getinterface string getinterface() 현재페이지의 Interface 를반환합니다. $sinterface = $this->getinterface(); $sinterface -> 'Index' 3

4 getlangcode string getlangcode() 현재페이지의 Language Code 를반환합니다. $slangcode = $this->getlangcode(); $slangcode -> 'ko' class Controller_Type_Rest get get( $args ) Rest Api 의 GET Method array $args URL 매개변수 post post( $args ) Rest Api 의 POST Method array $args URL 매개변수 put put( $args ) Rest Api 의 PUT Method array $args URL 매개변수 delete 4

5 delete( $args ) Rest Api 의 DELETe Method array $args URL 매개변수 class Controller_Type_Parent_Template assign object assign( $sassign, $mdata ) php 데이터를뷰로 fetch 합니다. string $sassign 설정할키를입력합니다. mixed $mdata fetch 할데이터를입력합니다. [ tpl ] <div><?php echo $title?></div> $this->assign( 'title', 'Assign Func' ); Output -> 'Assign Func' writejs object writejs( $scontent ) JavaScript 를 php 에서직접사용합니다. string $scontent 사용할 JavaScript를문자열로입력합니다. $this->writejs( 'alert("sdk writejs")' ); JS -> alert('sdk writejs'); writecss object writecss( $scontent ) CSS 를 php 에서직접사용합니다. 5

6 string $scontent 사용할 CSS를문자열로입력합니다. $this->writecss( '#SDK{ color : blue; }' ); CSS -> #SDK{ color : blue; }; importjs object importjs ( $sfile, $afetchdata=false, $sappendtype='main', $spath=sdk_dir_app_resource_js ) resource/js 경로의 js 파일을 import 합니다. string $sfile import 하고자하는 resource/js 경로에위치한 js 파일의이름을입력합니다. array $afetchdata js 파일에서사용할 php 데이터를 key, value 의배열로입력합니다. string $sappendtype append type을구분합니다. ( before main after ) String $spath 기본경로를설정합니다. $this->importjs('sample1'); resource/js/sample1.js import [ js/sample2.js ] var sdata = <?php echo $key?> [ js ] $this->importjs('sample2', array( 'key'=>'value'), 'main' ); resource/js/sample2.js import, fetchdata use sdata -> 'value' importcss object importcss( $sfile, $sappendtype='main', $spath=sdk_dir_app_resource_css ) resource/css 경로의 css 파일을 import 합니다. string $sfile import 하고자하는 resource/css 경로에위치한 css 파일의이름을입력합니다. string $sappendtype append type을구분합니다. ( before main after ) String $spath 6

7 기본경로를설정합니다. $this->importcss('sample'); resource/js/sample.css import externaljs object externaljs( $surl, $sappendtype='main', $scharset='utf-8' ) 외부 URL의 js파일을 import 합니다. string $sfile import 하고자하는 js URL을입력합니다. string $sappendtype append type을구분합니다. ( before main after ) String $scharset Content Character Set을입력합니다. $this->externaljs(' ' import $this->externaljs(' ' import externalcss object externalcss( $surl, $sappendtype='main', $scharset='utf-8' ) 외부 URL의 js파일을 import 합니다. string $sfile import 하고자하는 CSS URL을입력합니다. string $sappendtype append type을구분합니다. ( before main after ) String $scharset Content Character Set을입력합니다. $this->externalcss(' ' import 7

8 setlocation object setlocation( $slocation ) 현재페이지를설정한 Location으로 redirect 합니다. string $slocation redirect 할 Location URL을입력합니다. $this->setlocation(' redirect -> ' $this->setlocation('index'); redirect -> ' 앱아이디.app-sdk-xxx.cafe24.com/ 현재컨트롤러 /index' getlocation string getlocation() 설정한 Location 을가져옵니다. $this->setlocation(' $slocation = $this->getlocation(); $slocation -> ' class Controller_Type_Parent_Template UIPackage setdriver object setdriver( $sdriver=self::driver_default ) UIPackage Driver 를설정합니다. string $sdriver 설정할 Driver를입력합니다. ( 현재 JQUERY 만지원합니다.) $this->uipackage->setdirver('user_driver'); UI Driver -> 'User_Driver' 8

9 getdiver string getdriver() 설정한 Driver를가져옵니다. $sdriver = $this->uipackage->getdriver(); $sdriver -> 'Jquery addplugin object addplugin( $splugin ) UIPackage 플러그인을추가합니다. string $splugin 추가할플러그인을입력합니다. Available Popup, DragDrop, Calendar, ColorPicker, Tooltip, Treeview, Paging, NumberFormat, Flash, DateUtil, Effect, Accordian, Tab, Dialog, Slider, Sortable, Selectable, Resizable, Autocomplete, DatePicker, $this->uipackage->addplugin('popup'); Popup 플러그인추가 getplugin array getplugin() 추가한플러그인배열로반환합니다. $this->uipackage->addplugin('calendar'); $aplugin = $this->uipackage->getplugin(); $aplugin-> array( 'Calendar'=>'Calendar' ) 9

10 removeplugin object removeplugin( $splugin ) 추가한플러그인을삭제합니다. string $splugin 삭제할 Plugin을입력합니다. $this->uipackage->addplugin('popup'); $this->uipackage->removeplugin('popup'); $aplugin = $this->uipackage->getplugin(); $aplugin -> array() removeall object removeall() 추가한플러그인을전부삭제합니다. $this->uipackage->addplugin('slider'); $this->uipackage->addplugin('tab'); $this->uipackage->removeall(); Plugin -> null class Controller_Type_View setlayout object setlayout( $sfile ) Layout을설정합니다. string $sfile 설정하고자하는 resource/layout/ 위치의 tpl파일의이름을입력합니다. $this->setlayout('default'); resource/layout/default.tpl layout setting 10

11 view boolean view( $sfile=null, $slayout=false, $afetchdata=array() ) 해당 tpl을화면에출력합니다. string $sfile 설정하고자하는 resource/layout/ 위치의 tpl파일의이름을입력합니다. string $slayout 설정한 Layout에서사용하는 Key를입력합니다. setlayout 함수와사용할때적용됩니다. array $afetchdata tpl 파일에서사용할 php 데이터를 key, value 의배열로입력합니다. $this->view('index'); resource/tpl/index.tpl view setting class adminregister $this->view(); resource/tpl/register.tpl view setting [ layout/default.tpl ] <?php echo $menu;?> [ layout ] [ tpl/headermenu.tpl ] <ul> <li>menu1</li> <li>menu2</li> <li>menu3</li> </ul> [ tpl ] $this->setlayout('default'); $this->view('headermenu', 'menu'); default.tpl layout setting, layout assign key->'menu', value->headermenu.tpl [ tpl/index.tpl ] <p> <?php echo $title?> </p> [ tpl ] $this->view('index', false, array('title'=>'view Function') ); index.tpl view setting, fetchdata use 11

12 1.2.6 class Controller_Type_Xans isloop boolean isloop() Front 스마트디자인에반복문을검사합니다. [ SDE demo.html ] <ul module="appid_action"> <li>{$sample}</li> <li>{$sample}</li> <li>{$sample}</li> </ul> [ SDE ] $bloop = $this->isloop(); $bloop -> true getloop integer getloop() Front 스마트디자인에반복문의개수를반환합니다. [ SDE demo.html ] <ul module="appid_action"> <li>{$sample}</li> <li>{$sample}</li> <li>{$sample}</li> </ul> [ SDE ] $iloopcount = $this->getloop(); $iloopcount -> 3 getsequence integer getsequence() Front 스마트디자인에모듈 Seq를반환합니다. [ SDE demo.html ] <div module="appid_action_7"> {$sample} </div> 12

13 [ SDE ] $isequence = $this->getsequence(); $isequence -> 7 getoption mixed getoption( $sname=null ) Front 스마트디자인에주석옵션을반환합니다. [ SDE demo.html ] <div module="appid_action"> <!-- $count = 5 $title = Option Func --> {$sample} </div> [ SDE ] $icount = $this->getoption('count'); $aoption = $this->getoption(); $icount -> '5', $aoption -> array( 'count' => '5', 'title' => 'Option Func' ) loopfetch object loopfetch( $aloopdata=array() ) Front 스마트디자인에반복데이터 ( 2차원배열 ) 을 fetch 합니다. array $sloopdata fetch 할데이터를 2차원배열형태로입력합니다. [ SDE demo.html ] <table> <tbody module="appid_action"> <tr> <td>{$no}</td> <td>{$title}</td> <td>{$name}</td> </tr> <tr> <td>{$no}</td> <td>{$title}</td> <td>{$name}</td> 13

14 </tr> <tr> <td>{$no}</td> <td>{$title}</td> <td>{$name}</td> </tr> </tbody> </table> [ SDE ] $aloopdata = array( array ( 'no'=>'1', 'title'=>'title1', 'name'=>'name1'), array ( 'no'=>'2', 'title'=>'title2', 'name'=>'name2'), array ( 'no'=>'3', 'title'=>'title3', 'name'=>'name3'), array ( 'no'=>'4', 'title'=>'title4', 'name'=>'name4') ); $this->loopfetch( $aloopdata ); Output -> 1 Title1 Name1 2 Title2 Name2 3 Title3 Name3 4 Title4 Name class ApplicationInterfaceRequest gethttpserverenv mixed gethttpserverenv( $sname=null ) Server 환경을배열형태로반환합니다. string $sname 반환받을 Server 환경의항목을입력합니다. null 입력시서버환경전부를반환합니다. Available 'QUERY_STRING', 'UNIQUE_ID', 'HTTP_HOST', 'HTTP_REFERER', 'HTTP_USER_AGENT', 'REQUEST_URI', 'REQUEST_TIME', 'SCRIPT_URL', 'SCRIPT_URI', 'SERVER_NAME', 'SERVER_ADDR', 'SERVER_PORT', 'REMOTE_ADDR', 'REMOTE_HOST', 'REMOTE_PORT' $aserver = $this->request->gethttpserverenv(); $sserver_port = $this->request->gethttpserverenv( 'SERVER_PORT' ); $aserver -> array ( 'QUERY_STRING' => '_INTERFACE_TYPE=admin&_INTERFACE_CLASS=index', 'UNIQUE_ID' => 'UPrt1X8WWEEATCEvEpMAWDW0' 'REMOTE_PORT' => '54496' ) $sserver_port -> '80' 14

15 getsession mixed getsession( ) 세션을반환합니다. $_SESSION['title'] = 'getsession Func'; ( Save session ) $asession = $this->request->getsession(); $asession -> array ( 'title' => 'getsession Func' ) gettimezone string gettimezone() TimeZone을반환합니다. $stimezone = $this->request->gettimezone(); $stimezone -> Asia/Seoul getmethod string getmethod() Method를반환합니다. $smethod = $this->request->getmethod(); $smethod -> GET getappid string getappid() 앱아이디를반환합니다. $aappid = $this->request->getappid(); $aappid -> 해당앱의앱아이디 getargs array getargs() Argument 배열을반환합니다. 15

16 [ URL ] $aargument = $this->request->getargs(); $aargument -> array( 'No' => '1', 'Title' => 'getargsfunc' ) getlang array getlang() Language를반환합니다. $slang = $this->request->getargs(); $slang -> 'ko' getservice ApplicationInterfaceRequest Service_Parent getservice() ApplicationInterfaceRequest Service_Parent 객체를반환합니다. $oservice = $this->request->getservice(); $oservice -> array( "ServiceUserSeq":protected => '3', "ServiceUserID":protected => 'guest', "ServiceType":protected => 'ec19' ); gettype ApplicationInterfaceRequest Type_Parent gettype() ApplicationInterfaceRequest Type_Parent 객체를반환합니다. $otype = $this->request->gettype(); $otype -> array( "Request":protected => object(applicationinterfacerequest)( ){ }, "sclasstype":protected => 'admin', "sclassname":protected => 'index' ); isverify boolean isverify() 앱의 verify 유무를검사합니다. $bverify = $this->request->isverify(); $bverify -> false true 16

17 getdomain string getdomain() 현재도메인을반환합니다. $sdomain = $this->request->getdomain(); $sdomain -> 도메인이름 class Service api mixed Api( $suri, $a=array() ) Api를호출합니다. string $suri 호출하고자하는 Api의 URI를입력합니다. array $a Api에맞는파라미터를입력합니다. $ashopcategorydata = $this->service->api('sdk/category'); $ashopcategorydata -> Shopping Mall Data $aproductdata = $this->service->api('sdk/categoryproduct', array('category_no'=>3) ); $aproductdata -> Product Data by Category_No 3 islogin boolean islogin() 로그인유무를검사합니다. Logged in as 'Guest1234' $blogin = $this->service->islogin(); $blogin -> true 17

18 getuserid mixed getuserid() 로그인되어있는 User ID를반환합니다. Logged in as 'Guest1234' $suserid = $this->service->getuserid(); $suserid -> 'Guest1234' getcategoryurl mixed getcategoryurl($scategoryno, $sdomain=null) 서비스카테고리 URL을반환합니다. string $scategoryno 서비스카테고리번호 String $sdomain 지정된도메인. 값이지정되지않을경우 ID.cafe24.com 으로처리 $scategoryurl = $this->service->getcategoryurl('5'); $scategoryurl -> //devsdk01.cafe24.com/product/list.html?cate_no=5 $scategoryurl = $this->service->getcategoryurl('5', aaa.com ); $scategoryurl -> //aaa.com/product/list.html?cate_no=5 getproducturl mixed getproducturl($sproductno, $sdomain=null) 서비스상품상세 URL을반환합니다. string $sproductno 서비스상품번호 String $sdomain 지정된도메인. 값이지정되지않을경우 ID.cafe24.com 으로처리 $sproducturl = $this->service->getproducturl('7'); $sproducturl -> //devsdk01.cafe24.com/product/detail.html?product_no=7 $sproducturl = $this->service->getproducturl('7', aaa.com ); $sproducturl -> //aaa.com/product/detail.html?product_no=7 18

19 getuserseq mixed getuserseq() 로그인되어있는 User Seq를반환합니다. Logged in as 'Guest1234' $iuserseq = $this->service->getuserseq(); $iuserseq -> '24' class Upload isupload boolean isupload() 파일업로드의유무를검사합니다. uploaded file name 'file_5' $bupload = $this->upload->isupload(); $bupload -> true uploadedfile mixed uploadedfile( $sfilename ) 업로드된파일데이터를반환합니다. string $sname 업로드파일데이터를얻을파일이름을입력합니다. uploaded file name 'file_5' $afile = $this->upload->uploadedfile('file_5'); $afile -> Data by 'file_5' 19

20 uploadedfiles mixed uploadedfiles( $sname=null ) 업로드된파일데이터를전부를반환합니다. string $sname 하나의업로드파일데이터를얻을때파일이름을입력합니다. null 입력시업로드된파일데이터전부를반환합니다. uploaded file name 'file_5' $afile = $this->upload->uploadedfiles(); $afile -> Data by 'file_5' removeuploadedfiles boolean removeuploadedfiles() 업로드된파일데이터를삭제합니다. uploaded file name 'file_5' $this->upload->removeuploadedfiles(); uploadedfiles removed removeuploadedall boolean removeuploadedall() 업로드된모든것을삭제합니다. $this->upload->removeuploadedall(); Upload everything removed 20

21 moveuploadedfile mixed moveuploadedfile( $stmpname, $spath, $sname ) 업로드된파일을 Storage에이동 ( 생성 ) 합니다. string $stmpname 업로드된파일의 TmpName을입력합니다. string $spath Storage에생성할경로를입력합니다. string $sname Storage에생성할파일이름을입력합니다. uploaded file name 'file_5' $afile = $this->upload->uploadedfiles(); $auploadedfile = $afile['file_5']; $this->upload->moveuploadedfile( $auploadedfile['tmpname'], 'myfile/', 'newfile.txt' ); storage/myfile/newfile.txt has been created Info jpg,jpeg,gif,png,bmp,tif,raw,psd,pdd,pdf,swi,swf,fla,ai,flv,avi,asf,wav,wmv,wma,mid,mp3,m p4,mpeg,xls,xlsx,csv 스토리지에는위에표시된확장자의파일만사용할수있습니다 class Storage Storage 클래스는 php Storage 연관함수를제공합니다. Available Function file, file_exists, file_get_contents, file_put_contents, fileatime, filectime, filemtime, filesize, filetype, getimagesize, is_dir, is_file, mkdir, rmdir, scandir, stat, tmpfile, unlink $this->storage->function( $param1, $param2 ); Reference jpg,jpeg,gif,png,bmp,tif,raw,psd,pdd,pdf,swi,swf,fla,ai,flv,avi,asf,wav,wmv,wma,mid,mp3,m p4,mpe,xls,xlsx,csv 스토리지에는표시된확장자의파일만사용할수있습니다. 21

22 class RedisSdk RedisSdk 클래스는 Redis Commands를제공합니다. Available Function SET, GET, INCR, DEL, RPUSH, LRANGE, LINDEX, LSET, LLEN, LREM more function exist $this->redis->function( $param1, $param2 ); Reference 22

23 23

1 개요 1.1 Cafe24 Application SDK 란? Cafe24 Application( 이하, Application) 은 Cafe24 Application Store 시스템에서실행하는 PHP로작성된어플리케이션으로써, EC호스팅, 빌더호스팅등서비스호스팅을통해설

1 개요 1.1 Cafe24 Application SDK 란? Cafe24 Application( 이하, Application) 은 Cafe24 Application Store 시스템에서실행하는 PHP로작성된어플리케이션으로써, EC호스팅, 빌더호스팅등서비스호스팅을통해설 1 개요 1.1 Cafe24 Application SDK 란? Cafe24 Application( 이하, Application) 은 Cafe24 Application Store 시스템에서실행하는 PHP로작성된어플리케이션으로써, EC호스팅, 빌더호스팅등서비스호스팅을통해설치되며, 서비스호스팅을통해요청된어플리케이션이 Cafe24 Application Runtime

More information

C 스토어 SDK Document 작성년월일 : 작성자및소속팀 : 정현 / SDK 개발팀

C 스토어 SDK Document 작성년월일 : 작성자및소속팀 : 정현 / SDK 개발팀 C 스토어 SDK Document 작성년월일 : 2013.10.18 작성자및소속팀 : 정현 / SDK 개발팀 목차 1 개요... 4 1.1 CAFE24 APPLICATION SDK 란?... 4 1.2 약어및용어정리... 4 2 시스템구조... 4 2.1 SDK 구조... 4 2.2 APPLICATION 구조... 5 3 개발가이드... 6 3.1 개발흐름...

More information

Eclipse 와 Firefox 를이용한 Javascript 개발 발표자 : 문경대 11 년 10 월 26 일수요일

Eclipse 와 Firefox 를이용한 Javascript 개발 발표자 : 문경대 11 년 10 월 26 일수요일 Eclipse 와 Firefox 를이용한 Javascript 개발 발표자 : 문경대 Introduce Me!!! Job Jeju National University Student Ubuntu Korean Jeju Community Owner E-Mail: ned3y2k@hanmail.net Blog: http://ned3y2k.wo.tc Facebook: http://www.facebook.com/gyeongdae

More information

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 2012.11.23 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Document Distribution Copy Number Name(Role, Title) Date

More information

2파트-07

2파트-07 CHAPTER 07 Ajax ( ) (Silverlight) Ajax RIA(Rich Internet Application) Firefox 4 Ajax MVC Ajax ActionResult Ajax jquery Ajax HTML (Partial View) 7 3 GetOrganized Ajax GetOrganized Ajax HTTP POST 154 CHAPTER

More information

rmi_박준용_final.PDF

rmi_박준용_final.PDF (RMI) - JSTORM http://wwwjstormpekr (RMI)- Document title: Document file name: Revision number: Issued by: Document Information (RMI)- rmi finaldoc Issue Date: Status:

More information

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios

More information

Microsoft PowerPoint - web-part03-ch19-node.js기본.pptx

Microsoft PowerPoint - web-part03-ch19-node.js기본.pptx 과목명: 웹프로그래밍응용 교재: 모던웹을 위한 JavaScript Jquery 입문, 한빛미디어 Part3. Ajax Ch19. node.js 기본 2014년 1학기 Professor Seung-Hoon Choi 19 node.js 기본 이 책에서는 서버 구현 시 node.js 를 사용함 자바스크립트로 서버를 개발 다른서버구현기술 ASP.NET, ASP.NET

More information

SK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M

More information

Week13

Week13 Week 13 Social Data Mining 02 Joonhwan Lee human-computer interaction + design lab. Crawling Twitter Data OAuth Crawling Data using OpenAPI Advanced Web Crawling 1. Crawling Twitter Data Twitter API API

More information

Mobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V

Mobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V Mobile Service > IAP > Android SDK IAP SDK TOAST SDK. IAP SDK. Android Studio IDE 2.3.3 Android SDK Version 2.3.3 (API Level 10). Name Reference Version License okhttp http://square.github.io/okhttp/ 1.5.4

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

PowerPoint Presentation

PowerPoint Presentation 객체지향프로그래밍 클래스, 객체, 메소드 ( 실습 ) 손시운 ssw5176@kangwon.ac.kr 예제 1. 필드만있는클래스 텔레비젼 2 예제 1. 필드만있는클래스 3 예제 2. 여러개의객체생성하기 4 5 예제 3. 메소드가추가된클래스 public class Television { int channel; // 채널번호 int volume; // 볼륨 boolean

More information

Java Agent Plugin Guide

Java Agent Plugin Guide Java Agent Plugin Guide Whatap Support Version 1.0.2 Table of Contents Java Agent Plugin 가이드..................................................................................... 1 1. 에이전트옵션..........................................................................................

More information

C# Programming Guide - Types

C# Programming Guide - Types C# Programming Guide - Types 최도경 lifeisforu@wemade.com 이문서는 MSDN 의 Types 를요약하고보충한것입니다. http://msdn.microsoft.com/enus/library/ms173104(v=vs.100).aspx Types, Variables, and Values C# 은 type 에민감한언어이다. 모든

More information

ibmdw_rest_v1.0.ppt

ibmdw_rest_v1.0.ppt REST in Enterprise 박찬욱 1-1- MISSING PIECE OF ENTERPRISE Table of Contents 1. 2. REST 3. REST 4. REST 5. 2-2 - Wise chanwook.tistory.com / cwpark@itwise.co.kr / chanwook.god@gmail.com ARM WOA S&C AP ENI

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

Facebook API

Facebook API Facebook API 2조 20071069 임덕규 20070452 류호건 20071299 최석주 20100167 김민영 목차 Facebook API 설명 Android App 생성 Facebook developers App 등록 Android App Facebook SDK 추가 예제 Error 사항정리 Facebook API Social Plugin Facebook

More information

게시판 스팸 실시간 차단 시스템

게시판 스팸 실시간 차단 시스템 오픈 API 2014. 11-1 - 목 차 1. 스팸지수측정요청프로토콜 3 1.1 스팸지수측정요청프로토콜개요 3 1.2 스팸지수측정요청방법 3 2. 게시판스팸차단도구오픈 API 활용 5 2.1 PHP 5 2.1.1 차단도구오픈 API 적용방법 5 2.1.2 차단도구오픈 API 스팸지수측정요청 5 2.1.3 차단도구오픈 API 스팸지수측정결과값 5 2.2 JSP

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

Interstage5 SOAP서비스 설정 가이드

Interstage5 SOAP서비스 설정 가이드 Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 @ Lesson 2... ( ). ( ). @ vs. logic data method variable behavior attribute method field Flow (Type), ( ) member @ () : C program Method A ( ) Method B ( ) Method C () program : Java, C++, C# data @ Program

More information

chap 5: Trees

chap 5: Trees 5. Threaded Binary Tree 기본개념 n 개의노드를갖는이진트리에는 2n 개의링크가존재 2n 개의링크중에 n + 1 개의링크값은 null Null 링크를다른노드에대한포인터로대체 Threads Thread 의이용 ptr left_child = NULL 일경우, ptr left_child 를 ptr 의 inorder predecessor 를가리키도록변경

More information

PowerPoint Template

PowerPoint Template JavaScript 회원정보 입력양식만들기 HTML & JavaScript Contents 1. Form 객체 2. 일반적인입력양식 3. 선택입력양식 4. 회원정보입력양식만들기 2 Form 객체 Form 객체 입력양식의틀이되는 태그에접근할수있도록지원 Document 객체의하위에위치 속성들은모두 태그의속성들의정보에관련된것

More information

- 목차 - - ios 개발환경및유의사항. - 플랫폼 ios Project. - Native Controller와플랫폼화면연동. - 플랫폼 Web(js)-Native 간데이터공유. - 플랫폼확장 WN Interface 함수개발. - Network Manager clas

- 목차 - - ios 개발환경및유의사항. - 플랫폼 ios Project. - Native Controller와플랫폼화면연동. - 플랫폼 Web(js)-Native 간데이터공유. - 플랫폼확장 WN Interface 함수개발. - Network Manager clas 플랫폼사용을위한 ios Native Guide - 목차 - - ios 개발환경및유의사항. - 플랫폼 ios Project. - Native Controller와플랫폼화면연동. - 플랫폼 Web(js)-Native 간데이터공유. - 플랫폼확장 WN Interface 함수개발. - Network Manager class 개발. - Native Controller에서

More information

3장

3장 C H A P T E R 03 CHAPTER 03 03-01 03-01-01 Win m1 f1 e4 e5 e6 o8 Mac m1 f1 s1.2 o8 Linux m1 f1 k3 o8 AJAX

More information

Microsoft PowerPoint 세션.ppt

Microsoft PowerPoint 세션.ppt 웹프로그래밍 () 2006 년봄학기 문양세강원대학교컴퓨터과학과 세션변수 (Session Variable) (1/2) 쇼핑몰장바구니 장바구니에서는사용자가페이지를이동하더라도장바구니의구매물품리스트의내용을유지하고있어야함 PHP 에서사용하는일반적인변수는스크립트의수행이끝나면모두없어지기때문에페이지이동시변수의값을유지할수없음 이러한문제점을해결하기위해서 PHP 에서는세션 (session)

More information

제8장 자바 GUI 프로그래밍 II

제8장 자바 GUI 프로그래밍 II 제8장 MVC Model 8.1 MVC 모델 (1/7) MVC (Model, View, Controller) 모델 스윙은 MVC 모델에기초를두고있다. MVC란 Xerox의연구소에서 Smalltalk 언어를바탕으로사용자인터페이스를개발하기위한방법 MVC는 3개의구성요소로구성 Model : 응용프로그램의자료를표현하기위한모델 View : 자료를시각적으로 (GUI 방식으로

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

More information

thesis

thesis ( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype

More information

Modern Javascript

Modern Javascript ES6 - Arrow Function Class Template String Destructuring Default, Rest, Spread let, const for..of Promises Module System Map, Set * Generator * Symbol * * https://babeljs.io/ Babel is a JavaScript compiler.

More information

Ext JS À¥¾ÖÇø®ÄÉÀ̼ǰ³¹ß-³¹Àå.PDF

Ext JS À¥¾ÖÇø®ÄÉÀ̼ǰ³¹ß-³¹Àå.PDF CHAPTER 2 (interaction) Ext JS., HTML, onready, MessageBox get.. Ext JS HTML CSS Ext JS.1. Ext JS. Ext.Msg: : Ext Ext.get: DOM 22 CHAPTER 2 (config). Ext JS.... var test = new TestFunction( 'three', 'fixed',

More information

01-OOPConcepts(2).PDF

01-OOPConcepts(2).PDF Object-Oriented Programming Concepts Tel: 02-824-5768 E-mail: hhcho@selabsoongsilackr? OOP (Object) (Encapsulation) (Message) (Class) (Inheritance) (Polymorphism) (Abstract Class) (Interface) 2 1 + = (Dependency)

More information

Microsoft PowerPoint - 04-UDP Programming.ppt

Microsoft PowerPoint - 04-UDP Programming.ppt Chapter 4. UDP Dongwon Jeong djeong@kunsan.ac.kr http://ist.kunsan.ac.kr/ Dept. of Informatics & Statistics 목차 UDP 1 1 UDP 개념 자바 UDP 프로그램작성 클라이언트와서버모두 DatagramSocket 클래스로생성 상호간통신은 DatagramPacket 클래스를이용하여

More information

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET 135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26

More information

Dialog Box 실행파일을 Web에 포함시키는 방법

Dialog Box 실행파일을 Web에 포함시키는 방법 DialogBox Web 1 Dialog Box Web 1 MFC ActiveX ControlWizard workspace 2 insert, ID 3 class 4 CDialogCtrl Class 5 classwizard OnCreate Create 6 ActiveX OCX 7 html 1 MFC ActiveX ControlWizard workspace New

More information

12-file.key

12-file.key 11 (String).. java.lang.stringbuffer. s String s = "abcd"; s = s + "e"; a b c d e a b c d e ,., "910359,, " "910359" " " " " (token) (token),, (delimiter). java.util.stringtokenizer String s = "910359,,

More information

Javascript.pages

Javascript.pages JQuery jquery part1 JavaScript : e-mail:leseraphina@naver.com http://www.webhard.co.kr I.? 2 ......,,. : : html5 ; ; .

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r Jakarta is a Project of the Apache

More information

07 자바의 다양한 클래스.key

07 자바의 다양한 클래스.key [ 07 ] . java.lang Object, Math, String, StringBuffer Byte, Short, Integer, Long, Float, Double, Boolean, Character. java.util Random, StringTokenizer Calendar, GregorianCalendar, Date. Collection, List,

More information

JAVA 프로그래밍실습 실습 1) 실습목표 - 메소드개념이해하기 - 매개변수이해하기 - 새메소드만들기 - Math 클래스의기존메소드이용하기 ( ) 문제 - 직사각형모양의땅이있다. 이땅의둘레, 면적과대각

JAVA 프로그래밍실습 실습 1) 실습목표 - 메소드개념이해하기 - 매개변수이해하기 - 새메소드만들기 - Math 클래스의기존메소드이용하기 (   ) 문제 - 직사각형모양의땅이있다. 이땅의둘레, 면적과대각 JAVA 프로그래밍실습 실습 1) 실습목표 - 메소드개념이해하기 - 매개변수이해하기 - 새메소드만들기 - Math 클래스의기존메소드이용하기 ( http://java.sun.com/javase/6/docs/api ) 문제 - 직사각형모양의땅이있다. 이땅의둘레, 면적과대각선의길이를계산하는메소드들을작성하라. 직사각형의가로와세로의길이는주어진다. 대각선의길이는 Math클래스의적절한메소드를이용하여구하라.

More information

UNIST_교원 홈페이지 관리자_Manual_V1.0

UNIST_교원 홈페이지 관리자_Manual_V1.0 Manual created by metapresso V 1.0 3Fl, Dongin Bldg, 246-3 Nonhyun-dong, Kangnam-gu, Seoul, Korea, 135-889 Tel: (02)518-7770 / Fax: (02)547-7739 / Mail: contact@metabrain.com / http://www.metabrain.com

More information

JUNIT 실습및발표

JUNIT 실습및발표 JUNIT 실습및발표 JUNIT 접속 www.junit.org DownLoad JUnit JavaDoc API Document 를참조 JUNIT 4.8.1 다운로드 설치파일 (jar 파일 ) 을다운로드 CLASSPATH 를설정 환경변수에서설정 실행할클래스에서 import JUnit 설치하기 테스트실행주석 @Test Test 를실행할 method 앞에붙임 expected

More information

PowerPoint Presentation

PowerPoint Presentation Package Class 1 Heeseung Jo 목차 section 1 패키지개요와패키지의사용 section 2 java.lang 패키지의개요 section 3 Object 클래스 section 4 포장 (Wrapper) 클래스 section 5 문자열의개요 section 6 String 클래스 section 7 StringBuffer 클래스 section

More information

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law),

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), 1, 2, 3, 4, 5, 6 7 8 PSpice EWB,, ,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), ( ),,,, (43) 94 (44)

More information

<4D F736F F F696E74202D20C1A63038C0E520C5ACB7A1BDBABFCD20B0B4C3BC4928B0ADC0C729205BC8A3C8AF20B8F0B5E55D>

<4D F736F F F696E74202D20C1A63038C0E520C5ACB7A1BDBABFCD20B0B4C3BC4928B0ADC0C729205BC8A3C8AF20B8F0B5E55D> Power Java 제 8 장클래스와객체 I 이번장에서학습할내용 클래스와객체 객체의일생직접 메소드클래스를 필드작성해 UML 봅시다. QUIZ 1. 객체는 속성과 동작을가지고있다. 2. 자동차가객체라면클래스는 설계도이다. 먼저앞장에서학습한클래스와객체의개념을복습해봅시다. 클래스의구성 클래스 (class) 는객체의설계도라할수있다. 클래스는필드와메소드로이루어진다.

More information

Tcl의 문법

Tcl의 문법 월, 01/28/2008-20:50 admin 은 상당히 단순하고, 커맨드의 인자를 스페이스(공백)로 단락을 짓고 나열하는 정도입니다. command arg1 arg2 arg3... 한행에 여러개의 커맨드를 나열할때는, 세미콜론( ; )으로 구분을 짓습니다. command arg1 arg2 arg3... ; command arg1 arg2 arg3... 한행이

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Getting Started 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Getting Started 'OZ

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Getting Started (ver 5.1) 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Getting

More information

목차 BUG DEQUEUE 의 WAIT TIME 이 1 초미만인경우, 설정한시간만큼대기하지않는문제가있습니다... 3 BUG [qp-select-pvo] group by 표현식에있는컬럼을참조하는집합연산이존재하지않으면결괏값오류가발생할수있습니다... 4

목차 BUG DEQUEUE 의 WAIT TIME 이 1 초미만인경우, 설정한시간만큼대기하지않는문제가있습니다... 3 BUG [qp-select-pvo] group by 표현식에있는컬럼을참조하는집합연산이존재하지않으면결괏값오류가발생할수있습니다... 4 ALTIBASE HDB 6.5.1.5.10 Patch Notes 목차 BUG-46183 DEQUEUE 의 WAIT TIME 이 1 초미만인경우, 설정한시간만큼대기하지않는문제가있습니다... 3 BUG-46249 [qp-select-pvo] group by 표현식에있는컬럼을참조하는집합연산이존재하지않으면결괏값오류가발생할수있습니다... 4 BUG-46266 [sm]

More information

Contents Activity Define Real s Activity Define Reports UI, and Storyboards Activity Refine System Architecture Activity Defin

Contents Activity Define Real s Activity Define Reports UI, and Storyboards Activity Refine System Architecture Activity Defin OSP Stage 2040 < Design > 그놈! Clone Checker Project Team T4 Date 2016-04-12 Team Information 201411258 강태준 201411265 김서우 201411321 홍유리 Team 4 1 Contents Activity 2041. Define Real s Activity 2042. Define

More information

신림프로그래머_클린코드.key

신림프로그래머_클린코드.key CLEAN CODE 6 11st Front Dev. Team 6 1. 2. 3. checked exception 4. 5. 6. 11 : 2 4 : java (50%), javascript (35%), SQL/PL-SQL (15%) : Spring, ibatis, Oracle, jquery ? , (, ) ( ) 클린코드를 무시한다면 . 6 1. ,,,!

More information

Microsoft PowerPoint - web-part03-ch20-XMLHttpRequest기본.pptx

Microsoft PowerPoint - web-part03-ch20-XMLHttpRequest기본.pptx 과목명 : 웹프로그래밍응용교재 : 모던웹을위한 JavaScript Jquery 입문, 한빛미디어 Part3. Ajax Ch20. XMLHttpRequest 2014년 1학기 Professor Seung-Hoon Choi 20 XMLHttpRequest XMLHttpRequest 객체 자바스크립트로 Ajax를이용할때사용하는객체 간단하게 xhr 이라고도부름 서버

More information

05-class.key

05-class.key 5 : 2 (method) (public) (private) (interface) 5.1 (Method), (public method) (private method) (constructor), 3 4 5.2 (client). (receiver)., System.out.println("Hello"); (client object) (receiver object)

More information

The_IDA_Pro_Book

The_IDA_Pro_Book The IDA Pro Book Hacking Group OVERTIME force (forceteam01@gmail.com) GETTING STARTED WITH IDA IDA New : Go : IDA Previous : IDA File File -> Open Processor type : Loading Segment and Loading Offset x86

More information

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase startup-config Erasing the nvram filesystem will remove all configuration files Continue? [confirm] ( 엔터 ) [OK] Erase

More information

adfasdfasfdasfasfadf

adfasdfasfdasfasfadf C 4.5 Source code Pt.3 ISL / 강한솔 2019-04-10 Index Tree structure Build.h Tree.h St-thresh.h 2 Tree structure *Concpets : Node, Branch, Leaf, Subtree, Attribute, Attribute Value, Class Play, Don't Play.

More information

09-interface.key

09-interface.key 9 Database insert(record r): boolean find(key k): Record 1 Record getkey(): Key * Record Key Database.? Key equals(key y): boolean Database insert(record r): boolean find(key k): Record * Database OK 1

More information

설계란 무엇인가?

설계란 무엇인가? 금오공과대학교 C++ 프로그래밍 jhhwang@kumoh.ac.kr 컴퓨터공학과 황준하 6 강. 함수와배열, 포인터, 참조목차 함수와포인터 주소값의매개변수전달 주소의반환 함수와배열 배열의매개변수전달 함수와참조 참조에의한매개변수전달 참조의반환 프로그래밍연습 1 /15 6 강. 함수와배열, 포인터, 참조함수와포인터 C++ 매개변수전달방법 값에의한전달 : 변수값,

More information

MasoJava4_Dongbin.PDF

MasoJava4_Dongbin.PDF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: MasoJava4_Dongbindoc Revision number: Issued by: < > SI, dbin@handysoftcokr

More information

Spring Boot/JDBC JdbcTemplate/CRUD 예제

Spring Boot/JDBC JdbcTemplate/CRUD 예제 Spring Boot/JDBC JdbcTemplate/CRUD 예제 오라클자바커뮤니티 (ojc.asia, ojcedu.com) Spring Boot, Gradle 과오픈소스인 MariaDB 를이용해서 EMP 테이블을만들고 JdbcTemplate, SimpleJdbcTemplate 을이용하여 CRUD 기능을구현해보자. 마리아 DB 설치는다음 URL 에서확인하자.

More information

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE ALTIBASE HDB 6.3.1.10.1 Patch Notes 목차 BUG-45710 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG-45730 ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG-45760 ROLLUP/CUBE 절을포함하는질의는 SUBQUERY REMOVAL 변환을수행하지않도록수정합니다....

More information

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

Microsoft PowerPoint - HS6000 Full HD Subtitle Generator Module Presentation

Microsoft PowerPoint - HS6000 Full HD Subtitle Generator Module Presentation HS6000 Full HD Subtitle Generator Module High-performance Network DVR Solution Preliminary Product Overview (Without notice, following described technical spec. can be changed) AddPac Technology 2010,

More information

untitled

untitled - -, (insert) (delete) - - (insert) (delete) (top ) - - (insert) (rear) (delete) (front) A A B top A B C top push(a) push(b) push(c) A B top pop() top A B D push(d) top #define MAX_STACK_SIZE 100 int

More information

JAVA PROGRAMMING 실습 08.다형성

JAVA PROGRAMMING 실습 08.다형성 2015 학년도 2 학기 1. 추상메소드 선언은되어있으나코드구현되어있지않은메소드 abstract 키워드사용 메소드타입, 이름, 매개변수리스트만선언 public abstract String getname(); public abstract void setname(string s); 2. 추상클래스 abstract 키워드로선언한클래스 종류 추상메소드를포함하는클래스

More information

유니티 변수-함수.key

유니티 변수-함수.key C# 1 or 16 (Binary or Hex) 1:1 C# C# (Java, Python, Go ) (0101010 ). (Variable) : (Value) (Variable) : (Value) ( ) (Variable) : (Value) ( ) ; (Variable) : (Value) ( ) ; = ; (Variable) : (Value) (Variable)

More information

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

자바GUI실전프로그래밍2_장대원.PDF

자바GUI실전프로그래밍2_장대원.PDF JAVA GUI - 2 JSTORM http://wwwjstormpekr JAVA GUI - 2 Issued by: < > Document Information Document title: JAVA GUI - 2 Document file name: Revision number: Issued by: Issue Date:

More information

MPLAB C18 C

MPLAB C18 C MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C

More information

임베디드시스템설계강의자료 6 system call 2/2 (2014 년도 1 학기 ) 김영진 아주대학교전자공학과

임베디드시스템설계강의자료 6 system call 2/2 (2014 년도 1 학기 ) 김영진 아주대학교전자공학과 임베디드시스템설계강의자료 6 system call 2/2 (2014 년도 1 학기 ) 김영진 아주대학교전자공학과 System call table and linkage v Ref. http://www.ibm.com/developerworks/linux/library/l-system-calls/ - 2 - Young-Jin Kim SYSCALL_DEFINE 함수

More information

Microsoft Word - FunctionCall

Microsoft Word - FunctionCall Function all Mechanism /* Simple Program */ #define get_int() IN KEYOARD #define put_int(val) LD A val \ OUT MONITOR int add_two(int a, int b) { int tmp; tmp = a+b; return tmp; } local auto variable stack

More information

서현수

서현수 Introduction to TIZEN SDK UI Builder S-Core 서현수 2015.10.28 CONTENTS TIZEN APP 이란? TIZEN SDK UI Builder 소개 TIZEN APP 개발방법 UI Builder 기능 UI Builder 사용방법 실전, TIZEN APP 개발시작하기 마침 TIZEN APP? TIZEN APP 이란? Mobile,

More information

Microsoft PowerPoint 자바-기본문법(Ch2).pptx

Microsoft PowerPoint 자바-기본문법(Ch2).pptx 자바기본문법 1. 기본사항 2. 자료형 3. 변수와상수 4. 연산자 1 주석 (Comments) 이해를돕기위한설명문 종류 // /* */ /** */ 활용예 javadoc HelloApplication.java 2 주석 (Comments) /* File name: HelloApplication.java Created by: Jung Created on: March

More information

JVM 메모리구조

JVM 메모리구조 조명이정도면괜찮조! 주제 JVM 메모리구조 설미라자료조사, 자료작성, PPT 작성, 보고서작성. 발표. 조장. 최지성자료조사, 자료작성, PPT 작성, 보고서작성. 발표. 조원 이용열자료조사, 자료작성, PPT 작성, 보고서작성. 이윤경 자료조사, 자료작성, PPT작성, 보고서작성. 이수은 자료조사, 자료작성, PPT작성, 보고서작성. 발표일 2013. 05.

More information

JMF2_심빈구.PDF

JMF2_심빈구.PDF JMF JSTORM http://wwwjstormpekr Issued by: < > Document Information Document title: Document file name: Revision number: Issued by: JMF2_ doc Issue Date: Status: < > raica@nownurinet

More information

슬라이드 1

슬라이드 1 UNIT 6 배열 로봇 SW 교육원 3 기 학습목표 2 배열을사용핛수있다. 배열 3 배열 (Array) 이란? 같은타입 ( 자료형 ) 의여러변수를하나의묶음으로다루는것을배열이라고함 같은타입의많은양의데이터를다룰때효과적임 // 학생 30 명의점수를저장하기위해.. int student_score1; int student_score2; int student_score3;...

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 @ Lesson 3 if, if else, if else if, switch case for, while, do while break, continue : System.in, args, JOptionPane for (,, ) @ vs. logic data method variable Data Data Flow (Type), ( ) @ Member field

More information

Polly_with_Serverless_HOL_hyouk

Polly_with_Serverless_HOL_hyouk { } "Version":"2012-10-17", "Statement":[ { "Effect":"Allow", "Action":[ "polly:synthesizespeech", "dynamodb:query", "dynamodb:scan", "dynamodb:putitem", "dynamodb:updateitem", "sns:publish", "s3:putobject",

More information

gcloud storage 사용자가이드 1 / 17

gcloud storage 사용자가이드 1 / 17 gcloud storage 사용자가이드 1 / 17 문서버전및이력 버전 일자 이력사항 1.0 2016.12.30 신규작성 1.1 2017.01.19 gcloud storage 소개업데이트 1.2 2017.03.17 Container 공개설정업데이트 1.3 2017.06.28 CDN 서비스연동추가 2 / 17 목차 1. GCLOUD STORAGE 소개... 4

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

iii. Design Tab 을 Click 하여 WindowBuilder 가자동으로생성한 GUI 프로그래밍환경을확인한다.

iii. Design Tab 을 Click 하여 WindowBuilder 가자동으로생성한 GUI 프로그래밍환경을확인한다. Eclipse 개발환경에서 WindowBuilder 를이용한 Java 프로그램개발 이예는 Java 프로그램의기초를이해하고있는사람을대상으로 Embedded Microcomputer 를이용한제어시스템을 PC 에서 Serial 통신으로제어 (Graphical User Interface (GUI) 환경에서 ) 하는프로그램개발예를설명한다. WindowBuilder:

More information

14-Servlet

14-Servlet JAVA Programming Language Servlet (GenericServlet) HTTP (HttpServlet) 2 (1)? CGI 3 (2) http://jakarta.apache.org JSDK(Java Servlet Development Kit) 4 (3) CGI CGI(Common Gateway Interface) /,,, Client Server

More information

비긴쿡-자바 00앞부속

비긴쿡-자바 00앞부속 IT COOKBOOK 14 Java P r e f a c e Stay HungryStay Foolish 3D 15 C 3 16 Stay HungryStay Foolish CEO 2005 L e c t u r e S c h e d u l e 1 14 PPT API C A b o u t T h i s B o o k IT CookBook for Beginner Chapter

More information

Microsoft Word - ExecutionStack

Microsoft Word - ExecutionStack Lecture 15: LM code from high level language /* Simple Program */ external int get_int(); external void put_int(); int sum; clear_sum() { sum=0; int step=2; main() { register int i; static int count; clear_sum();

More information

교육2 ? 그림

교육2 ? 그림 Interstage 5 Apworks EJB Application Internet Revision History Edition Date Author Reviewed by Remarks 1 2002/10/11 2 2003/05/19 3 2003/06/18 EJB 4 2003/09/25 Apworks5.1 [ Stateless Session Bean ] ApworksJava,

More information

FileMaker 15 WebDirect 설명서

FileMaker 15 WebDirect 설명서 FileMaker 15 WebDirect 2013-2016 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker, Inc... FileMaker.

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer

Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer Domino, Portal & Workplace WPLC FTSS Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer ? Lotus Notes Clients

More information

Microsoft PowerPoint - C++ 5 .pptx

Microsoft PowerPoint - C++ 5 .pptx C++ 언어프로그래밍 한밭대학교전자. 제어공학과이승호교수 연산자중복 (operator overloading) 이란? 2 1. 연산자중복이란? 1) 기존에미리정의되어있는연산자 (+, -, /, * 등 ) 들을프로그래머의의도에맞도록새롭게정의하여사용할수있도록지원하는기능 2) 연산자를특정한기능을수행하도록재정의하여사용하면여러가지이점을가질수있음 3) 하나의기능이프로그래머의의도에따라바뀌어동작하는다형성

More information

02 C h a p t e r Java

02 C h a p t e r Java 02 C h a p t e r Java Bioinformatics in J a va,, 2 1,,,, C++, Python, (Java),,, (http://wwwbiojavaorg),, 13, 3D GUI,,, (Java programming language) (Sun Microsystems) 1995 1990 (green project) TV 22 CHAPTER

More information

Microsoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드]

Microsoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드] Google Map View 구현 학습목표 교육목표 Google Map View 구현 Google Map 지원 Emulator 생성 Google Map API Key 위도 / 경도구하기 위도 / 경도에따른 Google Map View 구현 Zoom Controller 구현 Google Map View (1) () Google g Map View 기능 Google

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Designer Getting Started 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Designer

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Designer Getting Started 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Designer

More information

1

1 1 1....6 1.1...6 2. Java Architecture...7 2.1 2SDK(Software Development Kit)...8 2.2 JRE(Java Runtime Environment)...9 2.3 (Java Virtual Machine, JVM)...10 2.4 JVM...11 2.5 (runtime)jvm...12 2.5.1 2.5.2

More information

No Slide Title

No Slide Title Copyright, 2001 Multimedia Lab., CH 3. COM object (In-process server) Eun-sung Lee twoss@mmlab.net Multimedia Lab. Dept. of Electrical and Computer Eng. University of Seoul Seoul, Korea 0. Contents 1.

More information

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5]

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5] The Asian Journal of TEX, Volume 3, No. 1, June 2009 Article revision 2009/5/7 KTS THE KOREAN TEX SOCIETY SINCE 2007 2008 ko.tex Installing TEX Live 2008 and ko.tex under Ubuntu Linux Kihwang Lee * kihwang.lee@ktug.or.kr

More information

ilist.add(new Integer(1))과 같이 사용하지 않고 ilist.add(1)과 같이 사용한 것은 자바 5.0에 추가된 기본 자료형과 해당 객체 자료 형과의 오토박싱/언박싱 기능을 사용한 것으로 오토박싱이란 자바 컴파일러가 객체를 요구하는 곳에 기본 자료형

ilist.add(new Integer(1))과 같이 사용하지 않고 ilist.add(1)과 같이 사용한 것은 자바 5.0에 추가된 기본 자료형과 해당 객체 자료 형과의 오토박싱/언박싱 기능을 사용한 것으로 오토박싱이란 자바 컴파일러가 객체를 요구하는 곳에 기본 자료형 바에 제네릭스(generics)를 도입하기 위한 연구는 이미 8년 전인 1996년부터라고 한다. 실제로 자바에 제네릭스를 도입하 는 몇 가지 방안들이 논문으로 나오기 시작한 것이 1998년 초임을 감 안하면 무려 8년이 지난 후에야 자바 5.0에 전격 채택되었다는 것은 이것이 얼마나 어려운 일이었나 하는 것을 보여준다. 자바의 스펙을 결정하는 표준화 절차인

More information

INDEX 들어가기 고민하기 HTML(TABLE/FORM) CSS JS

INDEX 들어가기 고민하기 HTML(TABLE/FORM) CSS JS 개발자에게넘겨주기편한 TABLE&FORM 마크업 김남용 INDEX 들어가기 고민하기 HTML(TABLE/FORM) CSS JS 들어가기 이제는 ~ 서로간의이슈웹표준 & 웹접근성왜웹표준으로해야할까요? 모든웹페이지는 ~ 퍼블리싱순서 이제는 ~ 디자이너 디자이너 퍼블리셔 Front-end (UI 개발자 ) 퍼블리셔 Front-end (UI 개발자 ) 서버개발자 서버개발자

More information

블로그_별책부록

블로그_별책부록 Mac Windows http //java sun com/javase/downloads Java SE Development Kit JDK 1 Windows cmd C:\>java -version java version "1.6.0_XX" Java(TM) SE Runtime Environment (build 1.6.0_XX-b03) Java HotSpot(TM)

More information