;
-.
-:timeZone
- rdf:type owl:ObjectProperty ;
- rdfs:comment "The time zone for clock elements in the temporal position"@en ;
- rdfs:domain :GeneralDateTimeDescription ;
- rdfs:label "in time zone"@en ;
- rdfs:range :TimeZone ;
- skos:historyNote """In the original 2006 version of OWL-Time, the range of time:timeZone was a TimeZone class in a separate namespace \"http://www.w3.org/2006/timezone#\".
-An alignment axiom
- tzont:TimeZone rdfs:subClassOf time:TimeZone .
-allows data encoded according to the previous version to be consistent with the updated ontology. """ ;
- skos:note """IANA maintains a database of timezones. These are well maintained and generally considered authoritative, but individual items are not available at individual URIs, so cannot be used directly in data expressed using OWL-Time.
-
-DBPedia provides a set of resources corresponding to the IANA timezones, with a URI for each (e.g. http://dbpedia.org/resource/Australia/Eucla). The World Clock service also provides a list of time zones with the description of each available as an individual webpage with a convenient individual URI (e.g. https://www.timeanddate.com/time/zones/acwst). These or other, similar, resources might be used as a value of the time:timeZone property.""" ;
-.
-:unitDay
- rdf:type :TemporalUnit ;
- rdfs:label "Day (unit of temporal duration)"@en ;
- skos:prefLabel "Tag"@de ;
- skos:prefLabel "dag"@nl ;
- skos:prefLabel "day"@en ;
- skos:prefLabel "dia"@pt ;
- skos:prefLabel "doba"@pl ;
- skos:prefLabel "día"@es ;
- skos:prefLabel "giorno"@it ;
- skos:prefLabel "jour"@fr ;
- skos:prefLabel "يوماً ما"@ar ;
- skos:prefLabel "ある日"@jp ;
- skos:prefLabel "一天"@zh ;
- skos:prefLabel "언젠가"@kr ;
- :days "1"^^xsd:decimal ;
- :hours "0"^^xsd:decimal ;
- :minutes "0"^^xsd:decimal ;
- :months "0"^^xsd:decimal ;
- :seconds "0"^^xsd:decimal ;
- :weeks "0"^^xsd:decimal ;
- :years "0"^^xsd:decimal ;
-.
-:unitHour
- rdf:type :TemporalUnit ;
- rdfs:label "Hour (unit of temporal duration)"@en ;
- skos:prefLabel "Stunde"@de ;
- skos:prefLabel "godzina"@pl ;
- skos:prefLabel "heure"@fr ;
- skos:prefLabel "hora"@es ;
- skos:prefLabel "hora"@pt ;
- skos:prefLabel "hour"@en ;
- skos:prefLabel "ora"@it ;
- skos:prefLabel "uur"@nl ;
- skos:prefLabel "один час\"@ru" ;
- skos:prefLabel "ساعة واحدة"@ar ;
- skos:prefLabel "一小時"@zh ;
- skos:prefLabel "一時間"@jp ;
- skos:prefLabel "한 시간"@kr ;
- :days "0"^^xsd:decimal ;
- :hours "1"^^xsd:decimal ;
- :minutes "0"^^xsd:decimal ;
- :months "0"^^xsd:decimal ;
- :seconds "0"^^xsd:decimal ;
- :weeks "0"^^xsd:decimal ;
- :years "0"^^xsd:decimal ;
-.
-:unitMinute
- rdf:type :TemporalUnit ;
- rdfs:label "Minute (unit of temporal duration)"@en ;
- skos:prefLabel "Minute"@de ;
- skos:prefLabel "minuta"@pl ;
- skos:prefLabel "minute"@en ;
- skos:prefLabel "minute"@fr ;
- skos:prefLabel "minuto"@es ;
- skos:prefLabel "minuto"@it ;
- skos:prefLabel "minuto"@pt ;
- skos:prefLabel "minuut"@nl ;
- skos:prefLabel "одна минута"@ru ;
- skos:prefLabel "دقيقة واحدة"@ar ;
- skos:prefLabel "一分"@jp ;
- skos:prefLabel "等一下"@zh ;
- skos:prefLabel "분"@kr ;
- :days "0"^^xsd:decimal ;
- :hours "0"^^xsd:decimal ;
- :minutes "1"^^xsd:decimal ;
- :months "0"^^xsd:decimal ;
- :seconds "0"^^xsd:decimal ;
- :weeks "0"^^xsd:decimal ;
- :years "0"^^xsd:decimal ;
-.
-:unitMonth
- rdf:type :TemporalUnit ;
- rdfs:label "Month (unit of temporal duration)"@en ;
- skos:prefLabel "maand"@nl ;
- skos:prefLabel "mes"@es ;
- skos:prefLabel "mese"@it ;
- skos:prefLabel "miesiąc"@pl ;
- skos:prefLabel "mois"@fr ;
- skos:prefLabel "monat"@de ;
- skos:prefLabel "month"@en ;
- skos:prefLabel "один месяц"@ru ;
- skos:prefLabel "شهر واحد"@ar ;
- skos:prefLabel "一か月"@jp ;
- skos:prefLabel "一個月"@zh ;
- skos:prefLabel "한달"@kr ;
- :days "0"^^xsd:decimal ;
- :hours "0"^^xsd:decimal ;
- :minutes "0"^^xsd:decimal ;
- :months "1"^^xsd:decimal ;
- :seconds "0"^^xsd:decimal ;
- :weeks "0"^^xsd:decimal ;
- :years "0"^^xsd:decimal ;
-.
-:unitSecond
- rdf:type :TemporalUnit ;
- rdfs:label "Second (unit of temporal duration)"@en ;
- skos:prefLabel "Sekunde"@de ;
- skos:prefLabel "Sekundę"@pl ;
- skos:prefLabel "second"@en ;
- skos:prefLabel "seconde"@fr ;
- skos:prefLabel "seconde"@nl ;
- skos:prefLabel "secondo"@it ;
- skos:prefLabel "segundo"@es ;
- skos:prefLabel "segundo"@pt ;
- skos:prefLabel "ثانية واحدة"@ar ;
- skos:prefLabel "一秒"@jp ;
- skos:prefLabel "一秒"@zh ;
- skos:prefLabel "일초"@kr ;
- :days "0"^^xsd:decimal ;
- :hours "0"^^xsd:decimal ;
- :minutes "0"^^xsd:decimal ;
- :months "0"^^xsd:decimal ;
- :seconds "1"^^xsd:decimal ;
- :weeks "0"^^xsd:decimal ;
- :years "0"^^xsd:decimal ;
-.
-:unitType
- rdf:type owl:ObjectProperty ;
- rdfs:comment "The temporal unit which provides the precision of a date-time value or scale of a temporal extent"@en ;
- rdfs:domain [
- rdf:type owl:Class ;
- owl:unionOf (
- :GeneralDateTimeDescription
- :Duration
- ) ;
- ] ;
- rdfs:label "temporal unit type"@en ;
- rdfs:range :TemporalUnit ;
-.
-:unitWeek
- rdf:type :TemporalUnit ;
- rdfs:label "Week (unit of temporal duration)"@en ;
- skos:prefLabel "Woche"@de ;
- skos:prefLabel "semaine"@fr ;
- skos:prefLabel "semana"@es ;
- skos:prefLabel "semana"@pt ;
- skos:prefLabel "settimana"@it ;
- skos:prefLabel "tydzień"@pl ;
- skos:prefLabel "week"@en ;
- skos:prefLabel "week"@nl ;
- skos:prefLabel "одна неделя"@ru ;
- skos:prefLabel "سبوع واحد"@ar ;
- skos:prefLabel "一周"@zh ;
- skos:prefLabel "一週間"@jp ;
- skos:prefLabel "일주일"@kr ;
- :days "0"^^xsd:decimal ;
- :hours "0"^^xsd:decimal ;
- :minutes "0"^^xsd:decimal ;
- :months "0"^^xsd:decimal ;
- :seconds "0"^^xsd:decimal ;
- :weeks "1"^^xsd:decimal ;
- :years "0"^^xsd:decimal ;
-.
-:unitYear
- rdf:type :TemporalUnit ;
- rdfs:label "Year (unit of temporal duration)"@en ;
- skos:prefLabel "1 년"@kr ;
- skos:prefLabel "1年"@jp ;
- skos:prefLabel "Jahr"@de ;
- skos:prefLabel "Rok"@pl ;
- skos:prefLabel "an"@fr ;
- skos:prefLabel "anno"@it ;
- skos:prefLabel "ano"@pt ;
- skos:prefLabel "jaar"@nl ;
- skos:prefLabel "un año"@es ;
- skos:prefLabel "year"@en ;
- skos:prefLabel "один год"@ru ;
- skos:prefLabel "سنة واحدة"@ar ;
- skos:prefLabel "一年"@zh ;
- :days "0"^^xsd:decimal ;
- :hours "0"^^xsd:decimal ;
- :minutes "0"^^xsd:decimal ;
- :months "0"^^xsd:decimal ;
- :seconds "0"^^xsd:decimal ;
- :weeks "0"^^xsd:decimal ;
- :years "1"^^xsd:decimal ;
-.
-:week
- rdf:type owl:DatatypeProperty ;
- rdfs:comment "Week number within the year."@en ;
- rdfs:domain :GeneralDateTimeDescription ;
- rdfs:label "week"@en ;
- rdfs:range xsd:nonNegativeInteger ;
- skos:note "Weeks are numbered differently depending on the calendar in use and the local language or cultural conventions (locale). ISO-8601 specifies that the first week of the year includes at least four days, and that Monday is the first day of the week. In that system, week 1 is the week that contains the first Thursday in the year."@en ;
-.
-:weeks
- rdf:type owl:DatatypeProperty ;
- rdfs:comment "length of, or element of the length of, a temporal extent expressed in weeks"@en ;
- rdfs:domain :GeneralDurationDescription ;
- rdfs:label "weeks duration"@en ;
- rdfs:range xsd:decimal ;
-.
-:xsdDateTime
- rdf:type owl:DatatypeProperty ;
- rdf:type owl:DeprecatedProperty ;
- rdfs:comment "Value of DateTimeInterval expressed as a compact value."@en ;
- rdfs:domain :DateTimeInterval ;
- rdfs:label "has XSD date-time"@en ;
- rdfs:range xsd:dateTime ;
- owl:deprecated "true"^^xsd:boolean ;
- skos:note "Using xsd:dateTime in this place means that the duration of the interval is implicit: it corresponds to the length of the smallest non-zero element of the date-time literal. However, this rule cannot be used for intervals whose duration is more than one rank smaller than the starting time - e.g. the first minute or second of a day, the first hour of a month, or the first day of a year. In these cases the desired interval cannot be distinguished from the interval corresponding to the next rank up. Because of this essential ambiguity, use of this property is not recommended and it is deprecated."@en ;
-.
-:year
- rdf:type owl:DatatypeProperty ;
- rdfs:comment """Year position in a calendar-clock system.
-
-The range of this property is not specified, so can be replaced by any specific representation of a calendar year from any calendar. """@en ;
- rdfs:domain :GeneralDateTimeDescription ;
- rdfs:label "year"@en ;
-.
-:years
- rdf:type owl:DatatypeProperty ;
- rdfs:comment "length of, or element of the length of, a temporal extent expressed in years"@en ;
- rdfs:domain :GeneralDurationDescription ;
- rdfs:label "years duration"@en ;
- rdfs:range xsd:decimal ;
-.
diff --git a/Sources/PDDL_-_The_Planning_Domain_Definition_Language.pdf b/Sources/PDDL_-_The_Planning_Domain_Definition_Language.pdf
deleted file mode 100644
index 67d126f..0000000
Binary files a/Sources/PDDL_-_The_Planning_Domain_Definition_Language.pdf and /dev/null differ
diff --git a/Sources/Paper_19-Function_Behavior_Structure_Model_of_Design.pdf b/Sources/Paper_19-Function_Behavior_Structure_Model_of_Design.pdf
deleted file mode 100644
index a3088d3..0000000
Binary files a/Sources/Paper_19-Function_Behavior_Structure_Model_of_Design.pdf and /dev/null differ
diff --git a/Sources/Process Specification Language - An Analysis of Existing Representations.pdf b/Sources/Process Specification Language - An Analysis of Existing Representations.pdf
deleted file mode 100644
index ba9fbdb..0000000
Binary files a/Sources/Process Specification Language - An Analysis of Existing Representations.pdf and /dev/null differ
diff --git a/Sources/Process Specification Language - Specification v1.pdf b/Sources/Process Specification Language - Specification v1.pdf
deleted file mode 100644
index cca816e..0000000
Binary files a/Sources/Process Specification Language - Specification v1.pdf and /dev/null differ
diff --git a/Sources/Project Management Ontology.pdf b/Sources/Project Management Ontology.pdf
deleted file mode 100644
index a6dcfd5..0000000
Binary files a/Sources/Project Management Ontology.pdf and /dev/null differ
diff --git a/Sources/Spinning the OWL-S Process Model.pdf b/Sources/Spinning the OWL-S Process Model.pdf
deleted file mode 100644
index c9b9e87..0000000
Binary files a/Sources/Spinning the OWL-S Process Model.pdf and /dev/null differ
diff --git a/Sources/The Axiomatic Foundation of Space in GFO.pdf b/Sources/The Axiomatic Foundation of Space in GFO.pdf
deleted file mode 100644
index b8a6352..0000000
Binary files a/Sources/The Axiomatic Foundation of Space in GFO.pdf and /dev/null differ
diff --git a/Sources/Tim Smithers, John S. Gero - Artificial Intelligence in Design.pdf b/Sources/Tim Smithers, John S. Gero - Artificial Intelligence in Design.pdf
deleted file mode 100644
index 1ab1e5b..0000000
Binary files a/Sources/Tim Smithers, John S. Gero - Artificial Intelligence in Design.pdf and /dev/null differ
diff --git a/Sources/c039175_ISO_IEC_24707_2007(E).pdf b/Sources/c039175_ISO_IEC_24707_2007(E).pdf
deleted file mode 100755
index b073a06..0000000
Binary files a/Sources/c039175_ISO_IEC_24707_2007(E).pdf and /dev/null differ
diff --git a/Sources/finin1994.pdf b/Sources/finin1994.pdf
deleted file mode 100644
index 956f4b7..0000000
Binary files a/Sources/finin1994.pdf and /dev/null differ
diff --git a/Sources/kif.ps.pdf b/Sources/kif.ps.pdf
deleted file mode 100644
index e75294c..0000000
Binary files a/Sources/kif.ps.pdf and /dev/null differ
diff --git a/Sources/labrou1994.pdf b/Sources/labrou1994.pdf
deleted file mode 100644
index d3a761d..0000000
Binary files a/Sources/labrou1994.pdf and /dev/null differ
diff --git a/Sources/master-az.pdf b/Sources/master-az.pdf
deleted file mode 100644
index 0268608..0000000
Binary files a/Sources/master-az.pdf and /dev/null differ
diff --git a/Sources/master-tb.pdf b/Sources/master-tb.pdf
deleted file mode 100644
index 8df8ccd..0000000
--- a/Sources/master-tb.pdf
+++ /dev/null
@@ -1,32575 +0,0 @@
-%PDF-1.5
-%
-1 0 obj
-<< /S /GoTo /D (chapter.6) >>
-endobj
-4 0 obj
-(1 Einleitung)
-endobj
-5 0 obj
-<< /S /GoTo /D (section.7) >>
-endobj
-8 0 obj
-(1.1 Geschichte von Entscheidungsunterst\374tzungssystemen)
-endobj
-9 0 obj
-<< /S /GoTo /D (section.9) >>
-endobj
-12 0 obj
-(1.2 Projektbezogenheit von Entscheidungsunterst\374tzungssystemen)
-endobj
-13 0 obj
-<< /S /GoTo /D (section.10) >>
-endobj
-16 0 obj
-(1.3 Ziele der Arbeit)
-endobj
-17 0 obj
-<< /S /GoTo /D (section.11) >>
-endobj
-20 0 obj
-(1.4 Aufbau der Arbeit)
-endobj
-21 0 obj
-<< /S /GoTo /D (chapter.12) >>
-endobj
-24 0 obj
-(2 Grundlagen)
-endobj
-25 0 obj
-<< /S /GoTo /D (section.13) >>
-endobj
-28 0 obj
-(2.1 Klassifikationen und Einteilungen zur Entscheidungsunterst\374tzung)
-endobj
-29 0 obj
-<< /S /GoTo /D (subsection.14) >>
-endobj
-32 0 obj
-(2.1.1 Klassifikation von Entscheidungsproblemen)
-endobj
-33 0 obj
-<< /S /GoTo /D (subsection.15) >>
-endobj
-36 0 obj
-(2.1.2 Unterst\374tzungsdimensionen von betrieblichen Informationssystemen)
-endobj
-37 0 obj
-<< /S /GoTo /D (subsection.17) >>
-endobj
-40 0 obj
-(2.1.3 \334bliche Einteilungen von Entscheidungsunterst\374tzungssystemen)
-endobj
-41 0 obj
-<< /S /GoTo /D (section.18) >>
-endobj
-44 0 obj
-(2.2 Definitionen zur Softwarearchitektur)
-endobj
-45 0 obj
-<< /S /GoTo /D (subsection.19) >>
-endobj
-48 0 obj
-(2.2.1 Softwarearchitektur)
-endobj
-49 0 obj
-<< /S /GoTo /D (subsection.20) >>
-endobj
-52 0 obj
-(2.2.2 Standards f\374r die Architektur von Software)
-endobj
-53 0 obj
-<< /S /GoTo /D (subsection.21) >>
-endobj
-56 0 obj
-(2.2.3 Prinzip: Graduated Flexibility)
-endobj
-57 0 obj
-<< /S /GoTo /D (subsection.22) >>
-endobj
-60 0 obj
-(2.2.4 Prinzip: Separation of Concerns)
-endobj
-61 0 obj
-<< /S /GoTo /D (section.23) >>
-endobj
-64 0 obj
-(2.3 Aufbau von bedeutsamen Softwarearchitekturen)
-endobj
-65 0 obj
-<< /S /GoTo /D (subsection.24) >>
-endobj
-68 0 obj
-(2.3.1 Drei-Schichten-Architektur)
-endobj
-69 0 obj
-<< /S /GoTo /D (subsection.26) >>
-endobj
-72 0 obj
-(2.3.2 Model-View-Controller-Entwurfsmuster)
-endobj
-73 0 obj
-<< /S /GoTo /D (subsection.28) >>
-endobj
-76 0 obj
-(2.3.3 Grundlegende Architektur webbasierter Systeme)
-endobj
-77 0 obj
-<< /S /GoTo /D (subsection.29) >>
-endobj
-80 0 obj
-(2.3.4 Web-Services)
-endobj
-81 0 obj
-<< /S /GoTo /D (subsection.30) >>
-endobj
-84 0 obj
-(2.3.5 Serviceorientierte Architekturen)
-endobj
-85 0 obj
-<< /S /GoTo /D (section.31) >>
-endobj
-88 0 obj
-(2.4 Anforderungen an Softwaresysteme)
-endobj
-89 0 obj
-<< /S /GoTo /D (subsection.32) >>
-endobj
-92 0 obj
-(2.4.1 Definition von Anforderungen)
-endobj
-93 0 obj
-<< /S /GoTo /D (subsection.33) >>
-endobj
-96 0 obj
-(2.4.2 Einteilung von Anforderungen)
-endobj
-97 0 obj
-<< /S /GoTo /D (subsection.34) >>
-endobj
-100 0 obj
-(2.4.3 Architekturbewertungsverfahren)
-endobj
-101 0 obj
-<< /S /GoTo /D (subsection.35) >>
-endobj
-104 0 obj
-(2.4.4 Ableitungen von Anforderungen und Softwarearchitekturen)
-endobj
-105 0 obj
-<< /S /GoTo /D (section.36) >>
-endobj
-108 0 obj
-(2.5 Vorstellung des SNIK-Projektes und des CIO-Navigators)
-endobj
-109 0 obj
-<< /S /GoTo /D (chapter.37) >>
-endobj
-112 0 obj
-(3 Literaturrecherche)
-endobj
-113 0 obj
-<< /S /GoTo /D (section.38) >>
-endobj
-116 0 obj
-(3.1 Forschungsfrage)
-endobj
-117 0 obj
-<< /S /GoTo /D (section.39) >>
-endobj
-120 0 obj
-(3.2 Ableitung von Suchbegriffen f\374r die Literaturrecherche)
-endobj
-121 0 obj
-<< /S /GoTo /D (section.41) >>
-endobj
-124 0 obj
-(3.3 Durchf\374hrung der Literaturrecherche)
-endobj
-125 0 obj
-<< /S /GoTo /D (subsection.42) >>
-endobj
-128 0 obj
-(3.3.1 Einschr\344nkende Kriterien f\374r die Suche)
-endobj
-129 0 obj
-<< /S /GoTo /D (subsection.44) >>
-endobj
-132 0 obj
-(3.3.2 Suchportale f\374r wissenschaftliche Ver\366ffentlichungen)
-endobj
-133 0 obj
-<< /S /GoTo /D (subsection.46) >>
-endobj
-136 0 obj
-(3.3.3 Suchverlauf der Recherche)
-endobj
-137 0 obj
-<< /S /GoTo /D (section.48) >>
-endobj
-140 0 obj
-(3.4 Ergebnisse der Literaturrecherche)
-endobj
-141 0 obj
-<< /S /GoTo /D (subsection.49) >>
-endobj
-144 0 obj
-(3.4.1 Bedeutung der Benutzerschnittstelle)
-endobj
-145 0 obj
-<< /S /GoTo /D (subsection.51) >>
-endobj
-148 0 obj
-(3.4.2 Grundlegende Architektur von Entscheidungsunterst\374tzungssystemen)
-endobj
-149 0 obj
-<< /S /GoTo /D (subsection.52) >>
-endobj
-152 0 obj
-(3.4.3 Webbasierte Entscheidungsunterst\374tzungssysteme)
-endobj
-153 0 obj
-<< /S /GoTo /D (subsection.53) >>
-endobj
-156 0 obj
-(3.4.4 Serviceorientierte Architekturen bei Entscheidungsunterst\374tzungssystemen)
-endobj
-157 0 obj
-<< /S /GoTo /D (subsection.54) >>
-endobj
-160 0 obj
-(3.4.5 Performanzeigenschaften von Entscheidungsunterst\374tzungssystemen)
-endobj
-161 0 obj
-<< /S /GoTo /D (subsection.55) >>
-endobj
-164 0 obj
-(3.4.6 Integration von Quelldaten)
-endobj
-165 0 obj
-<< /S /GoTo /D (subsection.56) >>
-endobj
-168 0 obj
-(3.4.7 Ver\366ffentlichte Architekturen)
-endobj
-169 0 obj
-<< /S /GoTo /D (section.64) >>
-endobj
-172 0 obj
-(3.5 Beantwortung der Forschungsfrage)
-endobj
-173 0 obj
-<< /S /GoTo /D (chapter.65) >>
-endobj
-176 0 obj
-(4 Systemarchitektur und Infrastruktur)
-endobj
-177 0 obj
-<< /S /GoTo /D (section.67) >>
-endobj
-180 0 obj
-(4.1 Einbettung der Anwendung in das Umfeld)
-endobj
-181 0 obj
-<< /S /GoTo /D (section.71) >>
-endobj
-184 0 obj
-(4.2 Eignung von Teiid f\374r die Integration von Daten)
-endobj
-185 0 obj
-<< /S /GoTo /D (chapter.73) >>
-endobj
-188 0 obj
-(5 Anforderungs- und Architekturanalyse mit Architekturbewertungsverfahren)
-endobj
-189 0 obj
-<< /S /GoTo /D (section.76) >>
-endobj
-192 0 obj
-(5.1 Auswahl des Architekturbewertungsverfahrens)
-endobj
-193 0 obj
-<< /S /GoTo /D (subsection.77) >>
-endobj
-196 0 obj
-(5.1.1 Vergleich von SAAM und ATAM)
-endobj
-197 0 obj
-<< /S /GoTo /D (subsection.79) >>
-endobj
-200 0 obj
-(5.1.2 Entscheidung f\374r SAAM)
-endobj
-201 0 obj
-<< /S /GoTo /D (section.80) >>
-endobj
-204 0 obj
-(5.2 Durchf\374hrung der Software Architecture Analysis Method \(SAAM\))
-endobj
-205 0 obj
-<< /S /GoTo /D (subsection.81) >>
-endobj
-208 0 obj
-(5.2.1 Szenarien bei SAAM)
-endobj
-209 0 obj
-<< /S /GoTo /D (subsection.82) >>
-endobj
-212 0 obj
-(5.2.2 Schritte bei der Durchf\374hrung von SAAM)
-endobj
-213 0 obj
-<< /S /GoTo /D (subsection.85) >>
-endobj
-216 0 obj
-(5.2.3 Aktivit\344ten und Abh\344ngigkeiten von SAAM)
-endobj
-217 0 obj
-<< /S /GoTo /D (section.87) >>
-endobj
-220 0 obj
-(5.3 SAAM Schritt 1 - Beschreibung der Architektur)
-endobj
-221 0 obj
-<< /S /GoTo /D (subsection.88) >>
-endobj
-224 0 obj
-(5.3.1 Grundlegende Architektur)
-endobj
-225 0 obj
-<< /S /GoTo /D (subsection.94) >>
-endobj
-228 0 obj
-(5.3.2 Analyse der Architektur mit dem Werkzeug CodeMap)
-endobj
-229 0 obj
-<< /S /GoTo /D (subsection.117) >>
-endobj
-232 0 obj
-(5.3.3 Analyse der Architektur mit messbaren Eigenschaften des Quellcodes)
-endobj
-233 0 obj
-<< /S /GoTo /D (subsection.119) >>
-endobj
-236 0 obj
-(5.3.4 Untersuchungen mit dem Werkzeug CodeCity)
-endobj
-237 0 obj
-<< /S /GoTo /D (subsection.141) >>
-endobj
-240 0 obj
-(5.3.5 Untersuchungen mit dem Werkzeug Codemetrik)
-endobj
-241 0 obj
-<< /S /GoTo /D (subsection.143) >>
-endobj
-244 0 obj
-(5.3.6 Beschreibung der Architektur)
-endobj
-245 0 obj
-<< /S /GoTo /D (section.146) >>
-endobj
-248 0 obj
-(5.4 SAAM Schritt 2 - Entwicklung von Szenarien)
-endobj
-249 0 obj
-<< /S /GoTo /D (subsection.147) >>
-endobj
-252 0 obj
-(5.4.1 Identifizierung der Stakeholder)
-endobj
-253 0 obj
-<< /S /GoTo /D (subsection.150) >>
-endobj
-256 0 obj
-(5.4.2 Funktionale Anforderungen)
-endobj
-257 0 obj
-<< /S /GoTo /D (subsection.152) >>
-endobj
-260 0 obj
-(5.4.3 Qualit\344tsanforderungen)
-endobj
-261 0 obj
-<< /S /GoTo /D (subsection.155) >>
-endobj
-264 0 obj
-(5.4.4 Aufstellung der Szenarien)
-endobj
-265 0 obj
-<< /S /GoTo /D (section.159) >>
-endobj
-268 0 obj
-(5.5 SAAM Schritt 3 - Bewertung der Szenarien)
-endobj
-269 0 obj
-<< /S /GoTo /D (section.161) >>
-endobj
-272 0 obj
-(5.6 SAAM Schritt 4 - Untersuchung von Szenariointeraktionen)
-endobj
-273 0 obj
-<< /S /GoTo /D (section.164) >>
-endobj
-276 0 obj
-(5.7 SAAM Schritt 5 - Erstellung der Gesamtbewertung)
-endobj
-277 0 obj
-<< /S /GoTo /D (chapter.167) >>
-endobj
-280 0 obj
-(6 Ergebnisse der Architekturbewertung und Bewertung)
-endobj
-281 0 obj
-<< /S /GoTo /D (section.168) >>
-endobj
-284 0 obj
-(6.1 Angestrebte Komponentenarchitektur)
-endobj
-285 0 obj
-<< /S /GoTo /D (section.170) >>
-endobj
-288 0 obj
-(6.2 Angestrebtes Model-View-Controller-Entwurfsmuster)
-endobj
-289 0 obj
-<< /S /GoTo /D (subsection.172) >>
-endobj
-292 0 obj
-(6.2.1 Umstellung auf ASP.NET MVC)
-endobj
-293 0 obj
-<< /S /GoTo /D (section.173) >>
-endobj
-296 0 obj
-(6.3 Empfohlene Anordnung der Klassen in den Namensr\344umen)
-endobj
-297 0 obj
-<< /S /GoTo /D (section.174) >>
-endobj
-300 0 obj
-(6.4 Empfehlungen aus der Durchf\374hrung von SAAM)
-endobj
-301 0 obj
-<< /S /GoTo /D (section.175) >>
-endobj
-304 0 obj
-(6.5 Empfehlungen aus der Analyse der Softwarearchitektur mit messbaren Eigenschaften des Quellcodes)
-endobj
-305 0 obj
-<< /S /GoTo /D (section.176) >>
-endobj
-308 0 obj
-(6.6 Bewertung)
-endobj
-309 0 obj
-<< /S /GoTo /D (chapter.177) >>
-endobj
-312 0 obj
-(7 Fazit)
-endobj
-313 0 obj
-<< /S /GoTo /D (section.178) >>
-endobj
-316 0 obj
-(7.1 Ausblick auf zuk\374nftige Arbeiten)
-endobj
-317 0 obj
-<< /S /GoTo /D (appendix.180) >>
-endobj
-320 0 obj
-(A Anhang)
-endobj
-321 0 obj
-<< /S /GoTo /D (section.181) >>
-endobj
-324 0 obj
-(A.1 Glossar \(Begriffsdefinitionen\))
-endobj
-325 0 obj
-<< /S /GoTo /D (section.182) >>
-endobj
-328 0 obj
-(A.2 Umsetzungen von Architekturen)
-endobj
-329 0 obj
-<< /S /GoTo /D (subsection.183) >>
-endobj
-332 0 obj
-(A.2.1 Architektur von Web-Services nach Chen, Zhang, Chi)
-endobj
-333 0 obj
-<< /S /GoTo /D (subsection.185) >>
-endobj
-336 0 obj
-(A.2.2 Technologien des Frameworks nach Mohktar et al.)
-endobj
-337 0 obj
-<< /S /GoTo /D (subsection.186) >>
-endobj
-340 0 obj
-(A.2.3 Technologien der Integration von Quelldaten nach Lin et al.)
-endobj
-341 0 obj
-<< /S /GoTo /D (section.187) >>
-endobj
-344 0 obj
-(A.3 Qualit\344tsanforderungen der Anwendung aus Dokumentation)
-endobj
-345 0 obj
-<< /S /GoTo /D [346 0 R /FitH] >>
-endobj
-348 0 obj
-<<
-/Length 559
-/Filter /FlateDecode
->>
-stream
-xڕSMs0Wh,$[cnM
--CA_lMb#HiC'}{V+u>MuL}y(i͢fU%r#E^GMVMNRV[T!Ɋ.&iVM [.AwɟNIYN
-XiP+~IN; ܜ
-6v췾v 2\uRxRe1G%X
K{]4?~Ir 3Ppܣ0fzt !nsهPʉAc)xFU$eb#ơi9S c?q`qP{3J2+\g(ryGͽ*}*Ы^Zq3xQqW;Sx&݅
-Ҫ"+kP."-3*|>B1kEd(A}`W6;eD(J|1ՋG*edJQo&aڵ ˢΤu/aτ֎ a'hu{TkŲKhH2f!@aX(+φsL_-
-endstream
-endobj
-346 0 obj
-<<
-/Type /Page
-/Contents 348 0 R
-/Resources 347 0 R
-/MediaBox [0 0 595.276 841.89]
-/Parent 353 0 R
->>
-endobj
-349 0 obj
-<<
-/D [346 0 R /XYZ 69.866 809.284 null]
->>
-endobj
-350 0 obj
-<<
-/D [346 0 R /XYZ 70.866 771.024 null]
->>
-endobj
-347 0 obj
-<<
-/Font << /F34 351 0 R /F37 352 0 R >>
-/ProcSet [ /PDF /Text ]
->>
-endobj
-356 0 obj
-<<
-/Length 19
-/Filter /FlateDecode
->>
-stream
-x3PHW0Pp2 <
-endstream
-endobj
-355 0 obj
-<<
-/Type /Page
-/Contents 356 0 R
-/Resources 354 0 R
-/MediaBox [0 0 595.276 841.89]
-/Parent 353 0 R
->>
-endobj
-357 0 obj
-<<
-/D [355 0 R /XYZ 69.866 809.284 null]
->>
-endobj
-358 0 obj
-<<
-/D [355 0 R /XYZ 70.866 781.727 null]
->>
-endobj
-354 0 obj
-<<
-/ProcSet [ /PDF ]
->>
-endobj
-361 0 obj
-<<
-/Length 144
-/Filter /FlateDecode
->>
-stream
-xڍ=0wL7ZhEl 4V$s!LoOB!7FBk)5N)%J0${$Jbʱ2>#h%Z`V>
-endobj
-362 0 obj
-<<
-/D [360 0 R /XYZ 69.866 809.284 null]
->>
-endobj
-363 0 obj
-<<
-/D [360 0 R /XYZ 70.866 781.727 null]
->>
-endobj
-359 0 obj
-<<
-/Font << /F34 351 0 R >>
-/ProcSet [ /PDF /Text ]
->>
-endobj
-366 0 obj
-<<
-/Length 19
-/Filter /FlateDecode
->>
-stream
-x3PHW0Pp2 <
-endstream
-endobj
-365 0 obj
-<<
-/Type /Page
-/Contents 366 0 R
-/Resources 364 0 R
-/MediaBox [0 0 595.276 841.89]
-/Parent 353 0 R
->>
-endobj
-367 0 obj
-<<
-/D [365 0 R /XYZ 69.866 809.284 null]
->>
-endobj
-368 0 obj
-<<
-/D [365 0 R /XYZ 70.866 781.727 null]
->>
-endobj
-364 0 obj
-<<
-/ProcSet [ /PDF ]
->>
-endobj
-371 0 obj
-<<
-/Length 2232
-/Filter /FlateDecode
->>
-stream
-xڍYr+$7.ű}SunHA " $Pa9nțo'OvjxnǓ8 T_}nVsb͢ȧW`M%Rn$\nvzs{^=q[iWo:#Tvxɣ+Zmuƫ%=&[GNwi^^hhٙSS Yzdq_wS5ݬ}T#.*ݐy"W<Twm]td3_%ӵ*ͫMEԒǬbSݯ?XDL_3EjS-%Ljy;y
-=oʶ~lސQ䞶;zUyq/*䁖)Ѩ,h@v^lUϻ+&M;؝)Kc,n֥^290
2!Z^CCcy]Q+UazC\EzswZu'ۜrظ6en,})5ÉW
-[_S1Ql$nySkH2{\Ό.W|4+4HKR)TN;R.a\},Is0b5/5vM^XdP VOmW+bM2vMzL?v9Y*^ܳנ`{e1F˂r `NYQgjMn.i2B7qO's;YWSN=*v0eǎ[xӄ'!4s>dq̟5?VYcl.A2L@C/aYn}C5,sL 6$(i=zQFp4,y.m]6@+rj4$YXًizx(;"ܘkHuũuM:LX
-62_ u<,gmVv\E4+[պ[og\{? CIMt}mqfߤ^(rov*خcvսRf,zQz ANx.4BoQDb-e4
-37P(z[8BTzR{Ws]v$*`dtd.H? 4@f Uo
-3u({m'e/뜌
G3އ8"2H_2%7U-Ux`Ovy74ȑ_zזOewNu8*RRwS٦N
-۪Ki4fGTQb˨ZZeCL!~SNnȰ.)p<1Ҋ!"kjh$ګmXUUY(PvWf1e 5Pjyۖ RD*a1_$
":~X\T xtrhsü ,< A oūЍ>(IE#aS8TQfdbZ! 51Goxs6W$I]CYCޛP/Ib&vvH-51G<0uX7Ph.icbO0gJ](5Am@V}!+#3;Ug~,#U
'h(L
-FZ2kpEhS/3p@7NvT;6x+kǠCNR?$9(`~X/0 7s?)> M]^V6zMߕ"=0qUZ H5N\d JJӗOéTs;Hki6PSw_%8s=3]0.+3,#ޕm2OF|E9
-ZnCXXt{:#UTqH**lvzW+P7>O7ԛmӧtN\
-endstream
-endobj
-370 0 obj
-<<
-/Type /Page
-/Contents 371 0 R
-/Resources 369 0 R
-/MediaBox [0 0 595.276 841.89]
-/Parent 353 0 R
->>
-endobj
-372 0 obj
-<<
-/D [370 0 R /XYZ 69.866 809.284 null]
->>
-endobj
-369 0 obj
-<<
-/Font << /F34 351 0 R /F65 373 0 R >>
-/ProcSet [ /PDF /Text ]
->>
-endobj
-376 0 obj
-<<
-/Length 2065
-/Filter /FlateDecode
->>
-stream
-xڍXK6W(q&3+ѶYrHPvv/6 n%W?u
-S8ZmT,IVIPM3xӭoo~3X),r(Zƫov}0iݎMiK"m1$VI%b>i NmAI2hzlךUP
`b`k4O*QZDqJ%c7o[,sh
[DGa_5~
rf=i@3u{֟4.+0/ۃ=/(
-N
-9WHdF
-qt{ hK`8l?C?_څ(UGV2Z
-Ef<.nQY.8l*'EtF%*~tHo 1"yU57 ټȫ/]0esJaHU
zK`ƪs33YZ:-"XOlv++0-iMNz+.*NL) ]9Y<=.$ _DLU)-z
MOZIKI%7P2ޕXuF*ZY)(kbO [T[Oao0CLjg N&{xlzgh
-0+x{/:H95z`i/t-
-ZovN Ax8Ra:h8Cs{AsS ձ58LH%|Mdp)̠p#`#nЙHvطL]]=ǖupeH_=Fz=h<8C\)|>"3jt\vKOuV\8ο
-,o}L\+}=4\ѷ[,>e.(
EfF