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 void
addCompound(int index, T compound)
void
addCompound(T compound)
void
addCompoundCollectionListener(CompoundCollectionListener l)
void
addCompoundList(java.util.Collection<T> list)
void
addMolecule(int index, StereoMolecule mol)
void
addMoleculeList(java.util.Collection<StereoMolecule> list)
void
clear()
T
getCompound(int i)
StereoMolecule
getMolecule(int index)
StereoMolecule
getMoleculeForDisplay(int index)
int
getSize()
void
remove(int index)
void
removeCompoundCollectionListener(CompoundCollectionListener l)
void
setCompound(int index, T compound)
void
setCompoundList(java.util.Collection<T> list)
void
setMolecule(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)
-
-