Seal ItemOrder and MutationBehaviour
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Mutable.java
index 60c10352df54531df49221d6f312319d99b9f6bc..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 <ttkacik@cisco.com>
+ * 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
 }