Package org.orekit.propagation.events
Class FieldAdapterDetector<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.events.FieldAdapterDetector<T>
-
- Type Parameters:
T
- type of the field element
- All Implemented Interfaces:
FieldDetectorModifier<T>
,FieldEventDetector<T>
@Deprecated public class FieldAdapterDetector<T extends CalculusFieldElement<T>> extends Object implements FieldDetectorModifier<T>
Deprecated.since 13.0. UseFieldDetectorModifier
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:
- 12.0
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description FieldAdapterDetector(FieldEventDetector<T> detector)
Deprecated.Build an adaptor wrapping an existing detector.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description FieldEventDetector<T>
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.FieldDetectorModifier
finish, g, getDetectionSettings, getHandler, init
-
Methods inherited from interface org.orekit.propagation.events.FieldEventDetector
getMaxCheckInterval, getMaxIterationCount, getThreshold
-
-
-
-
Constructor Detail
-
FieldAdapterDetector
public FieldAdapterDetector(FieldEventDetector<T> detector)
Deprecated.Build an adaptor wrapping an existing detector.- Parameters:
detector
- detector to wrap
-
-
Method Detail
-
getDetector
public FieldEventDetector<T> getDetector()
Deprecated.Get the wrapped detector.- Specified by:
getDetector
in interfaceFieldDetectorModifier<T extends CalculusFieldElement<T>>
- Returns:
- wrapped detector
-
-