Renamed fill-gaps-only to fill-gaps-only-p, and added the :fill-gaps-only-p initarg...
[clinton/lisp-on-lines.git] / src / packages.lisp
index 8c971ce..839feba 100644 (file)
@@ -1,5 +1,5 @@
 (defpackage :meta-model
-  (:use :common-lisp )
+  (:use :common-lisp :clsql)
   (:export
    :meta-model-class
    :meta-model.base-type
    :find-default-value
    :explode-foreign-key
    :list-has-many
-   :list-many-to-many))
+   :list-many-to-many
+   :sync-instance
+   :explode-has-many
+   :expr-ends-with
+   :expr-starts-with
+   :expr-contains
+   :expr-=
+   :expr-<
+   :expr->
+   :expr-and
+   :expr-or
+   :expr-not
+   :select-instances
+   ))
 
+
+(defpackage :mewa 
+  (:use :ucw :common-lisp)
+  (:export 
+   :mewa 
+   :mewa-object-presentation 
+   :mewa-one-line-presentation
+   :mewa-presentation-search
+   :find-attribute 
+   :set-default-attributes 
+   :make-presentation 
+   :call-presentation 
+   :label 
+   :set-attribute
+   :perform-set-attributes
+   :find-class-attributes 
+   :default-attributes 
+   :ok
+   :edit-instance
+   :save-instance
+   :cancel-save-instance
+   :ensure-instance-sync
+   :global-properties
+   :search-expr
+   :search-query))
+
+(defpackage :lisp-on-lines
+  (:use :mewa :meta-model :common-lisp :it.bese.ucw))