Package dk.gtz.graphedit.viewmodel
Interface IBufferContainer
- All Known Implementing Classes:
FileBufferContainer
public interface IBufferContainer
A container that holds
ViewModelProjectResource
instances.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Close and remove a project resource instance from the collection.boolean
Check if the collection contains a project resource instance with the provided keyGet an instance with a lookup keyjavafx.collections.ObservableMap<String,
ViewModelProjectResource> Get the underlying obserable buffer map.javafx.beans.property.ObjectProperty<ViewModelProjectResource>
Get the currently focused buffer object property.void
Open and add a new project resource instance to the collection.void
open
(String key, ViewModelProjectResource model) Open and add a new project resource instance to the collection.
-
Method Details
-
get
Get an instance with a lookup key- Parameters:
key
- the key that the project resource was loaded / inserted with- Returns:
- the associated project resource instance
- Throws:
RuntimeException
- ultimately up to the implementation, but this could be that there is no instance associated with the provided key
-
close
Close and remove a project resource instance from the collection. This will fire an event to all event handlers. If the key is not present in the collection, this action should do nothing- Parameters:
key
- the key to remove
-
open
Open and add a new project resource instance to the collection. This will fire an event to all event handlers. This will try to infer the project resource from the key.- Parameters:
key
- the key to open- Throws:
Exception
- ultimately up to the implementation, but this could be that the key already exists or that the resource could not be inferred
-
open
Open and add a new project resource instance to the collection. This will fire an event to all event handlers.- Parameters:
key
- the key to openmodel
- the project resource to insert- Throws:
RuntimeException
- ultimately up to the implementation, but this could be that the key already exists
-
contains
Check if the collection contains a project resource instance with the provided key- Parameters:
key
- the key to lookup- Returns:
true
if the collection contains a project resource instance with the associated key, otherwisefalse
-
getBuffers
javafx.collections.ObservableMap<String,ViewModelProjectResource> getBuffers()Get the underlying obserable buffer map. This is useful if you want to add eventhandlers to certain events.- Returns:
- the underlying obserable map
-
getCurrentlyFocusedBuffer
javafx.beans.property.ObjectProperty<ViewModelProjectResource> getCurrentlyFocusedBuffer()Get the currently focused buffer object property. This is useful if you want to react when the focused buffer changes.- Returns:
- the currently focused buffer object property
-