Smalltalk_

Size: px
Start display at page:

Download "Smalltalk_"

Transcription

1 USB / VisualWorks78nc.zip vw78jun793mac.zip vw78jun793win.zip / ClickEarth.html ClickEarth.pdf ClickEarth.st ClickEarth_files GUI GUI VisualWorks ClickEarth.html System Browser KSU Package Example System workspace fileinblock packageblock fileinblock := [ [ afilename afilename := JunFileRequesterDialog requestfilename. afilename ifnil: [^nil]. afilename filein] on: UserInterrupt do: [:anexception anexception proceed]]. packageblock := [ acollection (acollection := OrderedCollection new) add: #comment: -> 'Copyright KSU (Kyoto Sangyo University). All Right Reserved.'; add: #bundle: -> #KSU; add: #package: -> 'KSU-Template'; add: #namespace: -> #KSU; add: #category: -> 'KSU-Template'; yourself. JunSystem perform: ((acollection collect: [:each each key]) inject: String new into: [:selector :key selector, key]) assymbol witharguments: (acollection collect: [:each each value]) asarray]. fileinblock value. packageblock value ClickEarth.st.st KSU Package KSU-Template Template example1

2 windowspec Edit GUI

3 3

4 Menu Bar Apply Menu: #menubar Menu resources menubar

5 Click Widget Window ClickWidget1 Position ClickWidget1 ClickWidget1 Propotion Offset Apply

6 Basics ID #imageofearth

7 2 String ID

8 Apply Input Field 2

9 2 ID #longitudefiled Type String Apply

10 Apply Position label Color

11 Install example1

12 Menu Bar Menu Bar Smalltalk GUI Application Model windowspec windowspec KSU-Template, ClickEarth, Class, windowspec windowspec "Tools.UIPainter new openonclass: self andselector: #windowspec" <resource: #canvas> ^#(#{UI.FullSpec} #window: #(#{UI.WindowSpec} #label: ' ' #min: #(#{Core.Point} ) #max: #(#{Core.Point} ) #bounds: #(#{Graphics.Rectangle} ) #flags: 4 <-- Menu Bar #menu: #menubar ) #component: Transcript

13 Transcript

14 Transcript Transcript cr; show: 'hoge' Do it hoge

15 windowspec Edit Visual #imageofearth Apply

16 resources imageofearth

17 Image Editor Install Install

18 Selector zzz

19 Default Click: #clicked: Filed Aspect

20 Install Filed KSU-Template, Instance, aspects, latitudefield latitudefield latitudefield ifnil: [latitudefield := String new asvalue]. ^latitudefield KSU-Template, Instance, aspects, longitudefield longitudefield longitudefield ifnil: [longitudefield := String new asvalue]. ^longitudefield imageofearth #clicked: KSU-Template, Instance, actions, clicked: clicked: thepoint apoint awrapper asensor aboolean apoint := thepoint. (awrapper := self builder ifnil: [^nil] ifnotnil: [:abuilder abuilder componentat: #imageofearth]) ifnil: [^nil]. asensor := awrapper widget controller sensor. JunCursors crosscursor showwhile: [aboolean := true. [aboolean] whiletrue: [apoint := asensor cursorpoint. apoint y = 0 iftrue: [apoint := apoint JunGeometry accuracy]. (self pictureofearth bounds containspoint: apoint) iftrue: [self updatelongitudefield: apoint; updatelatitudefield: apoint; updateviewfinderofearth: apoint. aboolean := asensor shiftdown]]] example1

21 click imageofearth ID imageofearth ID #imageofearth Senders imageofearth

22 Smalltalk MVC Application Model Sensor ( ) Builder ID Sensor View & Controller Filed Filed aspects Application Model Model View & Controller menubar Source decode KSU-Template, ClickEarth, Class, resources, menubar menubar "Tools.MenuEditor new openonclass: self andselector: #menubar" <resource: #menu> ^#(#{UI.Menu} #( #(#{UI.MenuItem} #rawlabel: ' ' #submenu: #(#{UI.Menu} #( #(#{UI.MenuItem} #rawlabel: ' ' #value: #viewearth ) #(#{UI.MenuItem} #rawlabel: ' ' #value: #closerequest ) ) #(1 1 ) nil ) ) ) #(1 ) nil ) decodeasliteralarray inspect it

23 Menu workspace self startup menubar clicked: _clicked: thepoint apoint awrapper asensor aboolean apoint := thepoint. (awrapper := self builder ifnil: [^nil] _ accept KSU-Template, ClickEarth, Instance, actions, clicked: clicked: apoint (self pictureofearth bounds containspoint: apoint) iffalse: [^nil]. self updatelongitudefield: apoint; updatelatitudefield: apoint; updateviewfinderofearth: apoint KSU-Template, ClickEarth, Instance, actions, clicked: clicked: apoint asensor (self pictureofearth bounds containspoint: apoint) iffalse: [^nil]. self updatelongitudefield: apoint; updatelatitudefield: apoint; updateviewfinderofearth: apoint. asensor := (self controllerat: #imageofearth) sensor. "<-- Click Widget sensor " asensor altdown inspect "<-- alt(option) inspect " yellowbutton Windows alt KSU-Template, ClickEarth, Instance, actions, clicked: clicked: apoint asensor (self pictureofearth bounds containspoint: apoint) iffalse: [^nil]. self updatelongitudefield: apoint; updatelatitudefield: apoint; updateviewfinderofearth: apoint. asensor := (self controllerat: #imageofearth) sensor.

24 [asensor altdown] whiletrue: "<-- alt " [Processor yield. Transcript cr; show: asensor cursorpoint printstring] clicked ( ) alt KSU-Template, ClickEarth, Instance, actions, clicked: clicked: apoint ablock asensor ablock := [:thepoint (self pictureofearth bounds containspoint: thepoint) iffalse: [^nil]. self updatelongitudefield: thepoint; updatelatitudefield: thepoint; updateviewfinderofearth: thepoint]. ablock value: apoint. asensor := (self controllerat: #imageofearth) sensor. [asensor altdown] whiletrue: [Processor yield. ablock value: asensor cursorpoint] ( alt ) zero clicked: apoint ablock asensor ablock := [:thepoint thepoint y = 0 iftrue: [thepoint y: JunGeometry accuracy]. (self pictureofearth bounds containspoint: thepoint) iffalse: [^nil]. self updatelongitudefield: thepoint; updatelatitudefield: thepoint; updateviewfinderofearth: thepoint]. ablock value: apoint. asensor := (self controllerat: #imageofearth) sensor. [asensor altdown] whiletrue: [Processor yield. ablock value: asensor cursorpoint] inspect

25 0 0 KSU-Template, ClickEarth, Instance, actions, _clicked: _clicked: thepoint apoint awrapper asensor aboolean apoint := thepoint. (awrapper := self builder ifnil: [^nil] ifnotnil: [:abuilder abuilder componentat: #imageofearth]) ifnil: [^nil]. asensor := awrapper widget controller sensor. JunCursors crosscursor showwhile: [aboolean := true. [aboolean] whiletrue: [apoint := asensor cursorpoint. apoint y = 0 iftrue: [apoint := apoint JunGeometry accuracy]. (self pictureofearth bounds containspoint: apoint) iftrue: [self updatelongitudefield: apoint; updatelatitudefield: apoint; updateviewfinderofearth: apoint. aboolean := asensor shiftdown]]] iffalse nil iftrue KSU-Template, ClickEarth, Instance, actions, clicked: clicked: apoint ablock asensor ablock := [:thepoint thepoint y = 0 iftrue: [thepoint y: JunGeometry accuracy]. (self pictureofearth bounds containspoint: thepoint) iftrue: [self updatelongitudefield: thepoint; updatelatitudefield: thepoint; updateviewfinderofearth: thepoint]]. ablock value: apoint. asensor := (self controllerat: #imageofearth) sensor. [asensor altdown] whiletrue: [Processor yield. ablock value: asensor cursorpoint]

Smalltalk_20120801

Smalltalk_20120801 USB DataSet/ DataSet.png DataSet.st Dataset KSU_WorkDataSet.html KSU_WorkProcess.html index.html index.html HTML Dataset.png (Excel ) File Browser DataSet.st File in System Browser KSU-Template Window

More information

Smalltalk_

Smalltalk_ DLLCC VisualWorks C Mac OS SSK-LampControl/ VisualWorksWithJun SSK-LampControl.h include SSK SSK FileBrowser SSK-LampControl.st FIle in SSK-LampControl File in SSK File in ( Smalltalk.SSK) ( C ) Controller

More information

はじめに

はじめに 1 1 Squeak Squeak 1 Squeak Squeak 1.1 Squeak SqueakToys 1 NHK SqueakToys Squeak "Smalltalk" Smalltalker Smalltalk 23 1 Thoru Yamamoto 1 Squeak Smalltalk 1.1.1 Smalltalk Squeak Squeak WindowsMacUNIX Zaurus

More information

Smalltalk_

Smalltalk_ USB MVC/ TextDoclet/ vw78jun793mac.zip vw78jun793win.zip GUI MVC Java TextDoclet MVC mvc TextDoclet/index.html System Browser(Browse System) (Find Class) JunOpenGL3dObject JunOpenGL3dObject Class typical

More information

Ⅴ 古陶器にみる装飾技法

Ⅴ 古陶器にみる装飾技法 中 小 企 業 総 合 事 業 団 情 報 技 術 部 12 2 105-8453 TEL 03-5470-1523 FAX 03-5470-1526 Copyright 2000 All right reserved 1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 2 3 4 5 6 7 8 9 -1- 3 4 34 22.5 880 9208 12 1300

More information

Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web up

Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web up Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web update Event Driven paint Signature Overwriting Overriding

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

ProVisionaire Control V3.0セットアップガイド

ProVisionaire Control V3.0セットアップガイド ProVisionaire Control V3 1 Manual Development Group 2018 Yamaha Corporation JA 2 3 4 5 NOTE 6 7 8 9 q w e r t r t y u y q w u e 10 3. NOTE 1. 2. 11 4. NOTE 5. Tips 12 2. 1. 13 3. 4. Tips 14 5. 1. 2. 3.

More information

Local variable x y i paint public class Sample extends Applet { public void paint( Graphics gc ) { int x, y;... int i=10 ; while ( i < 100 ) {... i +=

Local variable x y i paint public class Sample extends Applet { public void paint( Graphics gc ) { int x, y;... int i=10 ; while ( i < 100 ) {... i += Safari AppletViewer Web HTML Netscape Web Web 13-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web update Event Driven paint Signature Overwriting Overriding

More information

Copyright 2010 Funai Consulting Co.,ltd. All right reserved. 1

Copyright 2010 Funai Consulting Co.,ltd. All right reserved. 1 http://www.funaisoken.co.jp/ Copyright 2010 Funai Consulting Co.,ltd. All right reserved. 1 Copyright 2010 Funai Consulting Co.,ltd. All right reserved. 2 Copyright 2010 Funai Consulting Co.,ltd. All right

More information

初心者にもできるアメブロカスタマイズ新2016.pages

初心者にもできるアメブロカスタマイズ新2016.pages Copyright All Rights Reserved. 41 Copyright All Rights Reserved. 60 68 70 6 78 80 Copyright All Rights Reserved. FC2 97 Copyright All Rights Reserved. Copyright All Rights Reserved. Copyright All Rights

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

Neos PRO User Manuals_JP1

Neos PRO User Manuals_JP1 - Japanese - 1 3 5 7 15 17 19 37 23 25 39 27 43 45 29 31 47 33 21 35 51 49 53 55 57 1 2 1 2 X2 3 4 3V + CR2032 X3 5 6 7 3 4 + 3V CR2032 4 5 6 A. C. B. A. 1 8 2 CLICK PULL 7 1 B. 1 2 3 C. 1 2 3 10 10 5

More information

web06.dvi

web06.dvi 73 6 MATLAB MATLAB GUI GUI M copyright c 2004 Tatsuya Kitamura / All rights reserved. 74 6 6.1 GUI MATLAB GUI property Windows MATLAB UNIX MATLAB GUI Graphical User Interface PC Red Hat Linux 5.2J Vine

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

<93C18F578B4C8E965F896988E420976D91BC2E6D6364>

<93C18F578B4C8E965F896988E420976D91BC2E6D6364> ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ (a) Model image + field of view (b) Mosaic image (c) Mosaic + Single-dish image ɡ ɡɡ ɡ ɡɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡɡ ɡ ɡ ɡ ɡ ɡ ɡɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡ ɡɡ

More information

Copyright All Rights Reserved. -2 -!

Copyright All Rights Reserved. -2 -! http://ameblo.jp/admarketing/ Copyright All Rights Reserved. -2 -! Copyright All Rights Reserved. -3- Copyright All Rights Reserved. -4- Copyright All Rights Reserved. -5 - Copyright All Rights Reserved.

More information

[ ][ ] HTML [ ] HTML HTML

[ ][ ] HTML [ ] HTML HTML COPYRIGHT 2009 MAGREX, ALL RIGHTS RESERVED. [ ][ ] HTML [ ] HTML HTML [ ][ ] / / / [ ][ ] HTML HTML URL URL [ ][ ] Cellpadding Cellspacing ID ID URL [ ][ ] ID ID URL [ ][ ] ID ID URL [ ][ ] [ ][ ] [ ]

More information

4D Draw

4D Draw 4D Draw Windows /Mac OS 4D Copyright 2007 4D SAS All rights reserved.. DR SET GLOBAL PREFERENCES vbind:=dr

More information

IPA:セキュアなインターネットサーバー構築に関する調査

IPA:セキュアなインターネットサーバー構築に関する調査 Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved.

More information

実施していただく前に

実施していただく前に SiteProtector 2.0 Service Pack 5 Service Pack 6 2006 4 7 1.... 2 Event Collector Service Pack 1.13... 3 2. SiteProtector Core SP6... 4 3. Console... 10 4. Service Pack 6... 11 5. 1 Deployment Manager...

More information

Microsoft Word - 最終版 バックせどりismマニュアル .docx

Microsoft Word - 最終版 バックせどりismマニュアル .docx ism ISM ISM ISM ISM ISM ISM Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. ISM Copyright (c) 2010 All Rights Reserved. Copyright

More information

Copyright c 2008 Zhenjiang Hu, All Right Reserved.

Copyright c 2008 Zhenjiang Hu, All Right Reserved. 2008 10 27 Copyright c 2008 Zhenjiang Hu, All Right Reserved. (Bool) True False data Bool = False True Remark: not :: Bool Bool not False = True not True = False (Pattern matching) (Rewriting rules) not

More information

Max Library Size Smoke 10 Network Panel Display Default Web Browser Smoke Web Mac open Cleaner Export Destination Path Autodesk Cleaner XL Microsoft W

Max Library Size Smoke 10 Network Panel Display Default Web Browser Smoke Web Mac open Cleaner Export Destination Path Autodesk Cleaner XL Microsoft W Setup Utility の使い方 使い方 Autodesk Smoke[version] Utilities Smoke Setup Preview Vtr Emulator Duplicate Delete Active Apply Reload Smoke Setup Manual Edit General Video Device Smoke AJA Kona Mac KONA 3 Audio

More information

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir 13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software 37.1 37.1 Nspire Nspire Nspire 37.1: Student Software 13 2 13 Student Software esc

More information

Solibri Model Checker 9.5 スタードガイド

Solibri Model Checker 9.5 スタードガイド SOLIBRI MODEL CHECKER V9.5 Copyright 2014 Solibri Oy All Rights Reserved 1 Copyright 2014 Solibri Oy All Rights Reserved 2 Copyright 2014 Solibri Oy All Rights Reserved 3 Copyright 2014 Solibri Oy All

More information

vuejs_meetup.key

vuejs_meetup.key Rails Vue.js Vue.js Meetup 2015-01-28 @kazupon About Me @kazupon CUUSOO SYSTEM Vue.js Plugin vue-i18n: https://github.com/kazupon/vue-i18n vue-validator: https://github.com/kazupon/vue-validator Vue.js

More information

BC4J...4 BC4J Association JSP BC4J JSP OC4J

BC4J...4 BC4J Association JSP BC4J JSP OC4J lê~åäévá=gaéîéäçééê= 9.0.3/9.0.4 BC4J Creation Date: Oct 08, 2003 Last Update: Feb 27, 2004 Version 1.0 ...3... 3 BC4J...4 BC4J...4... 4... 5... 6...7... 8... 9 Association... 13... 15... 20... 22... 25

More information

1 1.1 (JCPRG) 30 Nuclear Reaction Data File (NRDF) PC GSYS2.4 JCPRG GSYS2.4 Java Windows, Linux, Max OS X, FreeBSD GUI PNG, GIF, JPEG X Y GSYS2

1 1.1 (JCPRG) 30 Nuclear Reaction Data File (NRDF) PC GSYS2.4 JCPRG GSYS2.4 Java Windows, Linux, Max OS X, FreeBSD GUI PNG, GIF, JPEG X Y GSYS2 (GSYS2.4) GSYS2.4 Manual SUZUKI Ryusuke Hokkaido University Hospital Abstract GSYS2.4 is an update version of GSYS version 2. Main features added in this version are Magnifying glass function, Automatically

More information

案 内 2016 8 2 3 4 2 2 3 1 1-4 - 1 1-5 - 1 1-6 - 1 1-7 - 1 1-8 - 1 1-9 - 1 1-10 - 1 1-11 - 1 1-12 - 1 1-13 - 1 1-14 - 1 1-15 - 1 1-16 - 1 1-17 - 1 1 1,000 1,200 400 2,000-18 - 1 1-19 - 1

More information

Microsoft PowerPoint - uniCMS操作マニュアル.ppt

Microsoft PowerPoint - uniCMS操作マニュアル.ppt -1- -2- -3- -4- -5- -6- [ ] -7- [ ] -8- [ ] [ ] 1 0 [ ] -9- [ ] -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- -21- ( ) -22- -23- -24- -25- -26- -27- -28- -29- -30- -31- menu menu -32- -33- -34-

More information

untitled

untitled -1- menu -2- -3- -4- -5- -6- [ ] -7- [ ] -8- 0 [ ] [ ] 1 0 [ ] -9- [ ] -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- ( ) -21- -22- -23- -24- -25- -26- -27- -28- -29- menu menu -30- -31- -32- -33-

More information

untitled

untitled mitsuya Copyright (C) 2007. All Rights Reserved. 1/1 mitsuya Copyright (C) 2007. All Rights Reserved. 2/2 mitsuya Copyright (C) 2007. All Rights Reserved. 3/3 mitsuya Copyright (C) 2007. All Rights Reserved.

More information

WPD2009_Plone3_theme-2.key

WPD2009_Plone3_theme-2.key http://ciel-serein.jp/study/wpd2009/wpd2009_plone3_theme.pdf/view http://ciel-serein.jp/study/wpd2009/wpdj-theme.zip/view $~/Plone-3.1/zinstance/buildout.cfg [instance] debug-mode = on $cd ~/Plone-3.1/zinstance

More information

Cosminexus Application Designer操作ガイド

Cosminexus Application Designer操作ガイド Cosminexus Application Designer 3020-3-M91 OS Windows Server 2003 Windows Server 2003 R2 Windows XP Windows Vista P-2443-7E74 ucosminexus Developer Standard 07-50 P-2443-7F74 ucosminexus Developer Professional

More information

次世代育成支援行動計画

次世代育成支援行動計画 15 7 10 300 9 17 21 5 21 22 5 1 2 3 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 16 39 40 11 2 3 P P 41 42 13 3 70.4 86.0 33.3 35.1 75.3 91.5 28.8 36.2 49.0 28.7 14.0 10.0

More information

健康保険組合のあゆみ_top

健康保険組合のあゆみ_top (1912) (1951) 2,00024,000 (1954) (1958) (1962) (1965) (1968) (1969) (1971) (1972) (1973) (1974) (1976) (1978) (1980) (1982) (1983) (1984) (1985) (1987) (1988) (1989) (1990) (1991) (1992) (1994) (1995)

More information

グラフ数値読み取りシステム (GSYS2.4) 利用の手引

グラフ数値読み取りシステム (GSYS2.4) 利用の手引 (GSYS2.4) GSYS2.4 Manual SUZUKI Ryusuke Hokkaido University Hospital 2011 6 7 Abstract GSYS2.4 is an update version of GSYS version 2. Main features added in this version are Magnifying glass function,

More information

ÆþÌçGTK+

ÆþÌçGTK+ GTK+ 2016 11 1 iii GTK+ GUI GIMP GIMP GTK+ Windows GNOME GTK+ GTK+ GNOME KDE Qt GTK+ GTK+ GUI GUI Glade Anjuta GUI GUI GTK+, GUI GTK+, GTK+ 2 2009., GTK+ 3, 2., 2009 GTK+ 3,. 2016 10 iv C GUI GTK+ GUI

More information

Quickstart Guide 3rd Edition

Quickstart Guide 3rd Edition 10 QNX QNX 1 2 3 4 5 QNX Momentics QNX Neutrino RTOS QNX Neutrino 6 7 8 QNX Neutrino 9 10 1 1 QNX Neutrino RTOS QNX Momentics Windows Vista Windows 2000 Windows XP Linux QNX Neutrino QNX Momentics CD http://www.qnx.co.jp/

More information

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name = "" => "" > item.valid? => true valid? true false

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name =  =>  > item.valid? => true valid? true false 10 (1) 16 7 PicoPlanner validations 10.1 PicoPlanner Web Web invalid values validations Rails validates validate 107 10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #

More information

HIS-CCBASEver2

HIS-CCBASEver2 Information Access Interface in the Immersive Virtual World Tetsuro Ogi, *1*2*3 Koji Yamamoto, *3*4 Tadashi Yamanouchi *3 and Michitaka Hirose *2 Abstract - In this study, in order to access database server

More information

グローバル タイトル変換テーブルの編集

グローバル タイトル変換テーブルの編集 19 CHAPTER SGM SGM GUI Global Title Translation GTT; 800 ID GTT Signaling Connection Control Part SCCP; Service Switching Point SSP; SubSystem Number SSN; GTT GTT CSV 16 SGM 3.3 3.1 4.0 4.1 4.2 GTT GTT

More information

untitled

untitled Worldspan go! 4.x (UCI) Administrator Guide go! 4.x (UCI) Version 2.1.4 : 31 August 2007 1. WORLDSPAN GO! VERSION 4.X (UCI)... 3 2. WORLDSPAN GO! VERSION 4.X (UCI)... 4 3.... 6 4. WORLDSPAN GO! VERSION

More information

6 (1) app.html.eex 28 lib/nano_planner_web/templates/layout/app.html.eex 27 <footer> Oiax Inc <%= this_year() %> Oiax Inc. 29 </footer>

6 (1) app.html.eex 28 lib/nano_planner_web/templates/layout/app.html.eex 27 <footer> Oiax Inc <%= this_year() %> Oiax Inc. 29 </footer> 6 (1) of_today 6.1 Copyright 2017 lib/nano_planner_web/views layout_view.ex this_year/0 lib/nano_planner_web/views/layout_view.ex 1 defmodule NanoPlannerWeb.LayoutView do 2 use NanoPlannerWeb, view 3 +

More information

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker Centric Manager IT Service

More information

1: Android 2 Android 2.1 Android 4 Activity Android Service ContentProvider BroadcastReceiver Activity ( ): Android 1 Android Service ( ): ContentProv

1: Android 2 Android 2.1 Android 4 Activity Android Service ContentProvider BroadcastReceiver Activity ( ): Android 1 Android Service ( ): ContentProv II Java/Android 1 Android 1.1 Google 2003 Android 2005 Google Android 2007 11 Google T- (T-Mobile International) Open Handset Alliance OHA Android 1.2 OS Android 7.0 API (Application Program Interface)

More information

untitled

untitled 20070930A GO-Global for Windows Ver 3.2 Copyright (c) 2000-2007 kitasp. All Rights Reserved Slide 2 Slide 3 Slide 4 Slide 5 Slide 6 Slide 7 Slide 8 GO-Global Slide 9 GO-Global Server Slide 10 Slide 11

More information

ZEMAX Nagata DLL Volume-CAD c Copyright by RIKEN All Rights Reserved : : ( )

ZEMAX Nagata DLL Volume-CAD c Copyright by RIKEN All Rights Reserved : : ( ) ZEMAX Nagata DLL Volume-CAD c Copyright by RIKEN All Rights Reserved : 23 1 26 : ( ) ii 1. Nagata DLL 1 2. Nagata 1 3. VObj 2 3. 1............................................... 2 3. 2.................................................

More information

2

2 DX Simulator Copyright 2001-2002 Yamaha Corporation. All rights reserved. Version 1.2, 2002 YAMAHA CORPORATION 2 z x z x c 3 z Windows Macintosh Windows Macintosh x 4 z Windows Macintosh Windows Macintosh

More information

Elastic stack Jun Ohtani 1

Elastic stack Jun Ohtani 1 Elastic stack Jun Ohtani 2017/12/06 @johtani 1 about Me, Jun Ohtani / Technical Advocate lucene-gosen ElasticSearch Server http://blog.johtani.info Elasticsearch, founded in 2012 Products: Elasticsearch,

More information

WinDriver PCI Quick Start Guide

WinDriver PCI Quick Start Guide WinDriver PCI/PCI Express/PCMCIA 5! WinDriver (1) DriverWizard (2) DriverWizard WinDriver (1) Windows 98/Me/2000/XP/Server 2003/Vista Windows CE.NET Windows Embedded CE v6.00 Windows Mobile 5.0/6.0 Linux

More information

Nios II 簡易チュートリアル

Nios II 簡易チュートリアル Nios II Ver. 7.1 2007 10 1. Nios II Nios II JTAG UART LED 8 PIO LED < > Quartus II SOPC Builder Nios II Quartus II.sof Nios II IDE Stratix II 2S60 RoHS Nios II Quartus II http://www.altera.com/literature/lit-nio2.jsp

More information

Abstract Kinect for Windows RGB Kinect for Windows v Kinect for Windows v2

Abstract Kinect for Windows RGB Kinect for Windows v Kinect for Windows v2 Kinect 2014 9 19 IS Report No. 2014092901 Report Medical Information System Laboratory Abstract Kinect for Windows 2012 2 RGB Kinect for Windows v2 2014 7 Kinect for Windows v2 1............................

More information

Lab GPIO_35 GPIO

Lab GPIO_35 GPIO 6,GPIO, PSoC 3/5 GPIO HW Polling and Interrupt PSoC Experiment Lab PSoC 3/5 GPIO Experiment Course Material 6 V2.02 October 15th. 2012 GPIO_35.PPT (65 Slides) Renji Mikami Renji_Mikami@nifty.com Lab GPIO_35

More information

homes01_P027-084_chousa_sai.indd

homes01_P027-084_chousa_sai.indd 1 027 1 028 029 030 031 032 033 2 034 035 3 3-1 1 036 2 3 037 038 4 039 3-2 1 040 041 2 category 1 042 043 category 2 044 045 category 3 046 047 category 4 048 049 category 5 050 051 category 6 052 053

More information

KDDI

KDDI Copyright 2007 KDDI Corporation. All Rights Reserved page.1 Copyright 2007 KDDI Corporation. All Rights Reserved page.2 Copyright 2007 KDDI Corporation. All Rights Reserved page.3 Copyright 2007 KDDI Corporation.

More information

19_22_26R9000操作編ブック.indb

19_22_26R9000操作編ブック.indb 8 19R900022R900026R9000 25 34 44 57 67 2 3 4 10 37 45 45 18 11 67 25 34 39 26 32 43 7 67 7 8 7 9 8 5 7 9 21 18 19 8 8 70 8 19 7 7 7 45 10 47 47 12 47 11 47 36 47 47 36 47 47 24 35 8 8 23 12 25 23 OPEN

More information

弥生会計/やよいの青色申告

弥生会計/やよいの青色申告 c c c c c 1 c c c c c c c c c c c 2 3 c c 4 a a a a a a a a a

More information

① Copyright 2005 Impex.,inc. All Rights Reserved 1 Copyright 2005 Impex.,inc. All Rights Reserved 2 Copyright 2005 Impex.,inc. All Rights Reserved 3 Copyright 2005 Impex.,inc. All Rights Reserved 4 Copyright

More information

Copyright 2008 NIFTY Corporation All rights reserved. 2

Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 3 Copyright 2008 NIFTY Corporation All rights reserved. 4 Copyright 2008 NIFTY Corporation

More information

Copyright 2009, SofTek Systems, Inc. All rights reserved.

Copyright 2009, SofTek Systems, Inc. All rights reserved. PGI Visual Fortran Release 9.0 SofTek Copyright 2009, SofTek Systems, Inc. All rights reserved. \\\ \\ \\\ \\ \\ SofTek Systems, Inc \ SofTek Systems, Inc SofTek Systems, Inc SofTek Systems, Inc SofTek

More information

2

2 8 26 38 37Z800042Z800047Z8000 54 65 72 83 101 2 3 4 7 101 53 27 33 7 8 9 5 7 9 22 47 72 8 8 8 8 102 8 13 7 7 7 65 10 67 67 13 71 40 67 67 67 67 43 67 12 55 55 11 104 8 24 26 24 20 25 6 1 2 3 18 46 101

More information

Nios II ハードウェア・チュートリアル

Nios II ハードウェア・チュートリアル Nios II ver. 7.1 2007 8 1. Nios II FPGA Nios II Quaruts II 7.1 Nios II 7.1 Nios II Cyclone II count_binary 2. 2-1. http://www.altera.com/literature/lit-nio2.jsp 2-2. Nios II Quartus II FEATURE Nios II

More information

LiveCode初心者開発入門サンプル

LiveCode初心者開発入門サンプル / About LiveCode 01:... 11 02: Create... 15 set 03:... 21 name title LiveCode 04:... 29 global local width height 05:... 37 Controls Tools Palette Script Editor message handler 06:... 52 RGB 07:... 63

More information

\\afs001-0m0005\project02\A32\M

\\afs001-0m0005\project02\A32\M Technical Information 2004.09 2009.04 Store Request Query Request Retrieve Request DICOM Client Application Remote SCP Remote Query/Retrieve SCP Image Stored * DICOM Server Application Remote SCU Print

More information

PowerPoint Presentation

PowerPoint Presentation UML 2004 7 9 10 ... OOP UML 10 Copyright 2004 Akira HIRASAWA all rights reserved. 2 1. 2. 3. 4. UML 5. Copyright 2004 Akira HIRASAWA all rights reserved. 3 1..... Copyright 2004 Akira HIRASAWA all rights

More information

Oracle Warehouse Builder 10g Release 2 リポジトリ拡張Cookbook

Oracle Warehouse Builder 10g Release 2 リポジトリ拡張Cookbook Oracle Warehouse Builder 10g Release 2 Cookbook 2006 5 注 : Oracle Warehouse Builder 10g Release 2 リポジトリ拡張 Cookbook 2 Oracle Warehouse Builder 10g Release 2 Cookbook Oracle Warehouse Builder 10g Release

More information

TOPLON PRIO操作手順

TOPLON PRIO操作手順 TOPLON PRIO 2004/05/24 I/O LON WAGO TOPLON PRIO 1. 1) PCC-10 S/W 2) PC 3) PCC-10 4) Windows Lon WorksR Plug n Play Apply OK 5) Visio LonMaker LonPoint 6) TOPLON PRIO 2. IO-PRO SYM TOPLON-PRIO SNVT NVI

More information

6 4 45 7ZS 5 59 7 8 94 05 4 5 6 4 5 5 6 8 8 40 45 48 56 60 64 66 66 68 7 78 80 8 7 8 0 0 0 90 0 57 64 69 66 66 69 0 4 4 4 4 4 0 7 48 5 4 4 5 4 4 4 7 46 46 6 46 8 46 48 46 46 4 46 46 4 4 5 4 6 4 9 9 0

More information

2

2 8 24 32C800037C800042C8000 32 40 45 54 2 3 24 40 10 11 54 4 7 54 30 26 7 9 8 5 6 7 9 8 18 7 7 7 40 10 13 12 24 22 22 8 55 8 8 8 8 1 2 3 18 11 54 54 19 24 30 69 31 40 57 23 23 22 23 22 57 8 9 30 12 12 56

More information

Visio-.v...[..1.vsd

Visio-.v...[..1.vsd Delphi Application への WinRunner の適用手法の検討 オブジェクト認識の仕組み オブジェクトの分類 Add-in の種類と概要 Add-in 適用パターンの比較 コスト業務フロー 表紙 Script GUI MAP Application #### TSL(Test Script Language) #### # New Name set_window ("New Name");

More information

6 4 45 ZS7ZS4ZS 5 59 7 8 94 05 4 5 6 4 5 5 6 8 8 40 45 48 56 60 64 66 66 68 7 78 80 8 7 8 0 0 0 90 0 0 4 4 4 4 6 57 64 69 66 66 66 69 4 0 7 48 5 4 4 5 4 4 4 7 46 46 6 46 8 46 48 46 46 4 46 46 4 4 5 4

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

BlueJ 2.0.1 BlueJ 2.0.x Michael Kölling Mærsk Institute University of Southern Denmark Toin University of Yokohama Alberto Palacios Pawlovsky 17 4 4 3 1 5 1.1 BlueJ.....................................

More information

Ver.1 1/17/2003 2

Ver.1 1/17/2003 2 Ver.1 1/17/2003 1 Ver.1 1/17/2003 2 Ver.1 1/17/2003 3 Ver.1 1/17/2003 4 Ver.1 1/17/2003 5 Ver.1 1/17/2003 6 Ver.1 1/17/2003 MALTAB M GUI figure >> guide GUI GUI OK 7 Ver.1 1/17/2003 8 Ver.1 1/17/2003 Callback

More information

Copyright 2006 KDDI Corporation. All Rights Reserved page1

Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page2 Copyright 2006 KDDI Corporation. All Rights Reserved page3 Copyright 2006 KDDI Corporation.

More information

16 NanoPlanner name PlanItem.changeset/2 > validate_required([:name]) name :name Ecto.Changeset validate_required/3 Ecto.Changeset "validate_"

16 NanoPlanner name PlanItem.changeset/2 > validate_required([:name]) name :name Ecto.Changeset validate_required/3 Ecto.Changeset validate_ 16 NanoPlanner 16.1 13 name PlanItem.changeset/2 > validate_required([name]) name name Ecto.Changeset validate_required/3 Ecto.Changeset "validate_" 10 16.1 205 16 16.1 / ID validate_acceptance/3 true

More information