com.actelion.research.chem.coords.InventorCharge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.chem.coords;
/**
* Created by thomas on 9/28/16.
*/
public class InventorCharge {
InventorFragment fragment;
public int atom,charge;
public InventorCharge(InventorFragment fragment, int atom, int charge) {
this.fragment = fragment;
this.atom = atom;
this.charge = charge;
}
}