BUG-865: deprecate pre-Beryllium parser elements
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / builder / util / AbstractDocumentedNode.java
index 807b70037036ba1ab7b2a0991fb00366743932ac..d375aba5c40ba35e02a5df635681d1b708e03fcc 100644 (file)
@@ -1,17 +1,28 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * 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.parser.builder.util;
 
+import com.google.common.base.Preconditions;
 import org.opendaylight.yangtools.yang.model.api.DocumentedNode;
 import org.opendaylight.yangtools.yang.model.api.Status;
 
-import com.google.common.base.Preconditions;
-
+/**
+ * @deprecated Pre-Beryllium implementation, scheduled for removal.
+ */
+@Deprecated
 public abstract class AbstractDocumentedNode implements DocumentedNode {
 
     private final String description;
     private final String reference;
     private final Status status;
 
-    protected AbstractDocumentedNode(final AbstractDocumentedNodeBuilder builder) {
+    AbstractDocumentedNode(final AbstractDocumentedNodeBuilder builder) {
         Preconditions.checkArgument(builder.isSealed(), "Builder must be sealed.");
         this.description = builder.getDescription();
         this.reference = builder.getReference();