public interface IMarkupExtensionConverter
MarkupExtension
.
This interface is only used for GraphML serialiaztion.
Modifier and Type | Method and Description |
---|---|
boolean |
canConvert(IWriteContext context,
Object value)
Returns if the converter can convert the
value to a MarkupExtension in the current write context. |
MarkupExtension |
convert(IWriteContext context,
Object value)
Converts the
value to a MarkupExtension using the current write context. |
boolean canConvert(IWriteContext context, Object value)
value
to a MarkupExtension
in the current write context.context
- The current write context.value
- The object to convert.MarkupExtension convert(IWriteContext context, Object value)
value
to a MarkupExtension
using the current write context.context
- The current write context.value
- The object to convert.MarkupExtension
the value was converted to.