Skip to content

Instantly share code, notes, and snippets.

View echebbi's full-sized avatar

Emmanuel Chebbi echebbi

  • Inria
  • Rennes, France
View GitHub Profile
@echebbi
echebbi / Greeting.java
Last active April 23, 2018 09:22
Demonstrates programmatic use of Py4J script engine within an Eclipse plug-in thanks to EASE.
/**
* Greets people.
*/
public class Greeting {
private String name;
public void setName(String name) {
this.name = name;
}