EmptyChangeReport

sbt.util.EmptyChangeReport
class EmptyChangeReport[T] extends ChangeReport[T]

Attributes

Graph
Supertypes
trait ChangeReport[T]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete 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

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
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

Inherited methods

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

Attributes

Inherited from:
ChangeReport

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

Inherited from:
ChangeReport