Automated commit for debian release 2.13-1
[hyperobject.git] / metaclass.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          metaclass.lisp
6 ;;;; Purpose:       Define options for hyperobject metaclass
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; This file is Copyright (c) 2000-2006 by Kevin M. Rosenberg
11 ;;;; *************************************************************************
12
13 (in-package #:hyperobject)
14
15 (defparameter *class-options*
16   '(:user-name :default-print-slots :description :version :sql-name
17     :guid :version :direct-functions :direct-views :direct-rules)
18   "List of class options for hyperobjects.")
19
20 (defparameter *slot-options*
21   '(:value-type :print-formatter :description :short-description :user-name
22     :subobject :hyperlink :hyperlink-parameters :indexed :inverse :unique
23     :sql-name :null-allowed :stored :input-filter :unbound-lookup
24     :value-constraint :void-text :read-only-groups :hidden-groups :unit
25     :compute-cached-value :disable-predicate :view-type :list-of-values)
26   "Slot options that can appear as an initarg")
27
28 (defparameter *slot-options-no-initarg*
29   '(:ho-type :sql-type :sql-length)
30   "Slot options that do not have an initarg")