c

sbt.util

EmptyChangeReport

class EmptyChangeReport[T] extends ChangeReport[T]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EmptyChangeReport
  2. ChangeReport
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EmptyChangeReport()

Value Members

  1. def +++(other: ChangeReport[T]): ChangeReport[T]
    Definition Classes
    ChangeReport
  2. def added: Set[T]

    All objects that are only in the current set.

    All objects that are only in the current set.

    Definition Classes
    EmptyChangeReportChangeReport
  3. def checked: Set[T]

    The set of all of the objects in the current set.

    The set of all of the objects in the current set.

    Definition Classes
    EmptyChangeReportChangeReport
  4. def markAllModified: ChangeReport[T]

    Generate a new report with this report's unmodified set included in the new report's modified set.

    Generate a new report with this report's unmodified set included in the new report's modified set. The new report's unmodified set is empty. The new report's added, removed, and checked sets are the same as in this report.

    Definition Classes
    ChangeReport
  5. def modified: Set[T]

    All checked objects that are not in the same state as the reference.

    All checked objects that are not in the same state as the reference. This includes objects that are in both sets but have changed and files that are only in one set.

    Definition Classes
    EmptyChangeReportChangeReport
  6. def removed: Set[T]

    All objects only in the previous set

    All objects only in the previous set

    Definition Classes
    EmptyChangeReportChangeReport
  7. def toString(): String
    Definition Classes
    EmptyChangeReportChangeReport → AnyRef → Any
  8. def unmodified: Set[T]

    All of the objects that are in the same state in the current and reference sets.

    All of the objects that are in the same state in the current and reference sets.

    Definition Classes
    EmptyChangeReportChangeReport