Uses of Interface
org.openscience.cdk.renderer.generators.IGenerator
-
Packages that use IGenerator Package Description org.openscience.cdk.renderer org.openscience.cdk.renderer.generators org.openscience.cdk.renderer.generators.standard -
-
Uses of IGenerator in org.openscience.cdk.renderer
Fields in org.openscience.cdk.renderer with type parameters of type IGenerator Modifier and Type Field Description protected List<IGenerator<T>>
AbstractRenderer. generators
Generators for diagram elements.Methods in org.openscience.cdk.renderer that return types with arguments of type IGenerator Modifier and Type Method Description List<IGenerator<IAtomContainer>>
AtomContainerRenderer. getGenerators()
Returns aList
ofIGenerator
s for this renderer.List<IGenerator<IChemModel>>
ChemModelRenderer. getGenerators()
Returns aList
ofIGenerator
s for this renderer.List<IGenerator<T>>
IRenderer. getGenerators()
Returns aList
ofIGenerator
s for this renderer.List<IGenerator<IAtomContainerSet>>
MoleculeSetRenderer. getGenerators()
Returns aList
ofIGenerator
s for this renderer.List<IGenerator<IReaction>>
ReactionRenderer. getGenerators()
Returns aList
ofIGenerator
s for this renderer.List<IGenerator<IReactionSet>>
ReactionSetRenderer. getGenerators()
Returns aList
ofIGenerator
s for this renderer.Methods in org.openscience.cdk.renderer with parameters of type IGenerator Modifier and Type Method Description void
RendererModel. registerParameters(IGenerator<? extends IChemObject> generator)
Registers rendering parameters fromIGenerator
s with this model.Constructor parameters in org.openscience.cdk.renderer with type arguments of type IGenerator Constructor Description AtomContainerRenderer(List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
A renderer that generates diagrams using the specified generators and manages fonts with the supplied font manager.AtomContainerRenderer(RendererModel rendererModel, List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
ChemModelRenderer(List<IGenerator<IAtomContainer>> generators, List<IGenerator<IReaction>> reactionGenerators, IFontManager fontManager)
ChemModelRenderer(List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
A renderer that generates diagrams using the specified generators and manages fonts with the supplied font manager.MoleculeSetRenderer(List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
A renderer that generates diagrams using the specified generators and manages fonts with the supplied font manager.MoleculeSetRenderer(RendererModel rendererModel, List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
ReactionRenderer(List<IGenerator<IAtomContainer>> generators, List<IGenerator<IReaction>> reactionGenerators, IFontManager fontManager)
A renderer that drawsIReaction
s with the passedIGenerator
for bothIAtomContainer
andIReaction
content.ReactionRenderer(List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
A renderer that generates diagrams using the specified generators and manages fonts with the supplied font manager.ReactionRenderer(RendererModel rendererModel, List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
ReactionSetRenderer(List<IGenerator<IAtomContainer>> generators, List<IGenerator<IReaction>> reactionGenerators, IFontManager fontManager)
A renderer that generates diagrams using the specified generators forIAtomContainer
s andIReactionSet
s and manages fonts with the supplied font manager.ReactionSetRenderer(List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
A renderer that generates diagrams using the specified generators and manages fonts with the supplied font manager.ReactionSetRenderer(RendererModel rendererModel, List<IGenerator<IAtomContainer>> generators, List<IGenerator<IReaction>> reactionGenerators, IFontManager fontManager)
ReactionSetRenderer(RendererModel rendererModel, List<IGenerator<IAtomContainer>> generators, IFontManager fontManager)
-
Uses of IGenerator in org.openscience.cdk.renderer.generators
Classes in org.openscience.cdk.renderer.generators that implement IGenerator Modifier and Type Class Description class
AtomContainerBoundsGenerator
IGenerator
that draws a rectangular around theIAtomContainer
.class
AtomMassGenerator
IGenerator
that can render mass number information of atoms.class
AtomNumberGenerator
IGenerator
forIAtomContainer
s that will draw atom numbers for the atoms.class
BasicAtomGenerator
Generates basicIRenderingElement
s for atoms in an atom container.class
BasicBondGenerator
Generator for elements from bonds.class
BasicGenerator
Combination generator for basic drawing of molecules.class
BasicSceneGenerator
This generator does not create any elements, but acts as a holding place for various generator parameters used by most drawings, such as the zoom, background color, margin, etc.class
BoundsGenerator
Produce a bounding rectangle for various chem objects.class
ExtendedAtomGenerator
A generator for atoms with mass, charge, etc.class
HighlightGenerator
Generate an under/overlaid highlight in structure depictions.class
LonePairGenerator
Generate the symbols for lone pairs.class
MappingGenerator
IGenerator
that will show how atoms map between the reactant and product side.class
ProductsBoxGenerator
Generate the symbols for radicals.class
RadicalGenerator
Generate the symbols for radicals.class
ReactantsBoxGenerator
Generate the symbols for radicals.class
ReactionArrowGenerator
Generate the arrow for a reaction.class
ReactionBoxGenerator
Generate the symbols for radicals.class
ReactionPlusGenerator
Generate the arrow for a reaction.class
ReactionSceneGenerator
Generator for general reaction scene components.class
RingGenerator
Generates just the aromatic indicators for rings : circles, or light-gray inner bonds, depending on the value of CDKStyleAromaticity. -
Uses of IGenerator in org.openscience.cdk.renderer.generators.standard
Classes in org.openscience.cdk.renderer.generators.standard that implement IGenerator Modifier and Type Class Description class
StandardGenerator
The standard generator createsIRenderingElement
s for the atoms and bonds of a structure diagram.
-