Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
e7e94b31
Commit
e7e94b31
authored
10 years ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
further explanations to limit SAX output
parent
1a15ad23
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/course.xml
+50
-5
50 additions, 5 deletions
Doc/course.xml
with
50 additions
and
5 deletions
Doc/course.xml
+
50
−
5
View file @
e7e94b31
...
...
@@ -7908,11 +7908,56 @@ Subject: Firewall problems</programlisting>
int,int)</code> may be used to print the desired output.
But you have to limit this output to <tag
class="starttag">from</tag> and <tag
class="starttag">subject</tag> elements. This can be
achieved by introducing boolean variables being set to
true or false inside your startElement and endElement
methods accordingly to keep track of your current event
state.</para>
class="starttag">subject</tag> elements. Taking the <tag
class="starttag">subject</tag>Firewall problems<tag
class="endtag">subject</tag> element as an example the
corresponding event sequence reads:</para>
<informaltable border="1">
<tr>
<th>Event</th>
<th>Corresponding callback</th>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>Opening <tag class="starttag">subject</tag>
element</td>
<td>startElement(...)</td>
</tr>
<tr>
<td>Firewall problems</td>
<td>characters(...)</td>
</tr>
<tr>
<td>Closing <tag class="endtag">subject</tag>
element</td>
<td>endElement(...)</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
</informaltable>
<para>Limiting output of our characters(...) callback
method can be achieved by introducing instance scope
boolean variables being set to true or false inside your
startElement(...) and endElement(...) methods accordingly
to keep track of the current event state.</para>
</question>
<answer>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment