Skip to content

Instantly share code, notes, and snippets.

@Manjago
Created December 10, 2014 12:03
Show Gist options
  • Save Manjago/9677685fdc89f6c6a637 to your computer and use it in GitHub Desktop.
Save Manjago/9677685fdc89f6c6a637 to your computer and use it in GitHub Desktop.
Lambda
package com.sts.voms.ui.client.common;
public interface Lambda<T, R> {
R execute(T arg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment