initial contribution
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / renderer / StructureClosure.java
1 package net.sourceforge.phpeclipse.wiki.renderer;
2
3
4 public interface StructureClosure {
5         /**
6          * @param header the text of the header without markup
7          * @param offset the offset in the document where the header is located
8          */
9         void acceptHeader(String header, int offset);
10 }