source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/util/HTMLDocHeadingList.java@ 12188

Last change on this file since 12188 was 12188, checked in by kjdon, 18 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 355 bytes
Line 
1package org.greenstone.gsdl3.gs3build.util;
2
3
4
5public class HTMLDocHeadingList extends HTMLBlockList
6
7{ public HTMLDocHeadingList(HTMLDoc doc)
8
9 { super();
10
11
12
13 super.initialise(doc, headingStartTags, headingEndTags, anchorOptEndTags);
14
15 }
16
17
18
19 public int headingLevel(int element)
20
21 { return this.tagBlock(element).headTag().tagLevel();
22
23 }
24
25}
Note: See TracBrowser for help on using the repository browser.