Top "Naming-conventions" questions

Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods.

What's a good name for a façade class?

A little background: We're building a library/framework for working with scientific models. We have an interface Model which defines …

oop design-patterns naming-conventions facade
Acronyms in Camel Back

I often see Java class names like XmlReader instead of XMLReader My gut feeling is to completely upper case acronyms, …

java naming-conventions camelcasing
Database/model field-name convention in Laravel?

I understand that camel case is the usual convention, as per http://forums.laravel.io/viewtopic.php?id=8857 However, Laravel …

php laravel naming-conventions datamodel
Is there an official name for the many-to-many relationship table in a database schema?

Most of the projects I've worked on have required many-to-many relationships in the database schema. For example, you might have …

database naming-conventions rdbms
prefixing DTO / POCOS - naming conventions?

simple question really, i was wanting to know what naming conventions anybody puts on there DTO / POCOS .... I didn't really …

c# naming-conventions poco dto
Python naming conventions for attributes and methods meant to be overwritten

I have some object oriented code in Python, where some classes are meant to be extended to provide the missing …

python naming-conventions template-method-pattern
JSF managed bean naming conventions

These days I used to work with JSF, but there's a "convention" I'm in doubt if I should use. While …

jsf naming-conventions managed-bean
What is "POSNR" an abreviation or acronym for?

I'm working with some data that's coming out of an SAP system. There's a field named POSNR that appears to …

sap naming-conventions bapi
What would you name this CRUD class?

Trying to avoid the SomethingManager trap here... Let's say I'm going to write a User editor which will allow administrators …

naming-conventions crud
Object persistence terminology: 'repository' vs. 'store' vs. 'context' vs. 'retriever' vs. (...)

I'm not sure how to name data store classes when designing a program's data access layer (DAL). (By data store …

naming-conventions persistence terminology datasource data-access-layer