r4926: Auto commit for Debian build
[hyperobject.git] / metaclass.lisp
index 9c854509286ffe211fa687389a005d67d547c710..321a4b0f6eded131ab403ef05cfcf22203bab95d 100644 (file)
@@ -8,10 +8,9 @@
 ;;;; Date Started:  Apr 2000
 ;;;;
 ;;;;
-;;;; $Id: metaclass.lisp,v 1.2 2002/12/02 15:57:17 kevin Exp $
-;;;;
-;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
+;;;; $Id: metaclass.lisp,v 1.7 2003/05/14 05:29:48 kevin Exp $
 ;;;;
+;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg
 ;;;; *************************************************************************
  
 (in-package :hyperobject)
 
   
 (defparameter *class-options*
-  '(:title :print-slots :description :version :sql-name)
+  '(:user-name :default-print-slots :description :version :sql-name
+    :direct-rules)
   "List of class options for hyperobjects.")
 (defparameter *slot-options*
-  '(:print-formatter :description
+  '(:value-type :print-formatter :description :user-name
     :subobject :hyperlink :hyperlink-parameters
-    :stored :indexed :inverse :unique :sql-name)
+    :index :inverse :unique :sql-name :null-allowed :stored
+    :input-filter :unbound-lookup
+    :value-constraint :nil-text)
   "Slot options that can appear as an initarg")
 (defparameter *slot-options-no-initarg*
-  '(:ho-type :sql-type)
+  '(:ho-type :sql-type :length)
   "Slot options that do not have an initarg")