Book a Demo

Author Topic: generating realize dependency  (Read 2886 times)

GBeutler

  • EA User
  • **
  • Posts: 23
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
generating realize dependency
« on: February 06, 2008, 02:01:31 am »
Hi All,

I am trying to generate a realize dependency to an existing class. I added to the class section ob my Templates:
Code: [Select]

 Parent
 {
   name="Serializeable"
   type="Implements"
 }

This works but the dependency to the java.io interface is not created by EA. I also tried the sample from the EA help:

Connecting to a Class For Which You Know the GUID
Code: [Select]

Dependency
{
 %TRANSFORM_REFERENCE("SourceDependency",classGUID)%
 stereotype="transformedFrom"
 Source
 {
   %TRANSFORM_REFERENCE("Class",classGUID)%
 }
 Target
 {
   GUID=%qt%%classGUID%%qt%
 }
}

There I was not clear where and how to put the GUID Id where can I get the GUID of the Serializeable interface of my model? I fond a ID at the xml export of the package but is this the way to retrieve it?
Currently I think I am completely wrong and missed something. Hope somebody can give me a hint. Thanks in advance and best regards,

Guido