Package org.orekit.propagation.events
Class AdapterDetector
- java.lang.Object
-
- org.orekit.propagation.events.AdapterDetector
-
- All Implemented Interfaces:
DetectorModifier
,EventDetector
@Deprecated public class AdapterDetector extends Object implements DetectorModifier
Deprecated.since 13.0. UseDetectorModifier
instead.Base class for adapting an existing detector.This class is intended to be a base class for changing behaviour of a wrapped existing detector. This base class delegates all its methods to the wrapped detector. Classes extending it can therefore override only the methods they want to change.
- Since:
- 9.3
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description AdapterDetector(EventDetector detector)
Deprecated.Build an adaptor wrapping an existing detector.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description EventDetector
getDetector()
Deprecated.Get the wrapped detector.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.events.DetectorModifier
finish, g, getDetectionSettings, getHandler, init
-
Methods inherited from interface org.orekit.propagation.events.EventDetector
getMaxCheckInterval, getMaxIterationCount, getThreshold
-
-
-
-
Constructor Detail
-
AdapterDetector
public AdapterDetector(EventDetector detector)
Deprecated.Build an adaptor wrapping an existing detector.- Parameters:
detector
- detector to wrap
-
-
Method Detail
-
getDetector
public EventDetector getDetector()
Deprecated.Get the wrapped detector.- Specified by:
getDetector
in interfaceDetectorModifier
- Returns:
- wrapped detector
-
-