Michael:
You wrote: "Can you explain what Feature#clone(int id) does ?
Does it create a distinct instance with the same FID ?
Is it safe to authorize that ?"
I probably wouldn't port this method directly to OJ. In JUMP-Lib you do a
lot of cloning because features are immutable (that is part of wh
Hi Landon,
+1 for adding unit tests,
before adding a method into a core class, I would wonder if it is useful
for OJ core or for a plugin though.
If it is only useful for testing, maybe it should be added in the unit
testing package.
Can you explain what Feature#clone(int id) does ?
Does it c
Stefan:
I'll take a look at the classes in the package you mentioned to make sure
I'm not duplicating code.
Landon
On Tue, Jul 2, 2013 at 9:04 AM, Stefan Steiniger wrote:
> Hi Landon,
>
> there are actually a couple of utility classes for handling
> FeatureSchemas and Features... did you chec
Hi Landon,
there are actually a couple of utility classes for handling
FeatureSchemas and Features... did you check if you are not duplicating
things?
We got most of them from pirol.
These classes are in org.openjump.core.apitools.*
cheers,
stefan
Am 02.07.13 11:17, schrieb Landon Blake:
> S
Sounds good Ede. I'll add the commits on my list of things to do.
Thanks for taking the time to review and comment.
Landon
On Tue, Jul 2, 2013 at 5:21 AM, wrote:
> sounds good to me, especially the 'not breaking' part. let's see what you
> commit, maybe we eventually get our builds unit check
sounds good to me, especially the 'not breaking' part. let's see what you
commit, maybe we eventually get our builds unit checked if i find time to
implement that.
..ede
On 02.07.2013 03:57, Landon Blake wrote:
> Ede:
>
> Let me see if I can provide a little more information.
>
> I'm proposin
Ede:
Let me see if I can provide a little more information.
I'm proposing the addition of a few utility methods to the Feature and
FeatureSchema classes/interfaces. This include methods to clone, compare,
and convert the objects to Strings. These are all pretty standard Java
utility methods that
On 27.06.2013 05:15, Landon Blake wrote:
> I'd like to port some features from JUMP-Lib to OpenJUMP. These features are
> listed here:
>
> http://openjumpblog.wordpress.com/2013/06/27/improvements-from-jump-lib-for-openjump/
>
> What do you guys think?
>
> I'm basically adding some standard uti
I'd like to port some features from JUMP-Lib to OpenJUMP. These features
are listed here:
http://openjumpblog.wordpress.com/2013/06/27/improvements-from-jump-lib-for-openjump/
What do you guys think?
I'm basically adding some standard utility methods to the
Feature/BasicFeature and FeatureSchema