Skip to content

Commit d5d1883

Browse files
add OS license to source files
1 parent 5a3c718 commit d5d1883

33 files changed

+228
-66
lines changed

docs/overview.org

-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
| (array) | 2 | count, vals | int, long, float, double, boolean, Object |
4444
* Writer Interface
4545
** org.fressian.Writer
46-
**
47-
4846
* Tagged interface
4947
In order to support construction, writing and reading of (esp. nested)
5048
values of types for which there are no mappings, or no unique

src/org/fressian/Cached.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
8+
39
package org.fressian;
410

511
public interface Cached {

src/org/fressian/CachedObject.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/FressianReader.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/FressianWriter.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/Reader.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/StreamingWriter.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/Tagged.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/TaggedObject.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/Writer.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian;
510

src/org/fressian/handlers/ConvertBytes.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/ConvertDouble.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/ConvertFloat.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/ConvertList.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/ILookup.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/IWriteHandlerLookup.java

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
8+
19
package org.fressian.handlers;
210

311
public interface IWriteHandlerLookup {

src/org/fressian/handlers/ReadHandler.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/WriteHandler.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/handlers/WriteHandlerLookup.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.handlers;
510

src/org/fressian/impl/ByteBufferInputStream.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
8+
39
package org.fressian.impl;
410

511
import java.io.IOException;

src/org/fressian/impl/BytesOutputStream.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
8+
39
package org.fressian.impl;
410

511
import java.io.ByteArrayOutputStream;

src/org/fressian/impl/CachingLookup.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/ChainedLookup.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/Codes.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/Fns.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/Handlers.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/InheritanceLookup.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/InterleavedIndexHopMap.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
3-
4-
/* rich 1/10/11 */
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
58

69
package org.fressian.impl;
710

src/org/fressian/impl/MapLookup.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

src/org/fressian/impl/Ranges.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright (c) Metadata Partners, LLC.
2-
// All rights reserved.
1+
// Copyright (c) Metadata Partners, LLC. All rights reserved.
2+
// The use and distribution terms for this software are covered by the
3+
// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
// which can be found in the file epl-v10.html at the root of this distribution.
5+
// By using this software in any fashion, you are agreeing to be bound by
6+
// the terms of this license.
7+
// You must not remove this notice, or any other, from this software.
38

49
package org.fressian.impl;
510

0 commit comments

Comments
 (0)