Package net.sourceforge.ganttproject.io

Examples of net.sourceforge.ganttproject.io.CSVOptions


     * (non-Javadoc)
     *
     * @see net.sourceforge.ganttproject.gui.options.GeneralOptionPanel#applyChanges(boolean)
     */
    public boolean applyChanges(boolean askForApply) {
        CSVOptions csvOptions = appli.getOptions().getCSVOptions();

        if (getFixed() == csvOptions.bFixedSize
                && getTaskID() == csvOptions.bExportTaskID
                && getTaskName() == csvOptions.bExportTaskName
                && getTaskSD() == csvOptions.bExportTaskStartDate
View Full Code Here


    public boolean getResourceRole() {
        return cbResRole.isSelected();
    }

    public boolean separatCharHasChange() {
        CSVOptions csvOptions = appli.getOptions().getCSVOptions();
        if (bDoubleDot.isSelected() && csvOptions.sSeparatedChar.equals(":"))
            return false;
        if (bComa.isSelected() && csvOptions.sSeparatedChar.equals(","))
            return false;
        if (bDotComa.isSelected() && csvOptions.sSeparatedChar.equals(";"))
View Full Code Here

        bExportName = true;
        bExportComplete = true;
        bExportRelations = true;
        bExport3DBorders = false;
        /** CVS export options. */
        csvOptions = new CSVOptions();

        // Icon status bar
        iconListAsString = getDefaultIconListAsString();
        iconListAsIntArray = getDefaultIconListIntArray();
        deletedIconListAsString = getDefaultDeletedIconListAsString();
View Full Code Here

TOP

Related Classes of net.sourceforge.ganttproject.io.CSVOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.