Skip to content

Commit

Permalink
Tuned doc, using kotlin conventions.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkrauss committed Aug 21, 2017
1 parent f052641 commit 03e6821
Showing 1 changed file with 6 additions and 22 deletions.
28 changes: 6 additions & 22 deletions src/main/kotlin/de/qaware/refactobot/model/plan/FileLocation.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 03e6821

Please sign in to comment.