Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagediff
RFormat/
├── src/
│   ├── main/
│   │   └── resources/
│   │       └── com/
│   │           └── tresys/
│   │               └── RFormat/
│   │                   ├── xsd/
│   │                   │   ├── main.dfdl.xsd    - main DFDL schema file
│   │                   │   └── format.dfdl.xsd  - DFDL schema file imported/included from main
│   │                   └── xsl/
│   │                       └── xforms.xsl       - resources other than XSD go in other directories
│   └── test/
│       ├── resources/
│       │   └── com/
│       │        tresys/
│       │           └── RFormat/
│       │               └── tests1.tdml    - TDML test file (may be more than 1)
│       └── scala/
│           └── com/
│               └── tresys/
│                   └── RFormat/
│                       └── Tests1.scala   - Scala test driver file. Boilerplate, but makes running tests easy
│
├── build.sbt    - simple build tool (sbt) specification file. Edit to change version of Daffodil needed, or versions of other DFDL schemas needed
├── README.md    - Documentation about the DFDL schema in Markdown file format: (https://en.wikipedia.org/wiki/Markdown)
├── .classpath   - Eclipse classpath file (optional)
├── .project     - Eclipse project file (optional)
└── .gitignore   - Git revision control system 'ignore' file (should contain 'target' and 'lib_managed' entries)

...