Subversion Repositories Applications.framework

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
<documentation title="Class Names">
2
	<standard>
3
    <![CDATA[
4
    Classes should be given descriptive names. Avoid using abbreviations where possible. Class names should always begin with an uppercase letter. The PEAR class hierarchy is also reflected in the class name, each level of the hierarchy separated with a single underscore.
5
    ]]>
6
	</standard>
7
	<code_comparison>
8
		<code title="Examples of valid class names">
9
        <![CDATA[
10
Log
11
Net_Finger
12
HTML_Upload_Error
13
        ]]>
14
		</code>
15
		<code title="Examples of invalid class names">
16
        <![CDATA[
17
log
18
NetFinger
19
HTML-Upload-Error
20
        ]]>
21
		</code>
22
	</code_comparison>
23
</documentation>