annotate base/database/classes.lisp @ 244:76a695fe294f
Add floating constituent classes.
Ignore-this: f3afc46c68f8ab3b1c9c482919a7378f
darcs-hash:20100604153709-16a00-5ec4568ef64401cb0cc67a99246a125367ce4734.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)))
|