|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectchemaxon.struc.Sgroup
chemaxon.struc.sgroup.MultipleSgroup
public class MultipleSgroup
Multiple S-group.
Field Summary |
---|
Fields inherited from class chemaxon.struc.Sgroup |
---|
brackets, CHARGE_ON_ATOMS, CHARGE_ON_GROUP, parentSgroup, PR_ATSYMS, RA_IN_EXPAND, RA_REMOVE_EXCEPT_RU, SCN_EITHER_UNKNOWN, SCN_HEAD_TO_HEAD, SCN_HEAD_TO_TAIL, SGROUP_TYPE_COUNT, sgroupGraph, sgroupType, SORT_CHILD_PARENT, SORT_PARENT_CHILD, SST_ALTERNATING, SST_BLOCK, SST_RANDOM, ST_ANY, ST_COMPONENT, ST_COPOLYMER, ST_CROSSLINK, ST_DATA, ST_FORMULATION, ST_GENERIC, ST_GRAFT, ST_MER, ST_MIXTURE, ST_MODIFICATION, ST_MONOMER, ST_MULTICENTER, ST_MULTIPLE, ST_SRU, ST_SUPERATOM, XSTATE_C, XSTATE_NONE, XSTATE_X, XSTATE_XC |
Fields inherited from interface chemaxon.struc.sgroup.Expandable |
---|
COORDS_UPDATE, DEFAULT_OPTIONS, FAST_COORDS, MDL_EXPAND, NONRECURSIVE_EXPAND, REVERSIBLE_EXPAND |
Constructor Summary | |
---|---|
|
MultipleSgroup(Molecule parent,
boolean expanded)
Constructs a multiple S-group. |
protected |
MultipleSgroup(MultipleSgroup sg,
Molecule m,
Sgroup psg)
Copy constructor. |
Method Summary | |
---|---|
void |
add(MolAtom a)
Adds a new atom to the S-group. |
void |
addRepeatingUnitAtom(MolAtom a)
Adds an atom to the list of paradigmatic repeating unit atoms. |
protected Sgroup |
cloneSgroup(Molecule m,
Sgroup psg,
int[] atomIndexMap)
Gets a new Sgroup instance. |
boolean |
contract(int opts)
Contracts this S-group. |
boolean |
expand(int opts)
Expands this S-group. |
int |
getMultiplier()
Gets the multiplier. |
MolAtom |
getRepeatingUnitAtom(int i)
Gets a paradigmatic repeating unit atom. |
int |
getRepeatingUnitAtomCount()
Gets the number of atoms in the pararadigmatic repeating unit. |
MolAtom[] |
getRepeatingUnitAtoms()
Gets the repeating unit atoms. |
java.lang.String |
getSubscript()
Gets the subscript. |
static boolean |
isAcceptableGraph(MoleculeGraph molGraph)
Decides whether the given molecule graph can be the graph of a multiple s-group. |
boolean |
isBracketVisible()
Tests whether the bracket is visible. |
boolean |
isContracted()
Is this S-group contracted? |
boolean |
isExpanded()
Is this S-group expanded? |
boolean |
isRepeatingUnitAtom(MolAtom a)
Checks if the specified atom object is in the paradigmatic repeating unit or not. |
Sgroup |
newInstance()
Gets a new MultipleSgroup instance. |
protected void |
removeAtom(MolAtom a,
int opts)
Removes an atom from the S-group. |
void |
removeRepeatingUnitAtom(MolAtom a)
Removes an atom from the list of paradigmatic repeating unit atoms. |
void |
replaceAtom(MolAtom olda,
MolAtom newa,
int opts)
Replace an existing atom by a new one. |
void |
setAtom(int i,
MolAtom a)
Sets the specified atom in the S-group graph. |
void |
setMultiplier(int m)
Sets the multiplier. |
void |
setRepeatingUnitAtom(MolAtom a,
boolean set)
Adds or removes an atom to/from the list of paradigmatic repeating unit atoms. |
void |
setSubscript(java.lang.String s)
Sets the subscript. |
java.lang.String |
toString(int opts)
Returns a string representation of the group. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public MultipleSgroup(Molecule parent, boolean expanded)
parent
- the parent moleculeexpanded
- whether the S-group is created in expanded state or notprotected MultipleSgroup(MultipleSgroup sg, Molecule m, Sgroup psg)
sg
- the S-group to copym
- the new parent moleculepsg
- the new parent S-group or nullMethod Detail |
---|
public final boolean isRepeatingUnitAtom(MolAtom a)
a
- the atom to check
public static boolean isAcceptableGraph(MoleculeGraph molGraph)
molGraph
- molecule graph to check
public final int getRepeatingUnitAtomCount()
public final MolAtom getRepeatingUnitAtom(int i)
i
- the paradigmatic repeating unit atom index
public final MolAtom[] getRepeatingUnitAtoms()
public final void addRepeatingUnitAtom(MolAtom a)
a
- the atom to addpublic final void removeRepeatingUnitAtom(MolAtom a)
a
- the atom to removepublic final void setRepeatingUnitAtom(MolAtom a, boolean set)
a
- the atomset
- add (true
)
or remove (false
)public void add(MolAtom a)
add
in class Sgroup
a
- the atompublic final int getMultiplier()
public final void setMultiplier(int m)
m
- the multiplierpublic Sgroup newInstance()
public final void setAtom(int i, MolAtom a)
setAtom
in class Sgroup
i
- the indexa
- the atomprotected final void removeAtom(MolAtom a, int opts)
removeAtom
in class Sgroup
a
- the atomopts
- 0 or Sgroup.RA_IN_EXPAND
public final void replaceAtom(MolAtom olda, MolAtom newa, int opts)
replaceAtom
in class Sgroup
olda
- the original atomnewa
- the new atomopts
- optionsSgroup.RA_REMOVE_EXCEPT_RU
protected Sgroup cloneSgroup(Molecule m, Sgroup psg, int[] atomIndexMap)
cloneSgroup
in class Sgroup
m
- the new parent moleculepsg
- the new parent S-groupatomIndexMap
- indices of cloned atoms in the original molecule
in the case of partial cloning, or null
otherwise
public void setSubscript(java.lang.String s)
setSubscript
in class Sgroup
s
- the multiplier as a stringpublic java.lang.String getSubscript()
getSubscript
in class Sgroup
public final boolean expand(int opts)
expand
in interface Expandable
expand
in class Sgroup
opts
- expansion options
java.lang.IllegalArgumentException
- if the group is invisible
(it has a non-expanded parent)Sgroup.setXState(int)
public final boolean isExpanded()
isExpanded
in interface Expandable
public final boolean contract(int opts)
contract
in interface Expandable
contract
in class Sgroup
opts
- contraction options
java.lang.IllegalArgumentException
- if the group is invisible
(it has a non-expanded parent)Sgroup.setXState(int)
public final boolean isContracted()
public boolean isBracketVisible()
isBracketVisible
in class Sgroup
true
in contracted, false
in expanded
statepublic java.lang.String toString(int opts)
toString
in class Sgroup
opts
- options or 0
Sgroup.PR_ATSYMS
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |