KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thaiopensource > validate > nrl > UnwrapAction


1 package com.thaiopensource.validate.nrl;
2
3 import org.xml.sax.ContentHandler JavaDoc;
4
5 class UnwrapAction extends ResultAction {
6   UnwrapAction(ModeUsage modeUsage) {
7     super(modeUsage);
8   }
9
10   void perform(ContentHandler JavaDoc handler, SectionState state) {
11     state.addChildMode(getModeUsage(), handler);
12   }
13
14   ResultAction changeCurrentMode(Mode mode) {
15     return new UnwrapAction(getModeUsage().changeCurrentMode(mode));
16   }
17 }
18
Popular Tags