3
votes
12answers
96 views
SQL Join Table Naming Convention
I have 2 tables: Users and Roles, and I have a table that joins these together. The only thing in the join table is Ids that link the 2 tables.
What should I call this table? I've …
0
votes
4answers
48 views
Should I keep the package name when extending a class?
I plan to extend a JSF renderer. The package name is oracle.adfinternal.view.faces.renderkit.rich
Should the extended class be in the same package structure:
oracle.adfinternal.vi …
1
vote
7answers
109 views
(Conventions) C# Class names
Hello,
I'm not too quite sure about what i should do about a grouped set of classes.
My situation: I have 11 classes that relate only to the class Character.cs, but all of those …
4
votes
9answers
94 views
Prefix “Is” in Method Name for Verification Methods
I've been reading Code Complete lately, based off of many references here and also by a friend, and had a naming question for the community. Should the prefix "Is" be used on bool …
2
votes
3answers
44 views
Case Conventions in wpf using MVVM
Is there a standard for case and naming conventions in wpf/mvvm that differs from C#?
I am accustomed to camelCase with the first character being lower case for private and upper …
4
votes
9answers
366 views
Is it confusing to call this class a “factory”?
My understanding of a factory is that it encapsulates instantiation of concrete classes that all inherit a common abstract class or interface. This allows the client to be decouple …
1
vote
2answers
75 views
Why does CakePHP use different plural/singular naming conventions?
Can somebody perhaps explain here why on earth CakePHP has a convention of using plural names for db tables and controllers and singular for models? Why not always use singular ter …
0
votes
3answers
61 views
What to call the intermediate layer of the program?
We have a program consisting of three parts. There's the backend which is the NT service handling the requests. Also there's a COM object that implements a predefined interface, is …
2
votes
9answers
229 views
For what reason do we have the lower_case_with_underscores naming convention?
Depending on your interpretation this may or may not be a rhetorical question, but it really baffles me. What sense does this convention make? I understand naming conventions don't …
0
votes
2answers
24 views
Naming Conventions for Methods / Classes / Packages
What naming conventions do you use for everyday code? I'm pondering this because I currently have a project in Python that contains 3 packages, each with a unique purpose. Now, I'v …
0
votes
2answers
17 views
FTP In/Out Folder Name Best Practices
What best practices (if any) do you adhere to regarding setting up outgoing and incoming folders for your FTP clients? We typically use "outgoing" and "incoming", but no matter ho …
1
vote
5answers
62 views
How to name a method that has an out parameter?
Hi,
What is the common preference to name a method that has an out parameter inside?
Usually I use Get as a prefix to mention that the method returns a value (like GetMyBusiness) …
6
votes
6answers
229 views
What is the name of the “naming convention” used in the C/C++ standard libraries?
Hi,
I wonder if the naming convention used in C/C++ standard libraries has a name, or at least a cheat-sheet where I can lookup the rules. E.g.
push_back -- underscore used
se …
3
votes
5answers
155 views
Instance variable naming conventions in Cocoa
This question is about variable naming style in objective c and cocoa. I just want to stress that I'm not looking for a "right" answer, just good ideas.
I've read through Apple a …
0
votes
4answers
70 views
Java data transfer object naming convention?
Given this scenario where you have "transfer objects" (POJO's with just getters/setters) which are passed by a client library to your API, what is the best way to name the transfer …
