Record Class ModelProject

java.lang.Object
java.lang.Record
dk.gtz.graphedit.model.ModelProject
Record Components:
metadata - A map of generic string-encoded metadata, useful for syntax=specific data
name - The name of the project
excludeFiles - A list of files to exclude from the project, can be glob-specifications
runTargets - A list of ModelRunTarget associated with this project

public record ModelProject(Map<String,String> metadata, String name, List<String> excludeFiles, List<ModelRunTarget> runTargets) extends Record
On-disk file structure for a project file Not to be confused with ModelProjectResource, this class represents a graphedit project.
  • Constructor Details

    • ModelProject

      public ModelProject(String name)
      Constructs a new project model with a specified name
      Parameters:
      name - The name of the project
    • ModelProject

      public ModelProject(Map<String,String> metadata, String name, List<String> excludeFiles, List<ModelRunTarget> runTargets)
      Creates an instance of a ModelProject record class.
      Parameters:
      metadata - the value for the metadata record component
      name - the value for the name record component
      excludeFiles - the value for the excludeFiles record component
      runTargets - the value for the runTargets record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • metadata

      public Map<String,String> metadata()
      Returns the value of the metadata record component.
      Returns:
      the value of the metadata record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • excludeFiles

      public List<String> excludeFiles()
      Returns the value of the excludeFiles record component.
      Returns:
      the value of the excludeFiles record component
    • runTargets

      public List<ModelRunTarget> runTargets()
      Returns the value of the runTargets record component.
      Returns:
      the value of the runTargets record component