01: /*
02: * $Id: ScopeHandler.java 752 2006-11-10 21:16:47Z hengels $
03: * (c) Copyright 2004 con:cern development team.
04: *
05: * This file is part of con:cern (http://concern.sf.net).
06: *
07: * con:cern is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU Lesser General Public License
09: * as published by the Free Software Foundation; either version 2.1
10: * of the License, or (at your option) any later version.
11: *
12: * Please see COPYING for the complete licence.
13: */
14: package org.concern.model.cpd;
15:
16: import org.xml.sax.helpers.DefaultHandler;
17:
18: /**
19: * @author hengels[at]mercatis[dot]de
20: * @version $Revision: 752 $
21: */
22: public abstract class ScopeHandler extends DefaultHandler {
23: public abstract ScopeHandler getHandler(String localName,
24: String qName);
25:
26: public abstract void fetchChild(ScopeHandler handler);
27: }
|