diff --git a/config/src/main/java/com/typesafe/config/ConfigNode.java b/config/src/main/java/com/typesafe/config/ConfigNode.java
index 854f2d81..99d96d52 100644
--- a/config/src/main/java/com/typesafe/config/ConfigNode.java
+++ b/config/src/main/java/com/typesafe/config/ConfigNode.java
@@ -1,5 +1,27 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config;
 
+/**
+ * An immutable node that makes up the ConfigDocument AST, and which can be
+ * used to reproduce part or all of the original text of an input.
+ *
+ * <p>
+ * Because this object is immutable, it is safe to use from multiple threads and
+ * there's no need for "defensive copies."
+ *
+ * <p>
+ * <em>Do not implement interface {@code ConfigNode}</em>; it should only be
+ * implemented by the config library. Arbitrary implementations will not work
+ * because the library internals assume a specific concrete implementation.
+ * Also, this interface is likely to grow new methods over time, so third-party
+ * implementations will break.
+ */
 public interface ConfigNode {
+    /**
+     * The original text of the input which was used to form this particular node.
+     * @return the original text used to form this node as a String
+     */
     public String render();
 }
diff --git a/config/src/main/java/com/typesafe/config/impl/AbstractConfigNode.java b/config/src/main/java/com/typesafe/config/impl/AbstractConfigNode.java
index 1d966cd6..3214e362 100644
--- a/config/src/main/java/com/typesafe/config/impl/AbstractConfigNode.java
+++ b/config/src/main/java/com/typesafe/config/impl/AbstractConfigNode.java
@@ -1,3 +1,6 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
 import com.typesafe.config.ConfigNode;
diff --git a/config/src/main/java/com/typesafe/config/impl/AbstractConfigNodeValue.java b/config/src/main/java/com/typesafe/config/impl/AbstractConfigNodeValue.java
index 391c5e20..107e6679 100644
--- a/config/src/main/java/com/typesafe/config/impl/AbstractConfigNodeValue.java
+++ b/config/src/main/java/com/typesafe/config/impl/AbstractConfigNodeValue.java
@@ -1,7 +1,9 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
-// This is gross. We currently have a class that doesn't do anything, but is needed
-// to distinguish certain types of nodes from other types. This is required if we want
+// This is required if we want
 // to be referencing the AbstractConfigNode class in implementation rather than the
 // ConfigNode interface, as we can't cast an AbstractConfigNode to an interface
 abstract class AbstractConfigNodeValue extends AbstractConfigNode {
diff --git a/config/src/main/java/com/typesafe/config/impl/ConfigNodeComplexValue.java b/config/src/main/java/com/typesafe/config/impl/ConfigNodeComplexValue.java
index 56885fe7..f5cc790c 100644
--- a/config/src/main/java/com/typesafe/config/impl/ConfigNodeComplexValue.java
+++ b/config/src/main/java/com/typesafe/config/impl/ConfigNodeComplexValue.java
@@ -1,3 +1,6 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
 import com.typesafe.config.ConfigNode;
diff --git a/config/src/main/java/com/typesafe/config/impl/ConfigNodeKey.java b/config/src/main/java/com/typesafe/config/impl/ConfigNodeKey.java
index 7e157847..d65d3261 100644
--- a/config/src/main/java/com/typesafe/config/impl/ConfigNodeKey.java
+++ b/config/src/main/java/com/typesafe/config/impl/ConfigNodeKey.java
@@ -1,3 +1,6 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
 import java.util.Collection;
diff --git a/config/src/main/java/com/typesafe/config/impl/ConfigNodeKeyValue.java b/config/src/main/java/com/typesafe/config/impl/ConfigNodeKeyValue.java
index c2e5ddd8..4d7ea34a 100644
--- a/config/src/main/java/com/typesafe/config/impl/ConfigNodeKeyValue.java
+++ b/config/src/main/java/com/typesafe/config/impl/ConfigNodeKeyValue.java
@@ -1,3 +1,6 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
 import com.typesafe.config.ConfigException;
@@ -6,7 +9,7 @@ import com.typesafe.config.ConfigNode;
 import java.util.ArrayList;
 import java.util.Collection;
 
-public class ConfigNodeKeyValue extends AbstractConfigNode {
+final class ConfigNodeKeyValue extends AbstractConfigNode {
     final private ArrayList<AbstractConfigNode> children;
 
     public ConfigNodeKeyValue(Collection<AbstractConfigNode> children) {
diff --git a/config/src/main/java/com/typesafe/config/impl/ConfigNodeSimpleValue.java b/config/src/main/java/com/typesafe/config/impl/ConfigNodeSimpleValue.java
index 1c1361d6..9f77a587 100644
--- a/config/src/main/java/com/typesafe/config/impl/ConfigNodeSimpleValue.java
+++ b/config/src/main/java/com/typesafe/config/impl/ConfigNodeSimpleValue.java
@@ -1,13 +1,13 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
 import java.util.Collection;
 import java.util.Collections;
 
-/**
- * This class represents a leaf ConfigNode. This type of ConfigNode has no children.
- */
 class ConfigNodeSimpleValue extends AbstractConfigNodeValue {
-    Token token;
+    final Token token;
     ConfigNodeSimpleValue(Token value) {
         token = value;
     }
diff --git a/config/src/main/java/com/typesafe/config/impl/ConfigNodeSingleToken.java b/config/src/main/java/com/typesafe/config/impl/ConfigNodeSingleToken.java
index daaae9c4..6de305d3 100644
--- a/config/src/main/java/com/typesafe/config/impl/ConfigNodeSingleToken.java
+++ b/config/src/main/java/com/typesafe/config/impl/ConfigNodeSingleToken.java
@@ -1,10 +1,13 @@
+/**
+ *   Copyright (C) 2015 Typesafe Inc. <http://typesafe.com>
+ */
 package com.typesafe.config.impl;
 
 import java.util.Collection;
 import java.util.Collections;
 
 final class ConfigNodeSingleToken extends AbstractConfigNode{
-    Token token;
+    final Token token;
     ConfigNodeSingleToken(Token t) {
         token = t;
     }