Package org.jitterbit.integration.debug.client.file

Examples of org.jitterbit.integration.debug.client.file.DataFilesInfo


            updateEnabledState(info);
        }

        @Override
        public void targetDataRemoved() {
            DataFilesInfo info = getCurrentFileInfo();
            updateEnabledState(info);
        }
View Full Code Here


        page.addPostPageLoadingJob(new Runnable() {

            @Override
            public void run() {
                listenToFileStore();
                DataFilesInfo info = getCurrentFileInfo();
                updateEnabledState(info);
            }
        });
    }
View Full Code Here

            updateEnabledState(info);
        }

        @Override
        public void targetDataRemoved() {
            DataFilesInfo info = getCurrentFileInfo();
            updateEnabledState(info);
        }
View Full Code Here

        return hasFileOfType(DataFileType.SOURCE);
    }

    private boolean hasFileOfType(DataFileType type) {
        synchronized (dataFileStore) {
            DataFilesInfo info = dataFileStore.getCurrentFilesInfo();
            return info != null && info.containsFileOfType(type);
        }
    }
View Full Code Here

    public void removeListener(MappingTreeDataServiceListener lst) {
        listeners.remove(lst);
    }

    public void storeTestTransformationResult(TestTransformationResult result) {
        DataFilesInfo info = dataFileStore.storeTestTransformationResult(result);
        if (info != null) {
            fireTestTransformationDataAvailable(info);
        }
    }
View Full Code Here

            lst.testTransformationDataAvailable(info);
        }
    }

    public void storeTestOperationResult(TestOperationResult result) {
        DataFilesInfo info = dataFileStore.storeTestOperationResult(result);
        if (info != null) {
            fireTestOperationDataAvailable(info);
        }
    }
View Full Code Here

            lst.testOperationDataAvailable(info);
        }
    }

    public void storeLoadSourceResult(LoadSourceDataResult result) {
        DataFilesInfo info = dataFileStore.storeSourceData(result);
        if (info != null) {
            fireLoadSourceDataAvailable(info);
        }
    }
View Full Code Here

        page.addResource(new Disposer());
    }

    private void openExistingDataFiles() {
        synchronized (fileStore) {
            DataFilesInfo currentFiles = fileStore.getCurrentFilesInfo();
            if (currentFiles != null) {
                boolean startWithSourceFile = true;
                TestFileOpener opener = new TestFileOpener(currentFiles, startWithSourceFile);
                opener.setConfirmDisplayOfLargeTestFiles(true);
                opener.start();
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.debug.client.file.DataFilesInfo

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.