main/get-slots [ Methods ]

[ Top ] [ main ] [ Methods ]

Name

 get-slots

File

 classes.lsp

Description

 get-slots can be called with an instance of any class defined
 in Comic and returns a list of all slots this instance has.

Parameter

 anything: any instance of a class defined by the comic-package

Return Value

 list

main/info [ Methods ]

[ Top ] [ main ] [ Methods ]

Name

 info

File

 classes.lsp

Description

 Prints info on any instance of a class defined in comic to
 std-out, including its slots and values, a structural overview
 of events and subecents (if applicable), and additional
 information on the objects status, etc.

Parameter

 anything: any instance of a class defined by the comic-package

Return Value

 t

Synopsis

(defgeneric info (anything &key stream print-event-structure?))

main/named-object [ Classes ]

[ Top ] [ main ] [ Classes ]

Name

 named-object

File

 classes.lsp

Slots

 name

Synopsis

(defclass named-object ()
  ((name :initarg :name
         :initform nil)))