aboutsummaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
commitd534a56d95bca7bdd812be024d9eacba4734e2b7 (patch)
treef9b98ee2b80e645a7b54e7934882be6c9f73c165 /java
parent61ccc86fdf06f12cb72a8b7e65286f812cf62154 (diff)
downloadlibgats-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')
-rw-r--r--java/FileExample.java7
-rw-r--r--java/com/xagasoft/gats/GatsBoolean.java7
-rw-r--r--java/com/xagasoft/gats/GatsDictionary.java7
-rw-r--r--java/com/xagasoft/gats/GatsFloat.java7
-rw-r--r--java/com/xagasoft/gats/GatsInputStream.java7
-rw-r--r--java/com/xagasoft/gats/GatsInteger.java7
-rw-r--r--java/com/xagasoft/gats/GatsList.java7
-rw-r--r--java/com/xagasoft/gats/GatsNull.java7
-rw-r--r--java/com/xagasoft/gats/GatsObject.java7
-rw-r--r--java/com/xagasoft/gats/GatsOutputStream.java7
-rw-r--r--java/com/xagasoft/gats/GatsString.java7
-rw-r--r--java/com/xagasoft/gats/KeyNotFoundException.java7
-rw-r--r--java/com/xagasoft/gats/package-info.java7
13 files changed, 91 insertions, 0 deletions
diff --git a/java/FileExample.java b/java/FileExample.java
index e0db728..1bfa710 100644
--- a/java/FileExample.java
+++ b/java/FileExample.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
1import com.xagasoft.gats.*; 8import com.xagasoft.gats.*;
2 9
3import java.io.FileInputStream; 10import java.io.FileInputStream;
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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.OutputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.OutputStream; 10import 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
1package com.xagasoft.gats; 8package com.xagasoft.gats;
2 9
3import java.io.InputStream; 10import 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
1package com.xagasoft.gats; 8package 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 *