diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 17:20:11 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 17:20:11 +0000 |
commit | d534a56d95bca7bdd812be024d9eacba4734e2b7 (patch) | |
tree | f9b98ee2b80e645a7b54e7934882be6c9f73c165 /java/com/xagasoft/gats | |
parent | 61ccc86fdf06f12cb72a8b7e65286f812cf62154 (diff) | |
download | libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.gz libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.bz2 libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.xz libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.zip |
Many changes: tabconv'd the C++ code, added a license, BSD, and docs.
Diffstat (limited to 'java/com/xagasoft/gats')
-rw-r--r-- | java/com/xagasoft/gats/GatsBoolean.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsDictionary.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsFloat.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsInputStream.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsInteger.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsList.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsNull.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsObject.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsOutputStream.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/GatsString.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/KeyNotFoundException.java | 7 | ||||
-rw-r--r-- | java/com/xagasoft/gats/package-info.java | 7 |
12 files changed, 84 insertions, 0 deletions
diff --git a/java/com/xagasoft/gats/GatsBoolean.java b/java/com/xagasoft/gats/GatsBoolean.java index 7e5d217..d54e8de 100644 --- a/java/com/xagasoft/gats/GatsBoolean.java +++ b/java/com/xagasoft/gats/GatsBoolean.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsDictionary.java b/java/com/xagasoft/gats/GatsDictionary.java index e359dfa..7909c68 100644 --- a/java/com/xagasoft/gats/GatsDictionary.java +++ b/java/com/xagasoft/gats/GatsDictionary.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsFloat.java b/java/com/xagasoft/gats/GatsFloat.java index 3d7583e..4440ea5 100644 --- a/java/com/xagasoft/gats/GatsFloat.java +++ b/java/com/xagasoft/gats/GatsFloat.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsInputStream.java b/java/com/xagasoft/gats/GatsInputStream.java index 7d598b4..6502258 100644 --- a/java/com/xagasoft/gats/GatsInputStream.java +++ b/java/com/xagasoft/gats/GatsInputStream.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsInteger.java b/java/com/xagasoft/gats/GatsInteger.java index 0ea5122..de8e343 100644 --- a/java/com/xagasoft/gats/GatsInteger.java +++ b/java/com/xagasoft/gats/GatsInteger.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.OutputStream; | 10 | import java.io.OutputStream; |
diff --git a/java/com/xagasoft/gats/GatsList.java b/java/com/xagasoft/gats/GatsList.java index 84a9b31..1c3bba8 100644 --- a/java/com/xagasoft/gats/GatsList.java +++ b/java/com/xagasoft/gats/GatsList.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsNull.java b/java/com/xagasoft/gats/GatsNull.java index 7919433..370028e 100644 --- a/java/com/xagasoft/gats/GatsNull.java +++ b/java/com/xagasoft/gats/GatsNull.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsObject.java b/java/com/xagasoft/gats/GatsObject.java index e26ab7b..df489aa 100644 --- a/java/com/xagasoft/gats/GatsObject.java +++ b/java/com/xagasoft/gats/GatsObject.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/GatsOutputStream.java b/java/com/xagasoft/gats/GatsOutputStream.java index c71491b..2a20d99 100644 --- a/java/com/xagasoft/gats/GatsOutputStream.java +++ b/java/com/xagasoft/gats/GatsOutputStream.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.OutputStream; | 10 | import java.io.OutputStream; |
diff --git a/java/com/xagasoft/gats/GatsString.java b/java/com/xagasoft/gats/GatsString.java index 8e5c5c0..442ef67 100644 --- a/java/com/xagasoft/gats/GatsString.java +++ b/java/com/xagasoft/gats/GatsString.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | import java.io.InputStream; | 10 | import java.io.InputStream; |
diff --git a/java/com/xagasoft/gats/KeyNotFoundException.java b/java/com/xagasoft/gats/KeyNotFoundException.java index 49d14e1..ddcde18 100644 --- a/java/com/xagasoft/gats/KeyNotFoundException.java +++ b/java/com/xagasoft/gats/KeyNotFoundException.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | package com.xagasoft.gats; | 8 | package com.xagasoft.gats; |
2 | 9 | ||
3 | /** | 10 | /** |
diff --git a/java/com/xagasoft/gats/package-info.java b/java/com/xagasoft/gats/package-info.java index 6feb5f1..1792bc5 100644 --- a/java/com/xagasoft/gats/package-info.java +++ b/java/com/xagasoft/gats/package-info.java | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | /** | 8 | /** |
2 | * The Generalized Agile Transport System. | 9 | * The Generalized Agile Transport System. |
3 | * | 10 | * |