Merge "Fixed incorrect test location."
[yangtools.git] / code-generator / binding-generator-util / src / main / java / org / opendaylight / yangtools / binding / generator / util / TypeConstants.java
index 9154f1087bdc9487a18923eca83e355178558bd9..d5982be345b5fdac29c36aadff94ffd0b90da8b7 100644 (file)
@@ -1,9 +1,27 @@
+/*
+ * 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.binding.generator.util;
 
+/**
+ * 
+ * Contains constants used in relations with <code>Type</code>.
+ */
 public final class TypeConstants {
 
+    /**
+     * Name of the class constant which hold list of the regular expression
+     * strings.
+     */
     public static final String PATTERN_CONSTANT_NAME = "PATTERN_CONSTANTS";
 
+    /**
+     * Creation of new instance is prohibited.
+     */
     private TypeConstants() {
     }
 }