-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tuned doc, using kotlin conventions.
- Loading branch information
1 parent
f052641
commit 03e6821
Showing
1 changed file
with
6 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,29 +4,13 @@ package de.qaware.refactobot.model.plan | |
* Data class for target names/locations with regard to a single file. | ||
* | ||
* @author Alexander Krauss [email protected] | ||
* | ||
* @param module the new module | ||
* @param sourceFolder the new source folder | ||
* @param path the new relative path, within the source folder | ||
* @param fileName the new file name | ||
*/ | ||
data class FileLocation( | ||
|
||
/** | ||
* The new module. | ||
*/ | ||
val module: String, | ||
|
||
/** | ||
* The new source folder | ||
*/ | ||
val sourceFolder: String, | ||
|
||
/** | ||
* The new relative path, within the source folder. | ||
*/ | ||
val path: String, | ||
|
||
/** | ||
* The new filename | ||
*/ | ||
val fileName: String | ||
) { | ||
data class FileLocation(val module: String, val sourceFolder: String, val path: String, val fileName: String) { | ||
|
||
/** | ||
* The full path and name of the new file, relative to the codebase root. | ||
|