vote up 0 vote down star

First of all, this is not really a programming question. It's more a question of "how do I satisfy McConnels naming conventions?"

I have this Delphi-application that manipulates word-documents. One of the things I need to do is run through all the bookmarks in the document and delete some of them based upon a simple rule: If I currently work on a quote I will delete all bookmarks where the name begins with "cw_orderspecific". If I work on an order confirmation I will remove all bookmarks with names beginning with "cw_quotespecific".

The method is in place, and everything works perfectly, but I have a tiny problem. What should I call my method? The current name ("DeleteBookmarksNotAllowedForCurrentDocumentType") is too long.

Any suggestions?

flag

5 Answers

vote up 2 vote down check

DeleteNonRelevantBookmarks ?

link|flag
1  
DeleteIrreverentBookmarks chuckle – pst Oct 25 at 19:50
Accepted, but I actually went with "DeleteIrrelevantBookmarks". Close enough :-) – sveinbringsli Oct 25 at 20:14
vote up 3 vote down

Change the function to take the prefix to delete, and call it DeleteBookmarksWithPrefix:

DeleteBookmarksWithPrefix("cw_quotespecific")

or

DeleteBookmarksWithPrefix(otherWorkTypePrefix)

That makes the code very readable, and it makes the function reusable in other circumstances, rather than only ever being useful for one very specific task.

Note that if you'll ever have a third work type, you might want to reverse the sense of it:

DeleteBookmarksWithoutPrefix(currentWorkTypePrefix)
link|flag
+1 for being a very "correct" answer. But I won't accept it. This method will NEVER EVER be modified. Well, unless the customer comes up with another request. – sveinbringsli Oct 25 at 20:02
A strategy that depends upon the customer not coming up with another request is either very pessimistic (Succesful systems tend to lead to new requirements) or has built in fossilization, in which case who cares about naming conventions. I would go for flexibility as defined in this answer. – djna Oct 25 at 20:07
The customer ALWAYS comes up with another request. ;) – Khilon Oct 25 at 20:07
I realize I should have included the irony-tags... – sveinbringsli Oct 25 at 20:11
vote up 2 vote down

How short you want it to be? My first instinct is to drop some words that don't seem that important. Like DeleteBookmarksNotAllowedForDocumentType, DeleteBookmarksNotAllowedForDocument, or simply DeleteBookmarksNotAllowed. Though I'd probably prefer something like DeleteInvalidBookmarks. Of course this works only if there are no other methods that delete bookmarks by different rules.
Or if you're willing to change the way you method functions, I'd make it more generic by giving the prefix as a parameter, then the naming would be simpler.

link|flag
vote up 0 vote down

Use acronyms? Define in comments that CDT is "Current Document Type", and you'll get DeleteBookmarks_NotAllowedForCDT. Short enough.

link|flag
vote up 0 vote down

How about DelBookmarksStartingWith? It's pretty clear and expresses intent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.