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 nl.astraeus.persistence; import org.prevayler.Transaction; import java.io.Serializable; import java.util.*; /** * StoreModelTransaction * <p/> * User: rnentjes * Date: 7/20/11 * Time: 12:58 PM */ public final class SimpleTransaction implements Serializable, Transaction { private static final long ser...
439
github-java-corpus
2,012
package nl.astraeus.persistence; import nl.astraeus.persistence.reflect.ReflectHelper; import java.io.Serializable; import java.util.*; /** * User: rnentjes * Date: 3/27/12 * Time: 10:09 PM */ public class SimpleIndex<M extends SimpleModel, T> implements Serializable { public final static long serialVersionU...
336
github-java-corpus
2,012
package nl.astraeus.persistence; import java.io.Serializable; /** * User: rnentjes * Date: 3/27/12 * Time: 10:05 PM */ public interface SimpleListener<M extends SimpleModel> extends Serializable { public void objectUpdates(M model); public void objectRemoved(M model); }
73
github-java-corpus
2,012
package nl.astraeus.persistence; import org.prevayler.Prevayler; import org.prevayler.PrevaylerFactory; import java.io.IOException; import java.lang.reflect.Field; import java.util.Collection; import java.util.HashMap; import java.util.Map; import java.util.Set; import java.util.concurrent.TimeUnit; /** * User: rne...
2,129
github-java-corpus
2,012
package nl.astraeus.persistence; import nl.astraeus.persistence.reflect.ReflectHelper; import javax.annotation.Nonnull; import java.io.Serializable; import java.lang.reflect.Field; import java.util.*; /** * User: rnentjes * Date: 8/19/11 * Time: 8:54 PM */ public class PrevalentSystem implements Serializable { ...
1,428
github-java-corpus
2,012
package nl.astraeus.persistence; import org.prevayler.Transaction; import java.io.Serializable; import java.util.Map; /** * StoreModelTransaction * <p/> * User: rnentjes * Date: 7/20/11 * Time: 12:58 PM */ public abstract class ModelTransaction<M extends SimpleModel> implements Serializable, Transaction { ...
126
github-java-corpus
2,012
package nl.astraeus.persistence; import javax.annotation.CheckForNull; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.*; /** * SimpleDao * <p/> * User: rnentjes * Date: 7/20/11 * Time: 11:12 AM */ public abstract class SimpleDao<M extends SimpleModel> { private ...
1,428
github-java-corpus
2,012
package nl.astraeus.persistence; /** * User: rnentjes * Date: 8/29/12 * Time: 10:58 AM * <p/> * (c) Astreaeus B.V. */ public class ConversationScope { // entity // transaction less // when saving model, check for any references in conversation scope // save them as well // unknown reference ...
132
github-java-corpus
2,012
package de.jungblut.math.sparse; import junit.framework.TestCase; import org.junit.Test; import de.jungblut.math.DoubleVector; public class SparseDoubleColumnVectorTest extends TestCase { @Test public void testAccessors() throws Exception { double[] arr = new double[] { 1, 2, 3, 4, 5 }; Sp...
378
github-java-corpus
2,012
package de.jungblut.math.sparse; import junit.framework.TestCase; import org.junit.Test; import de.jungblut.math.DoubleMatrix; import de.jungblut.math.DoubleVector; public class SparseDoubleColumnMatrixTest extends TestCase { @Test public void testAccessors() throws Exception { double[][] arr ...
1,324
github-java-corpus
2,012
package de.jungblut.math.dense; import junit.framework.TestCase; import org.junit.Test; import de.jungblut.math.DoubleMatrix; import de.jungblut.math.DoubleVector; public class DenseDoubleMatrixTest extends TestCase { @Test public void testAccessors() throws Exception { double[][] arr = new do...
1,287
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.Iterator; import junit.framework.TestCase; import org.junit.Test; import de.jungblut.math.DoubleVector; import de.jungblut.math.DoubleVector.DoubleVectorElement; public class DenseDoubleVectorTest extends TestCase { @Test public void testAccessors...
496
github-java-corpus
2,012
package de.jungblut.math.tuple; import junit.framework.TestCase; import org.junit.Test; public class Tuple3Test extends TestCase { @Test public void testTuple() { Tuple3<Integer, String, Double> tp = new Tuple3<Integer, String, Double>(1, "abc", 2.0d); assertEquals(1, tp.getFirst()...
105
github-java-corpus
2,012
package de.jungblut.math.tuple; import junit.framework.TestCase; import org.junit.Test; public class TupleTest extends TestCase { @Test public void testTuple() { Tuple<Integer, String> tp = new Tuple<Integer, String>(1, "abc"); assertEquals(1, tp.getFirst().intValue()); assertEquals("a...
79
github-java-corpus
2,012
package de.jungblut.math; /** * A matrix consisting of booleans. */ public interface BooleanMatrix { /** * double conversion value for non-default element value. */ public static final double NOT_FLAGGED = 0.0d; /** * Get a specific value of the matrix. * * @return the integer ...
285
github-java-corpus
2,012
package de.jungblut.math.named; import java.util.Iterator; import de.jungblut.math.DoubleVector; import de.jungblut.math.function.DoubleDoubleVectorFunction; import de.jungblut.math.function.DoubleVectorFunction; /** * A named vector that contains a string name and an embedded double vector. */ public f...
1,046
github-java-corpus
2,012
package de.jungblut.math.sparse; import gnu.trove.map.hash.TIntObjectHashMap; import java.util.Iterator; import java.util.List; import de.jungblut.math.BooleanMatrix; import de.jungblut.math.BooleanVector; import de.jungblut.math.BooleanVector.BooleanVectorElement; import de.jungblut.math.DoubleMatrix; im...
3,038
github-java-corpus
2,012
package de.jungblut.math.sparse; import gnu.trove.iterator.TIntDoubleIterator; import gnu.trove.map.hash.TIntDoubleHashMap; import java.util.Iterator; import com.google.common.collect.AbstractIterator; import de.jungblut.math.DoubleVector; import de.jungblut.math.function.DoubleDoubleVectorFunction; impo...
2,729
github-java-corpus
2,012
package de.jungblut.math.sparse; import gnu.trove.map.hash.TIntIntHashMap; import java.util.Iterator; import com.google.common.collect.AbstractIterator; import de.jungblut.math.BooleanVector; public final class SparseBooleanVector implements BooleanVector { private static final int TRUE = 1; pr...
467
github-java-corpus
2,012
package de.jungblut.math.sparse; import gnu.trove.map.hash.TIntObjectHashMap; import java.util.Iterator; import de.jungblut.math.BooleanMatrix; import de.jungblut.math.BooleanVector; import de.jungblut.math.BooleanVector.BooleanVectorElement; public final class SparseBooleanColumnMatrix implements Boolean...
695
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; public final class DenseIntVector { private final int[] vector; public DenseIntVector(int[] arr) { // normally, we should make a deep copy this.vector = arr; } public Dense...
597
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Iterator; import java.util.List; import com.google.common.collect.AbstractIterator; import de.jungblut.math.DoubleVector; import de.jungblut.mat...
3,999
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Random; import de.jungblut.math.BooleanMatrix; import de.jungblut.math.DoubleMatrix; import de.jungblut.math.DoubleVector; import de.jungblut.math.tuple.Tuple; /** * Dense double m...
5,979
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.Arrays; import java.util.HashSet; import java.util.Random; import de.jungblut.math.tuple.Tuple; public final class DenseIntMatrix { protected final int[][] matrix; protected final int numRows; protected final int numColumns; public DenseIntMatr...
1,809
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.Arrays; import java.util.Random; import de.jungblut.math.BooleanMatrix; import de.jungblut.math.BooleanVector; /** * A dense implementation of {@link BooleanMatrix}, internal representated as a * two-dimensional boolean array. */ public final class Dens...
1,272
github-java-corpus
2,012
package de.jungblut.math.dense; import java.util.Arrays; import java.util.Iterator; import com.google.common.collect.AbstractIterator; import de.jungblut.math.BooleanVector; /** * Implementation of dense boolean vectors, internally represented as an array * of booleans. */ public final class DenseBo...
556
github-java-corpus
2,012
package de.jungblut.math; import java.util.Iterator; import de.jungblut.math.function.DoubleDoubleVectorFunction; import de.jungblut.math.function.DoubleVectorFunction; /** * Vector with doubles. Some of the operations are mutable, unlike the apply and * math functions, they return a fresh instance every ...
1,844
github-java-corpus
2,012
package de.jungblut.math.tuple; /** * Tuple class to hold two generic attributes. This class implements hashcode, * equals and comparable via the first element. */ public final class Tuple<FIRST, SECOND> implements Comparable<Tuple<FIRST, SECOND>> { private final FIRST first; private final SECOND...
374
github-java-corpus
2,012
package de.jungblut.math.tuple; /** * Tuple class to hold three generic attributes. This class implements hashcode, * equals and comparable via the first element. */ public final class Tuple3<FIRST, SECOND, THIRD> implements Comparable<Tuple3<FIRST, SECOND, THIRD>> { private final FIRST first; pr...
424
github-java-corpus
2,012
package de.jungblut.math.function; import de.jungblut.math.DoubleVector; /** * A function that can be applied to two double vectors via {@link DoubleVector} * #apply({@link DoubleVector} v, {@link DoubleDoubleVectorFunction} f); * */ public interface DoubleDoubleVectorFunction { /** * Calculate...
107
github-java-corpus
2,012
package de.jungblut.math.function; import de.jungblut.math.DoubleVector; /** * A function that can be applied to a double vector via {@link DoubleVector} * #apply({@link DoubleVectorFunction} f); */ public interface DoubleVectorFunction { /** * Calculates the result with a given index and value of...
86
github-java-corpus
2,012
package de.jungblut.math; import java.util.Iterator; /** * Vector consisting of booleans. */ public interface BooleanVector { /** * Gets the boolean at the given index. */ public boolean get(int index); /** * Returns the length of this vector. */ public int getLength(); /...
285
github-java-corpus
2,012
package de.jungblut.math; /** * Standard matrix interface for double elements. Every implementation should * return a fresh new Matrix when operating with other elements. */ public interface DoubleMatrix { /** * Not flagged value for sparse matrices, it is default to 0.0d. */ public static fin...
1,029
github-java-corpus
2,012
package com.example; import com.pivotallabs.greatexpectations.matchers.*; import static com.pivotallabs.greatexpectations.GreatExpectations.wrapped; public class Expect { public static <T extends Object, M extends ObjectMatcher<T, M>> ObjectMatcher<T, ?> expect(T actual) { return wrapped(ObjectMatcher.cl...
332
github-java-corpus
2,012
package com.example; import org.junit.Test; import java.util.Arrays; import java.util.List; import static com.example.Expect.expect; import static org.hamcrest.CoreMatchers.not; import static org.junit.Assert.assertThat; import static org.junit.matchers.JUnitMatchers.containsString; public class ExampleTest { @Te...
425
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD}) public @interface AllowActualToBeNull { }
54
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; public class BaseMatcher<T, M extends BaseMatcher<T, M>> { public M not; protected T actual; protected boolean inverted; protected String descriptionOfActual; protected String descriptionOfExpected; protected String failureMessage; }
61
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; import com.pivotallabs.greatexpectations.matchers.*; import java.io.File; import java.io.IOException; import java.io.PrintStream; import java.util.*; public class ExpectGenerator { private Set<String> importedPackages = new HashSet<String>(); private String packageName;...
820
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; import com.pivotallabs.greatexpectations.matchers.*; import static com.pivotallabs.greatexpectations.GreatExpectations.wrapped; public class Expect { public static <T extends Object, M extends ObjectMatcher<T, M>> ObjectMatcher<T, ?> expect(T actual) { return wrapped(O...
384
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface MatcherOf { Class[] value(); boolean directObject() default false; }
64
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.Type; import org.objectweb.asm.commons.GeneratorAdapter; import java.lang.reflect.Method; import java.util.Arrays; import static org.objectweb.asm.Opcodes.ACC_PUBLIC; impo...
1,714
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; import java.util.Date; @MatcherOf(Date.class) public class DateMatcher<T extends Date, M extends DateMatcher<T, M>> extends ComparableMatcher<T, M> { public boolean toBeLaterThan(T expectedDateThreshold) { r...
109
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; @MatcherOf(Boolean.class) public class BooleanMatcher<T extends Boolean, M extends BooleanMatcher<T, M>> extends ObjectMatcher<T, M> { public boolean toBeTrue() { return actual.equals(true); } public boo...
87
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; import java.util.Set; @MatcherOf(value = Set.class, directObject = true) public class SetMatcher<T extends Set<X>, X, M extends SetMatcher<T, X, M>> extends ObjectMatcher<T, M> { public boolean toContain(X... exp...
199
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; @MatcherOf(Comparable.class) public class ComparableMatcher<T extends Comparable, M extends ComparableMatcher<T, M>> extends ObjectMatcher<T, M> { public boolean toBeGreaterThan(T t) { return actual.compareTo...
101
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @MatcherOf(value = Iterable.class, directObject = true) public class IterableMatcher<T extends Iterable<X>, X, M extends IterableMatcher...
666
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; import java.util.regex.Pattern; @MatcherOf(String.class) public class StringMatcher<T extends String, M extends StringMatcher<T, M>> extends ObjectMatcher<T, M> { public boolean toContain(String expected) { ...
222
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.MatcherOf; @MatcherOf(value = Long.class) public class LongMatcher<T extends Long, M extends LongMatcher<T, M>> extends ComparableMatcher<T, M> { public boolean toEqual(int expected) { return actual.longValue() ==...
120
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.AllowActualToBeNull; import com.pivotallabs.greatexpectations.BaseMatcher; import com.pivotallabs.greatexpectations.MatcherOf; @MatcherOf(Object.class) public class ObjectMatcher<T, M extends ObjectMatcher<T, M>> extends Base...
159
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; import com.pivotallabs.greatexpectations.util.Transcript; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import java.util.Arrays; import static com.pivotallabs.greatexpectations.GreatExpectations.wrapped; import static org.junit.Assert.assertEquals...
1,767
github-java-corpus
2,012
package com.pivotallabs.greatexpectations; import com.pivotallabs.greatexpectations.matchers.*; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.assertEquals; public class ExpectGeneratorTest { private ExpectGenerator expectGenerator; @Before public void setUp() throws Exception ...
586
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.util; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import static org.junit.Assert.assertEquals; public class Transcript { List<String> events = new ArrayList<String>(); public void add(String event) { events.add(event); } public v...
85
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class StringMatcherTest { @Test public void testToMatch() throws Exception { ass...
297
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import org.junit.Test; import java.util.Date; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class DateMatcherTest { @Test public void testToBeLaterThan(...
258
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import org.junit.Test; import java.util.Arrays; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class IterableMat...
1,582
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class ComparableMatcherTest { @Test public void testToBeGreaterThan() throws Excepti...
316
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class LongMatcherTest { private LongMatcher fortyTwo; ...
294
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import java.util.Collections; import java.util.HashSet; import java.util.Set; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class SetM...
557
github-java-corpus
2,012
package com.pivotallabs.greatexpectations.matchers; import com.pivotallabs.greatexpectations.GreatExpectations; import org.junit.Test; import static com.pivotallabs.greatexpectations.GreatExpectations.wrapped; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.j...
553
github-java-corpus
2,012
package android.picker; import java.util.Calendar; import android.content.Context; import android.text.Editable; import android.text.InputFilter; import android.text.Spanned; import android.text.TextWatcher; import android.util.AttributeSet; import android.util.Log; import android.view.LayoutInflater; import android....
2,049
github-java-corpus
2,012
package android.picker; import java.util.Calendar; import android.content.Context; import android.text.Editable; import android.text.InputFilter; import android.text.Spanned; import android.text.TextWatcher; import android.util.AttributeSet; import android.util.Log; import android.view.LayoutInflater; import android....
2,551
github-java-corpus
2,012
package android.picker; import java.util.Calendar; import android.app.Activity; import android.os.Bundle; import android.picker.DatePicker.DateWatcher; import android.picker.TimePicker.TimeWatcher; import android.util.Log; public class DateTimePickerActivity extends Activity implements DateWatcher, TimeWatcher { ...
289
github-java-corpus
2,012
/* * $Id: KanjiOutput.java,v 1.2 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Found...
1,028
github-java-corpus
2,012
/* * $Id: KanwaDictionary.java,v 1.6 2003/01/01 08:54:30 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software F...
3,012
github-java-corpus
2,012
/* * $Id: Converter.java,v 1.3 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
357
github-java-corpus
2,012
/* * $Id: KanjiYomi.java,v 1.5 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,656
github-java-corpus
2,012
/* * $Id: KanaToRomaConverterImpl.java,v 1.1 2003/03/01 12:52:26 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free So...
21,350
github-java-corpus
2,012
/* * $Id: KanwaEntry.java,v 1.2 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Founda...
380
github-java-corpus
2,012
/* * $Id: KanjiConverterImpl.java,v 1.2 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Softwar...
1,703
github-java-corpus
2,012
/* * $Id: HiraganaConverterImpl.java,v 1.2 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Soft...
917
github-java-corpus
2,012
/* * $Id: CompoundConverter.java,v 1.2 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software...
544
github-java-corpus
2,012
/* * $Id: KatakanaConverterImpl.java,v 1.2 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Soft...
838
github-java-corpus
2,012
/* * $Id: KanjiInput.java,v 1.5 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Founda...
1,295
github-java-corpus
2,012
/* * $Id: Kakasi.java,v 1.15 2003/03/01 12:52:26 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundatio...
4,458
github-java-corpus
2,012
/* * $Id: ItaijiDictionary.java,v 1.3 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software ...
773
github-java-corpus
2,012
/* * $Id: DefaultConverter.java,v 1.1 2003/01/01 08:18:44 kawao Exp $ * * KAKASI/JAVA * Copyright (C) 2002-2003 KAWAO, Tomoyuki (kawao@kawao.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software ...
569
github-java-corpus
2,012
/* * Copyright 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
1,236
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
766
github-java-corpus
2,012
/* * Copyright (C) 2009 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
576
github-java-corpus
2,012
/* * Copyright (C) 2009 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
419
github-java-corpus
2,012
/* * Copyright (C) 2009 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
2,116
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
372
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
1,025
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
2,034
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
2,729
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
411
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
950
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
688
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
762
github-java-corpus
2,012
/* * Copyright (C) 2009 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
236
github-java-corpus
2,012
/* * Copyright 2009 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
1,170
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
651
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
1,420
github-java-corpus
2,012
/* * Copyright (C) 2010 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
836
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
1,331
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
504
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
548
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
583
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
454
github-java-corpus
2,012
/* * Copyright (C) 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
558