Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import java.util.HashSet; import java.util.LinkedList; import java.util.List; import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * A class that tokenizes the String representation of patterns for the * {@link LayeredTokenPattern} c...
855
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; /** * An exception class used for handling errors related to layered sequences. * * @author afader * */ public class SequenceException extends RuntimeException { private static final long serialVersionUID = 1L; public SequenceException(Exception cause) { ...
103
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import java.util.ArrayList; import java.util.List; /** * <p> * A class for tagging a sequence using a {@link LayeredTokenPattern} pattern. * The tagger is defined by a pattern and a tag. Given a {@link LayeredSequence} * object, the {@link #tag(LayeredSequence)} metho...
452
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import com.google.common.collect.ImmutableCollection; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMultimap; import com....
2,288
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.List; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableList; import edu.washington.cs.knowitall.commonlib.Range; ...
1,880
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import java.util.HashMap; import com.google.common.base.Predicate; import edu.washington.cs.knowitall.extractor.conf.featureset.BooleanFeatureSet; import edu.washington.cs.knowitall.extractor.conf.opennlp.OpenNlpDataSet; public class StringFeatures { public s...
377
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import static org.junit.Assert.*; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.InputStream; import org.junit.Test; import edu.washington.cs.knowitall.extractor.conf.LabeledBinaryExtraction; import edu.washington.cs.know...
246
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import static org.junit.Assert.assertTrue; import opennlp.maxent.GIS; import opennlp.maxent.GISModel; import opennlp.model.ListEventStream; import org.junit.Test; import edu.washington.cs.knowitall.extractor.conf.featureset.BooleanFeatureSet; import edu.washington....
247
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import static org.junit.Assert.*; import java.util.List; import opennlp.model.Event; import org.junit.Test; public class WekaDataSetTest { @Test public void testGetWekaInstances() { List<Event> events = StringFeatures.dataSet.getInstances(); assertEquals(4...
79
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import static org.junit.Assert.assertTrue; import opennlp.maxent.GIS; import opennlp.maxent.GISModel; import opennlp.model.ListEventStream; import org.junit.Test; import edu.washington.cs.knowitall.extractor.conf.featureset.BooleanFeatureSet; import edu.washington....
246
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import static org.junit.Assert.*; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import org.junit.Test; import com.google.common.collect.Iterables; import edu.washington.cs.knowitall.extractor.c...
603
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.conf; import static org.junit.Assert.*; import java.util.Map; import org.junit.Test; public class BooleanFeatureSetTest { @Test public void testFeaturize() { String jane = "jane"; Map<String, Boolean> janeFeats = StringFeatures.featureSet.featurize(jane); asser...
477
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor.mapper; import static org.junit.Assert.*; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.extractor.ExtractorUnion; import edu.washington.cs.knowitall.extractor.RegexExtractor; import edu.washington.cs.knowitall.extractor.mapper.MergeO...
579
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor; import java.util.ArrayList; import java.util.List; import junit.framework.Assert; import org.junit.Before; import org.junit.Test; import com.google.common.collect.Iterables; import edu.washington.cs.knowitall.extractor.RegexExtractor; import edu.washington.cs.knowita...
426
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor; import static org.junit.Assert.*; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import org.junit.Before; import org.junit.Test; import com.google.common.collect.Iterables; import edu.washington.cs.knowitall.extractor.ReVerbExtractor; imp...
6,183
github-java-corpus
2,012
package edu.washington.cs.knowitall.extractor; import static org.junit.Assert.assertEquals; import java.util.ArrayList; import java.util.List; import org.junit.Before; import org.junit.Test; import com.google.common.collect.Iterables; import edu.washington.cs.knowitall.nlp.ChunkedSentence; import edu.washington.cs...
482
github-java-corpus
2,012
package edu.washington.cs.knowitall.normalization; import static org.junit.Assert.*; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.commonlib.Range; import edu.washington.cs.knowitall.nlp.ChunkedSentence;...
764
github-java-corpus
2,012
package edu.washington.cs.knowitall.normalization; import static org.junit.Assert.*; import java.util.Arrays; import java.util.List; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.commonlib.Range; import edu.washington.cs.knowitall.nlp.ChunkedSentence; import edu.washington.cs.kn...
386
github-java-corpus
2,012
package edu.washington.cs.knowitall.nlp.extraction; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import edu.washington.cs.knowitall.commonlib.Range; import edu.washington.cs.knowitall.nlp.ChunkedSentence; /** * Some extractions that are used by other test cases. * @author afader * ...
897
github-java-corpus
2,012
package edu.washington.cs.knowitall.nlp.extraction; import static org.junit.Assert.*; import java.util.ArrayList; import java.util.List; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.commonlib.Range; import edu.washington.cs.knowitall.nlp.ChunkedSentence; import edu.washington....
1,277
github-java-corpus
2,012
package edu.washington.cs.knowitall.nlp; import static org.junit.Assert.*; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileWriter; import java.io.InputStream; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; public class Chu...
379
github-java-corpus
2,012
package edu.washington.cs.knowitall.nlp; import static org.junit.Assert.*; import java.util.ArrayList; import org.junit.Test; import com.google.common.collect.Iterables; import edu.washington.cs.knowitall.commonlib.Range; import edu.washington.cs.knowitall.nlp.ChunkedSentence; import edu.washington.cs.knowitall.nl...
526
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import static org.junit.Assert.assertEquals; import java.util.ArrayList; import java.util.List; import org.junit.Test; import edu.washington.cs.knowitall.sequence.LayeredTokenPattern; import edu.washington.cs.knowitall.sequence.RegexTagger; import edu.washington.cs.kno...
375
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.util.ArrayList; import java.util.List; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.nlp...
853
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.sequence.LayeredPatternTokenizer; public class LayeredPa...
421
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import static org.junit.Assert.assertEquals; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import org.junit.Before; import org.junit.Test; import edu.washington.cs.knowitall.sequence.Encoder; public class EncoderTes...
246
github-java-corpus
2,012
package edu.washington.cs.knowitall.sequence; import static org.junit.Assert.*; import java.util.ArrayList; import java.util.List; import org.junit.Test; import edu.washington.cs.knowitall.commonlib.Range; import edu.washington.cs.knowitall.sequence.BIOLayeredSequence; public class BIOLayeredSequenceTest { ...
1,278
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and ro...
503
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
631
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
3,584
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and ro...
481
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
449
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
474
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
428
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
880
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
5,502
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
3,628
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
569
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
8,267
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
803
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
478
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
418
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
455
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and ro...
605
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
453
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
745
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
5,770
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
477
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
2,810
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
433
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
716
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
458
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
479
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
396
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
4,560
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
480
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
508
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and ro...
379
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
429
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,975
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
849
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
442
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,834
github-java-corpus
2,012
/* * The GDMS library (Generic Datasources Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
482
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
927
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
759
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
461
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
558
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,896
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
569
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
514
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
620
github-java-corpus
2,012
/* * The GDMS library (Generic Datasources Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
484
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and ro...
379
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
903
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,506
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
488
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
528
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,126
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,121
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
745
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
401
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
426
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
410
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
573
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
603
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
639
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
493
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,106
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,430
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
2,796
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
948
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and ro...
472
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
1,018
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
688
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
463
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
627
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
515
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
546
github-java-corpus
2,012
/** * The GDMS library (Generic Datasource Management System) * is a middleware dedicated to the management of various kinds of * data-sources such as spatial vectorial data or alphanumeric. Based * on the JTS library and conform to the OGC simple feature access * specifications, it provides a complete and robust ...
432