Changes between Version 1 and Version 2 of Documentation/T3D/Log-Output/Warnings


Ignore:
Timestamp:
05/08/11 19:27:45 (14 years ago)
Author:
phdmakk
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/T3D/Log-Output/Warnings

    v1 v2  
    9090==== Undocumented Parameters ==== 
    9191 
    92 Formal parameters shall be described by means of the corresponding @param tags. If this is not the case and if '''showUndocumentedParameters''' is enabled in the configuration profile, a warning will be thrown. 
     92Formal parameters shall be described by means of the corresponding @param tags. If this is not the case and if '''checkUndocumentedParameters''' is enabled in the configuration profile, a warning will be thrown. 
    9393 
    9494'''Example''' 
     
    108108}}} 
    109109 
    110 '''Note:''' There are more subtle details related to the (proper) documentation of formal parameters. In future considerations, these subtleties may be implemented more throroughly.   
     110'''Note:''' There are more subtle details related to the (proper) documentation of formal parameters. In future considerations, these subtleties may be implemented more thoroughly.   
     111 
     112==== Required @desc Tags for Functions ==== 
     113 
     114If enabled ('''checkFunctionDescTagsRequired''' configuration flag, disabled by default), this check will throw warnings if there are no @desc tags present for a function definition. 
     115 
     116'''Example''' 
     117{{{ 
     118/* 
     119 * @param a Description of Parameter a 
     120*/ 
     121function f1(integer a){ 
     122     ... 
     123} 
     124}}} 
     125 
     126will result in 
     127 
     128{{{ 
     129testFile.ttcn: 31: WARNING: Code Documentation: Required @desc tag not missing 
     130}}} 
     131 
    111132 
    112133==== Documented But Nonexistent Parameters ==== 
     
    133154==== Cyclic Imports ==== 
    134155 
    135 In adition to the pure documentation-related checks, there is currently also a cyclic imports check, which throws warnings if cyclic imports occur. This is of particular importance for the import view, since cyclic dependencies will be impossible to represent with the current presentation format. Cyclic imports shall also be detected by most compilers since there are a lot more problems associated with them. The warning contains the cyclic import and there is a separate warning for each module that is part of the cycle. 
     156In addition to the pure documentation-related checks, there is currently also a cyclic imports check, which throws warnings if cyclic imports occur. This is of particular importance for the import view, since cyclic dependencies will be impossible to represent with the current presentation format. Cyclic imports shall also be detected by most compilers since there are a lot more problems associated with them. The warning contains the cyclic import and there is a separate warning for each module that is part of the cycle. 
    136157 
    137158'''Example'''