Move declared statements to their own package
[yangtools.git] / yang / yang-model-spi / src / main / java / org / opendaylight / yangtools / yang / model / spi / stmt / impl / decl / RegularLengthStatement.java
@@ -5,7 +5,7 @@
  * 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.spi.stmt;
+package org.opendaylight.yangtools.yang.model.spi.stmt.impl.decl;
 
 import com.google.common.collect.ImmutableList;
 import java.util.List;
@@ -14,8 +14,8 @@ import org.opendaylight.yangtools.yang.model.api.stmt.LengthStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.ValueRange;
 import org.opendaylight.yangtools.yang.model.spi.meta.AbstractDeclaredStatement.WithArgument.WithSubstatements;
 
-final class RegularLengthStatement extends WithSubstatements<List<ValueRange>> implements LengthStatement {
-    RegularLengthStatement(final String rawArgument, final List<ValueRange> argument,
+public final class RegularLengthStatement extends WithSubstatements<List<ValueRange>> implements LengthStatement {
+    public RegularLengthStatement(final String rawArgument, final List<ValueRange> argument,
             final ImmutableList<? extends DeclaredStatement<?>> substatements) {
         super(rawArgument, argument, substatements);
     }