mirror of https://github.com/sbt/sbt.git
14 lines
351 B
Scala
14 lines
351 B
Scala
/* sbt -- Simple Build Tool
|
|
* Copyright 2010 Mark Harrah
|
|
*/
|
|
package sbt
|
|
package inc
|
|
|
|
final case class Discovered(baseClasses: Set[String], annotations: Set[String], hasMain: Boolean, isModule: Boolean)
|
|
{
|
|
def isEmpty = baseClasses.isEmpty && annotations.isEmpty
|
|
}
|
|
object Discovered
|
|
{
|
|
def empty = new Discovered(Set.empty, Set.empty, false, false)
|
|
} |