Uses of Class
net.sourceforge.fixpusher.model.message.AbstractFIXElement

Packages that use AbstractFIXElement
net.sourceforge.fixpusher.model.message Provides classes defining the data structure of a FIX message. 
net.sourceforge.fixpusher.view.message Provides swing classes visualizing the detailed FIX messages. 
 

Uses of AbstractFIXElement in net.sourceforge.fixpusher.model.message
 

Subclasses of AbstractFIXElement in net.sourceforge.fixpusher.model.message
 class FIXComponent
          The Class FIXComponent.
 class FIXField
          The Class FIXField.
 class FIXGroup
          The Class FIXGroup.
 class FIXMessage
          The Class FIXMessage.
 

Methods in net.sourceforge.fixpusher.model.message that return types with arguments of type AbstractFIXElement
 java.util.List<AbstractFIXElement> AbstractFIXElement.getAbstractFIXElements()
          Gets the abstract fix elements.
 

Constructor parameters in net.sourceforge.fixpusher.model.message with type arguments of type AbstractFIXElement
AbstractFIXElement(java.lang.String name, int number, AbstractFIXElement.FieldType fieldType, java.util.List<AbstractFIXElement> fixFields)
          Instantiates a new abstract fix element.
FIXComponent(java.lang.String name, int number, AbstractFIXElement.FieldType fieldType, java.util.List<AbstractFIXElement> fixFields)
          Instantiates a new fIX component.
FIXGroup(java.lang.String name, int number, AbstractFIXElement.FieldType fieldType, java.util.List<AbstractFIXElement> fixFields)
          Instantiates a new fIX group.
FIXMessage(java.lang.String name, java.lang.String messageType, java.lang.String messageCat, java.util.List<AbstractFIXElement> fixMessageEntries, DictionaryParser dictionaryParser)
          Instantiates a new fIX message.
 

Uses of AbstractFIXElement in net.sourceforge.fixpusher.view.message
 

Constructors in net.sourceforge.fixpusher.view.message with parameters of type AbstractFIXElement
AbstractFIXPanel(AbstractFIXPanel parent, AbstractFIXElement abstractFIXElement, quickfix.FieldMap fieldMap, boolean enabled, int depth, FIXMessageFilter fixMessageFilter)
          Instantiates a new abstract fix panel.