5.2. courses.fmsl

module Courses;

	export Course, TestType;

	object Course
		components:	course:string;
		description:	(*
			Represents a single course
		*);
	end Course;

	object TestType
                description: (*
                        Enumeration for the different types of tests.  (ie
                        Exam, Quiz, Final, ...)
                *);
        end TestType;

end Courses;

 


Prev: data dictionary | Next: filtering.fmsl | Up: specification | Top: index