Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » UML2 Tools » uml2tools newsgroup activity
uml2tools newsgroup activity [message #471344] Thu, 16 August 2007 15:38 Go to next message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

Hi,

Are there still people/experts here who can answer questions about
uml2tools. And how is the activity going towards improving uml2tools.
Release date? I thought it would be end of july.

regards,
nick
Re: uml2tools newsgroup activity [message #471406 is a reply to message #471344] Thu, 16 August 2007 15:50 Go to previous messageGo to next message
Richard Gronback is currently offline Richard GronbackFriend
Messages: 605
Registered: July 2009
Senior Member
0.7 was released with the rest of Europa at the end of June. Downloads are
found here: http://www.eclipse.org/modeling/mdt/downloads/?project=uml2t ools

Work is still progressing, so ask particulars here.

Thanks,
Rich


On 8/16/07 11:38 AM, in article
1bb595377cc2b3ffbc73c2c6c6d5ce11$1@www.eclipse.org, "Nick Kirtley"
<nickkirtley@gmail.com> wrote:

> Hi,
>
> Are there still people/experts here who can answer questions about
> uml2tools. And how is the activity going towards improving uml2tools.
> Release date? I thought it would be end of july.
>
> regards,
> nick
>
Re: uml2tools newsgroup activity [message #471407 is a reply to message #471406] Thu, 16 August 2007 16:24 Go to previous messageGo to next message
Dave Carlson is currently offline Dave CarlsonFriend
Messages: 402
Registered: July 2009
Senior Member
Rich,
There have been several "particulars" asked here in recent weeks with no
response. This includes my query on 24th July about the UML2Tools roadmap.

Regards,
Dave

"Richard Gronback" <richard.gronback@borland.com> wrote in message
news:C2E9EA79.19EDB%richard.gronback@borland.com...
> 0.7 was released with the rest of Europa at the end of June. Downloads
> are
> found here:
> http://www.eclipse.org/modeling/mdt/downloads/?project=uml2t ools
>
> Work is still progressing, so ask particulars here.
>
> Thanks,
> Rich
Re: uml2tools newsgroup activity [message #471412 is a reply to message #471407] Fri, 17 August 2007 10:06 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

hi,

I have a particular problem.

I want to be able to stereotype port and interface in the component
diagram. I made a profile in the umleditor with a stereotype, reference
metaclass and an extension.

I am not able to define the profile as described in the getting started
tutorial. This is possible when you create a class diagram and then define
a profile in the uml editor but not with the component diagram. I think
this leads to my actual problem.

I right click a port or interface and have the relevant element selected
in code. I try to get a list of stereotypes with getApplicableStereotypes
but I get an empty list. Even though I have a profile with relevant
stereotypes.

My question is how do I retrieve relevant stereotypes(or any stereotypes
for that matter) that have been defined in the umleditor?

I really need this solved so if component diagram hasn't been sufficiently
finished then what do I need to do to add thsi support?

I will then apply the stereotype to the port/interface by using the
applyStereotype command.

thx for your help.
Nick
Re: uml2tools newsgroup activity [message #471414 is a reply to message #471412] Fri, 17 August 2007 10:30 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

One more question:

In the getting started tutorial it describes how to define a profile
programmatically. How can I access the profile programmatically so that I
can do the same things that are described in the tutorial. Basically where
is the profile stored?

thx,nick
Re: uml2tools newsgroup activity [message #471415 is a reply to message #471414] Fri, 17 August 2007 14:05 Go to previous messageGo to next message
james bruck is currently offline james bruckFriend
Messages: 1724
Registered: July 2009
Senior Member
Hi Nick

The profile should be stored as a seperate resource. I'm not sure how
exactly it was created but presumably you were prompted for a location
somewhere along the way.

Is this the article you've been reading :
http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Intro duction_to_UML2_Profiles/article.html
?
The UML FAQ explains how to load a uml model in a stand alone application
http://wiki.eclipse.org/MDT-UML2-FAQ.
There are many examples on the UML2 newsgroup about loading files using a
resource set if you are using plugins.

- James.



"Nick Kirtley" <nickkirtley@gmail.com> wrote in message
news:1604231028dc8d2077b6f830bce6be7a$1@www.eclipse.org...
> One more question:
>
> In the getting started tutorial it describes how to define a profile
> programmatically. How can I access the profile programmatically so that I
> can do the same things that are described in the tutorial. Basically where
> is the profile stored?
>
> thx,nick
>
Re: uml2tools newsgroup activity [message #471416 is a reply to message #471412] Fri, 17 August 2007 14:12 Go to previous messageGo to next message
james bruck is currently offline james bruckFriend
Messages: 1724
Registered: July 2009
Senior Member
Nick,

As mentioned in the UML2 newsgroup...

If you've followed all the steps in this article ...
http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Intro duction_to_UML2_Profiles/article.html
and if you've applied the profile ( as mentioned in the article ) then
getApplicableStereotypes() should work.

If it doesn't work you can post your profile with model ( in the UML2
newsgroup) and I can have a look at it, or you can
step into the getApplicableStereotypes() method and determine why it is
failing.

Have you stepped into the function to see where it is failing?

- James.


"Nick Kirtley" <nickkirtley@gmail.com> wrote in message
news:13ebd34c23314b1f4a1219beb138379b$1@www.eclipse.org...
> hi,
>
> I have a particular problem.
>
> I want to be able to stereotype port and interface in the component
> diagram. I made a profile in the umleditor with a stereotype, reference
> metaclass and an extension.
>
> I am not able to define the profile as described in the getting started
> tutorial. This is possible when you create a class diagram and then define
> a profile in the uml editor but not with the component diagram. I think
> this leads to my actual problem.
>
> I right click a port or interface and have the relevant element selected
> in code. I try to get a list of stereotypes with getApplicableStereotypes
> but I get an empty list. Even though I have a profile with relevant
> stereotypes.
>
> My question is how do I retrieve relevant stereotypes(or any stereotypes
> for that matter) that have been defined in the umleditor?
>
> I really need this solved so if component diagram hasn't been sufficiently
> finished then what do I need to do to add thsi support?
>
> I will then apply the stereotype to the port/interface by using the
> applyStereotype command.
>
> thx for your help.
> Nick
>
>
Re: uml2tools newsgroup activity [message #471417 is a reply to message #471416] Mon, 20 August 2007 12:15 Go to previous message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

hi,

I've got it working.

The problem was that I wanted it to work within the component diagram. And
the define button didn't work. But if I create and define a profile and
then import it as a resource within the profile of the component diagram,
then it works fine. I also added some functionality so that stereotypes
can be applied in the component diagram. Same as class diagram
functionality.

Now I have to work on ocl constraints to check that stereotypes have been
applied properly :)

thx for your replies,

Nick
Re: uml2tools newsgroup activity [message #607490 is a reply to message #471344] Thu, 16 August 2007 15:50 Go to previous message
Richard Gronback is currently offline Richard GronbackFriend
Messages: 605
Registered: July 2009
Senior Member
0.7 was released with the rest of Europa at the end of June. Downloads are
found here: http://www.eclipse.org/modeling/mdt/downloads/?project=uml2t ools

Work is still progressing, so ask particulars here.

Thanks,
Rich


On 8/16/07 11:38 AM, in article
1bb595377cc2b3ffbc73c2c6c6d5ce11$1@www.eclipse.org, "Nick Kirtley"
<nickkirtley@gmail.com> wrote:

> Hi,
>
> Are there still people/experts here who can answer questions about
> uml2tools. And how is the activity going towards improving uml2tools.
> Release date? I thought it would be end of july.
>
> regards,
> nick
>
Re: uml2tools newsgroup activity [message #607492 is a reply to message #471406] Thu, 16 August 2007 16:24 Go to previous message
Dave Carlson is currently offline Dave CarlsonFriend
Messages: 402
Registered: July 2009
Senior Member
Rich,
There have been several "particulars" asked here in recent weeks with no
response. This includes my query on 24th July about the UML2Tools roadmap.

Regards,
Dave

"Richard Gronback" <richard.gronback@borland.com> wrote in message
news:C2E9EA79.19EDB%richard.gronback@borland.com...
> 0.7 was released with the rest of Europa at the end of June. Downloads
> are
> found here:
> http://www.eclipse.org/modeling/mdt/downloads/?project=uml2t ools
>
> Work is still progressing, so ask particulars here.
>
> Thanks,
> Rich
Re: uml2tools newsgroup activity [message #607986 is a reply to message #471407] Fri, 17 August 2007 10:06 Go to previous message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

hi,

I have a particular problem.

I want to be able to stereotype port and interface in the component
diagram. I made a profile in the umleditor with a stereotype, reference
metaclass and an extension.

I am not able to define the profile as described in the getting started
tutorial. This is possible when you create a class diagram and then define
a profile in the uml editor but not with the component diagram. I think
this leads to my actual problem.

I right click a port or interface and have the relevant element selected
in code. I try to get a list of stereotypes with getApplicableStereotypes
but I get an empty list. Even though I have a profile with relevant
stereotypes.

My question is how do I retrieve relevant stereotypes(or any stereotypes
for that matter) that have been defined in the umleditor?

I really need this solved so if component diagram hasn't been sufficiently
finished then what do I need to do to add thsi support?

I will then apply the stereotype to the port/interface by using the
applyStereotype command.

thx for your help.
Nick
Re: uml2tools newsgroup activity [message #607994 is a reply to message #471412] Fri, 17 August 2007 10:30 Go to previous message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

One more question:

In the getting started tutorial it describes how to define a profile
programmatically. How can I access the profile programmatically so that I
can do the same things that are described in the tutorial. Basically where
is the profile stored?

thx,nick
Re: uml2tools newsgroup activity [message #607997 is a reply to message #471414] Fri, 17 August 2007 14:05 Go to previous message
james bruck is currently offline james bruckFriend
Messages: 1724
Registered: July 2009
Senior Member
Hi Nick

The profile should be stored as a seperate resource. I'm not sure how
exactly it was created but presumably you were prompted for a location
somewhere along the way.

Is this the article you've been reading :
http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Intro duction_to_UML2_Profiles/article.html
?
The UML FAQ explains how to load a uml model in a stand alone application
http://wiki.eclipse.org/MDT-UML2-FAQ
There are many examples on the UML2 newsgroup about loading files using a
resource set if you are using plugins.

- James.



"Nick Kirtley" <nickkirtley@gmail.com> wrote in message
news:1604231028dc8d2077b6f830bce6be7a$1@www.eclipse.org...
> One more question:
>
> In the getting started tutorial it describes how to define a profile
> programmatically. How can I access the profile programmatically so that I
> can do the same things that are described in the tutorial. Basically where
> is the profile stored?
>
> thx,nick
>
Re: uml2tools newsgroup activity [message #607999 is a reply to message #471412] Fri, 17 August 2007 14:12 Go to previous message
james bruck is currently offline james bruckFriend
Messages: 1724
Registered: July 2009
Senior Member
Nick,

As mentioned in the UML2 newsgroup...

If you've followed all the steps in this article ...
http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Intro duction_to_UML2_Profiles/article.html
and if you've applied the profile ( as mentioned in the article ) then
getApplicableStereotypes() should work.

If it doesn't work you can post your profile with model ( in the UML2
newsgroup) and I can have a look at it, or you can
step into the getApplicableStereotypes() method and determine why it is
failing.

Have you stepped into the function to see where it is failing?

- James.


"Nick Kirtley" <nickkirtley@gmail.com> wrote in message
news:13ebd34c23314b1f4a1219beb138379b$1@www.eclipse.org...
> hi,
>
> I have a particular problem.
>
> I want to be able to stereotype port and interface in the component
> diagram. I made a profile in the umleditor with a stereotype, reference
> metaclass and an extension.
>
> I am not able to define the profile as described in the getting started
> tutorial. This is possible when you create a class diagram and then define
> a profile in the uml editor but not with the component diagram. I think
> this leads to my actual problem.
>
> I right click a port or interface and have the relevant element selected
> in code. I try to get a list of stereotypes with getApplicableStereotypes
> but I get an empty list. Even though I have a profile with relevant
> stereotypes.
>
> My question is how do I retrieve relevant stereotypes(or any stereotypes
> for that matter) that have been defined in the umleditor?
>
> I really need this solved so if component diagram hasn't been sufficiently
> finished then what do I need to do to add thsi support?
>
> I will then apply the stereotype to the port/interface by using the
> applyStereotype command.
>
> thx for your help.
> Nick
>
>
Re: uml2tools newsgroup activity [message #608003 is a reply to message #471416] Mon, 20 August 2007 12:15 Go to previous message
Eclipse UserFriend
Originally posted by: nickkirtley.gmail.com

hi,

I've got it working.

The problem was that I wanted it to work within the component diagram. And
the define button didn't work. But if I create and define a profile and
then import it as a resource within the profile of the component diagram,
then it works fine. I also added some functionality so that stereotypes
can be applied in the component diagram. Same as class diagram
functionality.

Now I have to work on ocl constraints to check that stereotypes have been
applied properly :)

thx for your replies,

Nick
Previous Topic:Problem while initializing the name on creation
Next Topic:Component diagram
Goto Forum:
  


Current Time: Sat Apr 20 00:55:51 GMT 2024

Powered by FUDForum. Page generated in 0.03716 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top