Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods.
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 facadeI often see Java class names like XmlReader instead of XMLReader My gut feeling is to completely upper case acronyms, …
java naming-conventions camelcasingI understand that camel case is the usual convention, as per http://forums.laravel.io/viewtopic.php?id=8857 However, Laravel …
php laravel naming-conventions datamodelMost 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 rdbmssimple question really, i was wanting to know what naming conventions anybody puts on there DTO / POCOS .... I didn't really …
c# naming-conventions poco dtoI have some object oriented code in Python, where some classes are meant to be extended to provide the missing …
python naming-conventions template-method-patternThese 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-beanI'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 bapiTrying to avoid the SomethingManager trap here... Let's say I'm going to write a User editor which will allow administrators …
naming-conventions crudI'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