本文整理汇总了Scala中java.lang.reflect.Modifier类的典型用法代码示例。如果您正苦于以下问题:Scala Modifier类的具体用法?Scala Modifier怎么用?Scala Modifier使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Modifier类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Scala代码示例。
示例1: thisProject
//设置package包名称以及导入依赖的类
package com.outr.pmc
import java.lang.reflect.Modifier
import com.outr.pmc.repl.Interpreter
import com.outr.scribe.Logging
import scala.tools.nsc.interpreter.IMain
trait Project extends Logging {
implicit def thisProject: Project = this
private var tasksMap = Map.empty[String, Task]
val tasks = Task {
println("Available tasks:")
tasksMap.keys.foreach(n => println(s"\t$n"))
}
def init(iMain: IMain): Unit = {
val map = getClass.getDeclaredMethods.collect {
case method if classOf[Task].isAssignableFrom(method.getReturnType)
&& Modifier.isPublic(method.getModifiers)
&& !method.getName.contains("$") => method.getName -> method.invoke(this).asInstanceOf[Task]
}.toMap
tasksMap = map
tasksMap.foreach {
case (name, task) => iMain.bind(name, task.getClass.getName, task)
}
}
def main(args: Array[String]): Unit = {
// TODO: support command-line args not starting REPL
new Interpreter(this)
}
def error(t: Throwable): Unit = logger.error(t)
}