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 - JV

Pages: [1] 2
1
Suggestions and Requests / Re: Request: "All users" option on MDG i
« on: October 09, 2006, 05:10:56 am »
agree:)

2
Suggestions and Requests / How to make impact analysis in EA?
« on: September 19, 2006, 06:35:45 am »
I have several projects in oracle repository (project=schema). I have several packages what are shared between projects (using CVS).

In order to make quick impact analysis, is it possible to have links between different projects in oracle repository?
Or, is there possibility to see element links (dependencies) without having connected elements in same project file?

It is not acceptable also to import from CVS all packages into one project file, because not all elements are cvs controlled.

Any suggestions/ideas?

3
Suggestions and Requests / Re: Structured Auto numbering
« on: August 30, 2006, 01:04:35 am »
I also would have auto numbering but not hierarchical numbering because of later restructuring of packages/requirements. By my mind number of requirement/feature/issue/use case must stay as it was when you created it. Why? Because it would be better if number doesn’t change. This way you have always same number when talking with business, programmer etc.

Other problematic issue for me is, that if I move internal requirement to external, it doesn’t get a number this is for me big problem.

Unique number would help me much.

Take care

4
Suggestions and Requests / Re: numbering of requirements and features
« on: August 30, 2006, 02:33:16 am »
yes, thank you:)

5
Suggestions and Requests / numbering of requirements and features
« on: August 29, 2006, 07:16:02 am »
Hi!

I suppose that this topic have been therer already before but I didn't find it. So, here it comes.

It would be very useful, if autonumbering of requirements and features and issues would be on separate field on objects properties column.

Current problem. Autonumber is part of boject name. it works well if I don't nedd to move internal requirement to external requirement. If I do it, then I will get external requirement without number. Also Internal requirements could have autonumbers.

please take it into account. Perhaps it could be improved, because at least we have been use to use reaquirement/feature and issues numbers while including those to iterations and while talking to business.

Thank you!

6
Suggestions and Requests / reverse  engineering from PL\SQL
« on: April 10, 2006, 02:39:06 am »
I evaluate EA ver 6.1.
One of the most needed features is reverse engineering from PL\SQL code.

Is it possible to get also PL\SQL packages (to be interpreted as classes) with functionas/procedures using reverse engineering?

Thank you!

7
General Board / code generation and indexers in c#
« on: May 21, 2009, 12:27:50 am »
I am using indexers in c# as shown below. when I use use ea code generation to reverse engineer the code into ea, the resulting ea classes are missing the Public indexers and only the private properties are shown. It is as if the code generation is ignoring the indexers. Is there a solution to this

private private string _repository = "";
public string Repository
{
       get
       {
            return _repository;
        }
        set
        {
                _repository = value;

          }
  }


Thanks John

8
General Board / Re: EA Repository - Multi User Dev
« on: August 11, 2006, 06:38:04 am »
one more option... you can always lock object for editing (enable it from scurities option). this prevents same time changes, if model is used thru DB repository:)

9
General Board / Re: EA Repository - Multi User Dev
« on: August 11, 2006, 06:35:24 am »
hmm, by my mind you don't have to make any special upload activities when you work with model (project file) what is located in DB repository. all changes are uploaded automatically, some (when you work with some diagram) of changes after pressing save button.

When you transfer something to repository, then you delete previous data from it.

What I have currently:
1. version controlled packages with CVS (in order to have history and availability to use some older version of package -> version handling)
2. oracle repository for teamwork

we tried to change different packages at the same time (2 analysts). I had always second analysts changes at place.

When we tried to make changes to same diagram or object, then second analyst (person who pressed save button later than first person) got message, that somebody has already changed it.

if you have opened some diagram and left it open for some hours, then it is reasonable to refresh it (right mous click on diagram gives that opportunity).

So, when you use DB repository, you have always up to date model. at least this is what i have with oracle repository

10
General Board / Re: Again about repository
« on: May 10, 2006, 10:37:35 pm »
thank you.

yes, I use oracle for repository. So, we have about 100 projects what are under development at the same time. According to this I need at least 100 schemas (if i remove project from repository when it is completed).

But will be there in some day possibility to use same schema for multiple projects?

11
General Board / Again about repository
« on: May 10, 2006, 12:46:56 am »
Is there some white paper how to use repository?
Yes, I know how to setup it and how to get project from repository but from where I could get answer, How to add several projects into repository and how to get tem from repository?
Currently I can not do it, existing project in repository is overwritten by new added project.

thank you!

12
General Board / Baseline disappears!? bug?
« on: May 10, 2006, 04:35:01 am »
I have version controlled packages in my project (CVS). I want to create baselines for each version to quickly find out what was changed.

Each time when I check out package, I loose saved baselines. Can I get those baselines back?
What I must do to not loose baselines when I check out package?

Also I don’t understand why option “Get All latest” is disabled?

13
General Board / Inheritance and performance
« on: February 07, 2006, 02:59:36 am »
We have arrived at the class design shown below(slightly simplified for purposes of this question) for people in a company, where:

1. Person is the base for all people types
2. A HeadcountPerson is a person who is deemed to be part of the company's  population. We also have NonHeadcount people who are not part of a the company's population.
3. Headcount people include Employees and Contractors
4. An Assignee is a type of Employee

From a design viewpoint the inheritance seems to work well for the following reasons I can think of, there are probably more:

1. It will allow us to treat all the different people types as the same Person type when necessary
2. We can use polymorphism to deal with behaviour that is common to all Person types but needs to be  
   handled slightly differently in each child class
3. Each child class only encapsualtes behaviour and properties which is applicable to itslef, which makes using the class clear and simple
4. code reuse.

However in the past we have run into performance problems with inheritance. We use a layered approach when coding thus each of the classes above will belong  to the business logic layer and each will have an associated data access class which will handle getting the data for each business logic layer class. This  means for example that when we instantiate an instance of the Assignee class, the code will be going to the database 4 seperate times and running 4 seperate  queries which results in a slow User response time especially when working with lists of objects.

I would appreciate any comments on the above design and in particular if there is a way to maintain the design without the performance problems



Thanks John

14
General Board / Package Reference On Diagram Hyperlinks
« on: January 12, 2006, 01:28:26 am »
When I drag an activity diagram from package A onto another diagram in package B as a hyperlink. I would like the hyperlink to have a reference to the package that the diagram came from, in this case package A.

Is this possible ?

Thanks JV

15
General Board / Populating a task's type and status values
« on: January 06, 2006, 12:04:37 am »
I'm using EA version 6.0.781 and on the Model Tasks tab I right click and select Add New.

On the Task Detail screen that follows I want to be able to populate the Type and Status drop down lists with my own values but cannot find anywhere to do this.

Any help appreciated.

Pages: [1] 2