org.danilopianini.plagiarismdetector.utils.Language.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-plagiarism-detector Show documentation
Show all versions of code-plagiarism-detector Show documentation
A tool for scanning existing projects in search of potential signs of plagiarism
package org.danilopianini.plagiarismdetector.utils
/**
* An interface modeling a programming language.
*/
sealed interface Language {
/**
* The name of the language.
*/
val name: String
/**
* The extensions of the files developed using this language.
*/
val fileExtensions: Regex
}
/**
* Java programming language.
*/
object Java : Language {
override val name: String = "java"
override val fileExtensions: Regex = Regex(".*.java$")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy