Package org.orekit.files.ccsds.section
Class PythonAbstractWriter
- java.lang.Object
-
- org.orekit.files.ccsds.section.AbstractWriter
-
- org.orekit.files.ccsds.section.PythonAbstractWriter
-
public class PythonAbstractWriter extends AbstractWriter
-
-
Constructor Summary
Constructors Constructor Description PythonAbstractWriter(String xmlTag, String kvnTag)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectString
intArrayToString(int[] integers)
Convert an array of integer to a comma-separated list.void
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to objectvoid
writeContent(Generator generator)
Write the content of the section, excluding surrounding tags.-
Methods inherited from class org.orekit.files.ccsds.section.AbstractWriter
enterSection, exitSection, write
-
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
writeContent
public void writeContent(Generator generator) throws IOException
Write the content of the section, excluding surrounding tags.- Specified by:
writeContent
in classAbstractWriter
- Parameters:
generator
- generator to use for producing output- Throws:
IOException
- if any buffer writing operations fails
-
intArrayToString
public String intArrayToString(int[] integers)
Convert an array of integer to a comma-separated list.- Overrides:
intArrayToString
in classAbstractWriter
- Parameters:
integers
- integers to write- Returns:
- arrays as a string
-
-