ChangeReport

sbt.util.ChangeReport
See theChangeReport companion object
trait ChangeReport[T]

The result of comparing some current set of objects against a previous set of objects.

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Abstract methods

def added: Set[T]

All objects that are only in the current set.

All objects that are only in the current set.

Attributes

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.

Attributes

def modified: Set[T]

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.

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.

Attributes

def removed: Set[T]

All objects only in the previous set

All objects only in the previous set

Attributes

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.

Attributes

Concrete methods

def +++(other: ChangeReport[T]): ChangeReport[T]

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.

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.

Attributes

override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns:

a string representation of the object.

Definition Classes
Any