Slide 20
Slide 20 text
public class FlowStepFragmentArgs {
private String artistId = "hoge";
private FlowStepFragmentArgs() {
}
public static FlowStepFragmentArgs fromBundle(Bundle bundle) {
FlowStepFragmentArgs result = new FlowStepFragmentArgs();
if (bundle.containsKey("artistId")) {
result.artistId = bundle.getString("artistId");
}
return result;
}
public String getArtistId() {
return artistId;
}
public Bundle toBundle() {
Bundle __outBundle = new Bundle();
__outBundle.putString("artistId", this.artistId);
return __outBundle;
}
...