Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Alin Dobre

Pages: [1] 2
1
Suggestions and Requests / Locks Checking
« on: July 10, 2009, 03:29:30 am »
Can you add the commands, GetLock(), (Where it determines weather there is a lock or not on a package, diagram, or element) or GetLockOwner() (which returns the user that has that lock on that particular package, diagram, or element) in the next build, 846.

Also completed a feature request.

Best Regards,

Alin Dobre

2
Suggestions and Requests / Package.Import()
« on: July 15, 2009, 07:33:09 am »
It would be nice to have a method that will take a package and allow for a import relationship with another package in the automation interface. This would be, so you can directly use package2s elements as if they were currently in package1.

Regards,

Alin Dobre

3
Suggestions and Requests / Multiple Stereotypes Order
« on: July 11, 2009, 02:49:17 am »
When selecting multiple stereotypes for a package or element can the order of the stereotypes be placed in A-Z order in the stereotypeEx() method. to make it simpiler to sort for in the method.

Best Regards,

Alin Dobre

4
General Board / Current CSV files to current Technologies
« on: August 08, 2009, 08:03:07 am »
Hello All,

Im creating a EA Profile to better fit our company. In the process, Im also creating a Artifact element in the <profile> package. Is there any way that I can get a current .csv file for one of the current technologies to use as a baseline and add my own records to it?

Thanks in Advance.

Regards,

Alin Dobre

5
Bugs and Issues / Current CSV files to current Technologies
« on: August 11, 2009, 08:38:35 am »
Hello All,

Im creating a EA Profile to better fit our company. In the process, Im also creating a Artifact element in the <profile> package. Is there any way that I can get a current .csv file for one of the current technologies to use as a baseline and add my own records to it? Or is there a specific place to get it from?

Thanks in Advance.

Regards,

Alin Dobre

6
Hello Everyone,

Have any of you run into a problem where every so often when updating an element the notes field gets completey erased and you lose everything. It seems to have started since I downloaded build 846, but Im not sure. Im going to keep testing to see if its something on my end, just thought I would post the question.

Thanks in Advance.

Regards,

Alin Dobre  

7
And if some of you are wondering, Am I coping the tab name correctly, yes i am :) I even used copy and paste thinking that I was going crazy.

Regards,

Alin Dobre

8
Hello,

Has anyone attempted to use the Repository.IsTabOpen() method and has it worked for you. By work I mean has it given you the correct value per the API. I tried using this method to determine if I should create the tab again if it is not shown, or if it already exists. But it always returns a 0 for me. Regardless, if its on the top level or not. Im using version EA Corporate Version 7.5 build 846. Needless to say, it doesn't work thanks in advance.

Regards,

Alin Dobre

9
Thanks again Admins

Regards,

Alin Dobre

10
Thank-You very much Simon.

Regards,

Alin Dobre

11
Or is there a changlist for build 846?

Thanks,

Alin Dobre

12
Is there an updated SDK for build 846? And where can I find it in PDF form?

Regards,

Alin

13
Aaron,

EA.TaggedValue package_taggedID = (EA.TaggedValue)package.TaggedValues.AddNew("Id", "");

this would logically create a tagged value for the package, but it does not work cause package does not support it, is there any other way?

Regards,

Alin

14
Quote
Every Package object (with the exception of the root model node) has an associated Element object accessible through the Package.Element property.  You will need to assign the Tags to the TaggedValues collection on the Element object.

Example:

EA.TaggedValue tag = (EA.TaggedValue)package.Element.TaggedValues.AddNew("Id", "");
tag.Value = "1";
tag.Update();

Yes thank-you, but how do you add a tagged value to the Package itself, not the element within that package?

Using the automation interface.

Regards,

Alin

15
Can we set Package.TaggedValues with the automation interface? I was looking through the API and found nothing on it; and I tried it and it didn't work. Is it something I did or is it not supported?

Here is the code that i used:

EA.TaggedValue package_value = (EA.TaggedValue)package.TaggedValues.AddNew("Id", "");

Thanks in Advance,

Alin

Pages: [1] 2