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

Pages: [1]
1
Suggestions and Requests / Re: Web and feedback
« on: April 28, 2005, 10:54:50 pm »
Hi,
Unfortunately NO, My profile says Always stay logged in

But when I press the <Replay> button I got this error message

To post you must be logged in. If you don't have an account yet, please register.

I could not find any link to my postings, only a link telling that I have 0 messages....


2
Suggestions and Requests / Web and feedback
« on: April 27, 2005, 11:45:28 pm »
I think that the notify on a web topic is great. I receive a mail and could direct enter any comments on my last post. BUT!!! I'could not post a followup before having logged in, and then I have to search back to my topic and this is very cumbersome. I would like to have a kind of search for all topics that I have been posting to, or could be automatic logged in when I open the notification link in the mail from your web server.

3
Suggestions and Requests / Re: Diagram notes
« on: April 28, 2005, 10:57:49 pm »
That sounds nice, but please combine the auto generated and the manually. I.e. either let the customer select if it's going to be generated or not, OR let the customer delete the auto generated one. And please consider the update of the changed date field, to mean when the diagram is changed and NOT WHEN IT'S LOADED...

4
Suggestions and Requests / Diagram notes
« on: April 28, 2005, 12:15:59 am »
When a diagram is created it's given a note with
Name
Package
Version
Author

I could also add a diagram note which contain
Name
Author
Version
Created
Updated

Unfortunately I could not delete the first note, and I could not configure the 2nd one. I would like a configurable diagram note so that the information could be more adequate but not filled with twice as much information as needed, The Created/Updated field is very valuable in paper copies.

The Updated field seems to get updated when the diagram is opened, but during a long working session it would be nice if the updated is linked to actual work done on the diagram.

5
Suggestions and Requests / Print several diagrams
« on: April 26, 2005, 09:58:29 am »
Is it possible to print more than the current visible diagram? I want to be able to print all class diagrams without having to navigate trough them all...

6
Automation Interface, Add-Ins and Tools / C# and indexer method
« on: April 28, 2005, 12:18:15 am »
1. To make an indexer you must type in 'indexer' as stereotype as it doesn't exist in the drop down list.

2. It's possible to make two indexers in the class operation dialogue, they will both be code generated but the class diagram only shows the first one.

7
The first thing to catch blindness is the eyes. I have not noticed the lower left window, now I'm back in business. Thanks....

8
Sorry but I could not manage to change the K&R brace style to my preferences. By inserting my special comments into the templates I found that the property method goes as follows
1. operationNotes
2. operationDeclaration
3. operationBody

But I've put in a comment as first entry in operationBody, and it's visible for normal operations but not for the get()/set() for the property, so my question is where is the code generator going?

9
Automation Interface, Add-Ins and Tools / C# generated property method
« on: April 26, 2005, 03:41:51 am »
The default for C# code is like this

public int attB{
get{
return attB;
}
set{
attB = value;
}
}
But I don't like this kind of bracing and want it to look like this
public int attB
               {
get
                       {
return attB;
}
set
                       {
attB = value;
}
}
I've tried to modify the 'Attribute Declaration' template but could not manage to get any change in the generated code, could any kind soul point me in the right direction?

Pages: [1]