Class AbstractObjectWriter

    • Constructor Detail

      • AbstractObjectWriter

        public AbstractObjectWriter()
    • Method Detail

      • getFormatDescription

        public abstract String getFormatDescription()
        Returns a string describing the format (used in the file chooser).
        Specified by:
        getFormatDescription in interface FileFormatHandler
        Returns:
        a description suitable for displaying in the file chooser
      • getFormatExtensions

        public abstract String[] getFormatExtensions()
        Returns the extension(s) of the format.
        Specified by:
        getFormatExtensions in interface FileFormatHandler
        Returns:
        the extension (without the dot!)
      • getCorrespondingReader

        public abstract AbstractObjectReader getCorrespondingReader()
        Returns, if available, the corresponding reader.
        Returns:
        the reader, null if none available
      • isAvailable

        public boolean isAvailable()
        Returns whether the writer is actually available.
        Returns:
        true if available and ready to use
      • check

        protected void check​(Object obj)
        Performs checks.
        Parameters:
        obj - the object to check
      • doWrite

        protected abstract String doWrite​(PlaceholderFile file,
                                          Object obj)
        Performs the actual writing of the object file.
        Parameters:
        file - the file to write to
        obj - the object to write
        Returns:
        null if successfully written, otherwise error message
      • write

        public String write​(PlaceholderFile file,
                            Object obj)
        Writes the object file.
        Parameters:
        file - the file to write to
        obj - the object to write
        Returns:
        null if successfully written, otherwise error message
      • getWriters

        public static String[] getWriters()
        Returns a list with classnames of writers.
        Returns:
        the writer classnames