Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpcomponents Wiki" for change notification.
The "CodingConventions" page has been changed by TonyPoppleton. http://wiki.apache.org/HttpComponents/CodingConventions?action=diff&rev1=7&rev2=8 -------------------------------------------------- == Fields == {{{ * Fields should appear at the top of the class, not declared half-way down the class - * (TODO the following rule is not adhered to anywhere, but I would recommend it rather than using the this. prefix) All instance fields should start with the m prefix (this is also setup in the standard preferences). Don't use m prefix on local variables. + * (TODO the following rule is not adhered to anywhere, but I would recommend it rather than using the this. prefix) All instance fields should start with the m prefix. Don't use m prefix on local variables. * All static final fields should be capitalized, static non-final fields should have an s prefix * Make fields final when possible * Don't use public or protected fields (unless they are immutable/final) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
