keyword stringclasses 7
values | repo_name stringlengths 8 98 | file_path stringlengths 4 244 | file_extension stringclasses 29
values | file_size int64 0 84.1M | line_count int64 0 1.6M | content stringlengths 1 84.1M ⌀ | language stringclasses 14
values |
|---|---|---|---|---|---|---|---|
2D | JChemPaint/jchempaint | app-osx/make-dmg.sh | .sh | 398 | 18 | #!/bin/bash
set -e
DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
APP=$DIR/target/*.app
SRCFOLDER=$DIR/target/tmp
VOLNAME=JChemPaint
DMGFILE=$DIR/target/$VOLNAME.dmg
[ -e $SRCFOLDER ] && rm -rf $SRCFOLDER # cleanup existing
mkdir $SRCFOLDER && cp -r $APP $SRCFOLDER && ln -s /Applications ... | Shell |
2D | JChemPaint/jchempaint | app-osx/codesign-app.sh | .sh | 1,655 | 47 | #!/bin/bash
set -e
MACOS_DEVELOPER_IDENTITY=$1
if [[ -z $MACOS_DEVELOPER_IDENTITY ]]; then
echo "usage: ./codesign-dep.sh \${{ secrets.MACOS_DEVELOPER_IDENTITY }}"
exit 1;
fi
DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
TARGETDIR=$DIR/target
APPNAME=$TARGETDIR/JChemPaint.app
CLS... | Shell |
2D | JChemPaint/jchempaint | app-osx/src/main/java/org/openscience/jchempaint/OsxClipboard.java | .java | 5,877 | 162 | package org.openscience.jchempaint;
import org.openscience.jchempaint.action.CopyPasteAction;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.ClipboardOwner;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.FlavorListener;
import java.awt.datatransfer.Transferable;
import jav... | Java |
2D | JChemPaint/jchempaint | inchi-nestedvm/src/main/java/org/openscience/jchempaint/inchi/StdInChIGenerator.java | .java | 8,409 | 242 | /*
* Copyright (C) 2009 Mark Rijnbeek <mark_rynbeek@users.sf.net>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.... | Java |
2D | JChemPaint/jchempaint | inchi-nestedvm/src/main/java/org/openscience/jchempaint/inchi/StdInChIParser.java | .java | 7,592 | 205 | /*
* Copyright (C) 2009 Mark Rijnbeek <mark_rynbeek@users.sf.net>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.... | Java |
2D | JChemPaint/jchempaint | inchi-nestedvm/src/main/java/org/openscience/jchempaint/inchi/StdInChIHandler.java | .java | 930 | 31 | package org.openscience.jchempaint.inchi;
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.interfaces.IAtomContainer;
import java.io.IOException;
/**
* @author John May
*/
public final class StdInChIHandler implements InChIHandler {
@Override public IAtomContainer parse(InChI inch... | Java |
2D | JChemPaint/jchempaint | inchi-nestedvm/src/main/java/org/openscience/jchempaint/inchi/StdInChIReader.java | .java | 2,938 | 83 | /*
* Copyright (C) 2009 Mark Rijnbeek <mark_rynbeek@users.sf.net>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.... | Java |
2D | JChemPaint/jchempaint | inchi-nestedvm/src/main/java/org/openscience/jchempaint/inchi/StdInChITool.java | .java | 3,534 | 104 | /*
* Copyright (C) 2009 Mark Rijnbeek <mark_rynbeek@users.sf.net>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.... | Java |
2D | JChemPaint/jchempaint | inchi-nestedvm/src/test/java/org/openscience/jchempaint/inchi/StdInChIGeneratorTest.java | .java | 9,424 | 259 | package org.openscience.jchempaint.inchi;
import javax.vecmath.Point2d;
import javax.vecmath.Point3d;
import org.junit.Assert;
import org.junit.Test;
import org.openscience.cdk.Atom;
import org.openscience.cdk.AtomContainer;
import org.openscience.cdk.Bond;
import org.openscience.cdk.interfaces.IAtom;
import org.open... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/GT.java | .java | 14,089 | 429 | /* $RCSfile$
* $Author: nicove $
* $Date: 2008-11-08 09:57:38 +0000 (Sat, 08 Nov 2008) $
* $Revision: 10261 $
*
* Copyright (C) 2005 Miguel, Jmol Development, www.jmol.org
*
* Contact: miguel@jmol.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU L... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JChemPaintMenuHelper.java | .java | 14,645 | 334 | package org.openscience.jchempaint;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Image;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.MissingResourceException;
import java.util.Properties;
import java.util.Set;
import jav... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/AbstractJChemPaintPanel.java | .java | 21,174 | 640 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 2008 Stefan Kuhn
* Some portions Copyright (C) 2009 Konstantin Tokarev
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistrib... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JExternalFrame.java | .java | 3,905 | 130 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Dirk Hermanns
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of th... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/AtomBondSet.java | .java | 2,243 | 93 | package org.openscience.jchempaint;
import org.openscience.cdk.AtomRef;
import org.openscience.cdk.BondRef;
import org.openscience.cdk.interfaces.IAtom;
import org.openscience.cdk.interfaces.IAtomContainer;
import org.openscience.cdk.interfaces.IBond;
import java.util.ArrayList;
import java.util.List;
/**
* CDK 2.1... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JCPPropertyHandler.java | .java | 14,406 | 406 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JCPMenuTextMaker.java | .java | 22,011 | 405 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JCPTransferHandler.java | .java | 7,157 | 220 | package org.openscience.jchempaint;
import javax.swing.TransferHandler;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JChemPaintPopupMenu.java | .java | 2,742 | 81 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Christoph Steinbeck
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/InsertTextPanel.java | .java | 9,669 | 257 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Rajarshi Guha, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under th... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/RenderPanel.java | .java | 27,918 | 676 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/SwingPopupModule.java | .java | 6,970 | 182 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU L... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/StringHelper.java | .java | 2,101 | 66 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JChemPaintPanel.java | .java | 25,961 | 623 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
* Some portions Copyright (C) 2009 Konstantin Tokarev
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redi... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JChemPaintMenuBar.java | .java | 4,323 | 118 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JCPToolBar.java | .java | 13,196 | 342 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/JChemPaintViewerPanel.java | .java | 2,234 | 61 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/rgroups/RGroupHandler.java | .java | 20,347 | 553 | /*
* Copyright (C) 2010 Mark Rijnbeek
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, o... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/ChemicalFilesFilter.java | .java | 1,585 | 68 | /**
*
*/
package org.openscience.jchempaint.io;
import java.io.File;
/**
* Displays all CML/SMILES/IUPAC/SDF/MOL/RXN files
* in a filechooser
*
* @author ralf
*
*/
public class ChemicalFilesFilter extends javax.swing.filechooser.FileFilter {
/**
* Get the extension of a file.
* Gets the extension at... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/JCPFileView.java | .java | 3,324 | 129 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/JCPSaveFileFilter.java | .java | 2,968 | 82 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/FileHandler.java | .java | 5,965 | 166 | package org.openscience.jchempaint.io;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import javax.swing.JOptionPane;
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.io.CMLReader;
import org.opensc... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/IJCPFileFilter.java | .java | 1,660 | 54 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/JCPFileFilter.java | .java | 5,753 | 241 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/io/JCPExportFileFilter.java | .java | 4,148 | 130 | /* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 2003-2007 The JChemPaint project
*
* Contact: jchempaint-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/applet/JChemPaintEditorApplet.java | .java | 2,191 | 52 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/applet/JChemPaintViewerApplet.java | .java | 3,569 | 91 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/applet/JChemPaintAbstractApplet.java | .java | 27,868 | 721 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/EnterElementSwingModule.java | .java | 12,201 | 274 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/TextViewDialog.java | .java | 4,895 | 151 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/PeriodicTableDialog.java | .java | 2,581 | 76 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egone Willighagen, Miguel Rojas, Geert Josten
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/FieldTablePanel.java | .java | 5,645 | 163 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/EnterElementOrGroupDialog.java | .java | 5,720 | 147 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/WaitDialog.java | .java | 2,180 | 78 | package org.openscience.jchempaint.dialog;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.Toolkit;
import javax.swing.JDialog;
import javax.swing.JLabel;
/**
* This class is used to display the Wait Dialog. This Dialog is displayed
* when the system is busy processing. All the GUI controls in th... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/PeriodicTablePanel.java | .java | 34,284 | 1,095 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egone Willighagen, Miguel Rojas, Geert Josten
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/TemplateBrowser.java | .java | 13,916 | 269 | /* Copyright (C) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk>
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* o... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/HelpDialog.java | .java | 6,319 | 249 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn, Christoph Steinbeck
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/ModifyRenderOptionsDialog.java | .java | 4,730 | 132 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/AboutDialog.java | .java | 3,704 | 108 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn, Tobias Helmus
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under th... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/ReactionEditor.java | .java | 3,670 | 99 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/PseudoAtomEditor.java | .java | 2,745 | 81 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/PropertiesModelEditor.java | .java | 23,134 | 547 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
* Some portions Copyright (C) 2009 Konstantin Tokarev
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redi... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/AtomContainerEditor.java | .java | 2,623 | 77 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/BondEditor.java | .java | 5,364 | 168 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
* 2012 Ralf Stephan <ralf@ark.in-berlin.de>
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/ChemObjectPropertyDialog.java | .java | 3,836 | 116 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/RGroupEditor.java | .java | 6,534 | 185 | /*
* Copyright (C) 2010 Mark Rijnbeek
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/ChemObjectEditor.java | .java | 1,833 | 58 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/editor/AtomEditor.java | .java | 7,515 | 176 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/dialog/templates/DummyClass.java | .java | 226 | 9 | package org.openscience.jchempaint.dialog.templates;
/* This class does nothing. It must be in the directory where the
* subdirectories holding templates are in and is used to locate these.
*/
public class DummyClass {
}
| Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChangeModeAction.java | .java | 4,704 | 103 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/CleanupAction.java | .java | 2,190 | 67 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/AddHydrogenAction.java | .java | 2,309 | 65 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn, Christoph Steinbeck
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChangeAtomSymbolAction.java | .java | 8,239 | 174 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ZoomAction.java | .java | 2,457 | 67 | /*
* $RCSfile$
* $Author: shk3 $
* $Date: 2008-10-02 16:45:12 +0100 (Thu, 02 Oct 2008) $
* $Revision: 12535 $
*
* Copyright (C) 2003-2007 The JChemPaint project
*
* Contact: jchempaint-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/SaveAction.java | .java | 3,561 | 112 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/UndoAction.java | .java | 2,188 | 66 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/CloseAction.java | .java | 1,887 | 54 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChangeBondAction.java | .java | 7,756 | 192 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
* Some portions Copyright (C) 2009 Konstantin Tokarev
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free soft... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/CreateInChIAction.java | .java | 3,849 | 99 | /*
* Copyright (C) 1997-2009 Christoph Steinbeck, Stefan Kuhn, Mark Rijnbeek
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/RGroupAction.java | .java | 25,711 | 561 | /*
* Copyright (C) 2010 Mark Rijnbeek
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/CreateReactionAction.java | .java | 6,560 | 206 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Christoph Steinbeck, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/OpenAction.java | .java | 7,404 | 160 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/EditAtomContainerPropsAction.java | .java | 2,797 | 69 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/CopyPasteAction.java | .java | 37,955 | 813 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ToolBarAction.java | .java | 1,748 | 53 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Christoph Steinbeck, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/InsertStructureAction.java | .java | 1,773 | 51 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Rajarshi Guha, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under th... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChangeValenceAction.java | .java | 3,353 | 94 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ExitAction.java | .java | 1,730 | 56 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/SaveAsAction.java | .java | 20,244 | 473 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/HelpAction.java | .java | 2,670 | 79 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn, Christoph Steinbeck
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/MenuBarAction.java | .java | 1,747 | 53 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Christoph Steinbeck, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/PrintAction.java | .java | 2,719 | 87 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChangeSingleElectronAction.java | .java | 3,381 | 85 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/FlipAction.java | .java | 1,849 | 52 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChangeIsotopeAction.java | .java | 5,296 | 120 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ConvertToPseudoAtomAction.java | .java | 4,947 | 116 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ChargeAction.java | .java | 4,060 | 104 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 2009 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU L... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/AboutAction.java | .java | 1,851 | 56 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn, Christoph Steinbeck
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ModifySettingsAction.java | .java | 2,037 | 57 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Christoph Steinbeck, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/NewAction.java | .java | 2,775 | 75 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/CreateSmilesAction.java | .java | 4,253 | 119 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Christoph Steinbeck, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it un... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/RedoAction.java | .java | 2,111 | 64 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/JCPAction.java | .java | 8,818 | 346 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/EditChemObjectPropsAction.java | .java | 3,094 | 84 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Egon Willighagen, Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/action/ExportAction.java | .java | 7,683 | 182 | /*
* $RCSfile$
* $Author: egonw $
* $Date: 2007-01-04 17:26:00 +0000 (Thu, 04 Jan 2007) $
* $Revision: 7634 $
*
* Copyright (C) 1997-2008 Stefan Kuhn
*
* Contact: cdk-jchempaint@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the ... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/controller/UndoAdapter.java | .java | 2,029 | 63 | /* $RCSfile$
* $Author: egonw $
* $Date: 2008-09-10 08:13:15 +0200 (Wed, 10 Sep 2008) $
* $Revision: 12257 $
*
* Copyright (C) 2005-2007 The Chemistry Development Kit (CDK) project
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/controller/PhantomAtomGenerator.java | .java | 2,957 | 76 | /* $Revision: $ $Author: $ $Date$
*
* Copyright (C) 2009 Arvid Berg <goglepox@users.sourceforge.net>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free So... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/controller/ChangeSingleElectronModule.java | .java | 3,223 | 98 | /* $Revision: 7636 $ $Author: nielsout $ $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $
*
* Copyright (C) 2007 Niels Out <nielsout@users.sf.net>
* Copyright (C) 2008 Stefan Kuhn (undo redo)
* Copyright (C) 2008 Arvid Berg <goglepox@users.sf.net>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This pr... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/controller/IChangeModeListener.java | .java | 1,665 | 44 | /* $Revision: 7636 $ $Author: egonw $ $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $
*
* Copyright (C) 2009 Stefan Kuhn <stefan.kuhn@ebi.ac.uk>
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser Gene... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/controller/CDKPopupMenu.java | .java | 2,120 | 64 | /* $RCSfile$
* $Author$
* $Date$
* $Revision$
*
* Copyright (C) 2003-2007 The Chemistry Development Kit (CDK) project
*
* Contact: cdk-devel@lists.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as pu... | Java |
2D | JChemPaint/jchempaint | core/src/main/java/org/openscience/jchempaint/controller/ConjugationTools.java | .java | 12,125 | 351 | /*
* Copyright (C) 2025 John Mayfield
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
* All I as... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.