<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to namingCodeConventions</title><link>https://sourceforge.net/p/maritaca/wiki/namingCodeConventions/</link><description>Recent changes to namingCodeConventions</description><atom:link href="https://sourceforge.net/p/maritaca/wiki/namingCodeConventions/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 05 May 2012 23:56:45 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/maritaca/wiki/namingCodeConventions/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage namingCodeConventions modified by Alvaro H Mamani-Aliaga</title><link>https://sourceforge.net/p/maritaca/wiki/namingCodeConventions/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -22,9 +22,3 @@
 
 ### Constants
 Constants in Java are created by marking variables static and final. They should be named using uppercase letters with underscode characters as separators, e.g. MIN_LENGHT.
-
-
-
-There are more naming recommendations in [1].
-
-[1]: http://geosoft.no/development/javastyle.html
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alvaro H Mamani-Aliaga</dc:creator><pubDate>Sat, 05 May 2012 23:56:45 -0000</pubDate><guid>https://sourceforge.net513f47c4556311652e1eb6642521eed738d5cfb4</guid></item><item><title>WikiPage namingCodeConventions modified by Alvaro H Mamani-Aliaga</title><link>https://sourceforge.net/p/maritaca/wiki/namingCodeConventions/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,13 +1,30 @@
 # Naming Code Recommendations
 
 In software development is a good recommendation to follow some naming conventions. The Java development community has several rules and in this project we get some of them.
+
+## Packages names
+Packages name convention should be in all lowercase, e.g. br.unifesp.maritaca.core.Form
+
+
 ## Legal Identifiers
 
 ### Classes and Interfaces
-The first letter should be capitalized, and, if several words are linked to form the name, the first letter of the inner words should be uppercase, this is known as "Camel Case".
+The first letter should be capitalized, and, if several words are linked to form the name, the first letter of the inner words should be uppercase, this is known as "camelCase".
 
 * In case of naming classes: the names should typically be nouns, e.g. Form, User.
 * In case of naming Interfaces: the names should typically be adjectives, e.g. Runnable, Serializable.
 
 ### Methods
-The first letter should be lowercase, and then normal camel case rule should be used. In addition, the names should typically be verb-noun pairs: getForm, findUser
+The first letter should be lowercase, and then normal camelCase rule should be used. In addition, the names should typically be verb-noun pairs: getForm, findUser
+
+### Variables
+CamelCase format should be used, starting with lowercase letter. A variable should be short, meaningful names, e.g. buttonWidth, accountBalance.
+
+### Constants
+Constants in Java are created by marking variables static and final. They should be named using uppercase letters with underscode characters as separators, e.g. MIN_LENGHT.
+
+
+
+There are more naming recommendations in [1].
+
+[1]: http://geosoft.no/development/javastyle.html
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alvaro H Mamani-Aliaga</dc:creator><pubDate>Sat, 05 May 2012 23:26:49 -0000</pubDate><guid>https://sourceforge.net3ee6508de0dc797dd8c3d1f850b0b862bb89e976</guid></item><item><title>WikiPage namingCodeConventions modified by Alvaro H Mamani-Aliaga</title><link>https://sourceforge.net/p/maritaca/wiki/namingCodeConventions/</link><description># Naming Code Recommendations

In software development is a good recommendation to follow some naming conventions. The Java development community has several rules and in this project we get some of them.
## Legal Identifiers

### Classes and Interfaces
The first letter should be capitalized, and, if several words are linked to form the name, the first letter of the inner words should be uppercase, this is known as "Camel Case".

* In case of naming classes: the names should typically be nouns, e.g. Form, User.
* In case of naming Interfaces: the names should typically be adjectives, e.g. Runnable, Serializable.

### Methods
The first letter should be lowercase, and then normal camel case rule should be used. In addition, the names should typically be verb-noun pairs: getForm, findUser</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alvaro H Mamani-Aliaga</dc:creator><pubDate>Sat, 05 May 2012 23:02:27 -0000</pubDate><guid>https://sourceforge.netf574c40d5af954b8b38a4f691885c9fbd8408493</guid></item></channel></rss>