BUG 1131: untangling package cyclic dependencies in yang-parser-impl
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / util / NodeWrappedType.java
index 30799bd479f0347a7ee254542195febde073d42f..fca683d246cccc6423eef33f726553e04e19b31e 100644 (file)
@@ -17,20 +17,20 @@ public final class NodeWrappedType extends NodeImpl {
 
     /**
      * Create new instance of class <code>NodeWrappedType</code>.
-     * 
+     *
      * @param wrappedType
      *            object with payload data
      */
-    NodeWrappedType(Object wrappedType) {
+    public NodeWrappedType(Object wrappedType) {
         this.wrappedType = wrappedType;
     }
 
     /**
      * Gets payload from class
-     * 
+     *
      * @return object with <code>wrappedType</code>
      */
-    Object getWrappedType() {
+    public Object getWrappedType() {
         return wrappedType;
     }