X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=composite.lisp;h=0489853ff1fc11461c39d033620e6cc5ecc04bb8;hb=9efb1ca7c39cd86f8730fbf7031a86a7876a57ea;hp=ee07f27bf859621daef4ee121fd6ca2ea1fb3479;hpb=231bc1b070a4f93e7d58a88ea8ffaeafd6ebc0bb;p=umlisp.git diff --git a/composite.lisp b/composite.lisp index ee07f27..0489853 100644 --- a/composite.lisp +++ b/composite.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: composite.lisp,v 1.16 2002/11/25 07:45:36 kevin Exp $ +;;;; $Id: composite.lisp,v 1.18 2002/12/13 05:43:38 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -50,8 +50,7 @@ (aif (funcall cui2-func c) (let ((ucon2 (find-ucon-cui it))) (when (ucon-is-tui? ucon2 tui) - ucon2)) - nil)) + ucon2)) nil)) (funcall related-con-func ucon)) :key #'cui)) @@ -69,29 +68,29 @@ ((freq :type integer :initarg :freq :accessor freq :print-formatter fmt-comma-integer)) (:metaclass hyperobject-class) (:default-initargs :freq 0) - (:title "Frequency class") - (:print-slots freq) + (:user-name "Frequency class") + (:default-print-slots freq) (:description "Base class containing frequency slot, used for multi-inherited objects")) (defclass ucon_freq (ucon freq) () (:metaclass hyperobject-class) - (:title "Concept and Count") - (:print-slots cui freq pfstr) + (:user-name "Concept and Count") + (:default-print-slots cui freq pfstr) (:description "Composite object of ucon/freq")) (defclass ustr_freq (ustr freq) () (:metaclass hyperobject-class) - (:title "String and Count") - (:print-slots sui freq stt lrl str) + (:user-name "String and Count") + (:default-print-slots sui freq stt lrl str) (:description "Composite object of ustr/freq")) (defclass usty_freq (usty freq) ((freq :type fixnum :initarg :freq :accessor freq)) (:metaclass hyperobject-class) - (:title "Semantic Type and Count") - (:print-slots tui freq sty) + (:user-name "Semantic Type and Count") + (:default-print-slots tui freq sty) (:description "Composite object of usty/freq")) (defun find-usty_freq-all () @@ -108,8 +107,8 @@ (defclass usrl_freq (usrl freq) () (:metaclass hyperobject-class) - (:title "Source and Count") - (:print-slots sab freq srl) + (:user-name "Source and Count") + (:default-print-slots sab freq srl) (:description "Composite object of usrl/freq")) ;; Frequency finding functions