/* * Copyright (C) 2012-2014 Typesafe Inc. */ package scala.compat.java8; import scala.runtime.BoxedUnit; @FunctionalInterface public interface JProcedure0 extends JFunction0 { default void $init$() { } void applyVoid(); default BoxedUnit apply() { applyVoid(); return BoxedUnit.UNIT; } }