Changeset 35 for trunk/t3d/src/org


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/org/etsi/t3d/config/DocumentationProfile.java

    r7 r35  
    1111        private boolean showOriginalT3DocTags = false; 
    1212        private boolean checkUndocumentedParameters = true; 
     13        private boolean checkFunctionDescTagsRequired = false; 
     14 
    1315        private boolean checkConsistentTagUsage = true; 
    1416        private boolean checkIdenticalDescriptionTags = true; 
     
    126128                return commentTagsConfiguration; 
    127129        } 
     130        public boolean isCheckFunctionDescTagsRequired() { 
     131                return checkFunctionDescTagsRequired; 
     132        } 
     133 
     134        public void setCheckFunctionDescTagsRequired( 
     135                        boolean checkFunctionDescTagsRequired) { 
     136                this.checkFunctionDescTagsRequired = checkFunctionDescTagsRequired; 
     137        } 
     138 
    128139} 
Note: See TracChangeset for help on using the changeset viewer.