Uses of Class
edu.princeton.cs.algs4.growingtree.framework.PaintSettings

Packages that use PaintSettings
edu.princeton.cs.algs4.growingtree.framework   
 

Uses of PaintSettings in edu.princeton.cs.algs4.growingtree.framework
 

Methods in edu.princeton.cs.algs4.growingtree.framework that return PaintSettings
 PaintSettings GrowingTreeHead.getDeleteLeftLinePaintSettings()
          Gets the Paint for the left line of Paint.
 PaintSettings GrowingTreeHead.getDeleteRightLinePaintSettings()
          Gets the Paint for the right line of Paint.
 PaintSettings DeleteBSTAnimation.getLeftLinePaintSettings()
          Gets the paint for the left line of the partition for deletion.
 PaintSettings DeleteBSTAnimation.getRightLinePaintSettings()
          Gets the PaintSettings for the right line of the partition for deletion.
static PaintSettings PaintSettings.getScheme(java.lang.String s)
          Gets a PaintSettings that defines the given String scheme.
 

Methods in edu.princeton.cs.algs4.growingtree.framework with parameters of type PaintSettings
 void GrowingTreeHead.setDeleteLeftLinePaintSettings(PaintSettings p)
          Sets the PaintSettings for the left line of Paint.
 void GrowingTreeHead.setDeleteRightLinePaintSettings(PaintSettings p)
          Sets the PaintSettings for the right line of Paint.
 void DeleteBSTAnimation.setLeftLinePaintSettings(PaintSettings leftPaintSettings)
          Sets the paint for the left line of the partition for deletion.
 void DeleteBSTAnimation.setRightLinePaintSettings(PaintSettings rightPaintSettings)
          Sets the PaintSettings for the right line of the partition for deletion.
 

Constructors in edu.princeton.cs.algs4.growingtree.framework with parameters of type PaintSettings
DeleteBSTAnimation(GrowingTreeNode<P> erasingNode, PaintSettings RightLinePaintSettings, PaintSettings LeftLinePaintSettings, java.lang.String startingCmd, int stepTime)
          The constructor which initiates the status and prepares the line paints.