blob: 405d7267d65cbef0659c9f8d9e2f35cb23bbf4e8 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"../../lib/docbook/docbook-dtd/docbookx.dtd"
[
<!ENTITY preface SYSTEM "preface.xml">
<!ENTITY gettingstarted SYSTEM "gettingstarted.xml">
<!ENTITY language SYSTEM "language.xml">
<!ENTITY examples SYSTEM "examples.xml">
<!ENTITY idioms SYSTEM "idioms.xml">
<!ENTITY pitfalls SYSTEM "pitfalls.xml">
<!ENTITY quickreference SYSTEM "quickreference.xml">
<!ENTITY semantics SYSTEM "semantics.xml">
<!ENTITY limitations SYSTEM "limitations.xml">
<!-- <!ENTITY glossary SYSTEM "glossary.xml"> -->
<!-- <!ENTITY bibliography SYSTEM "bibliography.xml"> -->
<!ENTITY index SYSTEM "index.xml">
<!ENTITY % early "ignore">
]>
<book>
<bookinfo>
<title>The AspectJ<superscript>TM</superscript> Programming Guide</title>
<authorgroup>
<author>
<othername>the AspectJ Team</othername>
</author>
</authorgroup>
<legalnotice>
<para>Copyright (c) 1998-2001 Xerox Corporation,
2002-2003 Palo Alto Research Center, Incorporated.
All rights reserved.
</para>
</legalnotice>
<abstract>
<para>
This programming guide describes the AspectJ language. A
companion guide describes the tools which are part of the
AspectJ development environment.
</para>
<para>
If you are completely new to AspectJ, you should first read
<xref linkend="gettingstarted"/> for a broad overview of programming
in AspectJ. If you are already familiar with AspectJ, but want a deeper
understanding, you should read <xref linkend="aspectjlanguage"/> and
look at the examples in the chapter. If you want a more formal
definition of AspectJ, you should read <xref linkend="semantics"/>.
</para>
</abstract>
</bookinfo>
&preface;
&gettingstarted;
&language;
&examples;
&idioms;
&pitfalls;
&quickreference;
&semantics;
&limitations;
<!-- &glossary; -->
<!-- &bibliography; -->
<!-- &index; -->
</book>
<!--
Local Variables:
compile-command: "java com.icl.saxon.StyleSheet -w0 progguide.xml progguide.html.xsl"
fill-column: 79
sgml-indent-step: 3
sgml-local-ecat-files: "progguide.ced"
End:
-->
|