Skip to main content
summaryrefslogtreecommitdiffstats
blob: 34ed56f1471929970b370af107402ff8f599382a (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*******************************************************************************
 * Copyright (c) 2002-2005 IBM Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsi.internal.core.analyzer.config;

import org.eclipse.wst.wsi.internal.core.document.DocumentElement;

/**
 * This interface contains a definition of the assertion results that 
 * should be included in the report.  It also contains information 
 * that indicates which messages should be included in the report.
 * 
 * @version 1.0.1
 * @author Peter Brittenham (peterbr@us.ibm.com)
 */
public interface AssertionResultsOption extends DocumentElement
{
  /**
   * Get assertion result type.
   * @return assertion result type.
   * @see #setAssertionResultType
   */
  public AssertionResultType getAssertionResultType();

  /**
   * Set assertion result type.
   * @param resultType assertion result type.
   * @see #getAssertionResultType
   */
  public void setAssertionResultType(AssertionResultType resultType);

  /**
   * Get show message entry indicator.
   * @return show message entry indicator.
   * @see #setShowMessageEntry
   */
  public boolean getShowMessageEntry();

  /**
   * Set show message entry indictor.
   * @param showMessageEntry show message entry indictor.
   * @see #getShowMessageEntry
   */
  public void setShowMessageEntry(boolean showMessageEntry);

  /**
   * Get show assertion description indicator.
   * @return show assertion description indicator.
   * @see #setShowAssertionDescription
   */
  public boolean getShowAssertionDescription();

  /**
   * Set show assertion description indictor.
   * @param showAssertionDescription show assertion description indictor.
   * @see #getShowAssertionDescription
   */
  public void setShowAssertionDescription(boolean showAssertionDescription);

  /**
   * Get show failure message indicator.
   * @return show failure message indicator.
   * @see #setShowFailureMessage
   */
  public boolean getShowFailureMessage();

  /**
   * Set show failure message indicator.
   * @param showFailureMessage show failure message indicator.
   * @see #getShowFailureMessage
   */
  public void setShowFailureMessage(boolean showFailureMessage);

  /**
   * Get show error detail indicator.
   * @return show error detail indicator.
   * @see #setShowFailureDetail
   */
  public boolean getShowFailureDetail();

  /**
   * Set show error detail indicator.
   * @param showfailureDetail show error detail indicator.
   * @see #getShowFailureDetail
   */
  public void setShowFailureDetail(boolean showfailureDetail);

  /**
   * Get string representation of this object.
   * @return string representation of this object.
   */
  public String toString();
}

Back to the top