Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8a1841d01ba195c6be73d75711d355d51749bc94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Created on Oct 15, 2009
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.coverage.vcast;


/**
 * @author Donald G. Dunne
 */
public interface IVectorCastCoverageImportProvider {

   public String getVCastDirectory();

   public String getFileNamespace(String filename);

   /**
    * true if importer should automatically set known exception handling cases
    */
   public boolean isResolveExceptionHandling();

}

Back to the top