Package com.actelion.research.gui
Interface CompoundCollectionModel<T>
-
- All Known Implementing Classes:
DefaultCompoundCollectionModel,DefaultCompoundCollectionModel.IDCode,DefaultCompoundCollectionModel.IDCodeWithName,DefaultCompoundCollectionModel.Molecule,DefaultCompoundCollectionModel.Native
public interface CompoundCollectionModel<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddCompound(int index, T compound)voidaddCompound(T compound)voidaddCompoundCollectionListener(CompoundCollectionListener l)voidaddCompoundList(java.util.Collection<T> list)voidaddMolecule(int index, StereoMolecule mol)voidaddMoleculeList(java.util.Collection<StereoMolecule> list)voidclear()TgetCompound(int i)StereoMoleculegetMolecule(int index)StereoMoleculegetMoleculeForDisplay(int index)intgetSize()voidremove(int index)voidremoveCompoundCollectionListener(CompoundCollectionListener l)voidsetCompound(int index, T compound)voidsetCompoundList(java.util.Collection<T> list)voidsetMolecule(int index, StereoMolecule mol)
-
-
-
Method Detail
-
addCompoundCollectionListener
void addCompoundCollectionListener(CompoundCollectionListener l)
-
removeCompoundCollectionListener
void removeCompoundCollectionListener(CompoundCollectionListener l)
-
clear
void clear()
-
remove
void remove(int index)
-
getSize
int getSize()
-
addMolecule
void addMolecule(int index, StereoMolecule mol)
-
addMoleculeList
void addMoleculeList(java.util.Collection<StereoMolecule> list)
-
setMolecule
void setMolecule(int index, StereoMolecule mol)
-
getMolecule
StereoMolecule getMolecule(int index)
-
getMoleculeForDisplay
StereoMolecule getMoleculeForDisplay(int index)
-
addCompound
void addCompound(T compound)
-
addCompound
void addCompound(int index, T compound)
-
addCompoundList
void addCompoundList(java.util.Collection<T> list)
-
getCompound
T getCompound(int i)
-
setCompound
void setCompound(int index, T compound)
-
setCompoundList
void setCompoundList(java.util.Collection<T> list)
-
-