<documentation title="Interface name suffix">
<standard>
<![CDATA[
Interface names must be suffixed with "Interface", e.g. BarInterface.
]]>
</standard>
<code_comparison>
<code title="Valid: Interface name ends on 'Interface'.">
<![CDATA[
interface <em>BarInterface</em>
{
}
]]>
</code>
<code title="Invalid: Interface name does not end on 'Interface'.">
<![CDATA[
interface <em>Bar</em>
{
}
]]>
</code>
</code_comparison>
</documentation>