Uses of Interface
de.xima.fc.common.collection.CrudMapAdapter
-
Packages that use CrudMapAdapter Package Description de.xima.fc.common.collection de.xima.fc.gui.common.model.file -
-
Uses of CrudMapAdapter in de.xima.fc.common.collection
Classes in de.xima.fc.common.collection that implement CrudMapAdapter Modifier and Type Class Description static class
CrudMapAdapter.Immutable<Key,Value>
ACrudMapAdapter
for an immutable map.static class
CrudMapAdapter.SetLike<Value>
static class
CrudMapAdapter.SetLike.Immutable<Value>
ACrudMapAdapter.SetLike
for an immutable set.Methods in de.xima.fc.common.collection with parameters of type CrudMapAdapter Modifier and Type Method Description static <K,V>
Map<K,V>CrudMap. newMap(Class<K> keyType, CrudMapAdapter<K,V> dataAdapter)
Creates a new map that delegates to the givendata adapter
for getting data from the map, setting data to the map, and deleting data from the map.static <T> Set<T>
CrudMap. newSet(Class<T> keyType, CrudMapAdapter<T,Unit> dataAdapter)
Creates a new set that delegates to the givendata adapter
for getting elements from the set, adding deleting elements to the set, and deleting elements from the set. -
Uses of CrudMapAdapter in de.xima.fc.gui.common.model.file
Classes in de.xima.fc.gui.common.model.file that implement CrudMapAdapter Modifier and Type Class Description class
TextFileSystemViewCrudMapAdapter<Entry>
ACrudMapAdapter
for a map from file keys to the file's text content, backed by aICommonFileSystem
.Methods in de.xima.fc.gui.common.model.file that return CrudMapAdapter Modifier and Type Method Description CrudMapAdapter<String,String>
TextFileSystemViewCrudMapAdapter.Builder. build()
Creates a newCrudMapAdapter
that uses the configuredICommonFileSystem
to read and write file text content.
-