Skip to content

A java wrapper to load and inspect HLA RTI FOM files. Have all classes from IEEE1516-DIF-2010.xsd specification and a wrapper to simplify inspect your fom.

License

Notifications You must be signed in to change notification settings

icemagno/hla-fom-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hla-fom-wrapper

A java wrapper to load and inspect HLA RTI FOM files. Have all classes from IEEE1516-DIF-2010.xsd specification and a wrapper to simplify inspect your fom.

Very simple to use!

ObjectModelType omt = new FOMObjectCreator().generate( "RestaurantProcesses.xml" ); 
FomWrapper fw = new FomWrapper( omt );

FomDataTypes dataTypes = fw.getDataTypes();
for ( FomArrayData fad : fdt.getArrayData() ) {
  System.out.println( fad.getName() + " " + fad.getType() );
  System.out.println(" > " + fad.getSemantics() );
}

HLA Evolved namespace

Work only with HLA Evolved XML files. Namespace http://standards.ieee.org/IEEE1516-2010

About

A java wrapper to load and inspect HLA RTI FOM files. Have all classes from IEEE1516-DIF-2010.xsd specification and a wrapper to simplify inspect your fom.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages