public interface EObjectBuilder
| Modifier and Type | Method and Description |
|---|---|
void |
decodeAttribute(BsonReader reader,
DecoderContext decoderContext,
BsonType type,
EObject parent,
EAttribute attribute)
Decodes a
EAttribute from the BsonReader |
void |
decodeFeatures(BsonReader reader,
DecoderContext decoderContext,
EObject parent)
Decodes
EStructuralFeature from the BsonReader |
EObject |
decodeObject(BsonReader reader,
DecoderContext context,
Resource resource)
Decodes an
EObject out of the BsonReader |
void |
decodeReference(BsonReader reader,
DecoderContext decoderContext,
BsonType type,
EObject parent,
EReference reference)
Decodes a
EReference from the BsonReader |
EObject decodeObject(BsonReader reader,
DecoderContext context,
Resource resource)
EObject out of the BsonReaderreader - the BsonReader to read fromcontext - the DecoderContextresource - the resource belonging to the objectEObject instancevoid decodeFeatures(BsonReader reader,
DecoderContext decoderContext,
EObject parent)
EStructuralFeature from the BsonReaderreader - the BsonReader to read fromdecoderContext - the decoder contextparent - the parent EObject to decode the EStructuralFeature forvoid decodeReference(BsonReader reader,
DecoderContext decoderContext,
BsonType type,
EObject parent,
EReference reference)
EReference from the BsonReaderreader - the BsonReader to read fromdecoderContext - the decoder contexttype - the type of the referenceparent - the parent object to set the reference valuereference - the EReferencevoid decodeAttribute(BsonReader reader,
DecoderContext decoderContext,
BsonType type,
EObject parent,
EAttribute attribute)
EAttribute from the BsonReaderreader - the BsonReader to read fromdecoderContext - the decoder contexttype - the type of the attributeparent - the parent object to set the attributes valuesattribute - the EAttributeBryan Hunt, Data In Motion Consulting