class EmptyChangeReport[T] extends ChangeReport[T]
- Alphabetic
- By Inheritance
- EmptyChangeReport
- ChangeReport
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new EmptyChangeReport()
Value Members
-
def
+++(other: ChangeReport[T]): ChangeReport[T]
- Definition Classes
- ChangeReport
-
def
added: Set[T]
All objects that are only in the current set.
All objects that are only in the current set.
- Definition Classes
- EmptyChangeReport → ChangeReport
-
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
- EmptyChangeReport → ChangeReport
-
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
-
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
- EmptyChangeReport → ChangeReport
-
def
removed: Set[T]
All objects only in the previous set
All objects only in the previous set
- Definition Classes
- EmptyChangeReport → ChangeReport
-
def
toString(): String
- Definition Classes
- EmptyChangeReport → ChangeReport → AnyRef → Any
-
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
- EmptyChangeReport → ChangeReport