Populate parser/ hierarchy
[yangtools.git] / parser / rfc6241-parser-support / src / main / java / org / opendaylight / yangtools / rfc6241 / parser / RefGetFilterElementAttributesStatement.java
diff --git a/parser/rfc6241-parser-support/src/main/java/org/opendaylight/yangtools/rfc6241/parser/RefGetFilterElementAttributesStatement.java b/parser/rfc6241-parser-support/src/main/java/org/opendaylight/yangtools/rfc6241/parser/RefGetFilterElementAttributesStatement.java
new file mode 100644 (file)
index 0000000..13bbf6c
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.yangtools.rfc6241.parser;
+
+import org.opendaylight.yangtools.rfc6241.model.api.GetFilterElementAttributesStatement;
+import org.opendaylight.yangtools.yang.common.Empty;
+import org.opendaylight.yangtools.yang.model.api.meta.DeclarationReference;
+import org.opendaylight.yangtools.yang.model.spi.meta.AbstractRefStatement;
+
+final class RefGetFilterElementAttributesStatement
+        extends AbstractRefStatement<Empty, GetFilterElementAttributesStatement>
+        implements GetFilterElementAttributesStatement {
+    RefGetFilterElementAttributesStatement(final GetFilterElementAttributesStatement delegate,
+            final DeclarationReference ref) {
+        super(delegate, ref);
+    }
+}