Soren Therkildsen

Greenhorn
+ Follow
since Aug 10, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Soren Therkildsen

I finally passed SCEA. I put it off for a long time, but had to finish it now that 1.4 SCEA expires. My results:

Class Diagram (44 maximum) .......................... 36
Component Diagram (44 maximum) ...................... 35
Sequence/Colloboration Diagrams (12 maximum) ........ 12

I had the following diagrams:

1 class diagram with 29 classes
1 component diagram with 28 components
5 sequence diagrams
(Prepare itinerary was the biggest with 47 steps
Pay for itinerary was the smallest with only 4 steps)

Got my result after 12 days by the way.
16 years ago
Hi Rahul,

I recently (25th of November) got a voucher and took part 3. for CX-310-061. I was told that by my test center, that they still had vouchers. Have you tried all test centers i your vicinity.
Congratulations Aanand

Can you tell me how detailed you made your class diagram in regards to specifying method parameters, return values, attribute types etc.

--------------------

S�ren Therkildsen
SCJP,SCJD
[ November 13, 2008: Message edited by: Soren Therkildsen ]
Right-click on fx. "<<Implementation Model>> Implementation Model" and choose add->Actor. The Actor object is then added on the same level as a CollaborationInstanceSet.

Hope this helps. I had trouble finding it myself
I am working in my class diagram for part 2 of SCEA.

I have only put return types on some of my method definitions, but not all. I do not know if i should be more consistent.

I think putting returntypes on everything might make the diagram too detailed.

What do you think?
[ November 12, 2008: Message edited by: Soren Therkildsen ]
Congratulations!

Is there anything you would do differently, if you had the chance?
[ April 16, 2008: Message edited by: Soren Therkildsen ]
Hi all,
I would like to have tooltips placed above and to the right of my mouse cursor. Is there anyway of doing this in an easy way?
I would like to avoid implementing my own ToolTipUI class, since this seems complicated to me.
Thanks in advance
S�ren Therkildsen
21 years ago

My sugestion:
String[] elements = s.split(".");
Date d = new Date(Integer.parseInt(elements[0]),
Integer.parseInt(elements[1]),
Integer.parseInt(elements[2]));
I hope it works.
Regards S�ren
23 years ago

Hi,
I am using the AWT native interface for native rendering in a
Java window as described in:
http://java.sun.com/j2se/1.3/docs/guide/awt/AWT_Native_Interface.html
I would like to choose a graphics configuration for the Canvas,
which supports double buffering.
Right now I choose the graphics configuration with the following
piece of code:
GRAPH_CONF = 0;
GraphicsEnvironment genv =
GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice gd = genv.getDefaultScreenDevice();
GraphicsConfiguration[] gc = gd.getConfigurations();


Canvas gl_canvas = new Canvas( gc[GRAPH_CONF] );
It seems that no matter which entry in the gc array I choose
there is no support for double buffering. It is the same on
all the Windows PC's I have testet this on.
I would like to know if there is a way to force the Canvas to
support double buffering.
Any comments are very welcome.
Kind regards
Soren Therkildsen
23 years ago