Java @FunctionalInterface Annotation

@FunctionalInterface
public interface MyFuncInterface{
  public void firstMethod(); // this is an abstract method
}
SAMER SAEID