Add YinXMLEventReaderFactory
[yangtools.git] / yang / yang-model-export / src / main / java / org / opendaylight / yangtools / yang / model / export / StatementTextWriter.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.yangtools.yang.model.export;
10
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
13 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
14 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
15
16 @Deprecated
17 interface StatementTextWriter {
18
19
20     void startStatement(StatementDefinition statement);
21
22     void writeArgument(RevisionAwareXPath xpath);
23
24     void writeArgument(QName name);
25
26     void writeArgument(String argStr);
27
28     void writeArgument(SchemaPath targetPath);
29
30     void endStatement();
31
32 }