From 6629e48dbff05751879a24c27623a3c923189a79 Mon Sep 17 00:00:00 2001 From: acolyer Date: Thu, 1 Sep 2005 16:16:11 +0000 Subject: ensure every section has an assigned id so that urls in generated html remain stable across builds. --- docs/progGuideDB/examples.xml | 11 +++++---- docs/progGuideDB/gettingstarted.xml | 25 ++++++++++--------- docs/progGuideDB/implementation.xml | 7 +++--- docs/progGuideDB/language.xml | 21 ++++++++-------- docs/progGuideDB/semantics.xml | 49 +++++++++++++++++++------------------ 5 files changed, 59 insertions(+), 54 deletions(-) (limited to 'docs/progGuideDB') diff --git a/docs/progGuideDB/examples.xml b/docs/progGuideDB/examples.xml index 762a4ef08..12c6d1ccc 100644 --- a/docs/progGuideDB/examples.xml +++ b/docs/progGuideDB/examples.xml @@ -620,7 +620,7 @@ public aspect HashablePoint { Development Aspects - + Tracing using aspects @@ -1086,7 +1086,7 @@ abstract aspect Trace { - + A Bean Aspect @@ -1367,7 +1367,7 @@ java bean.Demo - + The Subject/Observer Protocol @@ -1607,7 +1607,7 @@ aspect SubjectObserverProtocolImpl extends SubjectObserverProtocol { - + A Simple Telecom Simulation @@ -2166,7 +2166,7 @@ public aspect Billing { Reusable Aspects - + Tracing using Aspects, Revisited @@ -2436,3 +2436,4 @@ s1.toString(): Square side = 1.0 @ (1.0, 2.0) + diff --git a/docs/progGuideDB/gettingstarted.xml b/docs/progGuideDB/gettingstarted.xml index c9ac6ad36..e81db668f 100644 --- a/docs/progGuideDB/gettingstarted.xml +++ b/docs/progGuideDB/gettingstarted.xml @@ -183,7 +183,7 @@ - + The Dynamic Join Point Model @@ -217,7 +217,7 @@ - + Pointcuts @@ -350,7 +350,7 @@ cflow(move()) - + Advice @@ -501,7 +501,7 @@ after(FigureElement fe, int x, int y) returning: setXY(fe, x, y) { - + Inter-type declarations @@ -612,7 +612,7 @@ aspect PointObserving { - + Aspects @@ -674,7 +674,7 @@ aspect Logging { possible to easily enable and disable the functionality when desired. - + Tracing @@ -744,7 +744,7 @@ Entering: call(void FigureElement.draw(GraphicsContext)) - + Profiling and Logging @@ -807,7 +807,7 @@ aspect SetsInRotateCounting { - + Pre- and Post-Conditions @@ -873,7 +873,7 @@ aspect PointBoundsChecking { - + Contract Enforcement @@ -944,7 +944,7 @@ aspect RegistrationProtection { - + Configuration Management @@ -984,7 +984,7 @@ aspect RegistrationProtection { maintain. - + Change Monitoring @@ -1098,7 +1098,7 @@ aspect MoveTracking { - + Context Passing @@ -1308,3 +1308,4 @@ aspect ContextFilling { + diff --git a/docs/progGuideDB/implementation.xml b/docs/progGuideDB/implementation.xml index d654eb44e..f83e7dd8c 100644 --- a/docs/progGuideDB/implementation.xml +++ b/docs/progGuideDB/implementation.xml @@ -148,7 +148,7 @@ Bytecode Notes - + The .class expression and String + The java language form Foo.class is @@ -186,7 +186,7 @@ - + The Handler join point @@ -249,7 +249,7 @@ - + Initializers and Inter-type Constructors @@ -358,3 +358,4 @@ + diff --git a/docs/progGuideDB/language.xml b/docs/progGuideDB/language.xml index e337d79ec..29b6dcfb9 100644 --- a/docs/progGuideDB/language.xml +++ b/docs/progGuideDB/language.xml @@ -31,7 +31,7 @@ be exposed to the new terminology introduced by AspectJ. - + An Example Aspect @@ -81,7 +81,7 @@ - + Pointcuts @@ -149,7 +149,7 @@ pointcut services(Server s): target(s) && call(public * *(..)) - + Advice @@ -291,7 +291,7 @@ pointcut ioHandler(): within(MyClass) && handler(IOException); happen). The right-hand side consists of the pointcut itself. - + Some Example Pointcuts @@ -549,7 +549,7 @@ interface MyInterface { ... } - + call vs. execution @@ -601,7 +601,7 @@ interface MyInterface { ... } - + Pointcut composition @@ -724,7 +724,7 @@ aspect A { - + Pointcut Parameters @@ -841,7 +841,7 @@ pointcut setter(Point p, int newval): target(p) && - + Example: <literal>HandleLiveness</literal> @@ -1139,7 +1139,7 @@ void around(Point p, int x): target(p) - + Inter-type Scope @@ -1169,7 +1169,7 @@ void around(Point p, int x): target(p) - + Example: <literal>PointAssertions</literal> @@ -1307,3 +1307,4 @@ void around(Point p, int x): target(p) + diff --git a/docs/progGuideDB/semantics.xml b/docs/progGuideDB/semantics.xml index cf5740fde..fe4d11322 100644 --- a/docs/progGuideDB/semantics.xml +++ b/docs/progGuideDB/semantics.xml @@ -544,7 +544,7 @@ - + Pointcut definition @@ -625,7 +625,7 @@ - + Context exposure @@ -736,7 +736,7 @@ - + Primitive pointcuts @@ -1089,7 +1089,7 @@ aspect A { - + Signatures @@ -1180,7 +1180,7 @@ aspect A { - + Matching @@ -1503,7 +1503,7 @@ aspect A { - + Type patterns @@ -1705,7 +1705,7 @@ aspect A { - + Pattern Summary @@ -1974,7 +1974,7 @@ ModifiersPattern = advice. - + Advice modifiers @@ -1984,7 +1984,7 @@ ModifiersPattern = - + Advice and checked exceptions @@ -2083,7 +2083,7 @@ ModifiersPattern = - + Advice precedence @@ -2185,7 +2185,7 @@ ModifiersPattern = - + Reflective access to the join point @@ -2255,7 +2255,7 @@ ModifiersPattern = inter-type member declarations and other declare forms. - + Inter-type member declarations @@ -2383,7 +2383,7 @@ ModifiersPattern = declaration. - + Access modifiers @@ -2424,7 +2424,7 @@ ModifiersPattern = - + Conflicts @@ -2511,7 +2511,7 @@ ModifiersPattern = - + Extension and Implementation @@ -2543,7 +2543,7 @@ ModifiersPattern = - + Interfaces with members @@ -2589,7 +2589,7 @@ ModifiersPattern = - + Warnings and Errors An aspect may specify that a particular join point should never be @@ -2607,7 +2607,7 @@ ModifiersPattern = - + Softened exceptions An aspect may specify that a particular kind of exception, if @@ -2669,7 +2669,7 @@ ModifiersPattern = - + Advice Precedence @@ -2823,7 +2823,7 @@ ModifiersPattern = - + Statically determinable pointcuts Pointcuts that appear inside of declare forms @@ -2856,7 +2856,7 @@ ModifiersPattern = declaration. - + Aspect Declaration @@ -2902,7 +2902,7 @@ ModifiersPattern = - + Aspect Extension @@ -2942,7 +2942,7 @@ ModifiersPattern = - + Aspect instantiation @@ -3106,7 +3106,7 @@ ModifiersPattern = - + Aspect privilege @@ -3183,3 +3183,4 @@ ModifiersPattern = + -- cgit v1.2.3