Uses of Interface
de.upb.hni.vmagic.output.VhdlCodeFormat

Packages that use VhdlCodeFormat
de.upb.hni.vmagic.output Contains the VHDL output module. 
 

Uses of VhdlCodeFormat in de.upb.hni.vmagic.output
 

Classes in de.upb.hni.vmagic.output that implement VhdlCodeFormat
 class CustomCodeFormat
          Customizable VHDL code format.
 

Fields in de.upb.hni.vmagic.output declared as VhdlCodeFormat
static VhdlCodeFormat VhdlCodeFormat.DEFAULT
          The default code format.
 

Methods in de.upb.hni.vmagic.output with parameters of type VhdlCodeFormat
static void VhdlOutput.print(VhdlElement element, VhdlCodeFormat format)
          Prints the VHDL representation of a VhdlElement to System.out using a custom code format.
static void VhdlOutput.toFile(VhdlElement element, VhdlCodeFormat format, java.lang.String fileName)
          Writes the VHDL representation of a VhdlElement to a file using a custom code format.
static java.lang.String VhdlOutput.toVhdlString(VhdlElement element, VhdlCodeFormat format)
          Converts a VhdlElement to a string using a custom code format.
static void VhdlOutput.toWriter(VhdlElement element, VhdlCodeFormat format, java.io.Writer writer)
          Outputs the VHDL representation of a VhdlElement to a Writer using a custom code format.