annotate base/database/classes.lisp @ 228:16b99fc989aa

Add some basic midi predicate and accessor functions. Ignore-this: ab60873a92efc7f4c3cd98cdb938dcea darcs-hash:20090918100419-16a00-bd8423ddea7a4700d7e1c5300e4dafd35113897c.gz committer: Jamie Forth <j.forth@gold.ac.uk>
author j.forth <j.forth@gold.ac.uk>
date Thu, 24 Feb 2011 11:23:18 +0000
parents e1842efb1dd4
children
rev   line source
j@216 1 (cl:in-package #:amuse-database-admin)
j@216 2
j@216 3 (defclass amuse-dataset-identifier (identifier)
j@216 4 ((dataset-id :reader dataset-id
j@216 5 :initarg :dataset-id))
j@216 6 (:documentation "A dataset is a set of pieces used for a particualar
j@216 7 analytical task. A dataset is not necessarily the same thing as a
j@216 8 corpus or collection (are these things different?). Corpus indicates
j@216 9 that a set of pieces have been curated in some way and in that sense
j@216 10 `belong together'. A dataset is just simply a set of pieces gathered
j@216 11 together to analyse, and the pieces can be from any corpus or
j@216 12 backend (hence the amuse- prefix"))
j@216 13
j@216 14 (defclass amuse-dataset (list-slot-sequence)
j@216 15 ((identifier :initarg :identifier
j@216 16 :reader identifier)
j@216 17 (description :initarg :description
j@216 18 :reader description)))