[[Java]]로 만든 [[Python]]. Seminar:Jython http://www.jython.org [[Python]]문법으로, [[Java]]객체들을 불러다가 쓸수 있다. 전형적인 ProgrammingLanguage의 HybridTheCreativeOntology. 관련자료 * [[http://www.slideshare.net/fwierzbicki/jython-update-2012|Jython 2.7 and techniques for integrating with Java]] JythonEssentials에 나오는 [[Swing]]기초예제. {{{#!python import java.lang as lang import javax.swing as swing import java.awt as awt names = ["Groucho","Chico","Harpo"] quotes = {"Groucho": "Say the secret word", "Chico": "Viaduct?", "Harpo": "HONK!"} def buttonPressed(event): field.text = quotes[event.source.text] def exit(event): lang.System.exit(0) def createButton(name): return swing.JButton(name, preferredSize=(100,20), actionPerformed = buttonPressed) win = swing.JFrame("Welcome to Jython", size=(100,20), windowClosing=exit) win.contentPane.layout = awt.FlowLayout() field = swing.JTextField(preferredSize=(200,20)) win.contentPane.add(field) buttons = [createButton(each) for each in names] for eachButton in buttons: win.contentPane.add(eachButton) win.pack() win.show() }}} ---- CategoryLanguage