summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/ant/sabbus/Break.scala
blob: 91dab5b0ee3b0b44851b3fa02c31fd6d8785fdd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*                     __                                               *\
**     ________ ___   / /  ___     Scala Ant Tasks                      **
**    / __/ __// _ | / /  / _ |    (c) 2005-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */


package scala.tools.ant.sabbus

import org.apache.tools.ant.Task

class Break extends Task {

  def setId(input: String) {
    id = Some(input)
  }

  private var id: Option[String] = None

  override def execute() {
    if (id.isEmpty) sys.error("Attribute 'id' is not set")
    Compilers.break(id.get)
  }

}