Ignore:
Timestamp:
05/08/11 19:32:17 (14 years ago)
Author:
phdmakk
Message:

+ added optional check for required @desc tags in function definitions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/t3d/src/elements/TTCN3Comment.java

    r7 r35  
    116116                                } 
    117117 
     118                                if (T3D.activeProfile.isCheckFunctionDescTagsRequired()) 
     119                                if (elementType != TTCN3ParserTokenTypes.FunctionDef 
     120//                                              && elementType != TTCN3ParserTokenTypes.TestcaseDef 
     121//                                              && elementType != TTCN3ParserTokenTypes.AltstepDef 
     122                                                && desc.size() <= 0) { 
     123                                        warnings.add(getWarningMissingTags("@" + T3D.activeProfile.getCommentTagsConfiguration().getDescTag())); 
     124                                } 
     125 
     126                                 
    118127                                for (String d : desc) 
    119128                                        if (d.length() <= 0) 
     
    179188                return "Empty tag found: " + tagname; 
    180189        } 
    181          
     190 
     191        private String getWarningMissingTags(String tagname){ 
     192                return "Required " + tagname + " tag is missing"; 
     193        } 
     194 
    182195         
    183196        private String getIdentifier(String comment, int pos){ 
Note: See TracChangeset for help on using the changeset viewer.