forked from robert-strandh/CLOS-MOP-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
classes.html
57 lines (49 loc) · 1.66 KB
/
classes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<HTML>
<HEAD>
<TITLE>Classes</TITLE>
<LINK rel="stylesheet" type="text/css" href="clos-mop.css">
</HEAD>
<BODY>
<ul class=navigation>
<a href="table-of-contents.html" title="Table of contents">
<li class=navigation><img src="toc.png" alt="TOC">
</li>
</a>
<a href="metaobjects.html" title="Prev">
<li class=navigation><img src="prev.png" alt="Prev">
</li>
</a>
<a href="table-of-contents.html" title="Up">
<li class=navigation><img src="up.png" alt="Up">
</li>
</a>
<a href="slot-definitions.html" title="Next">
<li class=navigation><img src="next.png" alt="Next">
</li>
</a>
</ul>
<H3>Classes</H3>
<P>
A <I>class metaobject</I> determines the structure and the
default behavior of its instances. The following information is
associated with class metaobjects:
</P>
<UL>
<LI><P>The name, if there is one, is available as an
object.</P></LI>
<LI><P>The direct subclasses, direct superclasses and class
precedence list are available as lists of class
metaobjects.</P></LI>
<LI><P>The slots defined directly in the class are available as
a list of direct slot definition metaobjects. The slots
which are accessible in instances of the class are available
as a list of effective slot definition metaobjects.</P></LI>
<LI><P>The documentation is available as a string
or <TT>nil</TT>.</P></LI>
<LI><P>The methods which use the class as a specializer, and the
generic functions associated with those methods are
available as lists of method and generic function
metaobjects respectively.</P></LI>
</UL>
</BODY>
</HTML>