Seal ItemOrder and MutationBehaviour
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Mutable.java
index af08aa1d88ab7b3fd6dccbaf3f3cb1e54590db96..f5ad016c3f22cd0f75418b2d817e7132e137de52 100644 (file)
@@ -8,14 +8,11 @@
 package org.opendaylight.yangtools.concepts;
 
 /**
- * Mutable object - object may change it's state during lifecycle.
- * 
- * This interface is mutually exclusive with {@link Immutable}  and other
- * {@link MutationBehaviour}s.
- * 
- * @author Tony Tkacik
+ * Mutable object - object may change it's state during lifecycle. This interface is mutually exclusive
+ * with {@link Immutable} and other {@link MutationBehaviour}s.
  *
+ * @author Tony Tkacik
  */
-public interface Mutable extends MutationBehaviour<Mutable>{
-    
+public non-sealed interface Mutable extends MutationBehaviour<Mutable> {
+    // Marker interface only
 }