Promote SchemaSourceRepresentation
[yangtools.git] / model / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / source / YinSourceRepresentation.java
@@ -5,12 +5,12 @@
  * 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.yang.model.repo.api;
+package org.opendaylight.yangtools.yang.model.api.source;
 
 /**
- * A YANG {@link SchemaSourceRepresentation}.
+ * A YIN {@link SourceRepresentation}.
  */
-public non-sealed interface YangSchemaSourceRepresentation extends SchemaSourceRepresentation {
+public non-sealed interface YinSourceRepresentation extends SourceRepresentation {
     @Override
-    Class<? extends YangSchemaSourceRepresentation> getType();
+    Class<? extends YinSourceRepresentation> getType();
 }