Package dk.gtz.graphedit.viewmodel
Record Class ViewModelProject
java.lang.Object
java.lang.Record
dk.gtz.graphedit.viewmodel.ViewModelProject
- Record Components:
metadata
- A map of generic string-encoded metadata, useful for syntax=specific dataname
- The name of the projectrootDirectory
- The directory containing the on-disk fileisSavedInTemp
- Whether or not the project is currently a temporary projectexcludeFiles
- A list of files to exclude from the project, can be glob-specificationsrunTargets
- A list ofViewModelRunTarget
associated with this project
public record ViewModelProject(javafx.beans.property.SimpleListProperty<javafx.util.Pair<javafx.beans.property.StringProperty,javafx.beans.property.StringProperty>> metadata, javafx.beans.property.SimpleStringProperty name, javafx.beans.property.SimpleStringProperty rootDirectory, javafx.beans.property.SimpleBooleanProperty isSavedInTemp, javafx.beans.property.SimpleListProperty<javafx.beans.property.StringProperty> excludeFiles, javafx.beans.property.SimpleListProperty<ViewModelRunTarget> runTargets)
extends Record
Viewmodel version of the on-disk file structure for a project file
Not to be confused with
ViewModelProjectResource
, this class represents a graphedit project.-
Constructor Summary
ConstructorsConstructorDescriptionViewModelProject
(ModelProject modelProject) Constructs a new temporary viewmodel project based on a model instanceViewModelProject
(ModelProject modelProject, Optional<String> rootDirectory) Constructs a new viewmodel project based on a model instance and an optional rootdirectoryViewModelProject
(javafx.beans.property.SimpleListProperty<javafx.util.Pair<javafx.beans.property.StringProperty, javafx.beans.property.StringProperty>> metadata, javafx.beans.property.SimpleStringProperty name, javafx.beans.property.SimpleStringProperty rootDirectory, javafx.beans.property.SimpleBooleanProperty isSavedInTemp, javafx.beans.property.SimpleListProperty<javafx.beans.property.StringProperty> excludeFiles, javafx.beans.property.SimpleListProperty<ViewModelRunTarget> runTargets) Creates an instance of aViewModelProject
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.javafx.beans.property.SimpleListProperty<javafx.beans.property.StringProperty>
Returns the value of theexcludeFiles
record component.final int
hashCode()
Returns a hash code value for this object.javafx.beans.property.SimpleBooleanProperty
Returns the value of theisSavedInTemp
record component.javafx.beans.property.SimpleListProperty<javafx.util.Pair<javafx.beans.property.StringProperty,
javafx.beans.property.StringProperty>> metadata()
Returns the value of themetadata
record component.javafx.beans.property.SimpleStringProperty
name()
Returns the value of thename
record component.javafx.beans.property.SimpleStringProperty
Returns the value of therootDirectory
record component.javafx.beans.property.SimpleListProperty<ViewModelRunTarget>
Returns the value of therunTargets
record component.toModel()
Converts this viewmodel into a model typefinal String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ViewModelProject
Constructs a new temporary viewmodel project based on a model instance- Parameters:
modelProject
- The model project datastructure to base on- Throws:
IOException
- when temporary directory creation failed
-
ViewModelProject
public ViewModelProject(ModelProject modelProject, Optional<String> rootDirectory) throws IOException Constructs a new viewmodel project based on a model instance and an optional rootdirectory- Parameters:
modelProject
- The model project datastructure to base onrootDirectory
- When provided, a valid file path containing the associated model project file, else will create a new temp directory for you- Throws:
IOException
- when temporary directory creation failed
-
ViewModelProject
public ViewModelProject(javafx.beans.property.SimpleListProperty<javafx.util.Pair<javafx.beans.property.StringProperty, javafx.beans.property.StringProperty>> metadata, javafx.beans.property.SimpleStringProperty name, javafx.beans.property.SimpleStringProperty rootDirectory, javafx.beans.property.SimpleBooleanProperty isSavedInTemp, javafx.beans.property.SimpleListProperty<javafx.beans.property.StringProperty> excludeFiles, javafx.beans.property.SimpleListProperty<ViewModelRunTarget> runTargets) Creates an instance of aViewModelProject
record class.- Parameters:
metadata
- the value for themetadata
record componentname
- the value for thename
record componentrootDirectory
- the value for therootDirectory
record componentisSavedInTemp
- the value for theisSavedInTemp
record componentexcludeFiles
- the value for theexcludeFiles
record componentrunTargets
- the value for therunTargets
record component
-
-
Method Details
-
toModel
Converts this viewmodel into a model type- Returns:
- A model version of this project data
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
metadata
public javafx.beans.property.SimpleListProperty<javafx.util.Pair<javafx.beans.property.StringProperty,javafx.beans.property.StringProperty>> metadata()Returns the value of themetadata
record component.- Returns:
- the value of the
metadata
record component
-
name
public javafx.beans.property.SimpleStringProperty name()Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
rootDirectory
public javafx.beans.property.SimpleStringProperty rootDirectory()Returns the value of therootDirectory
record component.- Returns:
- the value of the
rootDirectory
record component
-
isSavedInTemp
public javafx.beans.property.SimpleBooleanProperty isSavedInTemp()Returns the value of theisSavedInTemp
record component.- Returns:
- the value of the
isSavedInTemp
record component
-
excludeFiles
public javafx.beans.property.SimpleListProperty<javafx.beans.property.StringProperty> excludeFiles()Returns the value of theexcludeFiles
record component.- Returns:
- the value of the
excludeFiles
record component
-
runTargets
Returns the value of therunTargets
record component.- Returns:
- the value of the
runTargets
record component
-