2008/4/24 Zoran Jeremic <[EMAIL PROTECTED]>: > I have re-used existing ArgoUML classes to develop my > classes, so that's the reason why some variables are > naming c, p, pp. All the methods that I have used > looks the same at ArgoUML's classes that I have used. > I didn't change them. Hmm, looks like we have some tidying up to do.
I can only repeat what I said before. You are adding a panel keyed by a model element but then you are trying to get it with a different key here dppm=(DepthsPropPanelModel)solutionTab.getPanel(DepthsPropPanelModel.class); If you registered it by Model then pick it back out by Model (like below, typed freehand it may notbe exactly correct) dppm=(DepthsPropPanelModel)solutionTab.getPanel(Model.getFacade().getMetaTypes().getModel()); I'm concerned that you seem to be cutting and pasting lots of ArgoUML code for your solution. Far better would be to describe your problem and suggest how ArgoUML can be adapted to provide more use for your plugin. Bob. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
