Cleanup more tests
[yangtools.git] / attic / yang-data-jaxen / src / main / java / org / opendaylight / yangtools / yang / data / jaxen / StepListener.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.jaxen;
9
10 import org.jaxen.expr.AllNodeStep;
11 import org.jaxen.expr.CommentNodeStep;
12 import org.jaxen.expr.NameStep;
13 import org.jaxen.expr.ProcessingInstructionNodeStep;
14 import org.jaxen.expr.TextNodeStep;
15
16 abstract class StepListener {
17
18     void onAll(final AllNodeStep step) {
19
20     }
21
22     void onComment(final CommentNodeStep step) {
23
24     }
25
26     void onName(final NameStep step) {
27
28     }
29
30     void onProcessingInstruction(final ProcessingInstructionNodeStep step) {
31
32     }
33
34     void onTest(final TextNodeStep step) {
35
36     }
37 }