|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Field | |
|---|---|
| org.openfast | |
| org.openfast.debug | |
| org.openfast.session.template.exchange | |
| org.openfast.template | |
| org.openfast.template.loader | |
| Uses of Field in org.openfast |
|---|
| Methods in org.openfast with parameters of type Field | |
|---|---|
void |
GroupValue.setFieldValue(Field field,
FieldValue value)
|
void |
GroupValue.setString(Field field,
java.lang.String value)
|
| Uses of Field in org.openfast.debug |
|---|
| Methods in org.openfast.debug with parameters of type Field | |
|---|---|
void |
Trace.field(Field field,
FieldValue value,
FieldValue encoded,
byte[] encoding,
int pmapIndex)
|
void |
BasicEncodeTrace.field(Field field,
FieldValue value,
FieldValue encoded,
byte[] encoding,
int pmapIndex)
|
void |
BasicDecodeTrace.field(Field field,
FieldValue value,
FieldValue decodedValue,
byte[] encoding,
int pmapIndex)
|
| Uses of Field in org.openfast.session.template.exchange |
|---|
| Methods in org.openfast.session.template.exchange that return Field | |
|---|---|
Field |
VariableLengthInstructionConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
StaticTemplateReferenceConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
SequenceConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
ScalarConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
GroupConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
FieldInstructionConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
DynamicTemplateReferenceConverter.convert(GroupValue groupValue,
TemplateRegistry templateRegistry,
ConversionContext context)
|
Field |
ComposedDecimalConverter.convert(GroupValue fieldDef,
TemplateRegistry templateRegistry,
ConversionContext context)
|
static Field[] |
GroupConverter.parseFieldInstructions(GroupValue groupDef,
TemplateRegistry registry,
ConversionContext context)
|
| Methods in org.openfast.session.template.exchange with parameters of type Field | |
|---|---|
GroupValue |
VariableLengthInstructionConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
StaticTemplateReferenceConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
SequenceConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
ScalarConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
GroupConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
FieldInstructionConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
DynamicTemplateReferenceConverter.convert(Field field,
ConversionContext context)
|
GroupValue |
ComposedDecimalConverter.convert(Field field,
ConversionContext context)
|
FieldInstructionConverter |
ConversionContext.getConverter(Field field)
|
static void |
AbstractFieldInstructionConverter.setName(Field field,
GroupValue fieldDef)
|
static void |
AbstractFieldInstructionConverter.setNameAndId(Field field,
GroupValue fieldDef)
|
boolean |
VariableLengthInstructionConverter.shouldConvert(Field field)
|
boolean |
StaticTemplateReferenceConverter.shouldConvert(Field field)
|
boolean |
SequenceConverter.shouldConvert(Field field)
|
boolean |
ScalarConverter.shouldConvert(Field field)
|
boolean |
GroupConverter.shouldConvert(Field field)
|
boolean |
FieldInstructionConverter.shouldConvert(Field field)
|
boolean |
DynamicTemplateReferenceConverter.shouldConvert(Field field)
|
boolean |
ComposedDecimalConverter.shouldConvert(Field field)
|
| Uses of Field in org.openfast.template |
|---|
| Subclasses of Field in org.openfast.template | |
|---|---|
class |
ComposedScalar
|
class |
DynamicTemplateReference
|
class |
Group
|
class |
MessageTemplate
|
class |
Scalar
|
class |
Sequence
|
class |
StaticTemplateReference
|
| Fields in org.openfast.template declared as Field | |
|---|---|
protected Field[] |
Group.fieldDefinitions
|
protected Field[] |
Group.fields
|
| Methods in org.openfast.template that return Field | |
|---|---|
Field |
Sequence.getField(int index)
Find a specific field |
Field |
MessageTemplate.getField(int index)
|
Field |
Group.getField(int index)
Find the field object of the index passed |
Field |
FieldSet.getField(int index)
|
Field |
Group.getField(QName name)
|
Field |
Group.getField(java.lang.String fieldName)
Find the field object of the passed field name |
Field |
Group.getFieldById(java.lang.String id)
|
Field[] |
Group.getFieldDefinitions()
|
Field[] |
MessageTemplate.getFields()
|
Field[] |
Group.getFields()
|
Field[] |
MessageTemplate.getTemplateFields()
Returns a field array of the current stored fields |
| Methods in org.openfast.template with parameters of type Field | |
|---|---|
int |
Group.getFieldIndex(Field field)
|
| Constructors in org.openfast.template with parameters of type Field | |
|---|---|
Group(QName name,
Field[] fields,
boolean optional)
|
|
Group(java.lang.String name,
Field[] fields,
boolean optional)
|
|
MessageTemplate(QName name,
Field[] fields)
|
|
MessageTemplate(java.lang.String name,
Field[] fields)
|
|
Sequence(QName name,
Field[] fields,
boolean optional)
Sequence Constructor - Sets the implicitLength to true |
|
Sequence(QName name,
Scalar length,
Field[] fields,
boolean optional)
Sequence Constructor - If no length, a length is created and the implicitLength is set to true. |
|
Sequence(java.lang.String name,
Field[] fields,
boolean optional)
|
|
| Uses of Field in org.openfast.template.loader |
|---|
| Methods in org.openfast.template.loader that return Field | |
|---|---|
Field |
VariableLengthScalarParser.parse(org.w3c.dom.Element fieldNode,
boolean optional,
org.openfast.template.loader.ParsingContext context)
|
protected Field |
TemplateParser.parse(org.w3c.dom.Element templateElement,
boolean optional,
org.openfast.template.loader.ParsingContext context)
Creates a MessageTemplate object from the dom template element |
protected Field |
SequenceParser.parse(org.w3c.dom.Element sequenceElement,
boolean optional,
org.openfast.template.loader.ParsingContext context)
|
Field |
ScalarParser.parse(org.w3c.dom.Element fieldNode,
boolean optional,
org.openfast.template.loader.ParsingContext context)
|
protected Field |
GroupParser.parse(org.w3c.dom.Element groupElement,
boolean optional,
org.openfast.template.loader.ParsingContext context)
Creates a Group object from the dom group element |
protected Field |
ComposedDecimalParser.parse(org.w3c.dom.Element fieldNode,
boolean optional,
org.openfast.template.loader.ParsingContext context)
|
protected abstract Field |
AbstractFieldParser.parse(org.w3c.dom.Element fieldNode,
boolean optional,
org.openfast.template.loader.ParsingContext context)
|
Field |
TemplateRefParser.parse(org.w3c.dom.Element element,
org.openfast.template.loader.ParsingContext context)
|
Field |
FieldParser.parse(org.w3c.dom.Element fieldNode,
org.openfast.template.loader.ParsingContext context)
|
Field |
AbstractFieldParser.parse(org.w3c.dom.Element fieldNode,
org.openfast.template.loader.ParsingContext parent)
|
protected static Field[] |
GroupParser.parseFields(org.w3c.dom.Element template,
org.openfast.template.loader.ParsingContext context)
Places the nodes of the passed element into an array |
| Methods in org.openfast.template.loader with parameters of type Field | |
|---|---|
protected static void |
AbstractFieldParser.parseExternalAttributes(org.w3c.dom.Element element,
Field field)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||