F3, it's not just for desktops, Fun, Fun, Fun F3 on Java ME technology
The fun part after getting Chris Oliver's F3 running on a Java ME cell phone yesterday is that I can change the F3 app on-the-fly without having to javac compile it. Niiice... :-) Especially when working on something that doesn't have a terminal screen or shell. (I don't think they ported Xemacs to a Motorola e680 yet)
See:
F3 running on Java ME CDC
In this demo I'm running another simple test from Paru with a F3 Canvas drawing a cyan filled rectangle with a purple border. Here's the F3 code that is running on my Java ME cell phone:
import f3.ui.*;
import f3.ui.canvas.*;
import java.awt.Frame as AWTFrame;
import java.awt.Dimension;
var canvas = Canvas {
content: Rect {
x: 20
y: 20
height: 80
width: 300
arcHeight: 20
arcWidth: 20
fill: cyan
stroke: purple
strokeWidth: 2
}
};
var frame = new AWTFrame();
frame.add(canvas.getComponent());
frame.setSize(new Dimension(400, 400));
frame.setVisible(true);
F3. It's not just for desktops anymore! :-)
Hinkmond
|
[Java ME and J2ME] ( April 30, 2007 08:29 AM )
Permalink
Posted by Joel Schnall on May 01, 2007 at 05:04 PM PDT #
Hi Joel,
Please be sure to look for Chris Oliver's 2 events at JavaOne:
Link to F3 JavaOne events
#1 Technical Session TS-3420, Form Follows Function (F3)
Wednesday May 09 4:10 PM - 5:10 PM or Thursday May 10 1:30 PM - 2:30 PM
#2 Hands-on Lab LAB-7280, Rich Client Applications Using Form Follows Function (F3)
Thursday May 10 3:50 PM - 5:20 PM
Hinkmond
Posted by Hinkmond Wong on May 01, 2007 at 05:50 PM PDT #