summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincidentfeed-trafficincident-model/src/org/genivi/trafficincidentsservice/trafficincidentfeed/trafficincident/LinkedCause.java
blob: 1c60e4547a61e89a78147fcdcda9ad39dbd46f1a (plain)
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
/**
 * Copyright (C) 2013 TomTom International B.V.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Linked Cause</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident.LinkedCause#getCauseTrafficIncidentId <em>Cause Traffic Incident Id</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident.XTrafficIncidentPackage#getLinkedCause()
 * @model
 * @generated
 */
public interface LinkedCause extends Cause {
  /**
	 * Returns the value of the '<em><b>Cause Traffic Incident Id</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * There can be a LinkedCause for which the linked TrafficIncident isn't available (to the application) yet. Therefore this atttibute is optional.
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Cause Traffic Incident Id</em>' attribute.
	 * @see #isSetCauseTrafficIncidentId()
	 * @see #unsetCauseTrafficIncidentId()
	 * @see #setCauseTrafficIncidentId(String)
	 * @see org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident.XTrafficIncidentPackage#getLinkedCause_CauseTrafficIncidentId()
	 * @model unsettable="true"
	 * @generated
	 */
  String getCauseTrafficIncidentId();

  /**
	 * Sets the value of the '{@link org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident.LinkedCause#getCauseTrafficIncidentId <em>Cause Traffic Incident Id</em>}' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Cause Traffic Incident Id</em>' attribute.
	 * @see #isSetCauseTrafficIncidentId()
	 * @see #unsetCauseTrafficIncidentId()
	 * @see #getCauseTrafficIncidentId()
	 * @generated
	 */
  void setCauseTrafficIncidentId(String value);

  /**
	 * Unsets the value of the '{@link org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident.LinkedCause#getCauseTrafficIncidentId <em>Cause Traffic Incident Id</em>}' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #isSetCauseTrafficIncidentId()
	 * @see #getCauseTrafficIncidentId()
	 * @see #setCauseTrafficIncidentId(String)
	 * @generated
	 */
  void unsetCauseTrafficIncidentId();

  /**
	 * Returns whether the value of the '{@link org.genivi.trafficincidentsservice.trafficincidentfeed.trafficincident.LinkedCause#getCauseTrafficIncidentId <em>Cause Traffic Incident Id</em>}' attribute is set.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return whether the value of the '<em>Cause Traffic Incident Id</em>' attribute is set.
	 * @see #unsetCauseTrafficIncidentId()
	 * @see #getCauseTrafficIncidentId()
	 * @see #setCauseTrafficIncidentId(String)
	 * @generated
	 */
  boolean isSetCauseTrafficIncidentId();

} // LinkedCause