Merge "Fixed bug in generation of return type for list key properties."
[yangtools.git] / yang / yang-parser-impl / src / main / antlr / YangLexer.g4
index bf4ecbf42df4ff4ee14a4ee68804b7adbd8999b3..f4fb777ccd3c845fce80c5ce8c63645f34155e3a 100644 (file)
@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2013 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
+//
 lexer grammar YangLexer;
 
 @header {
@@ -106,4 +113,4 @@ S : [ \n\r\t] -> skip;
 
 mode BLOCK_COMMENT_MODE;
 END_BLOCK_COMMENT : '*/' -> popMode,skip;
-BLOCK_COMMENT :  . ->more,skip;
\ No newline at end of file
+BLOCK_COMMENT :  . ->more,skip;