Package com.unitesk.aspectrace
Interface LazyNode
-
- All Known Implementing Classes:
CoverageTracer.CoverageStructureWrapper
public interface LazyNode
An interface for direct information transmission which is hard to convert to a treeof nodes
. If data processing comes with generation viadirect processing
then data is transmitted directly from a tracer to an adapter. If it is necessary to convert data for an external transmission then we calldelayed conversion
. Delayed conversion may cast an exception - in this case system will be correctly working only in case of direct trace processing without any intermediate external displays.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TraceNode
toNode()
Delayed conversion.
-
-
-
Method Detail
-
toNode
TraceNode toNode() throws java.lang.UnsupportedOperationException
Delayed conversion.- Returns:
- Node tree.
- Throws:
java.lang.UnsupportedOperationException
- Conversion is not supported.
-
-