> I you come across any APIs you need in CLIPS to support Eclipse
> integration, post them to the forum and I'll take a look at including
> them in CLIPS.
One thing I've recently found myself missing is a documentation
function[1]. I've always assumed one existed but I haven't been able
to find it anywhere. The reason i'm posting it in this thread is
because I think an IDE should be able to show the documentation string
of a function in various situations (similar to what Eclipse does for
JavaDoc comments) and in order to do that we need a way to extract the
info programmatically.
What I'm talking about is something similar to:
CLIPS> (deffunction foo ()
"This is an optional documentation string"
(return TRUE))
CLIPS> (documentation foo)
"This is an optional documentation string"
CLIPS> (deffunction bar ()
(return TRUE))
CLIPS> (documentation bar)
nil
CLIPS>
This should also apply to defrules, defmodules and anywhere else you
can specify an optional documentation string.
BR
Johan Lindberg
jo...@pulp.se