Ignore:
Timestamp:
12/07/11 00:34:32 (13 years ago)
Author:
phdmakk
Message:

+ added functionality for the specification of resources to be ignored during processing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.etsi.common/src/org/etsi/common/configuration/ConfigurationProfile.java

    r7 r43  
    88        protected String profileVersion; 
    99        protected String resourceExtensionsRegExp = "ttcn|ttcn3|3mp"; 
     10        protected String ignoredResourceRegExp = ".*IGNORED.*"; 
    1011        protected String projectExtension = "t3p"; 
    1112        protected boolean settingRecursiveProcessing = true; 
     
    9192        } 
    9293 
     94        public void setIgnoredResourceRegExt(String ignoredResourceRegExp) { 
     95                this.ignoredResourceRegExp = ignoredResourceRegExp; 
     96        } 
     97 
     98        public String getIgnoredResourceRegExp() { 
     99                return ignoredResourceRegExp; 
     100        } 
     101 
    93102} 
Note: See TracChangeset for help on using the changeset viewer.