[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 devel

Re: [JPP-Devel] Question?

2007-05-21 Thread A. Craig West
Good point, however if you close the task (project) all memory is reclaimed, so it would seem to be possible to reclaim it by removing a layer. Larry On 5/21/07, A. Craig West <[EMAIL PROTECTED]> wrote: > > Do we know if this is a problem with references being hung onto > in

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

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 HashMap > rendererFactoryTools = new HashMap IRendererFactoryTool>(); The correct declaration should probably be: private HashMap renderFactoryTools = new HashMap

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] 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
ection and see if that fixes the problem. > > 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

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

2007-05-04 Thread A. Craig West
I think it's just a typo, you have an extra semicolon at the end of the if... -Craig On 5/4/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote: > Hey guys. I need some help with the use of the instanceof operator. This one > really has me stumped. :] > > In one of my unit tests I have the following