コード例 #1
0
ファイル: RegularBot.java プロジェクト: hugepython52/DarkBot
 public synchronized void setTasks(List<Class<? extends Task>> tasks) {
   if (locked) throw new UnsupportedOperationException();
   if (tasks == null) throw new NullPointerException();
   this.tasks = Collections.unmodifiableList(tasks);
 }
コード例 #2
0
ファイル: RegularBot.java プロジェクト: hugepython52/DarkBot
 public List<Command> getCommands() {
   synchronized (commands) {
     return Collections.unmodifiableList(commands);
   }
 }