[JPP-Devel] RoadMatcher

2008-02-11 Thread A. Craig West
Has anybody looked at getting the RoadMatcher and the JCS working in the openjump codebase? I've seen occasional mention of it, but so far it doesan't appear to be of much concern to anybody. How much interest would there be in somebody (ie. me, if nobody else is able) doing this? -Craig

Re: [JPP-Devel] Unstable branch of the OpenJUMP CVS...

2007-06-04 Thread A. Craig West
Normally, the head is the unstable code, and any changes which have been tested get merged to the stable branch... -Craig On 6/4/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: Stephan, You wrote: I am more than happy to watch the process of getting a development trunk in OpenJUMP

Re: [JPP-Devel] Question?

2007-05-21 Thread A. Craig West
Do we know if this is a problem with references being hung onto internally, or just the standard Java VM behavior where the Java VM normally doesn't return memory to the OS? -Craig On 5/21/07, Stefan Steiniger [EMAIL PROTECTED] wrote: hei David, in case you don't know what sometimes can help

Re: [JPP-Devel] A question about null values...

2007-05-16 Thread A. Craig West
Your cast should be fine, although of course you will get a null pointer exception if you ever try to actually dereference casted... -Craig On 5/16/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: Are you allowed to cast an object with a value of null, or does this throw an exception? For

Re: [JPP-Devel] Some help with Java Generics...

2007-05-16 Thread A. Craig West
On 5/16/07, Sunburned Surveyor [EMAIL PROTECTED] wrote: Here is my attempt at defining the HashMap using Java Generics: private HashMapString, ? extends IRendererFactoryTool rendererFactoryTools = new HashMapString,? extends IRendererFactoryTool(); The correct declaration should probably be:

Re: [JPP-Devel] Switching to Subversion...

2007-05-11 Thread A. Craig West
I use CVS for work, which is enough to make me a big subversion fan :-) Atomic commits are the big thing I like, but I'm also a big of sym-link support. That one isn't a big issue with this code base, I imagine, but I like it anyways... -Craig

Re: [JPP-Devel] Proper use of instanceof operator?

2007-05-04 Thread A. Craig West
. Thanks very much for the help Craig. Sometimes the second pair of eyes catches something very obvious. The Sunburned Surveyor On 5/4/07, A. Craig West [EMAIL PROTECTED] wrote: I think it's just a typo, you have an extra semicolon at the end of the if... -Craig On 5/4/07, Sunburned