When cloning, the objects in the list are NOT cloned, only the references. @author Thomas Morgner
919293949596979899
public void setBackgroundImage(final int i, final Resource data) { if (backgroundImages == null) { backgroundImages = new ObjectList(); } backgroundImages.set(i, data); }
125126127128129130131132133
public void setBackgroundRepeat(final int i, final CSSValuePair data) { if (backgroundRepeats == null) { backgroundRepeats = new ObjectList(); } backgroundRepeats.set(i, data); }
159160161162163164165166167168169
public void setBackgroundSizes(final int i, final StrictDimension data) { if (backgroundSizes == null) { backgroundSizes = new ObjectList(); } if (data == null) { backgroundSizes.set(i, null); }
200201202203204205206207208209210
public void setBackgroundPosition(final int i, final CSSValuePair data) { if (backgroundPositions == null) { backgroundPositions = new ObjectList(); } if (data == null) { backgroundPositions.set(i, null); }
242243244245246247248249250251252
public void setBackgroundOrigin(final int i, final CSSConstant data) { if (backgroundOrigin == null) { backgroundOrigin = new ObjectList(); } if (data == null) { backgroundOrigin.set(i, null); }
283284285286287288289290291292293
public void setBackgroundClip(final int i, final CSSConstant data) { if (backgroundClip == null) { backgroundClip = new ObjectList(); } if (data == null) { backgroundClip.set(i, null); }
324325326327328329330331332333334
public void setBackgroundAttachment(final int i, final CSSConstant data) { if (backgroundAttachment == null) { backgroundAttachment = new ObjectList(); } if (data == null) { backgroundAttachment.set(i, null); }