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 | //Prevayler(TM) - The Free-Software Prevalence Layer.
//Copyright (C) 2001-2003 Klaus Wuestefeld
//This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
package org.prevayler;
/** Tells ... | 150 |
github-java-corpus | 2,012 | //Prevayler(TM) - The Free-Software Prevalence Layer.
//Copyright (C) 2001-2003 Klaus Wuestefeld
//This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
package org.prevayler;
import jav... | 165 |
github-java-corpus | 2,012 | //Prevayler(TM) - The Free-Software Prevalence Layer.
//Copyright (C) 2001-2004 Klaus Wuestefeld
//This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//Contributions: Aleksey Aristov, Carl... | 3,819 |
github-java-corpus | 2,012 | package tmp;
class Num implements Exp {
int value;
Num(int val) { value = val; }
public int eval() { return value; }
public String toString() { return ""+ value; }
}
| 47 |
github-java-corpus | 2,012 | package tmp;
class Plus implements Exp {
Exp x;
Exp y;
Plus( Exp x, Exp y ) { this.x = x; this.y = y; }
public int eval() { return x.eval() + y.eval(); }
public String toString() { return x + " + " + y ; }
} | 69 |
github-java-corpus | 2,012 | package tmp;
public interface Exp {
int eval();
String toString();
}
| 17 |
github-java-corpus | 2,012 | package tmp;
class Neg implements Exp {
Exp x;
Neg( Exp x ) { this.x = x; }
public int eval() { return - x.eval(); }
public String toString() { return " -(" + x + ") "; }
} | 57 |
github-java-corpus | 2,012 | class Test {
static Exp e;
public static void main(String args[]) {
Test.printtest();
Test.evaltest();
}
static void evaltest() {
e = new Num(1);
System.out.println("eval(1) = " + e.eval());
e = new Neg(new Num(1));
System.out.println("eval(Neg(1)) = " + e.eval());
e = new Plus(new Num(1), new Num(2... | 418 |
github-java-corpus | 2,012 | package org.onekin.xml.refinement.xupdate.query;
import org.infozone.tools.xml.queries.XPathQuery;
import org.infozone.tools.xml.queries.XPathQueryFactory;
import org.infozone.tools.xml.queries.XPathQueryConfigurationException;
/**
* @author Felipe
*
* TODO To change the template for this generated type c... | 126 |
github-java-corpus | 2,012 | package org.onekin.xml.refinement.xupdate.query;
/*
* @author Felipe
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
import org.w3c.dom.DocumentFragment;
import org.w3c.dom.NodeList;
import org.infozone.tools.xml.queries.X... | 304 |
github-java-corpus | 2,012 | /*
* Created on Feb 8, 2006
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.onekin.xml.refinement.xupdate.query;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom... | 729 |
github-java-corpus | 2,012 | /*
* Created on 23-mar-2005
*
* @
*/
package org.onekin.xak.composer;
import java.io.File;
import java.io.FileFilter;
import java.util.ArrayList;
/**
* This class search for certain files with certain extensions
* @author Salva
* @
*
*/
public class FileSearcher {
private String[] _sE... | 639 |
github-java-corpus | 2,012 | /*
* Created on 23-mar-2005
*
*/
package org.onekin.xak.composer;
import java.io.File;
/**
* This class sets a filter to search files into layers
* @author Salva
*
*/
public class MyFileFilter implements java.io.FileFilter
{
private String[] ext;
/**
*
*/
/* public My... | 246 |
github-java-corpus | 2,012 | /*
* Created on 14-abr-2005
*
*/
package org.onekin.xak.composer;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.StringWriter;
import java.util.ArrayList;
import org.apache.log4j.Logger;
/**
* This class represents an AHEAD Layer Equation, and reads lay... | 736 |
github-java-corpus | 2,012 | /** Loader.java
* Loads a resource using a Class loader.
* AHEAD Project
* @author Salvador Trujillo
* Last Update: February 18, 2006 4:00 pm
*/
package org.onekin.xak.refinement;
// import java.util.*;
import java.io.*;
import java.net.URL;
public class Loader
{
public URL getResource(String re... | 386 |
github-java-corpus | 2,012 | /**
*
*/
package org.onekin.xak.refinement.ext;
import java.io.File;
import java.util.Vector;
//import org.apache.log4j.Logger;
import org.onekin.util.ParserUtils;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
/**
* @author Salva
*
*/
public class MimeConf... | 606 |
github-java-corpus | 2,012 | /*
* Created on 23-mar-2005
*
* @
*/
package org.onekin.xak.refinement.ext;
import java.io.File;
import java.io.FileFilter;
import java.util.ArrayList;
/**
* This class search for certain files with certain extensions
* @author Salva
* @
*
*/
public class FileSearcher {
private Stri... | 640 |
github-java-corpus | 2,012 | /*
* Created on 23-mar-2005
*
*/
package org.onekin.xak.refinement.ext;
import java.io.File;
/**
* This class sets a filter to search files into layers
* @author Salva
*
*/
public class MyFileFilter implements java.io.FileFilter
{
private String[] ext;
/**
*
*/
/* pub... | 247 |
github-java-corpus | 2,012 | /*
* Created on 14-abr-2005
*
*/
package org.onekin.xak.refinement;
/**
* @author Salva
*
*/
public class TestOnly {
/**
*
*/
public TestOnly() {
super();
// TODO Auto-generated constructor stub
}
public static void main(String[] args)
{ ... | 317 |
github-java-corpus | 2,012 | package org.onekin.xak.refinement;
public class TestXmlRefinement
{
public TestXmlRefinement()
{
}
/**
*
* @param args
*/
/* public static void main(String[] args)
{
String sXRefineHomeDir = "E:\\Users\\Felipe\\Proyectos\\OnekinProjects\\04XmlRefinements\\04.SourceCode\\05.1.XM... | 181 |
github-java-corpus | 2,012 | package org.onekin.xak.refinement;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.StringReader;
import java.io.StringWriter;
import javax.xml.transform.Transformer;
import javax.xml.tr... | 3,185 |
github-java-corpus | 2,012 | /**
*
*/
package org.onekin.xak;
import java.io.BufferedReader;
import java.io.File;
import java.util.Enumeration;
import java.util.Vector;
import javax.xml.XMLConstants;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamSource;
impor... | 2,776 |
github-java-corpus | 2,012 | /**
*
*/
package org.onekin.xak;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.LinkedList;
import org.onekin.util.ParserUtils;
import org.onekin.xak.refinement.XmlRefinement;
import org.w3c.dom.Document;
import org.apache.log4j.*;
/**
* @... | 1,882 |
github-java-corpus | 2,012 | /**
*
*/
package org.onekin.xak;
import java.io.File;
import java.util.Enumeration;
import java.util.Vector;
import javax.xml.parsers.DocumentBuilderFactory;
import org.onekin.util.ParserUtils;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
/**
* @author struji
*
*/
public clas... | 675 |
github-java-corpus | 2,012 | /**
*
*/
package org.onekin.xak;
import java.io.*;
import org.w3c.dom.*;
import org.onekin.util.ParserUtils;
import org.onekin.xak.namespace.XakContext;
/**
* @author struji
* @author ibanf
*
*/
public class Xak2xml
{
final public static String XSL_XAK2XML = "xak2xml.xsl";
public Xa... | 1,131 |
github-java-corpus | 2,012 | package org.onekin.xak.namespace;
public class Constants {
//xak vocabulary
public static final String REFINES_ELT = "refines";
public static final String EXTENDS_ELT = "extends";
public static final String SUPER_ELT = "super";
public static final String TYPE_ATT = "type";
public static final String ARTI... | 266 |
github-java-corpus | 2,012 | package org.onekin.xak.namespace;
import java.util.Vector;
import java.util.Iterator;
import javax.xml.namespace.NamespaceContext;
public class XrContext implements NamespaceContext{
public static final String NS_PREFIX = "xr";
public static final String NS_URI = "http://www.atarix.org/xmlRefinement";... | 219 |
github-java-corpus | 2,012 | package org.onekin.xak.namespace;
import java.util.Vector;
import java.util.Iterator;
import javax.xml.namespace.NamespaceContext;
public class XakContext implements NamespaceContext{
public static final String NS_PREFIX = "xak";
public static final String NS_URI = "http://www.atarix.org/xak";
public ... | 219 |
github-java-corpus | 2,012 | public class WorkSpace { // supply default empty actions
public void init_vertex(Vertex v) {
}
public void preVisitAction(Vertex v) {
}
public void postVisitAction(Vertex v) {
}
public void nextRegionAction(Vertex v) {
}
public void checkNeighborAction(Vertex vsource, Vertex vtarget) {
}
} | 71 |
github-java-corpus | 2,012 |
// *****************************************************************
public class RegionWorkSpace extends WorkSpace
{
int counter;
public RegionWorkSpace( )
{
counter = 0;
}
public void init_vertex( Vertex v )
{
v.componentNumber = -1;
}
... | 103 |
github-java-corpus | 2,012 |
// of FinishTimeWorkSpace
// DFS Transpose traversal
// *************************************************************************
public class WorkSpaceTranspose extends WorkSpace {
// Strongly Connected Component Counter
int SCCCounter;
public WorkSpaceTranspose() {
SCCCounter = 0;
}
public v... | 106 |
github-java-corpus | 2,012 |
// *************************************************************************
// I believe this interface is always empty?
public interface NeighborIfc {
}
| 21 |
github-java-corpus | 2,012 |
// ***********************************************************************
public class FinishTimeWorkSpace extends WorkSpace {
int FinishCounter;
public FinishTimeWorkSpace() {
FinishCounter = 1;
}
public void preVisitAction( Vertex v )
{
if ( v.visited!=tru... | 93 |
github-java-corpus | 2,012 | // *************************************************************************
public class Neighbor implements EdgeIfc, NeighborIfc {
public Vertex neighbor;
// This constructor has to be present here so that the default one
// Called on Weighted can call it, i.e. it is not longer implicit
public Neighbor()... | 240 |
github-java-corpus | 2,012 | // *************************************************************************
public class Edge implements EdgeIfc {
private Vertex start;
private Vertex end;
public Edge(Vertex the_start, Vertex the_end, int aweight) {
start = the_start;
end = the_end;
weight = aweight;
}
public void adjustA... | 217 |
github-java-corpus | 2,012 | import java.io.*;
public class Main {
// variables that will hold the contents of a file
static Vertex V[];
static int startVertices[];
static int endVertices[];
public static void main(String[] args) {
long beginning = System.currentTimeMillis();
// Step 1: create graph object
Graph g =... | 586 |
github-java-corpus | 2,012 | import java.util.LinkedList;
public class GlobalVarsWrapper {
public static LinkedList<Vertex> queue = new LinkedList<Vertex>();
}
| 25 |
github-java-corpus | 2,012 | import java.util.Iterator;
import java.util.LinkedList;
class Vertex implements EdgeIfc, NeighborIfc {
public String name = null;
public Vertex assignName(String name) {
this.name = name;
return (Vertex) this;
}
public String getName() {
return this.name;
}
public LinkedList<Vertex> adjac... | 1,504 |
github-java-corpus | 2,012 | // *************************************************************************
public class CycleWorkSpace extends WorkSpace {
public boolean AnyCycles;
public int counter;
public static final int WHITE = 0;
public static final int GRAY = 1;
public static final int BLACK = 2;
public CycleWorkSp... | 418 |
github-java-corpus | 2,012 | public interface EdgeIfc {
public Vertex getStart();
public Vertex getEnd();
public void display();
public Vertex getOtherVertex(Vertex vertex);
public void adjustAdorns(EdgeIfc the_edge);
public void setWeight(int weight);
public int getWeight();
}
| 53 |
github-java-corpus | 2,012 | import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Map;
import java.util.Set;
// define shell of... | 4,651 |
github-java-corpus | 2,012 | import java.util.Iterator;
public class VertexIter {
private Iterator iter;
VertexIter() {
} // used for anonymous class
VertexIter(Graph g) {
iter = g.vertices.iterator();
}
public Vertex next() {
return (Vertex) iter.next();
}
public boolean hasNext() {
return iter.hasNext();
}
... | 71 |
github-java-corpus | 2,012 | public class NumberWorkSpace extends WorkSpace {
int vertexCounter;
public NumberWorkSpace() {
vertexCounter = 0;
}
public void preVisitAction(Vertex v) {
// This assigns the values on the way in
if (v.visited != true) {
v.vertexNumber = vertexCounter++;
}
}
} | 73 |
github-java-corpus | 2,012 | public class EdgeIter {
// methods whose bodies will be overridden by subsequent layers
public boolean hasNext() {
return false;
}
public EdgeIfc next() {
return null;
}
} | 42 |
github-java-corpus | 2,012 | /*
* RecStoreLoggerMIDlet.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2... | 883 |
github-java-corpus | 2,012 | /*
* FormLoggerMIDlet.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of ... | 867 |
github-java-corpus | 2,012 | /*
* Level.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the License... | 601 |
github-java-corpus | 2,012 | /*
* RecStoreHandler.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of t... | 868 |
github-java-corpus | 2,012 | /*
* Logger.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the Licens... | 1,694 |
github-java-corpus | 2,012 | /*
* ConsoleHandler.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of th... | 345 |
github-java-corpus | 2,012 | /*
* Handler.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the Licen... | 329 |
github-java-corpus | 2,012 | /*
* LogManager.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the Li... | 2,076 |
github-java-corpus | 2,012 | /*
* LogRecord.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the Lic... | 485 |
github-java-corpus | 2,012 | /*
* BufferedHandler.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of t... | 366 |
github-java-corpus | 2,012 | /*
* FormHandler.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the L... | 420 |
github-java-corpus | 2,012 | /*
* Formatter.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of the Lic... | 286 |
github-java-corpus | 2,012 | /*
* SimpleFormatter.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/jlogmicro/source
*
* 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 Foundation; either version 2 of t... | 373 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 7,007 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 772 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 545 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 391 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 1,333 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 350 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 414 |
github-java-corpus | 2,012 | /** GPL >= 2.0
* Based upon RSS Reader MIDlet
* Copyright (C) 2004 Gösta Jonasson <gosta(at)brothas.net>
* Copyright (C) 2006-2008 eIrOcA (eNrIcO Croce & sImOnA Burzio)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as publishe... | 3,099 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 6,250 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 735 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 521 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 375 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 1,213 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 353 |
github-java-corpus | 2,012 | /* Copyright (c) 2001-2005 Todd C. Stellanova, rawthought
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, co... | 410 |
github-java-corpus | 2,012 | /*
* RssFeedStore.java
*
* Copyright (C) 2005-2006 Irving Bunton
* http://www.substanceofcode.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 Foundation; either version 2 of the Licens... | 1,769 |
github-java-corpus | 2,012 | /*
* RssFeed.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the License, ... | 5,025 |
github-java-corpus | 2,012 | /*
* RssItunesFeed.java
*
* Copyright (C) 2007-2008 Tommi Laukkanen
* Copyright (C) 2007-2008 Irving Bunton
* http://www.substanceofcode.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 Softwa... | 5,580 |
github-java-corpus | 2,012 | /*
* CompatibilityRssItem1.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 1,030 |
github-java-corpus | 2,012 | /*
* RssStoreInfo.java
*
* Copyright (C) 2008 Irving Bunton
* http://www.substanceofcode.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 Foundation; either version 2 of the License, or... | 766 |
github-java-corpus | 2,012 | /*
* CompatibilityRssItunesFeed3.java
*
* Copyright (C) 2007-2008 Tommi Laukkanen
* Copyright (C) 2007-2008 Irving Bunton
* http://www.substanceofcode.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
* t... | 2,800 |
github-java-corpus | 2,012 | /*
* CompatibilityRssFeed1.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 1,118 |
github-java-corpus | 2,012 | /*
* RssItem.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the License, ... | 3,204 |
github-java-corpus | 2,012 | /*
* CompatibilityRssItem3.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 2,693 |
github-java-corpus | 2,012 | /*
* CompatibilityRssItem2.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 1,496 |
github-java-corpus | 2,012 | /*
* RssShortItem.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the Lice... | 1,161 |
github-java-corpus | 2,012 | /*
* CompatibilityRssItunesItem3.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* Copyright (C) 2007 Tommi Laukkanen
* http://www.substanceofcode.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 ... | 2,920 |
github-java-corpus | 2,012 | /*
* CompatibilityRssFeed2.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 1,756 |
github-java-corpus | 2,012 | /*
* CompatibilityRssFeed3.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 4,684 |
github-java-corpus | 2,012 | /*
* RssItunesItem.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* Copyright (C) 2007 Tommi Laukkanen
* http://www.substanceofcode.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 ... | 3,280 |
github-java-corpus | 2,012 | /*
* RssFeedReaderSettings.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of... | 1,902 |
github-java-corpus | 2,012 | /*
* HelpForm.java
*
* Copyright (C) 2008 Irving Bunton, Jr
* http://www.substanceofcode.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 Foundation; either version 2 of the License, or... | 1,518 |
github-java-corpus | 2,012 | /*
* AllNewsList.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the Licen... | 7,091 |
github-java-corpus | 2,012 | /*
* PromptMgr.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/mobile-rss-reader/
*
* 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 Foundation; either version 2 of the L... | 1,424 |
github-java-corpus | 2,012 | /*
* PromptList.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/mobile-rss-reader/
*
* 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 Foundation; either version 2 of the ... | 786 |
github-java-corpus | 2,012 | /*
* SettingsForm.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the Lice... | 4,110 |
github-java-corpus | 2,012 | /*
TODO workaround Sony problems
TODO handle OutOfMemoryError for save memory
TODO handle Exceptions
TODO unsupported encoding. Need more info
TODO Use 2nd obfuscator
TODO Memory high water mark
TODO Use mobility conversion Google Mobilizer
http://www.google.com/gwt/n?u=http%3A%2F%2Fsource... | 30,110 |
github-java-corpus | 2,012 | /*
*
* UiUtil.java
*
* Copyright (C) 2008 Irving Bunton, Jr
* http://www.substanceofcode.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 Foundation; either version 2 of the License,... | 3,843 |
github-java-corpus | 2,012 | /*
* PromptForm.java
*
* Copyright (C) 2007 Irving Bunton
* http://code.google.com/p/mobile-rss-reader/
*
* 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 Foundation; either version 2 of the ... | 776 |
github-java-corpus | 2,012 | /*
* ImportFeedsForm.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the L... | 5,471 |
github-java-corpus | 2,012 | /*
* RssFeedParser.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the Lic... | 2,298 |
github-java-corpus | 2,012 | /*
* AtomParser.java
*
* Copyright (C) 2005-2006 Tommi Laukkanen
* http://www.substanceofcode.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 Foundation; either version 2 of the Licens... | 2,715 |
github-java-corpus | 2,012 | /*
* HTMLAutoLinkParser.java
*
* Copyright (C) 2007-2008 Tommi Laukkanen
* Copyright (C) 2007-2008 Irving Bunton
* http://www.substanceofcode.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 S... | 2,229 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.