Skip to content

Commit 303633e

Browse files
committed
Provide a little more clarity around licnesing of test snippets
1 parent 4656b1d commit 303633e

File tree

6 files changed

+63
-396
lines changed

6 files changed

+63
-396
lines changed

CSharpTranslator/tests/LICENSE

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
This directory contains various C# snippets used to test aspects of CS2J.
2+
3+
The code has come from various places, as far as I know it is all freely
4+
distributable (most is very short extracts). It may not be under a permissive
5+
license though. Let me know if you wish me to include attribution, copyright
6+
statements, or for code to be removed from this section.
7+
8+

CSharpTranslator/tests/Tester/Delegates/DelegateUser.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
Copyright 2010-2013 Kevin Glynn ([email protected])
3+
Copyright 2007-2013 Rustici Software, LLC
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the MIT/X Window System License
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11+
12+
You should have received a copy of the MIT/X Window System License
13+
along with this program. If not, see
14+
15+
<http://www.opensource.org/licenses/mit-license>
16+
*/
17+
118
using System;
219
using System.Collections.Generic;
320

CSharpTranslator/tests/Tester/Delegates/EventHandler.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
Copyright 2010-2013 Kevin Glynn ([email protected])
3+
Copyright 2007-2013 Rustici Software, LLC
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the MIT/X Window System License
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11+
12+
You should have received a copy of the MIT/X Window System License
13+
along with this program. If not, see
14+
15+
<http://www.opensource.org/licenses/mit-license>
16+
*/
17+
118
// This example demonstrates the EventHandler<T> delegate.
219

320
using System;

CSharpTranslator/tests/Tester/Enums/Consts.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
Copyright 2010-2013 Kevin Glynn ([email protected])
3+
Copyright 2007-2013 Rustici Software, LLC
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the MIT/X Window System License
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11+
12+
You should have received a copy of the MIT/X Window System License
13+
along with this program. If not, see
14+
15+
<http://www.opensource.org/licenses/mit-license>
16+
*/
17+
118
using System;
219
namespace Tester
320
{

0 commit comments

Comments
 (0)