diff --git a/Java/CesiumLanguageWriter/translatedSrc/cesiumlanguagewriter/advanced/ICesiumInterpolationInformationWriter.java b/Java/CesiumLanguageWriter/translatedSrc/cesiumlanguagewriter/advanced/ICesiumInterpolationInformationWriter.java deleted file mode 100644 index 90f21dca..00000000 --- a/Java/CesiumLanguageWriter/translatedSrc/cesiumlanguagewriter/advanced/ICesiumInterpolationInformationWriter.java +++ /dev/null @@ -1,79 +0,0 @@ -package cesiumlanguagewriter.advanced; - - -import agi.foundation.compatibility.*; -import cesiumlanguagewriter.*; -import javax.annotation.Nonnull; - -/** - * - An interface to a writer that writes information about how to interpolate sampled values. - - - */ -@SuppressWarnings( { - "unused", - "deprecation", - "serial" -}) -public interface ICesiumInterpolationInformationWriter { - /** - * - Writes the interpolation algorithm to use to interpolate the sampled data in this interval. - - - - * @param interpolationAlgorithm The interpolation algorithm. - */ - void writeInterpolationAlgorithm(@Nonnull CesiumInterpolationAlgorithm interpolationAlgorithm); - - /** - * - Writes the degree of polynomial to use to interpolate sampled data in this interval. - - - - * @param degree The degree. - */ - void writeInterpolationDegree(int degree); - - /** - * - Writes the type of extrapolation to perform when a value is requested at a time after any available samples. - - - - * @param extrapolationType The extrapolation type. - */ - void writeForwardExtrapolationType(@Nonnull CesiumExtrapolationType extrapolationType); - - /** - * - Writes the amount of time to extrapolate forward before the property becomes undefined. A value of 0 will extrapolate forever. - - - - * @param duration The duration. - */ - void writeForwardExtrapolationDuration(@Nonnull Duration duration); - - /** - * - Writes the type of extrapolation to perform when a value is requested at a time before any available samples. - - - - * @param extrapolationType The extrapolation type. - */ - void writeBackwardExtrapolationType(@Nonnull CesiumExtrapolationType extrapolationType); - - /** - * - Writes the amount of time to extrapolate backward before the property becomes undefined. A value of 0 will extrapolate forever. - - - - * @param duration The duration. - */ - void writeBackwardExtrapolationDuration(@Nonnull Duration duration); -} \ No newline at end of file