Mercurial > hg > Members > tatsuki > Alice
diff src/alice/test/topology/fishmodel/alpha/MakeFrame.java @ 127:117dad267a9b working
add apiTest put
author | sugi |
---|---|
date | Mon, 06 Aug 2012 16:19:38 +0900 |
parents | cc4973a869c5 |
children | 1044a79ce4ef |
line wrap: on
line diff
--- a/src/alice/test/topology/fishmodel/alpha/MakeFrame.java Fri Aug 03 19:14:46 2012 +0900 +++ b/src/alice/test/topology/fishmodel/alpha/MakeFrame.java Mon Aug 06 16:19:38 2012 +0900 @@ -29,7 +29,7 @@ private Canvas3D canvas; private SimpleUniverse universe; private KeyInput key; - private KeyInputCodeSegment KIC; + private KeyInputCodeSegment kics; public MakeFrame(String str){ JFrame frame = new JFrame(str); @@ -52,8 +52,8 @@ key = new KeyInput(); canvas.addKeyListener(key); */ - KIC = new KeyInputCodeSegment(); - canvas.addKeyListener(KIC); + kics = new KeyInputCodeSegment(); + canvas.addKeyListener(kics); frame.setVisible(true); ViewingPlatform camera = universe.getViewingPlatform(); @@ -108,7 +108,7 @@ } public KeyInputCodeSegment getKeySegment(){ - return this.KIC; + return this.kics; } }