<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package narf;

/**
 * This class doesn't do much of anything either.
 */
public class Loo{
  /**
   * This is an example of a function that takes a parameter, returns an int and might throw an exception.
   * @param check If check is true, the function creates a Foo and executes Foo.fool()
   * @param alpha This variable doesn't actually do anything, but it shows the proper order of parameters.
   * @return This function returns Foo.fool().
   * @throws Exception This function says it might throw an exception of type Exception.
   */
  protected int oops(boolean check, boolean alpha) throws Exception
  {
    Foo itTakesA = new Foo();
    return itTakesA.fool();
  }
}</pre></body></html>