Originally Posted by
tim
I feel that there must be some universal standard out there. Like java beans for example.
No, there are no "universal" naming conventions, and there never can be. There are some styles that Sun uses in their API and example code. These are generally accepted and widely used.
There might be a 'universal' convention as soon as there is a universal programming language. Hint: Java isn't it.
The purpose of naming conventions it human communications. Noting more. If you write and use your own code, you can invent what you want.
If you want to be able to have someone else help you, you should use the naming (and all other conventions) of the language. This helps information transfer between humans. If you do it properly, someone can look at your code and know that you use a Connector object and call a send() function.
The more people you have working on a piece of code, the more important conventions are. This includes naming conventions, commenting conventions, testing conventions, etc.
Doing this well is actually hard.