Examples of ThreeValuedBool


Examples of org.jitterbit.system.ThreeValuedBool

    private DatabaseStructureWizard createStructureWizard() {
        StructureToEdit toEdit = getStructureToEdit();
        DatabaseStructureWizard wizard = new DatabaseStructureWizard(toEdit, explorerSupport);
        if (sourceTarget == SourceTarget.Source) {
            ThreeValuedBool updateSourceAvailable = isUpdateSourceTableAvailable();
            wizard.setUpdateSourceTableAvailable(updateSourceAvailable);
        }
        return wizard;
    }
View Full Code Here

Examples of org.jitterbit.system.ThreeValuedBool

    public void setOpposingType(DataStructureType type) {
        if (sourceTarget == SourceTarget.Source) {
            // The Update Source Table feature is available only if the target is flat.
            // This excludes all other structure types than Text and DB (they can be
            // either flat or hierarchical).
            ThreeValuedBool updateSourceAvailable = (type == DataStructureType.Text) || (type == DataStructureType.Database) ?
                            ThreeValuedBool.MAYBE : ThreeValuedBool.FALSE;
            pages.setUpdateSourceTableAvailable(updateSourceAvailable);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.