Carl,
I have designed modifications to OpenJUMP's core that will allow what
you propose. However, they have not been integrated into the nightly
build or thoroughly tested.
You can read more here:
http://openjump.blogspot.com/2007/02/supporting-plug-in-dependency-in.html
http://openjump.blogspot
ok thanks, i think the blackboard is what i need!
carl
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;
Hi Carl,
>can somebody say to me whether dependencies between the plugins are
possible or how the communication is between those?
Unless you are asking about determining if a plugin is present at run-time,
dependency between plugins is managed with the normal Java Class dependency
import statemen
Hei Carl,
what I do is using the blackboard.
e.g. one plugin dies this:
context.getWorkbenchContext().getBlackboard().put(IS_DATASET_ID, datasetid);
and the other this:
datasetid=context.getWorkbenchContext().getBlackboard().getInt(IS_DATASET_ID);
note:
. instead of blackboard.getInt() also oth
hello,
i am new user of this list and the openjump software. i want to build an
extension with different functions. with the help of the plugin-tutorial i did
easy plugins, e.g. one which do db access, other changes attributes or
schema..). however, can somebody say to me whether dependencies b