Add copyright to ANTLR grammar files 11/4711/1
authorRobert Varga <rovarga@cisco.com>
Fri, 24 Jan 2014 14:27:11 +0000 (15:27 +0100)
committerRobert Varga <rovarga@cisco.com>
Fri, 24 Jan 2014 14:27:11 +0000 (15:27 +0100)
Change-Id: I7d40506d1a418237e204bbbb3f45db1c8fe7e714
Signed-off-by: Robert Varga <rovarga@cisco.com>
yang/yang-parser-impl/src/main/antlr/YangLexer.g4
yang/yang-parser-impl/src/main/antlr/YangParser.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;
index 5f8ca887aa891edfa13c405c5265384212893ddc..b237e073c31c5e4de81d4539a1b15a8b8a15be27 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
+//
 parser grammar YangParser;
 
 @header {