Ejemplo n.º 1
0
  /** Invokes the method passing g to it. */
  public void wire(Graph g) {

    args[0] = g;
    try {
      method.invoke(null, args);
    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }