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 devhood.im.sim.ui; import java.awt.CheckboxMenuItem; import java.awt.Image; import java.awt.MenuItem; import java.awt.PopupMenu; import java.awt.SystemTray; import java.awt.TrayIcon; import java.awt.TrayIcon.MessageType; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import...
1,234
github-java-corpus
2,012
package devhood.im.sim.ui; import java.awt.BorderLayout; import java.awt.Font; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Rectangle; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyAdapter; import java.awt.event.KeyEven...
7,157
github-java-corpus
2,012
package devhood.im.sim.ui; import java.awt.Color; import java.awt.Cursor; import java.awt.Dimension; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.Timer; import java.util.TimerTask; import jav...
1,402
github-java-corpus
2,012
package devhood.im.sim.dao.interfaces; import java.util.List; import devhood.im.sim.model.User; /** * RegistryService - Liefert persistente Daten, z.B. User. * * @author flo * */ public interface UserDao { /** * Such einen User anhand seines Namens * * @return User Benutzer oder null...
243
github-java-corpus
2,012
package devhood.im.sim.dao; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.Encoded...
966
github-java-corpus
2,012
package devhood.im.sim.dao; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.EncodedKeySpec; import java.security.spec.X509EncodedKeySpec; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.S...
1,788
github-java-corpus
2,012
package devhood.im.sim.dao; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.EncodedKeySpec; import java.security.spec.X509EncodedKeySpec; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import ...
2,287
github-java-corpus
2,012
package devhood.im.sim.controller; import java.util.List; import javax.inject.Inject; import javax.inject.Named; import devhood.im.sim.config.SimConfiguration; import devhood.im.sim.event.EventDispatcher; import devhood.im.sim.event.Events; import devhood.im.sim.model.FileSendAcceptMessage; import devhood...
742
github-java-corpus
2,012
package devhood.im.sim.config; import javax.inject.Inject; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import devhood.im.sim.dao.JtdsUserDao; import devhood.im.sim.dao.SingleFilePerUserDao; import devhood.im.sim.dao.SqliteUserDao; import ...
285
github-java-corpus
2,012
package devhood.im.sim.config; import java.awt.Color; import java.awt.Image; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.InetAddress; import java.net.UnknownHostException; import java.security.KeyPair; import java.s...
3,226
github-java-corpus
2,012
package devhood.im.sim.ui.util; import java.util.List; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; import devhood.im.sim.ui.util.Splitter; public class SplitterTest { @Before public void setup() { } @Test public void testGetParts() { String s = "abcdefg...
121
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
671
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
231
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
126
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
218
github-java-corpus
2,012
package net.bioclipse.specmol.actions; import java.io.StringBufferInputStream; import java.util.HashMap; import java.util.Map; import net.bioclipse.cdk.jchempaint.editor.JChemPaintEditor; import net.bioclipse.chemoinformatics.wizards.WizardHelper; import net.bioclipse.core.util.LogUtils; import net.bioclipse.specmol....
2,037
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
611
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
385
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
358
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
196
github-java-corpus
2,012
package net.bioclipse.specmol.outline; import net.bioclipse.spectrum.Activator; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.jface.viewers.ILabelProviderListener; import org.eclipse.swt.graphics.Image; import org.xmlcml.cml.base.CMLElement; import org.xmlcml.cml.element.CMLSpectrum; public cla...
274
github-java-corpus
2,012
package net.bioclipse.specmol.outline; import java.util.ArrayList; import java.util.List; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.Viewer; import org.xmlcml.cml.base.CMLElement; import org.xmlcml.cml.element.CMLCml; import org.xmlcml.cml.element.CMLSpectrum; public clas...
335
github-java-corpus
2,012
package net.bioclipse.specmol.outline; import net.bioclipse.specmol.editor.SpecMolEditor; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.TreeViewer; import org.eclipse.swt.widgets.Composit...
628
github-java-corpus
2,012
package net.bioclipse.specmol.ui.views; import java.util.HashMap; import java.util.Map; import net.bioclipse.specmol.Activator; import org.eclipse.core.resources.IFile; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.jface.viewers.ILabelProviderL...
469
github-java-corpus
2,012
package net.bioclipse.specmol.ui.views; import java.util.HashMap; import java.util.Map; import net.bioclipse.core.util.LogUtils; import net.bioclipse.specmol.Activator; import net.bioclipse.specmol.domain.IJumboSpecmol; import nu.xom.Elements; import org.apache.log4j.Logger; import org.eclipse.core.resources.IFile; ...
625
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
177
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
108
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
779
github-java-corpus
2,012
package net.bioclipse.specmol.business; public interface IJavaSpecmolManager extends ISpecmolManager { }
23
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008 The Bioclipse Project and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, a...
253
github-java-corpus
2,012
package net.bioclipse.specmol.business; public interface IJavaScriptSpecmolManager extends ISpecmolManager { }
23
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008 The Bioclipse Project and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, a...
1,090
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008 The Bioclipse Project and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
1,098
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
1,885
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
1,110
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
586
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
798
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
880
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
906
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
926
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
895
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
986
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
771
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
499
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
971
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
110
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
2,599
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
1,289
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
2,226
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
540
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
1,334
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
1,645
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
514
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
905
github-java-corpus
2,012
package net.bioclipse.specmol.business.test; import static org.junit.Assert.assertEquals; import java.io.FileInputStream; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import net.bioclipse.core.MockIFile; import net.bioclipse.core.ResourcePathTransformer; i...
1,312
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributi...
171
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribut...
259
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributi...
155
github-java-corpus
2,012
package net.bioclipse.specmol.business.test; import net.bioclipse.specmol.Activator; import org.junit.BeforeClass; public class JavaScriptSpecmolManagerPluginTest extends AbstractSpecmolManagerPluginTest { @BeforeClass public static void setupCDKManagerPluginTest() throws Exception { specmo...
82
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributi...
163
github-java-corpus
2,012
package net.bioclipse.specmol.business.test; import net.bioclipse.core.tests.AbstractManagerTest; import net.bioclipse.managers.business.IBioclipseManager; import net.bioclipse.specmol.business.ISpecmolManager; import net.bioclipse.specmol.business.SpecmolManager; public class APITest extends AbstractManagerTest { ...
135
github-java-corpus
2,012
package net.bioclipse.specmol.test; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class Activator extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "net.bioclipse.specmo...
239
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
751
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
484
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
228
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
573
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
284
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
142
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
142
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
541
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
709
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
1,626
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
290
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distri...
329
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008 Egon Willighagen <egonw@users.sf.net> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distrib...
254
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008 Ola Spjuth <ospjuth@users.sf.net> * 2008-2009 Egon Willighagen <egonw@users.sf.net> * * All rights reserved. This program and the accompanying materials * are made available under the terms of...
193
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2007-2008 The Bioclipse Project and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributio...
2,517
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Egon Willighagen <egonw@users.sf.net> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribu...
154
github-java-corpus
2,012
package net.bioclipse.spectrum.business.test; import net.bioclipse.spectrum.Activator; import org.junit.BeforeClass; public class JavaScriptSpectrumManagerPluginTest extends AbstractSpectrumManagerPluginTest { @BeforeClass public static void setupCDKManagerPluginTest() throws Exception { sp...
81
github-java-corpus
2,012
package net.bioclipse.spectrum.business.test; import net.bioclipse.core.tests.AbstractManagerTest; import net.bioclipse.managers.business.IBioclipseManager; import net.bioclipse.spectrum.business.ISpectrumManager; import net.bioclipse.spectrum.business.SpectrumManager; public class APITest extends AbstractManagerTest...
130
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Egon Willighagen <egonw@users.sf.net> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribu...
162
github-java-corpus
2,012
package net.bioclipse.spectrum.test; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class Activator extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "net.bioclipse.spect...
239
github-java-corpus
2,012
/******************************************************************************* *Copyright (c) 2008 The Bioclipse Team and others. *All rights reserved. This program and the accompanying materials *are made available under the terms of the Eclipse Public License v1.0 *which accompanies this distribution, and is av...
163
github-java-corpus
2,012
/******************************************************************************* *Copyright (c) 2009 The Bioclipse Team and others. *All rights reserved. This program and the accompanying materials *are made available under the terms of the Eclipse Public License v1.0 *which accompanies this distribution, and is av...
179
github-java-corpus
2,012
package net.bioclipse.bibtex.test; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class Activator extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "net.bioclipse.bibtex....
241
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributi...
176
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribut...
265
github-java-corpus
2,012
package net.bioclipse.bibtex.test; import java.net.URI; import java.net.URL; import net.bioclipse.bibtex.business.IBibtexManager; import net.bioclipse.bibtex.domain.IJabrefBibliodata; import net.bioclipse.core.MockIFile; import org.eclipse.core.runtime.FileLocator; import org.junit.Assert; import org.junit.Test; p...
302
github-java-corpus
2,012
package net.bioclipse.bibtex.test; import net.bioclipse.bibtex.business.BibtexManager; import net.bioclipse.bibtex.business.IBibtexManager; import net.bioclipse.core.tests.AbstractManagerTest; import net.bioclipse.managers.business.IBioclipseManager; public class APITest extends AbstractManagerTest { BibtexMana...
142
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributi...
156
github-java-corpus
2,012
package net.bioclipse.bibtex.test; import org.junit.BeforeClass; import net.bioclipse.bibtex.Activator; public class JavaScriptBibtexManagerPluginTest extends AbstractBibtexManagerPluginTest { @BeforeClass public static void setupCDKManagerPluginTest() throws Exception { bibtexmanager = Acti...
87
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributi...
166
github-java-corpus
2,012
/***************************************************************************** * Copyright (c) 2008 Bioclipse Project * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
788
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk>  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distr...
483
github-java-corpus
2,012
/*******************************************************************************  * Copyright (c) 2008-2009  Stefan Kuhn <stefan.kuhn@ebi.ac.uk>  *  * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Eclipse Public License v1.0  * which accompanies this distr...
221
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008 The Bioclipse Project and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
593
github-java-corpus
2,012
package net.bioclipse.spectrum.outline; import org.eclipse.jface.viewers.IContentProvider; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.Viewer; import org.xmlcml.cml.base.CMLElement; public class SpectrumContentProvider implements ITreeContentProvider { public void dispose...
242
github-java-corpus
2,012
package net.bioclipse.spectrum.outline; import net.bioclipse.spectrum.Activator; import nu.xom.Text; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.jface.viewers.ILabelProviderListener; import org.eclipse.swt.graphics.Image; import org.xmlcml.cml.base.CMLElement; import org.xmlcml.cml.element.CML...
648
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2010 Stefan Kuhn * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * ...
237
github-java-corpus
2,012
package net.bioclipse.spectrum.graph2d; import java.awt.*; import java.applet.*; import java.net.URL; import java.util.*; import java.io.InputStream; /* ************************************************************************** ** ** Class Contour ** ***************************************************************...
5,936