org.squashtest.csp.tm.domain.testcase
Interface TestCaseSearchCriteria


public interface TestCaseSearchCriteria

Implementing classes will carry the criteria used in the test case search functionalities.


Method Summary
 List<TestCaseImportance> getImportanceFilterSet()
          gives the importances of the test cases we want to match.
 String getName()
           
 List<TestCaseNature> getNatureFilterSet()
          gives the natures of the test cases we want to match.
 List<TestCaseStatus> getStatusFilterSet()
          gives the statuses of the test cases we want to match.
 List<TestCaseType> getTypeFilterSet()
          gives the types of the test cases we want to match.
 boolean isGroupByProject()
           
 

Method Detail

getName

String getName()

isGroupByProject

boolean isGroupByProject()

getImportanceFilterSet

List<TestCaseImportance> getImportanceFilterSet()
gives the importances of the test cases we want to match. A result of length 0 is likely to be interpreted like 'fetch test cases having no importance', which in turn will likely result in a void result set since TestCases cannot have null TestCaseImportance attribute.

Returns:

getNatureFilterSet

List<TestCaseNature> getNatureFilterSet()
gives the natures of the test cases we want to match. A result of length 0 is likely to be interpreted like 'fetch test cases having no nature', which in turn will likely result in a void result set since TestCases cannot have null TestCaseNature attribute.

Returns:

getTypeFilterSet

List<TestCaseType> getTypeFilterSet()
gives the types of the test cases we want to match. A result of length 0 is likely to be interpreted like 'fetch test cases having no type', which in turn will likely result in a void result set since TestCases cannot have null TestCaseType attribute.

Returns:

getStatusFilterSet

List<TestCaseStatus> getStatusFilterSet()
gives the statuses of the test cases we want to match. A result of length 0 is likely to be interpreted like 'fetch test cases having no status', which in turn will likely result in a void result set since TestCases cannot have null TestCaseStatus attribute.

Returns:


Copyright © 2010-2012 Henix, henix.fr. All Rights Reserved.