Toggle navigation
Home
java.lang.String to com.kodcu.other.Item
No. of Instances - 8
No. of Commits - 1
No. of Projects - {'AsciidocFX'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Add or Remove Method invocation
recentFiles.stream().map(e -> (JsonString)e).map(e -> e.getString()).forEach(this.recentFiles::add)
to
recentFiles.stream().map(e -> (JsonString)e).map(e -> e.getString()).map(e -> new Item(Paths.get(e))).forEach(this.recentFiles::add)
this.cutCopy(recentListView.getSelectionModel().getSelectedItem())
to
this.cutCopy(recentListView.getSelectionModel().getSelectedItem().getPath().toString())
Rename Method invocation
recentFiles.stream()
to
recentFiles.stream().map(Item::getPath).map(e -> e.toString())
Cascading Type Change (Different)
ListChangeListener<String>
to
ListChangeListener<Item>
Wrap or Un-wrap
setOnAction
to
setOnAction