Serialized Form


Package org.mitre.midiki.workshop

Class org.mitre.midiki.workshop.DiagnosticTest implements Serializable

Serialized Fields

name

java.lang.String name
The name of the symptom.

test

java.lang.String test
The name of the appropriate test.

result

java.lang.String result
The description of a positive test result.

present

boolean present
true if the symptom is present.

Class org.mitre.midiki.workshop.Disease implements Serializable

Serialized Fields

name

java.lang.String name
The common name of the disease.

description

java.lang.String description
A few paragraphs describing the disease.

regions

java.lang.String regions
Text identifying regions in which this disease is known to be present.

symptoms

java.util.ArrayList symptoms
List of symptoms presented by this disease.

tests

java.util.ArrayList tests
List of tests presented by this disease.

history

java.util.ArrayList history
List of medical history items presented by this disease.

treatment

java.lang.String treatment
Text describing available treatments for this disease.

prevention

java.lang.String prevention
Text describing possible measures for preventing infection.

Class org.mitre.midiki.workshop.DiseaseToSymptomMapping implements Serializable

Serialized Fields

disease

java.lang.String disease
Name of the diagnosable disease.

symptom

java.lang.String symptom
Name of the presented symptom.

nextSymptomForDisease

DiseaseToSymptomMapping nextSymptomForDisease
Reference to the next symptom for this disease.

nextDiseaseForSymptom

DiseaseToSymptomMapping nextDiseaseForSymptom
Reference to the next disease that presents this symptom.

Class org.mitre.midiki.workshop.MedicalHistory implements Serializable

Serialized Fields

name

java.lang.String name
The name of the history.

present

boolean present
true if the history is present.

Class org.mitre.midiki.workshop.Symptom implements Serializable

Serialized Fields

name

java.lang.String name
The name of the symptom.

present

boolean present
true if the symptom is present.

Class org.mitre.midiki.workshop.Synonym implements Serializable

Serialized Fields

syns

java.util.LinkedList syns
List of strings in this set.

Class org.mitre.midiki.workshop.WorkshopDatabase implements Serializable

Serialized Fields

diseaseList

java.util.ArrayList diseaseList
Unsorted list of disease names.

synonymList

java.util.ArrayList synonymList
List of synonym sets.

symptomList

java.util.List symptomList
Unsorted list of resolved symptom names.

testList

java.util.List testList
Unsorted list of test names.

historyList

java.util.List historyList
Unsorted list of medical history item names.

diseases

java.util.ArrayList diseases
List of detailed records for diseases.

uniqueSymptoms

java.util.HashMap uniqueSymptoms
Maps resolved names of all symptoms to the appropriate record. Only the first occurrance of a symptom is considered.

uniqueTests

java.util.HashMap uniqueTests
Maps resolved names of all tests to the appropriate record. Only the first occurrance of a symptom is considered.

uniqueHistory

java.util.HashMap uniqueHistory
Maps resolved names of all history to the appropriate record. Only the first occurrance of a symptom is considered.

symptomsByDisease

DiseaseToSymptomMapping[] symptomsByDisease
Row headers for the sparse matrix.

diseasesBySymptom

DiseaseToSymptomMapping[] diseasesBySymptom
Column headers for the sparse matrix.

testsByDisease

DiseaseToSymptomMapping[] testsByDisease
Row headers for the sparse matrix.

diseasesByTest

DiseaseToSymptomMapping[] diseasesByTest
Column headers for the sparse matrix.

historyByDisease

DiseaseToSymptomMapping[] historyByDisease
Row headers for the sparse matrix.

diseasesByHistory

DiseaseToSymptomMapping[] diseasesByHistory
Column headers for the sparse matrix.