Packages

t

org.nlogo.api

ModelFormat

trait ModelFormat[Section, Format <: ModelFormat[Section, Format]] extends AnyRef

Source
ModelFormat.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ModelFormat
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def codeComponent: ComponentSerialization[Section, Format]
  2. abstract def infoComponent: ComponentSerialization[Section, Format]
  3. abstract def interfaceComponent: ComponentSerialization[Section, Format]
  4. abstract def isCompatible(model: Model): Boolean
  5. abstract def isCompatible(location: URI): Boolean
  6. abstract def isCompatible(source: String): Boolean
  7. abstract def linkShapesComponent: ComponentSerialization[Section, Format]
  8. abstract def name: String
  9. abstract def sections(location: URI): Try[Map[String, Section]]
  10. abstract def sectionsFromSource(source: String): Try[Map[String, Section]]
  11. abstract def sectionsToSource(sections: Map[String, Section]): Try[String]
  12. abstract def shapesComponent: ComponentSerialization[Section, Format]
  13. abstract def version: ComponentSerialization[Section, Format]
  14. abstract def writeSections(sections: Map[String, Section], location: URI): Try[URI]

Concrete Value Members

  1. def baseModel: Model
  2. def constructModel(components: Seq[ComponentSerialization[Section, Format]], sections: Map[String, Section]): Try[Model]
  3. def defaultComponents: Seq[ComponentSerialization[Section, Format]]
  4. def emptyModel(optionalComponents: Seq[ComponentSerialization[Section, Format]]): Model
  5. def load(location: URI, optionalComponents: Seq[ComponentSerialization[Section, Format]]): Try[Model]
  6. def load(source: String, optionalComponents: Seq[ComponentSerialization[Section, Format]]): Try[Model]
  7. def save(model: Model, uri: URI, optionalComponents: Seq[ComponentSerialization[Section, Format]]): Try[URI]
  8. def sourceString(model: Model, optionalComponents: Seq[ComponentSerialization[Section, Format]]): Try[String]