This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//hide | |
//setup | |
[source,cypher] | |
---- | |
// League nodes | |
CREATE (fsgt:League{name:'FSGT 34'}) | |
CREATE (saison14:Season{name:'Season 2013-2014', year:'2014'}) | |
CREATE (saison13:Season{name:'Season 2012-2013', year:'2013'}) | |
CREATE (saison12:Season{name:'Season 2011-2012', year:'2012'}) | |
CREATE (fsgt-[:CURRENT_SEASON]->saison14),(saison14-[:PREVIOUS_SEASON]->saison13),(saison13-[:PREVIOUS_SEASON]->saison12) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyBean_ extends MyBean implements Parcelable { | |
private MyBean bean; | |
public MyBean_(MyBean bean) { | |
this.bean = bean; | |
} | |
public MyBean_(Parcel in) { | |
ClassLoader cl = this.getClass().getClassLoader(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@EActivity(R.layout.main) | |
public class FirstActivity extends Activity { | |
@ItemClick | |
public void myListItemClicked(MyItem clickedItem) { | |
Intent intent = new Intent(app, ClipsListActivity_.class); | |
MyBean bean = new MyBean(); | |
intent.putExtra("my_bean", new MyBean_(bean)); | |
startActivity(intent); | |
} |
NewerOlder