├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hydrograph.engine ├── .gitignore ├── build.gradle ├── gradle.properties ├── hydrograph.engine.command-line │ ├── .gitignore │ ├── build.gradle │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── hydrograph │ │ │ │ └── engine │ │ │ │ └── commandline │ │ │ │ └── utilities │ │ │ │ ├── GeneralCommandLineUtilities.java │ │ │ │ ├── HydrographExecution.java │ │ │ │ └── HydrographService.java │ │ └── test │ │ │ └── java │ │ │ └── hydrograph │ │ │ └── engine │ │ │ ├── execution │ │ │ └── tracking │ │ │ │ ├── ExecutionTrackingCloneXmlTest.java │ │ │ │ ├── ExecutionTrackingCumulateXmlTest.java │ │ │ │ ├── ExecutionTrackingDiscardXmlTest.java │ │ │ │ ├── ExecutionTrackingFilterXmltest.java │ │ │ │ ├── ExecutionTrackingGenerateRecordXmlTest.java │ │ │ │ ├── ExecutionTrackingJoinXmlTest.java │ │ │ │ ├── ExecutionTrackingLimitXmltest.java │ │ │ │ ├── ExecutionTrackingNormalizeXmlTest.java │ │ │ │ ├── ExecutionTrackingPartitionByExpressionXmlTest.java │ │ │ │ ├── ExecutionTrackingRemoveDupXmlTest.java │ │ │ │ ├── ExecutionTrackingTransformXmltest.java │ │ │ │ ├── ExecutionTrackingUnionAllXmlTest.java │ │ │ │ └── ExecutionTrackingUniqueSequenceXmlTest.java │ │ │ ├── helper │ │ │ └── StatusHelper.java │ │ │ └── userfunctions │ │ │ ├── Filter.java │ │ │ ├── PartitionExpressionTransaction.java │ │ │ └── TransformTest.java │ └── testData │ │ ├── Input │ │ ├── Copy_of_dep.txt │ │ ├── Duplicate_Data.txt │ │ ├── Empdata1.txt │ │ ├── FiftyFields │ │ │ └── 100Records.txt │ │ ├── FilterFile.txt │ │ ├── HivedelimitedInputFile │ │ ├── Input3.txt │ │ ├── MySQLInputFileWithDataTypes │ │ ├── MySQLInputFileWithTimeStamp │ │ ├── RedshiftData.txt │ │ ├── Source1-delimited.txt │ │ ├── Source2-Fixed.txt │ │ ├── Source2-delimited.txt │ │ ├── Source3-delimited.txt │ │ ├── address_data.txt │ │ ├── aggregateInputFile.txt │ │ ├── all.txt │ │ ├── avro_input.avro │ │ ├── avro_input2.avro │ │ ├── cumulate_input.txt │ │ ├── delimitedInputFile │ │ ├── delimitedInputFile.txt │ │ ├── delimitedInputFile1.txt │ │ ├── delimitedInputFile2 │ │ ├── delimitedInputFile2.txt │ │ ├── delimitedInputFile3.txt │ │ ├── delimitedInputFileForAvro.txt │ │ ├── delimitedInputFileForExpr │ │ ├── delimitedInputFileForSubjob │ │ ├── dep.txt │ │ ├── dep1.txt │ │ ├── employees.txt │ │ ├── employees1.txt │ │ ├── employees2.txt │ │ ├── employees3.txt │ │ ├── employees4.txt │ │ ├── employees5.txt │ │ ├── employees6.txt │ │ ├── employees7.txt │ │ ├── employeesISO.txt │ │ ├── file.txt │ │ ├── fixed.txt │ │ ├── fixedwidth │ │ ├── hexDelimitedInputFile.txt │ │ ├── hiveParquetInput.txt │ │ ├── hiveSelectivePartitionRead.txt │ │ ├── i1.txt │ │ ├── i2.txt │ │ ├── i3.txt │ │ ├── input.parquet │ │ ├── input.txt │ │ ├── input1.txt │ │ ├── input2.txt │ │ ├── inputOracle │ │ ├── lookup.txt │ │ ├── lookup │ │ │ ├── delimitedInputFile │ │ │ └── lookup_file │ │ ├── mixedScemeOutputInputFile │ │ ├── mixedSchemeInputFile │ │ ├── mysqlInput │ │ ├── mysqlInputFile.txt │ │ ├── newTeraInputFile.txt │ │ ├── normalize_input.txt │ │ ├── part-00000-m-00000.parquet │ │ ├── part-r-00000-fcd1ad04-268f-4f72-b51d-864310681f57.snappy.parquet │ │ ├── partitionByExpressionInput.txt │ │ ├── schemes │ │ │ └── TextMixed │ │ │ │ └── input │ │ │ │ ├── isoInputFileLinuxEOLTest.txt │ │ │ │ ├── isoInputFileWindowsEOLTest.txt │ │ │ │ ├── itShouldProduceValidResultsForAllDataTypes.txt │ │ │ │ ├── itShouldProduceValidResultsForAllRecordsInOneLine.txt │ │ │ │ ├── itShouldProduceValidResultsForAllRecordsInOneLineWithDelimitedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForAllRecordsInOneLineWithFixedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForCedillaDelimitedRecords.txt │ │ │ │ ├── itShouldProduceValidResultsForCedillaDelimitedRecordsWithDelimitedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForCedillaDelimitedRecordsWithFixedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForDelimiterPresentInFixedWidthData.txt │ │ │ │ ├── itShouldProduceValidResultsForFixedWidthRecordsInOneLine.txt │ │ │ │ ├── itShouldProduceValidResultsForRecordSpanningMultipleLines.txt │ │ │ │ ├── itShouldProduceValidResultsForRecordSpanningMultipleLinesWithDelimitedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForRecordSpanningMultipleLinesWithFixedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForRecordWithLastFixedWidthField.txt │ │ │ │ ├── itShouldProduceValidResultsForRecordWithLastFixedWidthFieldAndDelimitedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForRecordWithLastFixedWidthFieldAndFixedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForSimpleMixedScheme.txt │ │ │ │ ├── itShouldProduceValidResultsForSimpleMixedSchemeWithDelimitedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForSimpleMixedSchemeWithFixedNewlineField.txt │ │ │ │ ├── itShouldProduceValidResultsForSimpleMixedSchemeWithQuoteChar.txt │ │ │ │ ├── utf8InputFileLinuxEOLTest.txt │ │ │ │ └── utf8InputFileWindowsEOLTest.txt │ │ ├── sequenceInputFile │ │ ├── sort_input.txt │ │ └── xmlInput.xml │ │ └── XMLFiles │ │ ├── AggregateComplexExample.xml │ │ ├── AggregateExampleWithExpr.xml │ │ ├── AggregateNoOp.xml │ │ ├── AggregateOnNullKeysTest.xml │ │ ├── AggregateSimpleExample.xml │ │ ├── AggregateWithSingleExpr.xml │ │ ├── AggregateWithoutOp1.xml │ │ ├── AllComponents.xml │ │ ├── AvroInputExample.xml │ │ ├── AvroOutputExample.xml │ │ ├── Clone.xml │ │ ├── CumulateExample.xml │ │ ├── CumulateExampleWithExpr.xml │ │ ├── CumulateMultiOperation.xml │ │ ├── CumulateOneOperation.xml │ │ ├── CumulateTest.xml │ │ ├── CumulateTwoOperation.xml │ │ ├── DelimitedInputAndMySQLJdbcUpdateOutput.xml │ │ ├── DelimitedInputAndOutput.xml │ │ ├── DelimitedInputAndRedshiftJdbcUpdateOutput.xml │ │ ├── DelimitedInputMysqlOutput.xml │ │ ├── DelimitedInputTeradataOutput.xml │ │ ├── DiscardExample.xml │ │ ├── ExecutionTrackingExample.xml │ │ ├── ExternalSchema.xml │ │ ├── FilterExample.xml │ │ ├── FilterExampleWithExpr.xml │ │ ├── FilterExampleWithMultilpleOperations.xml │ │ ├── FilterExampleWithPrepare.xml │ │ ├── FilterWithOnlyOutputSocket.xml │ │ ├── FixedWidthInputAndOutput.xml │ │ ├── FixedWidthInputDelimitedOutput.xml │ │ ├── FixedWidthOutputDelimitedInput.xml │ │ ├── GenerateRecordExample.xml │ │ ├── GroupCombineExample.xml │ │ ├── GroupCombineExampleWithExpr.xml │ │ ├── IODelimitedPerformanceCheck.xml │ │ ├── InputFileHiveParquetExampleSimple.xml │ │ ├── InputFileParquetExample.xml │ │ ├── InputOutputHexDelimitedExample.xml │ │ ├── InputSparkRedshiftOutputDelimited.xml │ │ ├── IntegrationTesting │ │ ├── Transform1_union_Aggregate_Filter_clone_filter.xml │ │ ├── Transform_union_Aggregate_Filter_clone_filter.xml │ │ ├── union_Aggregate_Filter_clone_filter.xml │ │ ├── union_Aggregate_Filter_clone_filter_not_working_bigDecimal.xml │ │ └── union_removeDups_clone_filter.xml │ │ ├── Joinexample.xml │ │ ├── Joinexample_outer.xml │ │ ├── LimitExample.xml │ │ ├── MysqlIPAndSelectiveColumnToBeWriteMysqlOutput.xml │ │ ├── MysqlInputDelimitedOutput.xml │ │ ├── MysqlInputMysqlOutput.xml │ │ ├── MysqlSelectiveInputAndDelimitedOutput.xml │ │ ├── NewRunFTPFileTransferExample.xml │ │ ├── NewRunSFTPFileTransferExample.xml │ │ ├── NormalizeExample.xml │ │ ├── NormalizeExampleWithExpr.xml │ │ ├── NormalizeMetaPivot.xml │ │ ├── OutputExcelComponent.xml │ │ ├── OutputFileHiveParquetExampleExternalTable.xml │ │ ├── OutputFileHiveParquetExamplePartition.xml │ │ ├── OutputFileHiveParquetExamplePartitionExternalTable.xml │ │ ├── OutputFileHiveParquetExample_Simple.xml │ │ ├── OutputFileHiveParquetTimeStamp_Simple.xml │ │ ├── OutputFileHiveTextTimeStamp_Simple.xml │ │ ├── OutputFileParquetExample.xml │ │ ├── PartitionByExpressionExample.xml │ │ ├── RemoveDupsExample.xml │ │ ├── RunProgramExample.xml │ │ ├── RunSQLExample.xml │ │ ├── S3FileTransferOperation.xml │ │ ├── S3FileTransferWithProp.xml │ │ ├── Schema2.xml │ │ ├── Schema3.xml │ │ ├── Schema4.xml │ │ ├── SortPKDescedingSKDesceding.xml │ │ ├── TeradataInputDelimitedOutput.xml │ │ ├── TransformExample.xml │ │ ├── TransformExampleWithExpr.xml │ │ ├── TransformPerformanceCheck.xml │ │ ├── TransformSingleOp.xml │ │ ├── TransformWithoutOp.xml │ │ ├── UnionAllExample.xml │ │ ├── XMLInputOutput.xml │ │ ├── debugjob │ │ ├── CloneDebugExample.xml │ │ └── sampleDebug.xml │ │ ├── inputFileHiveParquetExampleExternalTable.xml │ │ ├── inputFileHiveParquetExampleExternalTablePartition.xml │ │ ├── inputFileHiveParquetExamplePartition.xml │ │ ├── inputFileHiveParquetTimeStamp_Simple.xml │ │ ├── inputFileHiveTextTimeStamp_Simple.xml │ │ ├── inputHiveParquetSelectivePartitionRead.xml │ │ ├── inputHiveTextSelectivePartitionRead.xml │ │ ├── inputOutputFileHiveParquetExampleSimple.xml │ │ ├── inputRedshiftSimple.xml │ │ ├── inputSubjob │ │ ├── InputSubjob.xml │ │ ├── Mainjob.xml │ │ └── SchemaForSubjob.xml │ │ ├── joinbig.xml │ │ ├── lookupbig.xml │ │ ├── lookupexample.xml │ │ ├── mixedSchemeInputFileExample.xml │ │ ├── mixedschemeOutexample.xml │ │ ├── mySQL │ │ ├── DelimitedToMySqlOutput.xml │ │ ├── mysqlToDelimitedOutput.xml │ │ ├── mysqlToMySqlSimple.xml │ │ ├── outputMysqlWithDatatypes_Update.xml │ │ └── outputMysqlWithDatatypes_newTable.xml │ │ ├── operationSubjob │ │ ├── Mainjob.xml │ │ └── OperationSubjob.xml │ │ ├── outputHiveParquetSelectivePartitionRead.xml │ │ ├── outputHiveTextSelectivePartitionRead.xml │ │ ├── outputOracleSimple.xml │ │ ├── outputRedshiftSimple.xml │ │ ├── outputSparkRedshiftSimple.xml │ │ ├── outputSubjob │ │ ├── Mainjob.xml │ │ ├── OutputSubjob.xml │ │ └── SchemaForSubjob.xml │ │ ├── schema.xml │ │ └── uniqueSequenceExample.xml ├── hydrograph.engine.core │ ├── .gitignore │ ├── build.gradle │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── hydrograph │ │ │ │ │ └── engine │ │ │ │ │ ├── core │ │ │ │ │ ├── component │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── AggregateEntity.java │ │ │ │ │ │ │ ├── CloneEntity.java │ │ │ │ │ │ │ ├── CumulateEntity.java │ │ │ │ │ │ │ ├── DiscardEntity.java │ │ │ │ │ │ │ ├── ExecutionTrackingEntity.java │ │ │ │ │ │ │ ├── FilterEntity.java │ │ │ │ │ │ │ ├── GenerateRecordEntity.java │ │ │ │ │ │ │ ├── GroupCombineEntity.java │ │ │ │ │ │ │ ├── HplSqlEntity.java │ │ │ │ │ │ │ ├── InputFileAvroEntity.java │ │ │ │ │ │ │ ├── InputFileDelimitedEntity.java │ │ │ │ │ │ │ ├── InputFileFixedWidthEntity.java │ │ │ │ │ │ │ ├── InputFileHiveParquetEntity.java │ │ │ │ │ │ │ ├── InputFileHiveTextEntity.java │ │ │ │ │ │ │ ├── InputFileMixedSchemeEntity.java │ │ │ │ │ │ │ ├── InputFileParquetEntity.java │ │ │ │ │ │ │ ├── InputFileSequenceFormatEntity.java │ │ │ │ │ │ │ ├── InputFileXMLEntity.java │ │ │ │ │ │ │ ├── InputRDBMSEntity.java │ │ │ │ │ │ │ ├── JoinEntity.java │ │ │ │ │ │ │ ├── LimitEntity.java │ │ │ │ │ │ │ ├── LookupEntity.java │ │ │ │ │ │ │ ├── NormalizeEntity.java │ │ │ │ │ │ │ ├── OutputFileAvroEntity.java │ │ │ │ │ │ │ ├── OutputFileDelimitedEntity.java │ │ │ │ │ │ │ ├── OutputFileExcelEntity.java │ │ │ │ │ │ │ ├── OutputFileFixedWidthEntity.java │ │ │ │ │ │ │ ├── OutputFileHiveParquetEntity.java │ │ │ │ │ │ │ ├── OutputFileHiveTextEntity.java │ │ │ │ │ │ │ ├── OutputFileMixedSchemeEntity.java │ │ │ │ │ │ │ ├── OutputFileParquetEntity.java │ │ │ │ │ │ │ ├── OutputFileSequenceFormatEntity.java │ │ │ │ │ │ │ ├── OutputFileXMLEntity.java │ │ │ │ │ │ │ ├── OutputJdbcUpdateEntity.java │ │ │ │ │ │ │ ├── OutputRDBMSEntity.java │ │ │ │ │ │ │ ├── PartitionByExpressionEntity.java │ │ │ │ │ │ │ ├── RemoveDupsEntity.java │ │ │ │ │ │ │ ├── RunFileTransferEntity.java │ │ │ │ │ │ │ ├── RunProgramEntity.java │ │ │ │ │ │ │ ├── RunSqlEntity.java │ │ │ │ │ │ │ ├── SortEntity.java │ │ │ │ │ │ │ ├── TransformEntity.java │ │ │ │ │ │ │ ├── UnionAllEntity.java │ │ │ │ │ │ │ ├── UniqueSequenceEntity.java │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── AssemblyEntityBase.java │ │ │ │ │ │ │ │ ├── CommandEntityBase.java │ │ │ │ │ │ │ │ ├── HiveEntityBase.java │ │ │ │ │ │ │ │ ├── InputOutputEntityBase.java │ │ │ │ │ │ │ │ ├── OperationEntityBase.java │ │ │ │ │ │ │ │ └── StraightPullEntityBase.java │ │ │ │ │ │ │ ├── elements │ │ │ │ │ │ │ │ ├── Expression.java │ │ │ │ │ │ │ │ ├── FieldFormat.java │ │ │ │ │ │ │ │ ├── InSocket.java │ │ │ │ │ │ │ │ ├── JoinKeyFields.java │ │ │ │ │ │ │ │ ├── KeyField.java │ │ │ │ │ │ │ │ ├── MapField.java │ │ │ │ │ │ │ │ ├── Operation.java │ │ │ │ │ │ │ │ ├── OperationField.java │ │ │ │ │ │ │ │ ├── OutSocket.java │ │ │ │ │ │ │ │ ├── PassThroughField.java │ │ │ │ │ │ │ │ └── SchemaField.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── InputEntityUtils.java │ │ │ │ │ │ │ │ ├── OperationEntityUtils.java │ │ │ │ │ │ │ │ ├── OutSocketUtils.java │ │ │ │ │ │ │ │ ├── OutputEntityUtils.java │ │ │ │ │ │ │ │ └── StraightPullEntityUtils.java │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── AggregateEntityGenerator.java │ │ │ │ │ │ │ ├── CloneEntityGenerator.java │ │ │ │ │ │ │ ├── CumulateEntityGenerator.java │ │ │ │ │ │ │ ├── DiscardEntityGenerator.java │ │ │ │ │ │ │ ├── ExecutionTrackingEntityGenerator.java │ │ │ │ │ │ │ ├── FTPEntityGenerator.java │ │ │ │ │ │ │ ├── FilterEntityGenerator.java │ │ │ │ │ │ │ ├── GenerateRecordEntityGenerator.java │ │ │ │ │ │ │ ├── GroupCombineEntityGenerator.java │ │ │ │ │ │ │ ├── HplSqlEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileAvroEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileDelimitedEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileFixedWidthEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileHiveParquetEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileHiveTextEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileMixedSchemeEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileParquetEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileSequenceFormatEntityGenerator.java │ │ │ │ │ │ │ ├── InputFileXMLEntityGenerator.java │ │ │ │ │ │ │ ├── InputMysqlEntityGenerator.java │ │ │ │ │ │ │ ├── InputOracleEntityGenerator.java │ │ │ │ │ │ │ ├── InputRedshiftEntityGenerator.java │ │ │ │ │ │ │ ├── InputSparkRedshiftEntityGenerator.java │ │ │ │ │ │ │ ├── InputTeradataEntityGenerator.java │ │ │ │ │ │ │ ├── JoinEntityGenerator.java │ │ │ │ │ │ │ ├── LimitEntityGenerator.java │ │ │ │ │ │ │ ├── LookupEntityGenerator.java │ │ │ │ │ │ │ ├── NormalizeEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileAvroEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileDelimitedEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileExcelEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileFixedWidthEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileHiveParquetEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileHiveTextEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileMixedSchemeEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileParquetEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileSequenceFormatEntityGenerator.java │ │ │ │ │ │ │ ├── OutputFileXMLEntityGenerator.java │ │ │ │ │ │ │ ├── OutputJdbcUpdateEntityGenerator.java │ │ │ │ │ │ │ ├── OutputMysqlEntityGenerator.java │ │ │ │ │ │ │ ├── OutputOracleEntityGenerator.java │ │ │ │ │ │ │ ├── OutputRedshiftEntityGenerator.java │ │ │ │ │ │ │ ├── OutputSparkRedshiftEntityGenerator.java │ │ │ │ │ │ │ ├── OutputTeradataEntityGenerator.java │ │ │ │ │ │ │ ├── PartitionByExpressionEntityGenerator.java │ │ │ │ │ │ │ ├── RemoveDupsEntityGenerator.java │ │ │ │ │ │ │ ├── RunProgramEntityGenerator.java │ │ │ │ │ │ │ ├── RunSqlGenerator.java │ │ │ │ │ │ │ ├── S3FileTransferEntityGenerator.java │ │ │ │ │ │ │ ├── SFTPEntityGenerator.java │ │ │ │ │ │ │ ├── SortEntityGenerator.java │ │ │ │ │ │ │ ├── TransformEntityGenerator.java │ │ │ │ │ │ │ ├── UnionAllEntityGenerator.java │ │ │ │ │ │ │ ├── UniqueSequenceEntityGenerator.java │ │ │ │ │ │ │ └── base │ │ │ │ │ │ │ │ ├── CommandComponentGeneratorBase.java │ │ │ │ │ │ │ │ ├── ComponentGeneratorBase.java │ │ │ │ │ │ │ │ ├── GeneratorBase.java │ │ │ │ │ │ │ │ ├── InputComponentGeneratorBase.java │ │ │ │ │ │ │ │ ├── OperationComponentGeneratorBase.java │ │ │ │ │ │ │ │ ├── OutputComponentGeneratorBase.java │ │ │ │ │ │ │ │ └── StraightPullComponentGeneratorBase.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── FieldFormatUtils.java │ │ │ │ │ │ │ ├── OperationOutputField.java │ │ │ │ │ │ │ ├── OperationUtils.java │ │ │ │ │ │ │ ├── OrderedProperties.java │ │ │ │ │ │ │ ├── OrderedPropertiesHelper.java │ │ │ │ │ │ │ └── SafeResourceClose.java │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── ComponentLinkType.java │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── Keep.java │ │ │ │ │ │ └── SortOrder.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── HydrographInputService.java │ │ │ │ │ │ ├── HydrographJob.java │ │ │ │ │ │ └── HydrographRuntimeService.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── Link.java │ │ │ │ │ │ └── LinkInfo.java │ │ │ │ │ ├── flowmanipulation │ │ │ │ │ │ ├── FlowManipulationContext.java │ │ │ │ │ │ ├── FlowManipulationHandler.java │ │ │ │ │ │ └── ManipulatorListener.java │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── JAXBTraversal.java │ │ │ │ │ │ └── LinkGenerator.java │ │ │ │ │ ├── props │ │ │ │ │ │ ├── OrderedProperties.java │ │ │ │ │ │ └── PropertiesLoader.java │ │ │ │ │ ├── schemapropagation │ │ │ │ │ │ ├── OperationHandler.java │ │ │ │ │ │ └── SchemaFieldHandler.java │ │ │ │ │ ├── utilities │ │ │ │ │ │ ├── CommandLineOptionsProcessor.java │ │ │ │ │ │ ├── FileEncodingEnum.java │ │ │ │ │ │ ├── GeneralUtilities.java │ │ │ │ │ │ ├── OrderedPropertiesHelper.java │ │ │ │ │ │ ├── PropertiesHelper.java │ │ │ │ │ │ ├── SocketUtilities.java │ │ │ │ │ │ └── XmlUtilities.java │ │ │ │ │ └── xmlparser │ │ │ │ │ │ ├── ComponentValidationEventHandler.java │ │ │ │ │ │ ├── HydrographJobGenerator.java │ │ │ │ │ │ ├── HydrographXMLInputService.java │ │ │ │ │ │ ├── XmlParsingUtils.java │ │ │ │ │ │ ├── externalschema │ │ │ │ │ │ └── ParseExternalElements.java │ │ │ │ │ │ ├── parametersubstitution │ │ │ │ │ │ ├── FileParameters.java │ │ │ │ │ │ ├── IParameterBank.java │ │ │ │ │ │ ├── ParameterSubstitutor.java │ │ │ │ │ │ ├── PropertyBank.java │ │ │ │ │ │ └── UserParameters.java │ │ │ │ │ │ └── subjob │ │ │ │ │ │ ├── ParseSubjob.java │ │ │ │ │ │ ├── ReadSubjob.java │ │ │ │ │ │ └── SubjobParameters.java │ │ │ │ │ ├── execution │ │ │ │ │ └── tracking │ │ │ │ │ │ └── ComponentInfo.java │ │ │ │ │ └── jaxb │ │ │ │ │ ├── aggregate │ │ │ │ │ ├── AggregateBase.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ ├── TypeOperation.java │ │ │ │ │ ├── TypeOperationInputField.java │ │ │ │ │ ├── TypeOperationInputFields.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── TypePrimaryKeyFields.java │ │ │ │ │ ├── TypeSecondaryKeyFields.java │ │ │ │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ │ │ │ └── TypeTransformExpression.java │ │ │ │ │ ├── clone │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeCloneInSocket.java │ │ │ │ │ ├── TypeCloneOutSocket.java │ │ │ │ │ └── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── commandtypes │ │ │ │ │ ├── FTP.java │ │ │ │ │ ├── FileOperationChoice.java │ │ │ │ │ ├── FileTransferBase.java │ │ │ │ │ ├── FtpIn.java │ │ │ │ │ ├── Hplsql.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── RunProgram.java │ │ │ │ │ ├── RunSQL.java │ │ │ │ │ ├── S3FileTransfer.java │ │ │ │ │ ├── SFTP.java │ │ │ │ │ └── Subjob.java │ │ │ │ │ ├── commontypes │ │ │ │ │ ├── BooleanValueType.java │ │ │ │ │ ├── ElementValueIntegerType.java │ │ │ │ │ ├── ElementValueStringType.java │ │ │ │ │ ├── ExcelFileType.java │ │ │ │ │ ├── FieldDataTypes.java │ │ │ │ │ ├── KeepValue.java │ │ │ │ │ ├── KeyfieldDescriptionType.java │ │ │ │ │ ├── MatchValue.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ScaleTypeList.java │ │ │ │ │ ├── StandardCharsets.java │ │ │ │ │ ├── StandardWriteMode.java │ │ │ │ │ ├── TrueFalse.java │ │ │ │ │ ├── TypeBaseComponent.java │ │ │ │ │ ├── TypeBaseField.java │ │ │ │ │ ├── TypeBaseInSocket.java │ │ │ │ │ ├── TypeBaseInSocketFixedIn0.java │ │ │ │ │ ├── TypeBaseOutSocket.java │ │ │ │ │ ├── TypeBaseRecord.java │ │ │ │ │ ├── TypeCommandComponent.java │ │ │ │ │ ├── TypeExpressionField.java │ │ │ │ │ ├── TypeExpressionOutputFields.java │ │ │ │ │ ├── TypeExternalSchema.java │ │ │ │ │ ├── TypeFieldName.java │ │ │ │ │ ├── TypeInputComponent.java │ │ │ │ │ ├── TypeInputField.java │ │ │ │ │ ├── TypeInputOutSocket.java │ │ │ │ │ ├── TypeKeyFields.java │ │ │ │ │ ├── TypeLookupInsocket.java │ │ │ │ │ ├── TypeMapField.java │ │ │ │ │ ├── TypeOperationField.java │ │ │ │ │ ├── TypeOperationInputFields.java │ │ │ │ │ ├── TypeOperationOutputFields.java │ │ │ │ │ ├── TypeOperationsComponent.java │ │ │ │ │ ├── TypeOperationsOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocket.java │ │ │ │ │ ├── TypeOutputComponent.java │ │ │ │ │ ├── TypeOutputInSocket.java │ │ │ │ │ ├── TypeOutputRecordCount.java │ │ │ │ │ ├── TypeProperties.java │ │ │ │ │ ├── TypeSortOrder.java │ │ │ │ │ ├── TypeStraightPullComponent.java │ │ │ │ │ ├── TypeStraightPullOutSocket.java │ │ │ │ │ ├── TypeTransformExpression.java │ │ │ │ │ ├── TypeTransformOperation.java │ │ │ │ │ └── TypeTrueFalse.java │ │ │ │ │ ├── cumulate │ │ │ │ │ ├── CumulateBase.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ ├── TypeOperation.java │ │ │ │ │ ├── TypeOperationInputField.java │ │ │ │ │ ├── TypeOperationInputFields.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ ├── TypePrimaryKeyFields.java │ │ │ │ │ ├── TypeSecondaryKeyFields.java │ │ │ │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ │ │ │ └── TypeTransformExpression.java │ │ │ │ │ ├── exceltype │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeExcelField.java │ │ │ │ │ ├── TypeExcelOutSocket.java │ │ │ │ │ ├── TypeExcelRecord.java │ │ │ │ │ └── TypeFileExcelBase.java │ │ │ │ │ ├── executiontracking │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeExecutiontrackingInSocket.java │ │ │ │ │ ├── TypeExecutiontrackingOperation.java │ │ │ │ │ ├── TypeExecutiontrackingOperationInputField.java │ │ │ │ │ ├── TypeExecutiontrackingOperationInputFields.java │ │ │ │ │ ├── TypeExecutiontrackingOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ └── TypesOutSocketTypes.java │ │ │ │ │ ├── filter │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeFilterInSocket.java │ │ │ │ │ ├── TypeFilterOperation.java │ │ │ │ │ ├── TypeFilterOperationInputField.java │ │ │ │ │ ├── TypeFilterOperationInputFields.java │ │ │ │ │ ├── TypeFilterOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ └── TypesOutSocketTypes.java │ │ │ │ │ ├── generatesequence │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeNameField.java │ │ │ │ │ ├── TypeOperation.java │ │ │ │ │ ├── TypeOperationOutputField.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ └── TypePassthroughInputField.java │ │ │ │ │ ├── groupcombine │ │ │ │ │ ├── GroupcombineBase.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ ├── TypeOperation.java │ │ │ │ │ ├── TypeOperationInputField.java │ │ │ │ │ ├── TypeOperationInputFields.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── TypePrimaryKeyFields.java │ │ │ │ │ ├── TypeSecondaryKeyFields.java │ │ │ │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ │ │ │ └── TypeTransformExpression.java │ │ │ │ │ ├── ifmixedscheme │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputMixedOutSocket.java │ │ │ │ │ ├── TypeMixedBase.java │ │ │ │ │ ├── TypeMixedField.java │ │ │ │ │ └── TypeMixedRecord.java │ │ │ │ │ ├── ifparquet │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputDelimitedOutSocket.java │ │ │ │ │ └── TypeInputFileDelimitedBase.java │ │ │ │ │ ├── ifsubjob │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputDelimitedOutSocket.java │ │ │ │ │ ├── TypeInputFileDelimitedBase.java │ │ │ │ │ └── TypeInputFileDelimitedSubjob.java │ │ │ │ │ ├── ifxml │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputFileXmlBase.java │ │ │ │ │ ├── TypeInputXmlOutSocket.java │ │ │ │ │ ├── TypeXmlField.java │ │ │ │ │ └── TypeXmlRecord.java │ │ │ │ │ ├── igr │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeGenerateRecordBase.java │ │ │ │ │ ├── TypeGenerateRecordField.java │ │ │ │ │ ├── TypeGenerateRecordOutSocket.java │ │ │ │ │ └── TypeGenerateRecordRecord.java │ │ │ │ │ ├── ihiveparquet │ │ │ │ │ ├── FieldBasicType.java │ │ │ │ │ ├── HivePartitionFieldsType.java │ │ │ │ │ ├── HivePartitionFilterType.java │ │ │ │ │ ├── HivePathType.java │ │ │ │ │ ├── HiveType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PartitionColumn.java │ │ │ │ │ ├── PartitionFieldBasicType.java │ │ │ │ │ ├── TypeInputDelimitedOutSocket.java │ │ │ │ │ └── TypeInputFileDelimitedBase.java │ │ │ │ │ ├── ihivetextfile │ │ │ │ │ ├── FieldBasicType.java │ │ │ │ │ ├── HivePartitionFieldsType.java │ │ │ │ │ ├── HivePartitionFilterType.java │ │ │ │ │ ├── HivePathType.java │ │ │ │ │ ├── HiveType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PartitionColumn.java │ │ │ │ │ ├── PartitionFieldBasicType.java │ │ │ │ │ ├── TypeInputHiveTextDelimitedOutSocket.java │ │ │ │ │ └── TypeInputHiveTextFileDelimitedBase.java │ │ │ │ │ ├── imysql │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputMysqlBase.java │ │ │ │ │ ├── TypeInputMysqlOutSocket.java │ │ │ │ │ └── TypePartitionsChoice.java │ │ │ │ │ ├── inputtypes │ │ │ │ │ ├── AvroFile.java │ │ │ │ │ ├── GenerateRecord.java │ │ │ │ │ ├── HiveTextFile.java │ │ │ │ │ ├── Mysql.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── Oracle.java │ │ │ │ │ ├── ParquetFile.java │ │ │ │ │ ├── ParquetHiveFile.java │ │ │ │ │ ├── Redshift.java │ │ │ │ │ ├── SequenceInputFile.java │ │ │ │ │ ├── Sparkredshift.java │ │ │ │ │ ├── Subjob.java │ │ │ │ │ ├── SubjobInput.java │ │ │ │ │ ├── Teradata.java │ │ │ │ │ ├── TextFileDelimited.java │ │ │ │ │ ├── TextFileFixedWidth.java │ │ │ │ │ ├── TextFileMixedScheme.java │ │ │ │ │ └── XmlFile.java │ │ │ │ │ ├── ioracle │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputOracleBase.java │ │ │ │ │ ├── TypeInputOracleOutSocket.java │ │ │ │ │ └── TypePartitionsChoice.java │ │ │ │ │ ├── iredshift │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputRedshiftBase.java │ │ │ │ │ └── TypeInputRedshiftOutSocket.java │ │ │ │ │ ├── isparkredshift │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputRedshiftOutSocket.java │ │ │ │ │ └── TypeInputSparkredshiftBase.java │ │ │ │ │ ├── iteradata │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputTeradataBase.java │ │ │ │ │ ├── TypeInputTeradataOutSocket.java │ │ │ │ │ └── TypePartitionsChoice.java │ │ │ │ │ ├── itfd │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputDelimitedOutSocket.java │ │ │ │ │ └── TypeInputFileDelimitedBase.java │ │ │ │ │ ├── itffw │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeFixedWidthBase.java │ │ │ │ │ ├── TypeFixedwidthField.java │ │ │ │ │ ├── TypeFixedwidthRecord.java │ │ │ │ │ └── TypeInputFixedwidthOutSocket.java │ │ │ │ │ ├── itfs │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInputFileSequenceBase.java │ │ │ │ │ └── TypeInputSequenceOutSocket.java │ │ │ │ │ ├── join │ │ │ │ │ ├── JoinBase.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ ├── TypeKeyFields.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ └── TypesOutSocketTypes.java │ │ │ │ │ ├── limit │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeLimitBase.java │ │ │ │ │ ├── TypeLimitInSocket.java │ │ │ │ │ ├── TypeLimitOutSocket.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ └── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── lookup │ │ │ │ │ ├── LookupBase.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ ├── TypeKeyFields.java │ │ │ │ │ └── TypeOutSocket.java │ │ │ │ │ ├── main │ │ │ │ │ ├── Graph.java │ │ │ │ │ └── ObjectFactory.java │ │ │ │ │ ├── normalize │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ ├── TypeOperation.java │ │ │ │ │ ├── TypeOperationInputField.java │ │ │ │ │ ├── TypeOperationInputFields.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ └── TypeTransformExpression.java │ │ │ │ │ ├── ofexcel │ │ │ │ │ ├── BooleanAttribute.java │ │ │ │ │ ├── FieldFormat.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── SortKeyFields.java │ │ │ │ │ ├── TypeOutputExcelInSocket.java │ │ │ │ │ └── TypeOutputFileExcelBase.java │ │ │ │ │ ├── ofmixedscheme │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeMixedBase.java │ │ │ │ │ ├── TypeMixedField.java │ │ │ │ │ ├── TypeMixedRecord.java │ │ │ │ │ └── TypeOutputMixedInSocket.java │ │ │ │ │ ├── ofparquet │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutputDelimitedInSocket.java │ │ │ │ │ └── TypeOutputFileDelimitedBase.java │ │ │ │ │ ├── ofsubjob │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutputDelimitedInSocket.java │ │ │ │ │ ├── TypeOutputFileDelimitedBase.java │ │ │ │ │ └── TypeOutputFileDelimitedSubjob.java │ │ │ │ │ ├── ofxml │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutputFileXmlBase.java │ │ │ │ │ ├── TypeOutputXmlInSocket.java │ │ │ │ │ ├── TypeXmlField.java │ │ │ │ │ └── TypeXmlRecord.java │ │ │ │ │ ├── ohiveparquet │ │ │ │ │ ├── FieldBasicType.java │ │ │ │ │ ├── HivePartitionFieldsType.java │ │ │ │ │ ├── HivePathType.java │ │ │ │ │ ├── HiveType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PartitionFieldBasicType.java │ │ │ │ │ ├── TypeOutputDelimitedInSocket.java │ │ │ │ │ └── TypeOutputFileDelimitedBase.java │ │ │ │ │ ├── ohivetextfile │ │ │ │ │ ├── FieldBasicType.java │ │ │ │ │ ├── HivePartitionFieldsType.java │ │ │ │ │ ├── HivePathType.java │ │ │ │ │ ├── HiveType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PartitionFieldBasicType.java │ │ │ │ │ ├── TypeOutputHiveTextFileDelimitedBase.java │ │ │ │ │ └── TypeOutputHiveTextFileDelimitedInSocket.java │ │ │ │ │ ├── ojdbcupdate │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeJdbcupdateField.java │ │ │ │ │ ├── TypeJdbcupdateRecord.java │ │ │ │ │ ├── TypeOutputJdbcupdateBase.java │ │ │ │ │ ├── TypeOutputJdbcupdateOutSocket.java │ │ │ │ │ └── TypeUpdateKeys.java │ │ │ │ │ ├── omysql │ │ │ │ │ ├── DatabaseType.java │ │ │ │ │ ├── DatabaseTypeValue.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeLoadChoice.java │ │ │ │ │ ├── TypeMysqlField.java │ │ │ │ │ ├── TypeMysqlRecord.java │ │ │ │ │ ├── TypeOutputMysqlBase.java │ │ │ │ │ ├── TypeOutputMysqlOutSocket.java │ │ │ │ │ ├── TypePrimaryKeys.java │ │ │ │ │ └── TypeUpdateKeys.java │ │ │ │ │ ├── ooracle │ │ │ │ │ ├── DatabaseType.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeLoadChoice.java │ │ │ │ │ ├── TypeOracleField.java │ │ │ │ │ ├── TypeOracleRecord.java │ │ │ │ │ ├── TypeOutputOracleBase.java │ │ │ │ │ ├── TypeOutputOracleInSocket.java │ │ │ │ │ ├── TypePrimaryKeys.java │ │ │ │ │ └── TypeUpdateKeys.java │ │ │ │ │ ├── operationstypes │ │ │ │ │ ├── Aggregate.java │ │ │ │ │ ├── Cumulate.java │ │ │ │ │ ├── Executiontracking.java │ │ │ │ │ ├── Filter.java │ │ │ │ │ ├── GenerateSequence.java │ │ │ │ │ ├── Groupcombine.java │ │ │ │ │ ├── Join.java │ │ │ │ │ ├── Lookup.java │ │ │ │ │ ├── Normalize.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PartitionByExpression.java │ │ │ │ │ ├── Subjob.java │ │ │ │ │ └── Transform.java │ │ │ │ │ ├── oredshift │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeLoadChoice.java │ │ │ │ │ ├── TypeOutputRedshiftBase.java │ │ │ │ │ ├── TypeOutputRedshiftInSocket.java │ │ │ │ │ ├── TypePrimaryKeys.java │ │ │ │ │ ├── TypeRedshiftField.java │ │ │ │ │ ├── TypeRedshiftRecord.java │ │ │ │ │ └── TypeUpdateKeys.java │ │ │ │ │ ├── osparkredshift │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeLoadChoice.java │ │ │ │ │ ├── TypeOutputSparkredshiftBase.java │ │ │ │ │ ├── TypeOutputSparkredshiftInSocket.java │ │ │ │ │ ├── TypePrimaryKeys.java │ │ │ │ │ ├── TypeSparkredshiftField.java │ │ │ │ │ ├── TypeSparkredshiftRecord.java │ │ │ │ │ └── TypeUpdateKeys.java │ │ │ │ │ ├── otdiscard │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ └── TypeOutputInSocketIno.java │ │ │ │ │ ├── oteradata │ │ │ │ │ ├── DatabaseType.java │ │ │ │ │ ├── DatabaseTypeValue.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeLoadChoice.java │ │ │ │ │ ├── TypeOutputTeradataBase.java │ │ │ │ │ ├── TypeOutputTeradataOutSocket.java │ │ │ │ │ ├── TypePrimaryKeys.java │ │ │ │ │ ├── TypeTeradataField.java │ │ │ │ │ ├── TypeTeradataRecord.java │ │ │ │ │ └── TypeUpdateKeys.java │ │ │ │ │ ├── otfd │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutputDelimitedInSocket.java │ │ │ │ │ └── TypeOutputFileDelimitedBase.java │ │ │ │ │ ├── otffw │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeFixedWidthBase.java │ │ │ │ │ ├── TypeFixedwidthField.java │ │ │ │ │ ├── TypeFixedwidthRecord.java │ │ │ │ │ └── TypeOutputFixedwidthInSocket.java │ │ │ │ │ ├── otfs │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutputFileSequenceBase.java │ │ │ │ │ └── TypeOutputSequenceInSocket.java │ │ │ │ │ ├── outputtypes │ │ │ │ │ ├── AvroFile.java │ │ │ │ │ ├── Discard.java │ │ │ │ │ ├── ExcelFile.java │ │ │ │ │ ├── HiveTextFile.java │ │ │ │ │ ├── JdbcUpdate.java │ │ │ │ │ ├── Mysql.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── Oracle.java │ │ │ │ │ ├── ParquetFile.java │ │ │ │ │ ├── ParquetHiveFile.java │ │ │ │ │ ├── Redshift.java │ │ │ │ │ ├── SequenceOutputFile.java │ │ │ │ │ ├── Sparkredshift.java │ │ │ │ │ ├── Subjob.java │ │ │ │ │ ├── SubjobOutput.java │ │ │ │ │ ├── Teradata.java │ │ │ │ │ ├── TextFileDelimited.java │ │ │ │ │ ├── TextFileFixedWidth.java │ │ │ │ │ ├── TextFileMixedScheme.java │ │ │ │ │ └── XmlFile.java │ │ │ │ │ ├── partitionbyexpression │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PartitionByExpressionBase.java │ │ │ │ │ ├── TypePbeInSocket.java │ │ │ │ │ ├── TypePbeInputFields.java │ │ │ │ │ ├── TypePbeOperation.java │ │ │ │ │ ├── TypePbeOperationInputField.java │ │ │ │ │ ├── TypePbeOutSocket.java │ │ │ │ │ └── TypesOutSocketTypes.java │ │ │ │ │ ├── removedups │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── TypePrimaryKeyFields.java │ │ │ │ │ ├── TypeRemovedupsBase.java │ │ │ │ │ ├── TypeSecondaryKeyFields.java │ │ │ │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ │ │ │ └── TypesOutSocketTypes.java │ │ │ │ │ ├── sort │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutSocket.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── TypePrimaryKeyFields.java │ │ │ │ │ ├── TypePrimaryKeyFieldsAttributes.java │ │ │ │ │ ├── TypeSecondaryKeyFields.java │ │ │ │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ │ │ │ └── TypeSortBase.java │ │ │ │ │ ├── straightpulltypes │ │ │ │ │ ├── Clone.java │ │ │ │ │ ├── Dummy.java │ │ │ │ │ ├── Limit.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── RemoveDups.java │ │ │ │ │ ├── Sort.java │ │ │ │ │ └── UnionAll.java │ │ │ │ │ ├── subjob │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── SubjobBase.java │ │ │ │ │ ├── TypeInSocket.java │ │ │ │ │ └── TypeOutSocket.java │ │ │ │ │ └── transform │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ │ │ │ ├── TypeTransformInSocket.java │ │ │ │ │ ├── TypeTransformOperation.java │ │ │ │ │ ├── TypeTransformOperationInputField.java │ │ │ │ │ ├── TypeTransformOperationInputFields.java │ │ │ │ │ └── TypeTransformOutSocket.java │ │ │ └── resources │ │ │ │ ├── RegisterPlugin.properties │ │ │ │ ├── database_params.properties │ │ │ │ ├── engine.properties │ │ │ │ ├── input_service.properties │ │ │ │ ├── newxmlschema │ │ │ │ ├── commands │ │ │ │ │ └── command-types.xsd │ │ │ │ ├── common │ │ │ │ │ └── common-types.xsd │ │ │ │ ├── example.xml │ │ │ │ ├── inputs │ │ │ │ │ ├── generate-record │ │ │ │ │ │ └── generate-record-types.xsd │ │ │ │ │ ├── hive-text-file │ │ │ │ │ │ └── input-hive-text-file-types.xsd │ │ │ │ │ ├── input-types.xsd │ │ │ │ │ ├── mysql-type │ │ │ │ │ │ └── input-mysql-types.xsd │ │ │ │ │ ├── oracle-type │ │ │ │ │ │ └── input-oracle-types.xsd │ │ │ │ │ ├── parquet-file │ │ │ │ │ │ └── input-file-parquet-types.xsd │ │ │ │ │ ├── parquet-hive-file │ │ │ │ │ │ └── input-hive-parquet-types.xsd │ │ │ │ │ ├── redshift-type │ │ │ │ │ │ └── input-redshift-types.xsd │ │ │ │ │ ├── sequence-file │ │ │ │ │ │ └── input-sequence-file-types.xsd │ │ │ │ │ ├── sparkredshift-type │ │ │ │ │ │ └── input-sparkredshift-types.xsd │ │ │ │ │ ├── subjob │ │ │ │ │ │ └── input-subjob-types.xsd │ │ │ │ │ ├── teradata-type │ │ │ │ │ │ └── input-teradata-types.xsd │ │ │ │ │ ├── text-file-delimited │ │ │ │ │ │ └── text-file-delimited-types.xsd │ │ │ │ │ ├── text-file-fixed-width │ │ │ │ │ │ └── text-file-fixed-types.xsd │ │ │ │ │ ├── text-file-mixedScheme │ │ │ │ │ │ └── input-file-mixedScheme-text-types.xsd │ │ │ │ │ └── xml-file │ │ │ │ │ │ └── input-file-xml-types.xsd │ │ │ │ ├── main │ │ │ │ │ └── main.xsd │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate │ │ │ │ │ │ └── aggregate-types.xsd │ │ │ │ │ ├── cumulate │ │ │ │ │ │ └── cumulate-types.xsd │ │ │ │ │ ├── executiontracking │ │ │ │ │ │ └── executiontracking-types.xsd │ │ │ │ │ ├── filter │ │ │ │ │ │ └── filter-types.xsd │ │ │ │ │ ├── generate-sequence │ │ │ │ │ │ └── generate-sequence-types.xsd │ │ │ │ │ ├── groupcombine │ │ │ │ │ │ └── groupcombine-types.xsd │ │ │ │ │ ├── join │ │ │ │ │ │ └── join-types.xsd │ │ │ │ │ ├── lookup │ │ │ │ │ │ └── lookup-types.xsd │ │ │ │ │ ├── normalize │ │ │ │ │ │ └── normalize-types.xsd │ │ │ │ │ ├── operations-types.xsd │ │ │ │ │ ├── partition-by-expression │ │ │ │ │ │ └── partition-by-expression-types.xsd │ │ │ │ │ ├── subjob │ │ │ │ │ │ └── subjob-types.xsd │ │ │ │ │ └── transform │ │ │ │ │ │ └── transform-types.xsd │ │ │ │ ├── outputs │ │ │ │ │ ├── discard │ │ │ │ │ │ └── output-discard-types.xsd │ │ │ │ │ ├── excel-output-type │ │ │ │ │ │ └── output-excel-types.xsd │ │ │ │ │ ├── hive-text-file │ │ │ │ │ │ └── output-hive-text-file-types.xsd │ │ │ │ │ ├── jdbcupdate-type │ │ │ │ │ │ └── output-jdbcupdate-types.xsd │ │ │ │ │ ├── mysql-type │ │ │ │ │ │ └── output-mysql-types.xsd │ │ │ │ │ ├── oracle-type │ │ │ │ │ │ └── output-oracle-types.xsd │ │ │ │ │ ├── output-types.xsd │ │ │ │ │ ├── parquet-file │ │ │ │ │ │ └── output-file-parquet-types.xsd │ │ │ │ │ ├── parquet-hive-file │ │ │ │ │ │ └── output-hive-parquet-types.xsd │ │ │ │ │ ├── redshift-type │ │ │ │ │ │ └── output-redshift-types.xsd │ │ │ │ │ ├── sequence-file │ │ │ │ │ │ └── output-sequence-file-types.xsd │ │ │ │ │ ├── sparkredshift-type │ │ │ │ │ │ └── output-sparkredshift-types.xsd │ │ │ │ │ ├── subjob │ │ │ │ │ │ └── output-subjob-types.xsd │ │ │ │ │ ├── teradata-type │ │ │ │ │ │ └── output-teradata-types.xsd │ │ │ │ │ ├── text-file-delimited │ │ │ │ │ │ └── output-text-file-delimited-types.xsd │ │ │ │ │ ├── text-file-fixed-width │ │ │ │ │ │ └── output-text-file-fixed-types.xsd │ │ │ │ │ ├── text-file-mixedScheme │ │ │ │ │ │ └── output-file-mixedScheme-text-types.xsd │ │ │ │ │ └── xml-file │ │ │ │ │ │ └── output-file-xml-types.xsd │ │ │ │ ├── sampleDebug.xml │ │ │ │ └── straight-pulls │ │ │ │ │ ├── clone │ │ │ │ │ └── clone-types.xsd │ │ │ │ │ ├── limit │ │ │ │ │ └── limit-types.xsd │ │ │ │ │ ├── remove-dups │ │ │ │ │ └── remove-dups-types.xsd │ │ │ │ │ ├── sort │ │ │ │ │ └── sort-types.xsd │ │ │ │ │ └── straight-pull-types.xsd │ │ │ │ ├── traversal_service.properties │ │ │ │ └── xpath.properties │ │ └── test │ │ │ └── java │ │ │ └── hydrograph │ │ │ └── engine │ │ │ └── bhse │ │ │ └── xmlparser │ │ │ └── preprocessor │ │ │ ├── ParameterSubstitutorTest.java │ │ │ ├── ParseExternalElementsTest.java │ │ │ └── ReadSubjobTest.java │ └── testData │ │ ├── XMLFiles │ │ ├── DelimitedInputAndOutput.xml │ │ ├── inputSubjob │ │ │ ├── InputSubjob.xml │ │ │ ├── Mainjob.xml │ │ │ └── SchemaForSubjob.xml │ │ ├── operationSubjob │ │ │ ├── Mainjob.xml │ │ │ └── OperationSubjob.xml │ │ ├── outputSubjob │ │ │ ├── Mainjob.xml │ │ │ ├── OutputSubjob.xml │ │ │ └── SchemaForSubjob.xml │ │ ├── schema.xml │ │ └── schema2.xml │ │ └── input │ │ ├── delimitedInputFile │ │ ├── delimitedInputFileForSubjob │ │ └── mixedScemeOutputInputFileForSubjob ├── hydrograph.engine.expression │ ├── .gitignore │ ├── Expression.class │ ├── ExpressionEditor.g4 │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── hydrograph │ │ │ │ └── engine │ │ │ │ └── expression │ │ │ │ ├── antlr │ │ │ │ ├── ExpressionEditor.tokens │ │ │ │ ├── ExpressionEditorBaseListener.java │ │ │ │ ├── ExpressionEditorBaseVisitor.java │ │ │ │ ├── ExpressionEditorLexer.java │ │ │ │ ├── ExpressionEditorLexer.tokens │ │ │ │ ├── ExpressionEditorListener.java │ │ │ │ ├── ExpressionEditorParser.java │ │ │ │ └── ExpressionEditorVisitor.java │ │ │ │ ├── api │ │ │ │ ├── CustomExpressionVisitor.java │ │ │ │ ├── DescriptiveErrorListener.java │ │ │ │ ├── ValidationAPI.java │ │ │ │ └── wrapper │ │ │ │ │ └── ValidationAPIWrapper.scala │ │ │ │ ├── userfunctions │ │ │ │ ├── AggregateForExpression.java │ │ │ │ ├── CumulateForExpression.java │ │ │ │ ├── FilterForExpression.java │ │ │ │ ├── GroupCombineForExpression.java │ │ │ │ ├── NormalizeForExpression.java │ │ │ │ ├── PartitionByExpressionForExpression.java │ │ │ │ └── TransformForExpression.java │ │ │ │ └── utils │ │ │ │ ├── ClassToDataTypeConversion.java │ │ │ │ ├── CompileUtils.java │ │ │ │ ├── ExpressionWrapper.java │ │ │ │ └── PropertiesLoader.java │ │ └── resources │ │ │ └── UserFunctions.properties │ │ └── test │ │ └── java │ │ └── hydrograph │ │ └── engine │ │ └── expression │ │ └── api │ │ └── ValidationAPITest.java ├── hydrograph.engine.plugin │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── hydrograph │ │ │ └── engine │ │ │ ├── jaxb │ │ │ └── debug │ │ │ │ ├── Debug.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ └── ViewData.java │ │ │ └── plugin │ │ │ ├── batchbreak │ │ │ └── BatchBreakPlugin.java │ │ │ └── debug │ │ │ ├── ComponentBuilder.java │ │ │ ├── DebugContext.java │ │ │ ├── DebugPlugin.java │ │ │ ├── entity │ │ │ ├── DebugPoint.java │ │ │ └── HydrographDebugInfo.java │ │ │ └── utils │ │ │ ├── DebugUtils.java │ │ │ └── JaxbSchemaFieldConverter.java │ │ └── resources │ │ ├── plugin.properties │ │ └── xsd │ │ └── debug │ │ └── debug.xsd ├── hydrograph.engine.spark │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── componentMapping.properties │ │ │ ├── log4j.properties │ │ │ └── runtime_service.properties │ │ └── scala │ │ │ └── hydrograph │ │ │ └── engine │ │ │ └── spark │ │ │ ├── components │ │ │ ├── AWSS3FileTransferComponent.scala │ │ │ ├── AggregateComponent.scala │ │ │ ├── CloneComponent.scala │ │ │ ├── CumulateComponent.scala │ │ │ ├── DiscardComponent.scala │ │ │ ├── ExecutionTrackingComponent.scala │ │ │ ├── FTPComponent.scala │ │ │ ├── FilterComponent.scala │ │ │ ├── FilterComponentWithMapPartitions.scala │ │ │ ├── FilterComponentWithUDF.scala │ │ │ ├── GenerateRecordComponent.scala │ │ │ ├── GroupCombineComponent.scala │ │ │ ├── InputFileAvroComponent.scala │ │ │ ├── InputFileCsvComponent.scala │ │ │ ├── InputFileCsvUnivocityComponent.scala │ │ │ ├── InputFileCsvWithDateFormatsComponent.scala │ │ │ ├── InputFileDelimitedComponent.scala │ │ │ ├── InputFileFixedWidthComponent.scala │ │ │ ├── InputFileMixedSchemeComponent.scala │ │ │ ├── InputFileParquetComponent.scala │ │ │ ├── InputFileXMLComponent.scala │ │ │ ├── InputHiveComponent.scala │ │ │ ├── InputMysqlComponent.scala │ │ │ ├── InputOracleComponent.scala │ │ │ ├── InputRedshiftComponent.scala │ │ │ ├── InputSequenceFileComponent.scala │ │ │ ├── InputSparkRedshiftComponent.scala │ │ │ ├── InputTeradataComponent.scala │ │ │ ├── JoinComponent.scala │ │ │ ├── LimitComponent.scala │ │ │ ├── LookupComponent.scala │ │ │ ├── NormalizeComponent.scala │ │ │ ├── OutputFileAvroComponent.scala │ │ │ ├── OutputFileCsvComponent.scala │ │ │ ├── OutputFileCsvUnivocityComponent.scala │ │ │ ├── OutputFileCsvWithDateFormatsComponent.scala │ │ │ ├── OutputFileDelimitedComponent.scala │ │ │ ├── OutputFileExcelComponent.scala │ │ │ ├── OutputFileFixedWidthComponent.scala │ │ │ ├── OutputFileMixedSchemeComponent.scala │ │ │ ├── OutputFileParquetComponent.scala │ │ │ ├── OutputFileXMLComponent.scala │ │ │ ├── OutputHiveComponent.scala │ │ │ ├── OutputJdbcUpdateComponent.scala │ │ │ ├── OutputMysqlComponent.scala │ │ │ ├── OutputOracleComponent.scala │ │ │ ├── OutputRedshiftComponent.scala │ │ │ ├── OutputSequenceFileComponent.scala │ │ │ ├── OutputSparkRedshiftComponent.scala │ │ │ ├── OutputTeradataComponent.scala │ │ │ ├── PartitionByExpressionComponent.scala │ │ │ ├── RemoveDupsComponent.scala │ │ │ ├── RunProgramComponent.scala │ │ │ ├── RunSQLComponent.java │ │ │ ├── SFTPComponent.scala │ │ │ ├── SortComponent.scala │ │ │ ├── ToBeTransformComponent.scala │ │ │ ├── TransformComponent.scala │ │ │ ├── TransformComponentWithUDF.scala │ │ │ ├── UnionAllComponent.scala │ │ │ ├── UniqueSequenceComponent.scala │ │ │ ├── adapter │ │ │ │ ├── AggregateAdapter.scala │ │ │ │ ├── CloneAdapter.scala │ │ │ │ ├── CumulateAdapter.scala │ │ │ │ ├── DiscardAdapter.scala │ │ │ │ ├── ExecutionTrackingAdapter.scala │ │ │ │ ├── FTPTransferAdapter.scala │ │ │ │ ├── FilterAdapter.scala │ │ │ │ ├── FilterAdapterWithMapPartitions.scala │ │ │ │ ├── GenerateRecordAdapter.scala │ │ │ │ ├── GroupCombineAdapter.scala │ │ │ │ ├── InputFileAvroAdapter.scala │ │ │ │ ├── InputFileCsvAdapter.scala │ │ │ │ ├── InputFileCsvUnivocityAdapter.scala │ │ │ │ ├── InputFileCsvWithDateFormatsAdapter.scala │ │ │ │ ├── InputFileDelimitedAdapter.scala │ │ │ │ ├── InputFileFixedWidthAdapter.scala │ │ │ │ ├── InputFileMixedSchemeAdapter.scala │ │ │ │ ├── InputFileParquetAdapter.scala │ │ │ │ ├── InputFileXMLAdapter.scala │ │ │ │ ├── InputHiveAdapter.scala │ │ │ │ ├── InputMysqlAdapter.scala │ │ │ │ ├── InputOracleAdapter.scala │ │ │ │ ├── InputRedshiftAdapter.scala │ │ │ │ ├── InputSequenceFileAdapter.scala │ │ │ │ ├── InputSparkRedshiftAdapter.scala │ │ │ │ ├── InputTeradataAdapter.scala │ │ │ │ ├── JoinAdapter.scala │ │ │ │ ├── LimitAdapter.scala │ │ │ │ ├── LookupAdapter.scala │ │ │ │ ├── NormalizeAdapter.scala │ │ │ │ ├── OutputFileAvroAdapter.scala │ │ │ │ ├── OutputFileCsvAdapter.scala │ │ │ │ ├── OutputFileCsvUnivocityAdapter.scala │ │ │ │ ├── OutputFileCsvWithDateFormatsAdapter.scala │ │ │ │ ├── OutputFileDelimitedAdapter.scala │ │ │ │ ├── OutputFileExcelAdapter.scala │ │ │ │ ├── OutputFileFixedWidthAdapter.scala │ │ │ │ ├── OutputFileMixedSchemeAdapter.scala │ │ │ │ ├── OutputFileParquetAdapter.scala │ │ │ │ ├── OutputFileXMLAdapter.scala │ │ │ │ ├── OutputHiveAdapter.scala │ │ │ │ ├── OutputJdbcUpdateAdapter.scala │ │ │ │ ├── OutputMysqlAdapter.scala │ │ │ │ ├── OutputOracleAdapter.scala │ │ │ │ ├── OutputRedshiftAdapter.scala │ │ │ │ ├── OutputSequenceFileAdapter.scala │ │ │ │ ├── OutputSparkRedshiftAdapter.scala │ │ │ │ ├── OutputTeradataAdapter.scala │ │ │ │ ├── PartitionByExpressionAdapter.scala │ │ │ │ ├── RemoveDupsAdapter.scala │ │ │ │ ├── RunProgramAdapter.scala │ │ │ │ ├── RunSqlAdapter.scala │ │ │ │ ├── S3FileTransferAdapter.scala │ │ │ │ ├── SFTPTransferAdapter.scala │ │ │ │ ├── SortAdapter.scala │ │ │ │ ├── TransformAdapter.scala │ │ │ │ ├── TransformWithUDFAdapter.scala │ │ │ │ ├── UnionAllAdapter.scala │ │ │ │ ├── UniqueSequenceAdapter.scala │ │ │ │ ├── base │ │ │ │ │ ├── AdapterBase.scala │ │ │ │ │ ├── InputAdatperBase.scala │ │ │ │ │ ├── OperationAdatperBase.scala │ │ │ │ │ ├── OutputAdatperBase.scala │ │ │ │ │ ├── RunProgramAdapterBase.scala │ │ │ │ │ └── StraightPullAdatperBase.scala │ │ │ │ └── factory │ │ │ │ │ └── AdapterFactory.scala │ │ │ ├── base │ │ │ │ ├── BaseComponent.scala │ │ │ │ ├── CommandComponentSparkFlow.scala │ │ │ │ ├── ComponentParameterBuilder.scala │ │ │ │ ├── InputComponentBase.scala │ │ │ │ ├── OperationComponentBase.scala │ │ │ │ ├── SparkFlow.scala │ │ │ │ └── StraightPullComponentBase.scala │ │ │ ├── handler │ │ │ │ ├── OperationHandler.scala │ │ │ │ └── OperationHelper.scala │ │ │ ├── platform │ │ │ │ └── BaseComponentParams.scala │ │ │ └── utils │ │ │ │ ├── DbTableDescriptor.scala │ │ │ │ ├── DbTableUtils.scala │ │ │ │ ├── DbUpdateTableDescriptor.scala │ │ │ │ ├── EncoderHelper.scala │ │ │ │ ├── FieldManupulating.scala │ │ │ │ ├── HydrographJDBCUtils.scala │ │ │ │ ├── InputOutputFieldsAndTypesCreator.java │ │ │ │ ├── JavaToSQLTypeMapping.java │ │ │ │ ├── JoinUtils.scala │ │ │ │ ├── OperationSchemaCreator.scala │ │ │ │ ├── ParquetMetadataReader.scala │ │ │ │ ├── ReusableRowHelper.scala │ │ │ │ ├── RowHelper.scala │ │ │ │ ├── SchemaCreator.scala │ │ │ │ ├── SchemaUtils.scala │ │ │ │ ├── SparkReusableRow.java │ │ │ │ ├── TeradataTableDescriptor.scala │ │ │ │ ├── TeradataTableUtils.scala │ │ │ │ └── excel │ │ │ │ └── ExcelOutputUtil.scala │ │ │ ├── core │ │ │ └── reusablerow │ │ │ │ ├── BufferReusableRow.scala │ │ │ │ ├── InputReusableRow.scala │ │ │ │ ├── OutputReusableRow.scala │ │ │ │ └── RowToReusableMapper.scala │ │ │ ├── datasource │ │ │ ├── avro │ │ │ │ ├── AvroOutputGenerator.scala │ │ │ │ ├── AvroOutputGeneratorFactory.scala │ │ │ │ ├── AvroSchemaUtils.scala │ │ │ │ ├── CustomAvroToSpark.scala │ │ │ │ ├── CustomSparkToAvro.scala │ │ │ │ ├── DefaultSource.scala │ │ │ │ └── package.scala │ │ │ ├── csv │ │ │ │ ├── CsvRelation.scala │ │ │ │ └── DefaultSource.scala │ │ │ ├── csvwithunivocity │ │ │ │ ├── CSVFileFormat.scala │ │ │ │ ├── CSVOptions.scala │ │ │ │ ├── CSVParser.scala │ │ │ │ ├── CSVRelation.scala │ │ │ │ ├── CSVTypeCast.scala │ │ │ │ └── ParseModes.scala │ │ │ ├── delimited │ │ │ │ ├── DefaultSource.scala │ │ │ │ ├── DelimitedRelation.scala │ │ │ │ └── HydrographDelimitedParser.java │ │ │ ├── fixedwidth │ │ │ │ ├── DefaultSource.scala │ │ │ │ └── FixedWidthRelation.scala │ │ │ ├── jdbc │ │ │ │ ├── DefaultSource.scala │ │ │ │ └── HydrographJDBCRelation.scala │ │ │ ├── mixedScheme │ │ │ │ ├── DefaultSource.scala │ │ │ │ └── MixedSchemeRelation.scala │ │ │ ├── utils │ │ │ │ ├── AWSS3Util.java │ │ │ │ ├── FTPUtil.java │ │ │ │ ├── SFTPUtil.java │ │ │ │ ├── SerializableConfiguration.scala │ │ │ │ ├── ShutdownHookManager.scala │ │ │ │ ├── TextFile.scala │ │ │ │ ├── TypeCast.scala │ │ │ │ └── Utils.scala │ │ │ └── xml │ │ │ │ ├── DefaultSource.scala │ │ │ │ ├── DefaultSource15.scala │ │ │ │ ├── XmlInputFormat.scala │ │ │ │ ├── XmlOptions.scala │ │ │ │ ├── XmlReader.scala │ │ │ │ ├── XmlRelation.scala │ │ │ │ ├── package.scala │ │ │ │ ├── parsers │ │ │ │ ├── StaxXmlGenerator.scala │ │ │ │ ├── StaxXmlParser.scala │ │ │ │ └── StaxXmlParserUtils.scala │ │ │ │ └── util │ │ │ │ ├── CompressionCodecs.scala │ │ │ │ ├── InferSchema.scala │ │ │ │ ├── ParseModes.scala │ │ │ │ ├── TreeNode.scala │ │ │ │ ├── TypeCast.scala │ │ │ │ └── XmlFile.scala │ │ │ ├── execution │ │ │ └── tracking │ │ │ │ ├── ComponentMapping.scala │ │ │ │ ├── JobInfo.scala │ │ │ │ └── PartitionStageAccumulator.scala │ │ │ ├── executiontracking │ │ │ └── plugin │ │ │ │ ├── CommandComponentsDefaultPlugin.scala │ │ │ │ ├── ExecutionCounter.scala │ │ │ │ ├── ExecutionTrackingListener.scala │ │ │ │ ├── ExecutionTrackingPlugin.scala │ │ │ │ ├── HydrographCommandListener.scala │ │ │ │ ├── TrackComponentUtils.java │ │ │ │ └── TrackContext.java │ │ │ ├── flow │ │ │ ├── FlowBuilder.scala │ │ │ ├── HydrographRuntime.scala │ │ │ └── RuntimeContext.scala │ │ │ ├── generaterecord │ │ │ └── utils │ │ │ │ ├── DataGenerator.scala │ │ │ │ ├── FieldEntity.scala │ │ │ │ └── FieldsTypeEnum.scala │ │ │ ├── helper │ │ │ └── DelimitedAndFixedWidthHelper.java │ │ │ ├── input │ │ │ └── format │ │ │ │ └── DelimitedAndFixedWidthInputFormat.java │ │ │ ├── operation │ │ │ └── handler │ │ │ │ └── GroupCombineCustomHandler.scala │ │ │ └── recordreader │ │ │ └── DelimitedAndFixedWidthRecordReader.java │ │ └── test │ │ └── scala │ │ └── hydrograph │ │ └── engine │ │ ├── spark │ │ ├── components │ │ │ ├── AggregateComponentTest.scala │ │ │ ├── CloneComponentTest.scala │ │ │ ├── CumulateComponentTest.scala │ │ │ ├── FilterComponentTest.scala │ │ │ ├── FilterComponentWithMapPartitionsTest.scala │ │ │ ├── GenerateRecordComponentTest.scala │ │ │ ├── HiveParquetInputTest.scala │ │ │ ├── HiveParquetOutputTest.scala │ │ │ ├── HiveTextInputTest.scala │ │ │ ├── HiveTextOutputTest.scala │ │ │ ├── InputFileCsvUnivocityComponentTest.scala │ │ │ ├── InputFileCsvWithDateFormatsComponentTest.scala │ │ │ ├── InputFileDelimitedComponentTest.scala │ │ │ ├── InputFileFixedWidthComponentTest.scala │ │ │ ├── InputFileMixedSchemeComponentTest.scala │ │ │ ├── InputFileParquetComponentTest.scala │ │ │ ├── InputMysqlComponentTest.scala │ │ │ ├── InputSequenceFileComponentTest.scala │ │ │ ├── InputTeradataComponentTest.scala │ │ │ ├── JoinComponentTest.scala │ │ │ ├── LimitComponentTest.scala │ │ │ ├── LookupComponentTest.scala │ │ │ ├── NormalizeComponentTest.scala │ │ │ ├── OutputFileCsvUnivocityComponentTest.scala │ │ │ ├── OutputFileCsvWithDateFormatsComponentTest.scala │ │ │ ├── OutputFileDelimitedComponentTest.scala │ │ │ ├── OutputFileFixedWidthComponentTest.scala │ │ │ ├── OutputFileMixedSchemeComponentTest.scala │ │ │ ├── OutputFileParquetComponentTest.scala │ │ │ ├── PartitionByExpressionComponentTest.scala │ │ │ ├── RemoveDupsComponentTest.scala │ │ │ ├── RunProgramTest.scala │ │ │ ├── RunSQLComponentTest.java │ │ │ ├── TransformComponentTest.scala │ │ │ ├── UnionAllComponentTest.scala │ │ │ ├── UniqueSequenceComponentTest.scala │ │ │ └── utils │ │ │ │ ├── DbTableDescriptorTest.scala │ │ │ │ ├── DbUpdateTableDescriptorTest.scala │ │ │ │ ├── OSValidatorUtil.java │ │ │ │ ├── SchemaUtilsTest.scala │ │ │ │ └── TeradataTableDescriptorTest.scala │ │ ├── performance │ │ │ └── components │ │ │ │ ├── InputOutputDelimeted.scala │ │ │ │ └── SimpleTransform.scala │ │ └── test │ │ │ ├── customtransformclasses │ │ │ ├── SimpleTransformTest.scala │ │ │ ├── TransformTest_RenameCity.scala │ │ │ ├── TransformTest_RenameFields.scala │ │ │ ├── TransformTest_UserProperties.scala │ │ │ └── TransformWithSameInputOutputField.scala │ │ │ └── executionhack │ │ │ └── Sample.scala │ │ ├── testing │ │ └── wrapper │ │ │ └── DataBuilder.scala │ │ └── userfunctions │ │ ├── CustomFilterForFilterComponent.java │ │ ├── CustomFilterOperation.java │ │ ├── Filter.java │ │ ├── PartitionByExpressionTest.java │ │ └── TransformTest.java ├── hydrograph.engine.transformation │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── hydrograph │ │ │ └── engine │ │ │ ├── testing │ │ │ └── utils │ │ │ │ ├── TestAggregateOperationWrapper.java │ │ │ │ ├── TestFilterOperationWrapper.java │ │ │ │ ├── TestNormalizeOperationWrapper.java │ │ │ │ ├── TestReusableRow.java │ │ │ │ └── TestTransformOperationWrapper.java │ │ │ └── transformation │ │ │ ├── schema │ │ │ ├── DataType.java │ │ │ ├── Field.java │ │ │ └── Schema.java │ │ │ ├── standardfunctions │ │ │ ├── CommonFunctions.java │ │ │ ├── DateFunctions.java │ │ │ ├── ForceError.java │ │ │ ├── NumericFunctions.java │ │ │ ├── StringFunctions.java │ │ │ ├── ValidationFunctions.java │ │ │ └── helper │ │ │ │ └── StandardFunctionHelper.java │ │ │ └── userfunctions │ │ │ ├── aggregate │ │ │ ├── AggregateWithoutOperationInFields.java │ │ │ ├── Count.java │ │ │ ├── Max.java │ │ │ ├── Min.java │ │ │ ├── StringAppend.java │ │ │ └── Sum.java │ │ │ ├── base │ │ │ ├── AggregateTransformBase.java │ │ │ ├── CumulateTransformBase.java │ │ │ ├── CustomPartitionExpression.java │ │ │ ├── FilterBase.java │ │ │ ├── GroupCombineTransformBase.java │ │ │ ├── ListBasedReusableRow.java │ │ │ ├── NormalizeTransformBase.java │ │ │ ├── OutputDispatcher.java │ │ │ ├── ReusableRow.java │ │ │ └── TransformBase.java │ │ │ ├── cumulate │ │ │ ├── Count.java │ │ │ ├── CumulateWithoutOperationInFields.java │ │ │ ├── StringAppend.java │ │ │ └── Sum.java │ │ │ ├── filter │ │ │ ├── CustomFilterForFilterComponent.java │ │ │ ├── CustomFilterOperation.java │ │ │ ├── Filter.java │ │ │ ├── FilterForXML.java │ │ │ ├── FilterWithEmptyOperationFields.java │ │ │ ├── FilterWithPrepareFunction.java │ │ │ └── RandomSampling.java │ │ │ ├── groupcombine │ │ │ ├── Count.java │ │ │ ├── Max.java │ │ │ ├── Min.java │ │ │ ├── StringAppend.java │ │ │ └── Sum.java │ │ │ ├── helpers │ │ │ └── RegexSplitter.java │ │ │ ├── normalize │ │ │ ├── MetaPivot.java │ │ │ └── RegexSplitNormalize.java │ │ │ ├── partition │ │ │ └── RandomSplit.java │ │ │ └── transform │ │ │ ├── LibSVMFormat.java │ │ │ ├── RegexSplitTransform.java │ │ │ └── TransformTest_withoutOperationInField.java │ │ └── test │ │ └── java │ │ └── hydrograph │ │ └── engine │ │ └── transformation │ │ └── standardfunctions │ │ ├── DateFuncitonsTest.java │ │ ├── DecimalStrip.java │ │ ├── IsBlankTest.java │ │ ├── IsDefinedTest.java │ │ ├── IsNullTest.java │ │ ├── LRTrimTest.java │ │ ├── LTrimTest.java │ │ ├── MathABS.java │ │ ├── NumericFunctionsTest.java │ │ ├── RTrimTest.java │ │ ├── RandomTest.java │ │ ├── ReturnFirstDefinedTest.java │ │ ├── StringComparisionsTest.java │ │ ├── StringConcatenationTest.java │ │ ├── StringDeFilterTest.java │ │ ├── StringFilterTest.java │ │ ├── StringFunctionTest.java │ │ ├── StringLeftPadTest.java │ │ ├── StringLengthTest.java │ │ ├── StringReplaceTest.java │ │ ├── StringSplitTest.java │ │ ├── StringUpperTest.java │ │ ├── SubStringIndexTest.java │ │ ├── SubStringRightIndexTest.java │ │ ├── SubStringTest.java │ │ └── ValidationFunctionTest.java ├── libs │ ├── oracle-ojdbc6-11.2.0.4.jar │ ├── teradata-tdgssconfig-0.1.jar │ └── teradata-terajdbc4-0.1.jar ├── publish.gradle ├── settings.gradle └── version.gradle ├── hydrograph.server ├── hydrograph.server.debug │ ├── .gitignore │ ├── QueryParser.g4 │ ├── build.gradle │ ├── scripts │ │ └── hydrographDebugService.sh │ └── src │ │ ├── main │ │ ├── java │ │ │ └── hydrograph │ │ │ │ └── server │ │ │ │ ├── debug │ │ │ │ ├── antlr │ │ │ │ │ └── parser │ │ │ │ │ │ ├── QueryParser.tokens │ │ │ │ │ │ ├── QueryParserBaseListener.java │ │ │ │ │ │ ├── QueryParserBaseVisitor.java │ │ │ │ │ │ ├── QueryParserLexer.java │ │ │ │ │ │ ├── QueryParserLexer.tokens │ │ │ │ │ │ ├── QueryParserListener.java │ │ │ │ │ │ ├── QueryParserParser.java │ │ │ │ │ │ └── QueryParserVisitor.java │ │ │ │ └── lingual │ │ │ │ │ ├── LingualFilter.java │ │ │ │ │ ├── LingualSchemaCreator.java │ │ │ │ │ ├── json │ │ │ │ │ ├── GridRow.java │ │ │ │ │ ├── JobDetails.java │ │ │ │ │ └── RemoteFilterJson.java │ │ │ │ │ └── querygenerator │ │ │ │ │ └── LingualQueryCreator.java │ │ │ │ ├── execution │ │ │ │ ├── datastructure │ │ │ │ │ ├── ComponentStatus.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ └── ExecutionStatus.java │ │ │ │ └── websocket │ │ │ │ │ └── ExecutionTrackingWebsocketHandler.java │ │ │ │ ├── metadata │ │ │ │ ├── entity │ │ │ │ │ ├── TableEntity.java │ │ │ │ │ └── TableSchemaFieldEntity.java │ │ │ │ ├── exception │ │ │ │ │ ├── ParamsCannotBeNullOrEmpty.java │ │ │ │ │ └── TableOrQueryParamNotFound.java │ │ │ │ └── strategy │ │ │ │ │ ├── HiveMetadataStrategy.java │ │ │ │ │ ├── MysqlMetadataStrategy.java │ │ │ │ │ ├── OracleMetadataStrategy.java │ │ │ │ │ ├── RedshiftMetadataStrategy.java │ │ │ │ │ ├── TeradataMetadataStrategy.java │ │ │ │ │ └── base │ │ │ │ │ ├── MetadataStrategyBase.java │ │ │ │ │ └── MetadataStrategyTemplate.java │ │ │ │ ├── service │ │ │ │ └── HydrographService.java │ │ │ │ └── utilities │ │ │ │ ├── Constants.java │ │ │ │ ├── ScpFrom.java │ │ │ │ ├── ServiceUtilities.java │ │ │ │ └── kerberos │ │ │ │ ├── KerberosUtilities.java │ │ │ │ └── callback │ │ │ │ └── UserPassCallbackHandler.java │ │ └── resources │ │ │ ├── ServiceConfig.properties │ │ │ ├── jaas.conf │ │ │ └── log4j.properties │ │ └── test │ │ └── java │ │ └── hydrograph │ │ └── server │ │ ├── debug │ │ └── lingual │ │ │ └── LingualSchemaCreatorTest.java │ │ ├── service │ │ └── HydrographServiceClient.java │ │ ├── sqlquery │ │ └── lingualquery │ │ │ └── generator │ │ │ └── LingualQueryCreatorTest.java │ │ └── utilities │ │ └── ScpFileTest.java └── hydrograph.server.execution.tracking │ ├── .gitignore │ ├── pom.xml │ ├── scripts │ └── hydrographExecutionTrackingService.sh │ └── src │ └── main │ ├── java │ └── hydrograph │ │ └── server │ │ └── execution │ │ └── tracking │ │ ├── client │ │ ├── HydrographEngineCommunicatorSocket.java │ │ ├── logger │ │ │ └── ExecutionTrackingFileLogger.java │ │ └── main │ │ │ └── HydrographMain.java │ │ ├── server │ │ └── status │ │ │ └── datastructures │ │ │ ├── ComponentStatus.java │ │ │ ├── Constants.java │ │ │ └── ExecutionStatus.java │ │ └── utils │ │ ├── ExecutionTrackingLogger.java │ │ ├── ExecutionTrackingUtils.java │ │ └── OSValidator.java │ └── resources │ └── socket-server.properties └── hydrograph.ui ├── .gitignore ├── hydrograph.ui.common.datastructures ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml ├── resources │ └── messages.properties └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ ├── common │ ├── activator │ │ └── Activator.java │ ├── cloneableinterface │ │ └── IDataStructure.java │ ├── datastructure │ │ └── filter │ │ │ ├── ExpressionData.java │ │ │ ├── FilterLogicDataStructure.java │ │ │ └── OperationClassData.java │ └── datastructures │ │ ├── dataviewer │ │ └── JobDetails.java │ │ ├── messages │ │ └── Messages.java │ │ ├── property │ │ └── database │ │ │ └── DatabaseParameterType.java │ │ └── tooltip │ │ ├── PropertyToolTipInformation.java │ │ └── TootlTipErrorMessage.java │ ├── datastructure │ ├── expression │ │ └── ExpressionEditorData.java │ └── property │ │ ├── BasicSchemaGridRow.java │ │ ├── ComponentsOutputSchema.java │ │ ├── DatabaseSelectionConfig.java │ │ ├── ExcelConfigurationDataStructure.java │ │ ├── ExcelFormattingDataStructure.java │ │ ├── FTPAuthOperationDetails.java │ │ ├── FTPProtocolDetails.java │ │ ├── FilterProperties.java │ │ ├── FixedWidthGridRow.java │ │ ├── GenerateRecordSchemaGridRow.java │ │ ├── GridRow.java │ │ ├── InputHivePartitionColumn.java │ │ ├── InputHivePartitionKeyValues.java │ │ ├── InstallationWindowDetails.java │ │ ├── JarInformationDetails.java │ │ ├── JoinConfigProperty.java │ │ ├── JoinMappingGrid.java │ │ ├── LookupConfigProperty.java │ │ ├── LookupMapProperty.java │ │ ├── LookupMappingGrid.java │ │ ├── MatchValueProperty.java │ │ ├── MixedSchemeGridRow.java │ │ ├── NameValueProperty.java │ │ ├── OperationClassProperty.java │ │ ├── OperationField.java │ │ ├── OperationSystemProperties.java │ │ ├── PropertyField.java │ │ ├── Schema.java │ │ ├── WorkSheetValueProperty.java │ │ ├── XPathGridRow.java │ │ └── mapping │ │ ├── ErrorObject.java │ │ ├── ExternalWidgetData.java │ │ ├── InputField.java │ │ ├── MappingSheetRow.java │ │ └── TransformMapping.java │ └── datastructures │ ├── executiontracking │ └── ViewExecutionTrackingDetails.java │ ├── metadata │ └── MetaDataDetails.java │ └── parametergrid │ ├── ParameterFile.java │ └── filetype │ └── ParamterFileTypes.java ├── hydrograph.ui.common.interfaces ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── common │ └── interfaces │ ├── console │ └── IHydrographConsole.java │ ├── parametergrid │ └── DefaultGEFCanvas.java │ ├── pluginactivator │ └── Activator.java │ └── tooltip │ └── ComponentCanvas.java ├── hydrograph.ui.common ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ ├── common │ │ ├── Activator.java │ │ ├── component │ │ │ ├── config │ │ │ │ ├── CategoryType.java │ │ │ │ ├── Component.java │ │ │ │ ├── Config.java │ │ │ │ ├── DataType.java │ │ │ │ ├── DataTypes.java │ │ │ │ ├── Group.java │ │ │ │ ├── IOPort.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Operations.java │ │ │ │ ├── Policy.java │ │ │ │ ├── PortAlignment.java │ │ │ │ ├── PortInfo.java │ │ │ │ ├── PortSpecification.java │ │ │ │ ├── PortType.java │ │ │ │ ├── Property.java │ │ │ │ ├── PropertyRenderer.java │ │ │ │ ├── PropertyType.java │ │ │ │ ├── ShowAsTooltip.java │ │ │ │ ├── SubGroup.java │ │ │ │ ├── TooltipDataType.java │ │ │ │ ├── TypeInfo.java │ │ │ │ ├── Usage.java │ │ │ │ ├── Validators.java │ │ │ │ └── package-info.java │ │ │ └── policyconfig │ │ │ │ ├── CategoryPolicies.java │ │ │ │ ├── CategoryType.java │ │ │ │ ├── MasterPolicies.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── PolicyConfig.java │ │ │ │ └── package-info.java │ │ ├── debug │ │ │ └── service │ │ │ │ └── IDebugService.java │ │ ├── exceptions │ │ │ └── ExternalTransformException.java │ │ ├── message │ │ │ └── Messages.java │ │ ├── messages.properties │ │ ├── property │ │ │ └── util │ │ │ │ └── Utils.java │ │ ├── schema │ │ │ ├── Field.java │ │ │ ├── FieldDataTypes.java │ │ │ ├── Fields.java │ │ │ ├── ObjectFactory.java │ │ │ ├── ScaleTypes.java │ │ │ ├── Schema.java │ │ │ └── package-info.java │ │ ├── swt │ │ │ └── customwidget │ │ │ │ └── HydroGroup.java │ │ ├── util │ │ │ ├── CanvasDataAdapter.java │ │ │ ├── ComponentCacheUtil.java │ │ │ ├── ConfigFileReader.java │ │ │ ├── Constants.java │ │ │ ├── ConvertHexValues.java │ │ │ ├── CustomColorRegistry.java │ │ │ ├── ExternalOperationExpressionUtil.java │ │ │ ├── ExternalSchemaUtil.java │ │ │ ├── FilterLogicExternalOperationExpressionUtil.java │ │ │ ├── ImagePathConstant.java │ │ │ ├── MultiParameterFileUIUtils.java │ │ │ ├── OSValidator.java │ │ │ ├── ParameterUtil.java │ │ │ ├── PathUtility.java │ │ │ ├── PreferenceConstants.java │ │ │ ├── SWTResourceManager.java │ │ │ ├── SchemaFieldUtil.java │ │ │ ├── TransformMappingFeatureUtility.java │ │ │ ├── ValidateExpressionOperation.java │ │ │ ├── WordUtils.java │ │ │ ├── WorkbenchWidgetsUtils.java │ │ │ ├── XMLConfigUtil.java │ │ │ └── XMLUtil.java │ │ └── validator │ │ │ └── Validator.java │ │ └── external │ │ ├── common │ │ ├── ExpressionOutputFields.java │ │ ├── InputField.java │ │ ├── InputFields.java │ │ ├── ObjectFactory.java │ │ ├── OperationOutputFields.java │ │ ├── Properties.java │ │ └── package-info.java │ │ ├── expression │ │ ├── Expression.java │ │ ├── ExternalExpression.java │ │ ├── ExternalExpressions.java │ │ ├── ObjectFactory.java │ │ └── package-info.java │ │ ├── mapping │ │ ├── ExpressionField.java │ │ ├── ExternalMapping.java │ │ ├── ExternalMappings.java │ │ ├── MapField.java │ │ ├── ObjectFactory.java │ │ ├── OperationField.java │ │ └── package-info.java │ │ └── operation │ │ ├── ExternalOperation.java │ │ ├── ExternalOperations.java │ │ ├── ObjectFactory.java │ │ ├── Operation.java │ │ └── package-info.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── common │ ├── TestGeneralPolices.java │ └── TestJaxb.java ├── hydrograph.ui.communication ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── communication │ ├── Activator.java │ ├── debugservice │ ├── DebugServiceClient.java │ ├── constants │ │ ├── DebugServiceMethods.java │ │ └── DebugServicePostParameters.java │ └── method │ │ └── Provider.java │ ├── messages │ ├── Message.java │ └── MessageType.java │ └── utilities │ └── SCPUtility.java ├── hydrograph.ui.dataviewer ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── plugin.xml ├── pom.xml ├── resources │ └── messages.properties └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── dataviewer │ ├── Activator.java │ ├── actions │ ├── ActionFactory.java │ ├── AutoExpandColumnsAction.java │ ├── ClearFilterAction.java │ ├── CopyAction.java │ ├── DatasetInformationAction.java │ ├── ExportAction.java │ ├── FilterAction.java │ ├── FindAction.java │ ├── FormattedViewAction.java │ ├── GridViewAction.java │ ├── HorizontalViewAction.java │ ├── PreferencesAction.java │ ├── ReloadAction.java │ ├── ResetColumnsAction.java │ ├── ResetSortAction.java │ ├── SelectAllAction.java │ ├── SelectColumnAction.java │ ├── UnformattedViewAction.java │ └── ViewDataGridMenuCreator.java │ ├── adapters │ ├── DataViewerAdapter.java │ └── ViewDataQueryBuilder.java │ ├── constants │ ├── AdapterConstants.java │ ├── ControlConstants.java │ ├── DataViewerColors.java │ ├── DatasetInformationConstants.java │ ├── MenuConstants.java │ ├── MessageBoxText.java │ ├── Messages.java │ ├── StatusConstants.java │ └── Views.java │ ├── datasetinformation │ ├── DatasetContentProvider.java │ ├── DatasetInformationDialog.java │ ├── DatasetInformationVO.java │ └── DatasetLabelProvider.java │ ├── datastructures │ ├── RowData.java │ ├── RowField.java │ └── StatusMessage.java │ ├── dialog │ └── SelectColumnActionDialog.java │ ├── filemanager │ └── DataViewerFileManager.java │ ├── filter │ ├── CComboContentAdapter.java │ ├── Condition.java │ ├── FilterConditions.java │ ├── FilterConditionsDialog.java │ ├── FilterConstants.java │ ├── FilterHelper.java │ ├── FilterValidator.java │ ├── RemoteFilterJson.java │ └── RetainFilter.java │ ├── find │ ├── FindViewDataDialog.java │ └── StyledTextEventListener.java │ ├── listeners │ └── DataViewerListeners.java │ ├── preferencepage │ ├── ServicesPreference.java │ ├── ViewDataPreference.java │ ├── ViewDataPreferencesDialog.java │ └── ViewDataPreferencesVO.java │ ├── support │ ├── SortDataType.java │ ├── SortOrder.java │ ├── StatusManager.java │ └── TypeBasedComparator.java │ ├── utilities │ ├── DataViewerUtility.java │ ├── Utils.java │ └── ViewDataSchemaHelper.java │ ├── viewloders │ └── DataViewLoader.java │ └── window │ └── DebugDataViewer.java ├── hydrograph.ui.engine ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ ├── engine │ └── jaxb │ │ ├── aggregate │ │ ├── AggregateBase.java │ │ ├── ObjectFactory.java │ │ ├── TypeInSocket.java │ │ ├── TypeOperation.java │ │ ├── TypeOperationInputField.java │ │ ├── TypeOperationInputFields.java │ │ ├── TypeOutSocket.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ ├── TypePrimaryKeyFields.java │ │ ├── TypeSecondaryKeyFields.java │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ └── TypeTransformExpression.java │ │ ├── clone │ │ ├── ObjectFactory.java │ │ ├── TypeCloneInSocket.java │ │ ├── TypeCloneOutSocket.java │ │ └── TypeOutSocketAsInSocketIn0.java │ │ ├── commandtypes │ │ ├── FTP.java │ │ ├── FTPS.java │ │ ├── FileOperationChoice.java │ │ ├── FileTransferBase.java │ │ ├── FtpIn.java │ │ ├── Hplsql.java │ │ ├── ObjectFactory.java │ │ ├── RunProgram.java │ │ ├── RunSQL.java │ │ ├── S3FileTransfer.java │ │ ├── SFTP.java │ │ └── Subjob.java │ │ ├── commontypes │ │ ├── BooleanValueType.java │ │ ├── ElementValueIntegerType.java │ │ ├── ElementValueStringType.java │ │ ├── ExcelFileType.java │ │ ├── FieldDataTypes.java │ │ ├── KeepValue.java │ │ ├── KeyfieldDescriptionType.java │ │ ├── MatchValue.java │ │ ├── ObjectFactory.java │ │ ├── ScaleTypeList.java │ │ ├── StandardCharsets.java │ │ ├── StandardWriteMode.java │ │ ├── TrueFalse.java │ │ ├── TypeBaseComponent.java │ │ ├── TypeBaseField.java │ │ ├── TypeBaseInSocket.java │ │ ├── TypeBaseInSocketFixedIn0.java │ │ ├── TypeBaseOutSocket.java │ │ ├── TypeBaseRecord.java │ │ ├── TypeCommandComponent.java │ │ ├── TypeExpressionField.java │ │ ├── TypeExpressionOutputFields.java │ │ ├── TypeExternalSchema.java │ │ ├── TypeFieldName.java │ │ ├── TypeInputComponent.java │ │ ├── TypeInputField.java │ │ ├── TypeInputOutSocket.java │ │ ├── TypeKeyFields.java │ │ ├── TypeLookupInsocket.java │ │ ├── TypeMapField.java │ │ ├── TypeOperationField.java │ │ ├── TypeOperationInputFields.java │ │ ├── TypeOperationOutputFields.java │ │ ├── TypeOperationsComponent.java │ │ ├── TypeOperationsOutSocket.java │ │ ├── TypeOutSocketAsInSocket.java │ │ ├── TypeOutputComponent.java │ │ ├── TypeOutputInSocket.java │ │ ├── TypeOutputRecordCount.java │ │ ├── TypeProperties.java │ │ ├── TypeSortOrder.java │ │ ├── TypeStraightPullComponent.java │ │ ├── TypeStraightPullOutSocket.java │ │ ├── TypeTransformExpression.java │ │ ├── TypeTransformOperation.java │ │ └── TypeTrueFalse.java │ │ ├── cumulate │ │ ├── CumulateBase.java │ │ ├── ObjectFactory.java │ │ ├── TypeInSocket.java │ │ ├── TypeOperation.java │ │ ├── TypeOperationInputField.java │ │ ├── TypeOperationInputFields.java │ │ ├── TypeOutSocket.java │ │ ├── TypePrimaryKeyFields.java │ │ ├── TypeSecondaryKeyFields.java │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ └── TypeTransformExpression.java │ │ ├── debug │ │ ├── Debug.java │ │ ├── ObjectFactory.java │ │ └── ViewData.java │ │ ├── exceltype │ │ ├── ObjectFactory.java │ │ ├── TypeExcelField.java │ │ ├── TypeExcelOutSocket.java │ │ ├── TypeExcelRecord.java │ │ └── TypeFileExcelBase.java │ │ ├── executiontracking │ │ ├── ObjectFactory.java │ │ ├── TypeExecutiontrackingInSocket.java │ │ ├── TypeExecutiontrackingOperation.java │ │ ├── TypeExecutiontrackingOperationInputField.java │ │ ├── TypeExecutiontrackingOperationInputFields.java │ │ ├── TypeExecutiontrackingOutSocket.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ └── TypesOutSocketTypes.java │ │ ├── filter │ │ ├── ObjectFactory.java │ │ ├── TypeFilterInSocket.java │ │ ├── TypeFilterOperation.java │ │ ├── TypeFilterOperationInputField.java │ │ ├── TypeFilterOperationInputFields.java │ │ ├── TypeFilterOutSocket.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ └── TypesOutSocketTypes.java │ │ ├── generatesequence │ │ ├── ObjectFactory.java │ │ ├── TypeNameField.java │ │ ├── TypeOperation.java │ │ ├── TypeOperationOutputField.java │ │ ├── TypeOutSocket.java │ │ └── TypePassthroughInputField.java │ │ ├── groupcombine │ │ ├── GroupcombineBase.java │ │ ├── ObjectFactory.java │ │ ├── TypeInSocket.java │ │ ├── TypeOperation.java │ │ ├── TypeOperationInputField.java │ │ ├── TypeOperationInputFields.java │ │ ├── TypeOutSocket.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ ├── TypePrimaryKeyFields.java │ │ ├── TypeSecondaryKeyFields.java │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ └── TypeTransformExpression.java │ │ ├── ifmixedscheme │ │ ├── ObjectFactory.java │ │ ├── TypeInputMixedOutSocket.java │ │ ├── TypeMixedBase.java │ │ ├── TypeMixedField.java │ │ └── TypeMixedRecord.java │ │ ├── ifparquet │ │ ├── ObjectFactory.java │ │ ├── TypeInputDelimitedOutSocket.java │ │ └── TypeInputFileDelimitedBase.java │ │ ├── ifsubjob │ │ ├── ObjectFactory.java │ │ ├── TypeInputDelimitedOutSocket.java │ │ ├── TypeInputFileDelimitedBase.java │ │ └── TypeInputFileDelimitedSubjob.java │ │ ├── ifxml │ │ ├── ObjectFactory.java │ │ ├── TypeInputFileXmlBase.java │ │ ├── TypeInputXmlOutSocket.java │ │ ├── TypeXmlField.java │ │ └── TypeXmlRecord.java │ │ ├── igr │ │ ├── ObjectFactory.java │ │ ├── TypeGenerateRecordBase.java │ │ ├── TypeGenerateRecordField.java │ │ ├── TypeGenerateRecordOutSocket.java │ │ └── TypeGenerateRecordRecord.java │ │ ├── ihiveparquet │ │ ├── FieldBasicType.java │ │ ├── HivePartitionFieldsType.java │ │ ├── HivePartitionFilterType.java │ │ ├── HivePathType.java │ │ ├── HiveType.java │ │ ├── ObjectFactory.java │ │ ├── PartitionColumn.java │ │ ├── PartitionFieldBasicType.java │ │ ├── TypeInputDelimitedOutSocket.java │ │ └── TypeInputFileDelimitedBase.java │ │ ├── ihivetextfile │ │ ├── FieldBasicType.java │ │ ├── HivePartitionFieldsType.java │ │ ├── HivePartitionFilterType.java │ │ ├── HivePathType.java │ │ ├── HiveType.java │ │ ├── ObjectFactory.java │ │ ├── PartitionColumn.java │ │ ├── PartitionFieldBasicType.java │ │ ├── TypeInputHiveTextDelimitedOutSocket.java │ │ └── TypeInputHiveTextFileDelimitedBase.java │ │ ├── imysql │ │ ├── ObjectFactory.java │ │ ├── TypeInputMysqlBase.java │ │ ├── TypeInputMysqlOutSocket.java │ │ └── TypePartitionsChoice.java │ │ ├── inputtypes │ │ ├── AvroFile.java │ │ ├── GenerateRecord.java │ │ ├── HiveTextFile.java │ │ ├── Mysql.java │ │ ├── ObjectFactory.java │ │ ├── Oracle.java │ │ ├── ParquetFile.java │ │ ├── ParquetHiveFile.java │ │ ├── Redshift.java │ │ ├── SequenceInputFile.java │ │ ├── Sparkredshift.java │ │ ├── Subjob.java │ │ ├── SubjobInput.java │ │ ├── Teradata.java │ │ ├── TextFileDelimited.java │ │ ├── TextFileFixedWidth.java │ │ ├── TextFileMixedScheme.java │ │ └── XmlFile.java │ │ ├── ioracle │ │ ├── ObjectFactory.java │ │ ├── TypeInputOracleBase.java │ │ ├── TypeInputOracleOutSocket.java │ │ └── TypePartitionsChoice.java │ │ ├── iredshift │ │ ├── ObjectFactory.java │ │ ├── TypeInputRedshiftBase.java │ │ └── TypeInputRedshiftOutSocket.java │ │ ├── isparkredshift │ │ ├── ObjectFactory.java │ │ ├── TypeInputRedshiftOutSocket.java │ │ └── TypeInputSparkredshiftBase.java │ │ ├── iteradata │ │ ├── ObjectFactory.java │ │ ├── TypeInputTeradataBase.java │ │ ├── TypeInputTeradataOutSocket.java │ │ └── TypePartitionsChoice.java │ │ ├── itfd │ │ ├── ObjectFactory.java │ │ ├── TypeInputDelimitedOutSocket.java │ │ └── TypeInputFileDelimitedBase.java │ │ ├── itffw │ │ ├── ObjectFactory.java │ │ ├── TypeFixedWidthBase.java │ │ ├── TypeFixedwidthField.java │ │ ├── TypeFixedwidthRecord.java │ │ └── TypeInputFixedwidthOutSocket.java │ │ ├── itfs │ │ ├── ObjectFactory.java │ │ ├── TypeInputFileSequenceBase.java │ │ └── TypeInputSequenceOutSocket.java │ │ ├── join │ │ ├── JoinBase.java │ │ ├── ObjectFactory.java │ │ ├── TypeInSocket.java │ │ ├── TypeKeyFields.java │ │ ├── TypeOutSocket.java │ │ └── TypesOutSocketTypes.java │ │ ├── limit │ │ ├── ObjectFactory.java │ │ ├── TypeLimitBase.java │ │ ├── TypeLimitInSocket.java │ │ ├── TypeLimitOutSocket.java │ │ ├── TypeOutSocket.java │ │ └── TypeOutSocketAsInSocketIn0.java │ │ ├── lookup │ │ ├── LookupBase.java │ │ ├── ObjectFactory.java │ │ ├── TypeInSocket.java │ │ ├── TypeKeyFields.java │ │ └── TypeOutSocket.java │ │ ├── main │ │ ├── Graph.java │ │ └── ObjectFactory.java │ │ ├── normalize │ │ ├── ObjectFactory.java │ │ ├── TypeInSocket.java │ │ ├── TypeOperation.java │ │ ├── TypeOperationInputField.java │ │ ├── TypeOperationInputFields.java │ │ ├── TypeOutSocket.java │ │ └── TypeTransformExpression.java │ │ ├── ofexcel │ │ ├── BooleanAttribute.java │ │ ├── FieldFormat.java │ │ ├── ObjectFactory.java │ │ ├── SortKeyFields.java │ │ ├── TypeOutputExcelInSocket.java │ │ └── TypeOutputFileExcelBase.java │ │ ├── ofmixedscheme │ │ ├── ObjectFactory.java │ │ ├── TypeMixedBase.java │ │ ├── TypeMixedField.java │ │ ├── TypeMixedRecord.java │ │ └── TypeOutputMixedInSocket.java │ │ ├── ofparquet │ │ ├── ObjectFactory.java │ │ ├── TypeOutputDelimitedInSocket.java │ │ └── TypeOutputFileDelimitedBase.java │ │ ├── ofsubjob │ │ ├── ObjectFactory.java │ │ ├── TypeOutputDelimitedInSocket.java │ │ ├── TypeOutputFileDelimitedBase.java │ │ └── TypeOutputFileDelimitedSubjob.java │ │ ├── ofxml │ │ ├── ObjectFactory.java │ │ ├── TypeOutputFileXmlBase.java │ │ ├── TypeOutputXmlInSocket.java │ │ ├── TypeXmlField.java │ │ └── TypeXmlRecord.java │ │ ├── ohiveparquet │ │ ├── FieldBasicType.java │ │ ├── HivePartitionFieldsType.java │ │ ├── HivePathType.java │ │ ├── HiveType.java │ │ ├── ObjectFactory.java │ │ ├── PartitionFieldBasicType.java │ │ ├── TypeOutputDelimitedInSocket.java │ │ └── TypeOutputFileDelimitedBase.java │ │ ├── ohivetextfile │ │ ├── FieldBasicType.java │ │ ├── HivePartitionFieldsType.java │ │ ├── HivePathType.java │ │ ├── HiveType.java │ │ ├── ObjectFactory.java │ │ ├── PartitionFieldBasicType.java │ │ ├── TypeOutputHiveTextFileDelimitedBase.java │ │ └── TypeOutputHiveTextFileDelimitedInSocket.java │ │ ├── ojdbcupdate │ │ ├── ObjectFactory.java │ │ ├── TypeJdbcupdateField.java │ │ ├── TypeJdbcupdateRecord.java │ │ ├── TypeOutputJdbcupdateBase.java │ │ ├── TypeOutputJdbcupdateOutSocket.java │ │ └── TypeUpdateKeys.java │ │ ├── omysql │ │ ├── DatabaseType.java │ │ ├── DatabaseTypeValue.java │ │ ├── ObjectFactory.java │ │ ├── TypeLoadChoice.java │ │ ├── TypeMysqlField.java │ │ ├── TypeMysqlRecord.java │ │ ├── TypeOutputMysqlBase.java │ │ ├── TypeOutputMysqlOutSocket.java │ │ ├── TypePrimaryKeys.java │ │ └── TypeUpdateKeys.java │ │ ├── ooracle │ │ ├── DatabaseType.java │ │ ├── ObjectFactory.java │ │ ├── TypeLoadChoice.java │ │ ├── TypeOracleField.java │ │ ├── TypeOracleRecord.java │ │ ├── TypeOutputOracleBase.java │ │ ├── TypeOutputOracleInSocket.java │ │ ├── TypePrimaryKeys.java │ │ └── TypeUpdateKeys.java │ │ ├── operationstypes │ │ ├── Aggregate.java │ │ ├── Cumulate.java │ │ ├── Executiontracking.java │ │ ├── Filter.java │ │ ├── GenerateSequence.java │ │ ├── Groupcombine.java │ │ ├── Join.java │ │ ├── Lookup.java │ │ ├── Normalize.java │ │ ├── ObjectFactory.java │ │ ├── PartitionByExpression.java │ │ ├── Subjob.java │ │ └── Transform.java │ │ ├── oredshift │ │ ├── ObjectFactory.java │ │ ├── TypeLoadChoice.java │ │ ├── TypeOutputRedshiftBase.java │ │ ├── TypeOutputRedshiftInSocket.java │ │ ├── TypePrimaryKeys.java │ │ ├── TypeRedshiftField.java │ │ ├── TypeRedshiftRecord.java │ │ └── TypeUpdateKeys.java │ │ ├── osparkredshift │ │ ├── ObjectFactory.java │ │ ├── TypeLoadChoice.java │ │ ├── TypeOutputSparkredshiftBase.java │ │ ├── TypeOutputSparkredshiftInSocket.java │ │ ├── TypePrimaryKeys.java │ │ ├── TypeSparkredshiftField.java │ │ ├── TypeSparkredshiftRecord.java │ │ └── TypeUpdateKeys.java │ │ ├── otdiscard │ │ ├── ObjectFactory.java │ │ └── TypeOutputInSocketIno.java │ │ ├── oteradata │ │ ├── DatabaseType.java │ │ ├── DatabaseTypeValue.java │ │ ├── ObjectFactory.java │ │ ├── TypeLoadChoice.java │ │ ├── TypeOutputTeradataBase.java │ │ ├── TypeOutputTeradataOutSocket.java │ │ ├── TypePrimaryKeys.java │ │ ├── TypeTeradataField.java │ │ ├── TypeTeradataRecord.java │ │ └── TypeUpdateKeys.java │ │ ├── otfd │ │ ├── ObjectFactory.java │ │ ├── TypeOutputDelimitedInSocket.java │ │ └── TypeOutputFileDelimitedBase.java │ │ ├── otffw │ │ ├── ObjectFactory.java │ │ ├── TypeFixedWidthBase.java │ │ ├── TypeFixedwidthField.java │ │ ├── TypeFixedwidthRecord.java │ │ └── TypeOutputFixedwidthInSocket.java │ │ ├── otfs │ │ ├── ObjectFactory.java │ │ ├── TypeOutputFileSequenceBase.java │ │ └── TypeOutputSequenceInSocket.java │ │ ├── outputtypes │ │ ├── AvroFile.java │ │ ├── Discard.java │ │ ├── ExcelFile.java │ │ ├── HiveTextFile.java │ │ ├── JdbcUpdate.java │ │ ├── Mysql.java │ │ ├── ObjectFactory.java │ │ ├── Oracle.java │ │ ├── ParquetFile.java │ │ ├── ParquetHiveFile.java │ │ ├── Redshift.java │ │ ├── SequenceOutputFile.java │ │ ├── Sparkredshift.java │ │ ├── Subjob.java │ │ ├── SubjobOutput.java │ │ ├── Teradata.java │ │ ├── TextFileDelimited.java │ │ ├── TextFileFixedWidth.java │ │ ├── TextFileMixedScheme.java │ │ └── XmlFile.java │ │ ├── partitionbyexpression │ │ ├── ObjectFactory.java │ │ ├── PartitionByExpressionBase.java │ │ ├── TypePbeInSocket.java │ │ ├── TypePbeInputFields.java │ │ ├── TypePbeOperation.java │ │ ├── TypePbeOperationInputField.java │ │ ├── TypePbeOutSocket.java │ │ └── TypesOutSocketTypes.java │ │ ├── removedups │ │ ├── ObjectFactory.java │ │ ├── TypeOutSocket.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ ├── TypePrimaryKeyFields.java │ │ ├── TypeRemovedupsBase.java │ │ ├── TypeSecondaryKeyFields.java │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ └── TypesOutSocketTypes.java │ │ ├── sort │ │ ├── ObjectFactory.java │ │ ├── TypeOutSocket.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ ├── TypePrimaryKeyFields.java │ │ ├── TypePrimaryKeyFieldsAttributes.java │ │ ├── TypeSecondaryKeyFields.java │ │ ├── TypeSecondayKeyFieldsAttributes.java │ │ └── TypeSortBase.java │ │ ├── straightpulltypes │ │ ├── Clone.java │ │ ├── Dummy.java │ │ ├── Limit.java │ │ ├── ObjectFactory.java │ │ ├── RemoveDups.java │ │ ├── Sort.java │ │ └── UnionAll.java │ │ ├── subjob │ │ ├── ObjectFactory.java │ │ ├── SubjobBase.java │ │ ├── TypeInSocket.java │ │ └── TypeOutSocket.java │ │ └── transform │ │ ├── ObjectFactory.java │ │ ├── TypeOutSocketAsInSocketIn0.java │ │ ├── TypeTransformInSocket.java │ │ ├── TypeTransformOperation.java │ │ ├── TypeTransformOperationInputField.java │ │ ├── TypeTransformOperationInputFields.java │ │ └── TypeTransformOutSocket.java │ └── ui │ └── engine │ ├── Activator.java │ ├── constants │ ├── PortTypeConstant.java │ └── PropertyNameConstants.java │ ├── converter │ ├── CommandConverter.java │ ├── Converter.java │ ├── ConverterFactory.java │ ├── InputConverter.java │ ├── OutputConverter.java │ ├── StraightPullConverter.java │ ├── SubjobConverter.java │ ├── TransformConverter.java │ └── impl │ │ ├── AggregateConverter.java │ │ ├── CloneConverter.java │ │ ├── CommandSubjobConverter.java │ │ ├── CumulateConverter.java │ │ ├── DiscardConverter.java │ │ ├── FTPConverterHelper.java │ │ ├── FTPProtocolConverter.java │ │ ├── FilterConverter.java │ │ ├── GenerateRecordsConverter.java │ │ ├── GroupCombineConverter.java │ │ ├── InputComponentSubJobConverter.java │ │ ├── InputFileDelimitedConverter.java │ │ ├── InputFileFixedWidthConverter.java │ │ ├── InputFileMixedSchemeConverter.java │ │ ├── InputHiveParquetConverter.java │ │ ├── InputHiveTextFileConverter.java │ │ ├── InputMysqlConverter.java │ │ ├── InputOracleConverter.java │ │ ├── InputParquetConverter.java │ │ ├── InputRedshiftConverter.java │ │ ├── InputSparkRedshiftConverter.java │ │ ├── InputSubJobConverter.java │ │ ├── InputTeradataConverter.java │ │ ├── InputXmlConverter.java │ │ ├── JoinConverter.java │ │ ├── LimitConverter.java │ │ ├── LookupConverter.java │ │ ├── NormalizeConverter.java │ │ ├── OperationSubJobConverter.java │ │ ├── OutputComponentSubJobConverter.java │ │ ├── OutputDBUpdateConverter.java │ │ ├── OutputExcelConverter.java │ │ ├── OutputFileDelimitedConverter.java │ │ ├── OutputFileFixedWidthConverter.java │ │ ├── OutputFileMixedSchemeConverter.java │ │ ├── OutputHiveParquetConverter.java │ │ ├── OutputHiveTextFileConverter.java │ │ ├── OutputMysqlConverter.java │ │ ├── OutputOracleConverter.java │ │ ├── OutputParquetConverter.java │ │ ├── OutputRedshiftConverter.java │ │ ├── OutputSparkRedshiftConverter.java │ │ ├── OutputSubJobConverter.java │ │ ├── OutputTeradataConverter.java │ │ ├── OutputXmlConverter.java │ │ ├── PartitionByExpressionConverter.java │ │ ├── RemoveDupsConverter.java │ │ ├── RunProgramConverter.java │ │ ├── RunSQLConverter.java │ │ ├── S3FileTransferConverterHelper.java │ │ ├── SFTPConvertorHelper.java │ │ ├── SortConverter.java │ │ ├── TransformComponentConverter.java │ │ ├── UnionAllConverter.java │ │ ├── UniqueSequenceConverter.java │ │ └── UnknownConverter.java │ ├── exceptions │ ├── BatchException.java │ ├── ConverterNotFoundException.java │ ├── EngineException.java │ ├── SchemaException.java │ └── UnknownComponentException.java │ ├── helper │ ├── ConverterHelper.java │ └── OperationsConverterHelper.java │ ├── parsing │ ├── ComponentTypes.java │ ├── XMLHandler.java │ └── XMLParser.java │ ├── qnames │ └── OperationsExpressionType.java │ ├── ui │ ├── constants │ │ ├── UIComponentsConstants.java │ │ ├── UIComponentsMultiplePorts.java │ │ └── UIComponentsPort.java │ ├── converter │ │ ├── CommandUiConverter.java │ │ ├── InputUiConverter.java │ │ ├── LinkingData.java │ │ ├── OutputUiConverter.java │ │ ├── StraightpullUiConverter.java │ │ ├── TransformUiConverter.java │ │ ├── UiConverter.java │ │ ├── UiConverterFactory.java │ │ └── impl │ │ │ ├── AggregateUiConverter.java │ │ │ ├── CloneUiConverter.java │ │ │ ├── CommandSubjobUiConverter.java │ │ │ ├── CumulateUiConverter.java │ │ │ ├── DiscardUiConverter.java │ │ │ ├── FTPConverterUi.java │ │ │ ├── FilterUiConverter.java │ │ │ ├── GenerateRecordsUiConverter.java │ │ │ ├── GroupCombineUiConverter.java │ │ │ ├── InputComponentSubjobUiConverter.java │ │ │ ├── InputFileDelimitedUiConverter.java │ │ │ ├── InputFixedWidthUiConverter.java │ │ │ ├── InputHiveParquetUiConverter.java │ │ │ ├── InputHiveTextFileUiConverter.java │ │ │ ├── InputMixedSchemeUiConverter.java │ │ │ ├── InputMysqlUiConverter.java │ │ │ ├── InputOracleUiConverter.java │ │ │ ├── InputParquetUiConverter.java │ │ │ ├── InputRedshiftUiConverter.java │ │ │ ├── InputSparkRedshiftUiConverter.java │ │ │ ├── InputSubjobUiConverter.java │ │ │ ├── InputTeradataUiConverter.java │ │ │ ├── InputXmlUiConverter.java │ │ │ ├── JoinComponentUiConverter.java │ │ │ ├── LimitUiConverter.java │ │ │ ├── LookupUiConverter.java │ │ │ ├── NormalizeUiConverter.java │ │ │ ├── OperationSubJobUiConverter.java │ │ │ ├── OutputComponentSubjobUiConverter.java │ │ │ ├── OutputDBUpdateUiConverter.java │ │ │ ├── OutputFileDelimitedUiConverter.java │ │ │ ├── OutputFileExcelUiConverter.java │ │ │ ├── OutputFixedWidthUiConverter.java │ │ │ ├── OutputHiveParquetUiConverter.java │ │ │ ├── OutputHiveTextFileUiConverter.java │ │ │ ├── OutputMixedSchemeUiConverter.java │ │ │ ├── OutputMysqlUiConverter.java │ │ │ ├── OutputOracleUiConverter.java │ │ │ ├── OutputParquetUiConverter.java │ │ │ ├── OutputRedshiftUiConverter.java │ │ │ ├── OutputSparkRedshiftUiConverter.java │ │ │ ├── OutputSubjobUiConverter.java │ │ │ ├── OutputTeradataUiConverter.java │ │ │ ├── OutputXMLUiConverter.java │ │ │ ├── PartitionByExpressionUiConverter.java │ │ │ ├── RemoveDupsUiConverter.java │ │ │ ├── RunProgramUiConverter.java │ │ │ ├── RunSQLUiConverter.java │ │ │ ├── S3FileTransferUiConverter.java │ │ │ ├── SFTPUiConverter.java │ │ │ ├── SortUiConverter.java │ │ │ ├── TransformComponentUiConverter.java │ │ │ ├── UnionAllUiConverter.java │ │ │ ├── UniqueSequenceUiConverter.java │ │ │ └── UnknownUiConverter.java │ ├── exceptions │ │ ├── ComponentNotFoundException.java │ │ └── ImportXMLException.java │ ├── helper │ │ └── ConverterUiHelper.java │ ├── repository │ │ ├── ImportedJobsRepository.java │ │ ├── InSocketDetail.java │ │ ├── ParameterData.java │ │ └── UIComponentRepo.java │ ├── util │ │ ├── .gitignore │ │ ├── ImportedSchemaPropagation.java │ │ ├── SubjobUiConverterUtil.java │ │ └── UiConverterUtil.java │ └── xygenration │ │ ├── CoordinateProcessor.java │ │ └── Node.java │ ├── util │ ├── ConverterUtil.java │ └── FTPUtil.java │ └── xpath │ ├── ComponentXpath.java │ ├── ComponentXpathConstants.java │ └── ComponentsAttributeAndValue.java ├── hydrograph.ui.expression.editor ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── plugin.xml ├── pom.xml ├── resources │ ├── expression_operator.properties │ ├── gradle_update.txt │ ├── icons │ │ ├── delete.png │ │ └── intellisence_icon.bmp │ └── messages.properties └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── expression │ └── editor │ ├── Activator.java │ ├── Constants.java │ ├── Messages.java │ ├── PathConstant.java │ ├── browser │ └── JavaDocBrowser.java │ ├── buttons │ ├── EvaluateExpressionToolButton.java │ ├── ExportExpressionToolButton.java │ ├── ImportExpressionToolButton.java │ ├── OperatorToolCombo.java │ ├── ValidateExpressionToolButton.java │ └── WordWrapToolCheckButton.java │ ├── color │ └── manager │ │ ├── JavaLineStyler.java │ │ └── JavaScanner.java │ ├── comparator │ └── ProposalComparator.java │ ├── composites │ ├── AvailableFieldsComposite.java │ ├── CategoriesComposite.java │ ├── CategoriesDialogSourceComposite.java │ ├── CategoriesDialogTargetComposite.java │ ├── CategoriesUpperComposite.java │ ├── DescriptionComposite.java │ ├── ExpressionEditorComposite.java │ ├── FunctionsComposite.java │ └── FunctionsUpperComposite.java │ ├── datastructure │ ├── ClassDetails.java │ └── MethodDetails.java │ ├── dialogs │ ├── AddCategoreisDialog.java │ └── ExpressionEditorDialog.java │ ├── enums │ ├── DataTypes.java │ ├── FunctionPlaceHolder.java │ └── FunctionPlaceHolders.java │ ├── evaluate │ ├── EvalDialogFieldTable.java │ ├── EvalFiedContentProvider.java │ ├── EvalFieldLabelProvider.java │ ├── EvaluateDialog.java │ ├── EvaluateExpression.java │ ├── FieldNameAndValue.java │ ├── FieldNameAndValueCellModifier.java │ └── InvalidDataTypeValueException.java │ ├── jar │ └── util │ │ └── BuildExpressionEditorDataSturcture.java │ ├── javasourceviewerconfiguration │ ├── HotKeyUtil.java │ ├── HydrographCompletionProposal.java │ ├── HydrographCompletionProposalComputer.java │ ├── HydrographJavaCompletionProcessor.java │ └── HydrographJavaSourceViewerConfiguration.java │ ├── launcher │ └── LaunchExpressionEditor.java │ ├── message │ └── CustomMessageBox.java │ ├── pages │ └── AddExternalJarPage.java │ ├── repo │ └── ClassRepo.java │ ├── sourceviewer │ ├── ExecutionLimiter.java │ └── SourceViewer.java │ ├── styletext │ └── ExpressionEditorStyledText.java │ └── util │ ├── ExpressionEditorUtil.java │ └── FieldDataTypeMap.java ├── hydrograph.ui.graph.figure ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── graph │ └── figure │ ├── Activator.java │ ├── BentCornerFigure.java │ ├── CommentBoxFeedbackFigure.java │ ├── CommentBoxFigure.java │ ├── ComponentBorder.java │ ├── ComponentFigure.java │ ├── ComponentLabelFigure.java │ ├── ELTColorConstants.java │ ├── ELTFigureConstants.java │ ├── FixedConnectionAnchor.java │ └── PortFigure.java ├── hydrograph.ui.graph ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── plugin.xml ├── pom.xml ├── resources │ ├── File.png │ ├── New_File.png │ ├── OpenFile1.jpg │ ├── icons │ │ ├── aggregate_palette.png │ │ ├── class_obj.gif │ │ ├── comment-box-icon.png │ │ ├── cut_o.png │ │ ├── debug_icon.png │ │ ├── delete.png │ │ ├── dis_cancel.png │ │ ├── dis_cut.png │ │ ├── dis_paste.png │ │ ├── dis_redo.png │ │ ├── dis_save.png │ │ ├── dis_undo.png │ │ ├── disable_copy_icon.png │ │ ├── enable_copy_icon.png │ │ ├── execution_tracking_console.png │ │ ├── filter_palette.png │ │ ├── folder_o.png │ │ ├── graph_property_window.png │ │ ├── job_icon.png │ │ ├── new_file_o.png │ │ ├── newclass_wiz.gif │ │ ├── paste_o.png │ │ ├── redo_o.png │ │ ├── remove_debug.png │ │ ├── replay.png │ │ ├── run.png │ │ ├── saveAll_o.png │ │ ├── save_o.png │ │ ├── stop_job.png │ │ ├── transform_palette.png │ │ └── undo_o.png │ └── messages.properties └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── graph │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── action │ │ ├── CommentBoxAction.java │ │ ├── CommentBoxLabelEditManager.java │ │ ├── ComponentHelpAction.java │ │ ├── ComponentPropertiesAction.java │ │ ├── ContributionItemManager.java │ │ ├── ContributionItems.java │ │ ├── CopyAction.java │ │ ├── CutAction.java │ │ ├── DeleteAction.java │ │ ├── GraphRuntimePropertiesAction.java │ │ ├── PasteAction.java │ │ ├── PropagateDataAction.java │ │ ├── debug │ │ │ ├── AddWatcherAction.java │ │ │ ├── RemoveWatcherAction.java │ │ │ ├── ViewDataActionMenu.java │ │ │ ├── ViewDataCurrentJobAction.java │ │ │ ├── WatchRecordAction.java │ │ │ └── WatcherMenuAction.java │ │ └── subjob │ │ │ ├── SubJobAction.java │ │ │ ├── SubJobOpenAction.java │ │ │ ├── SubJobTrackingAction.java │ │ │ ├── SubJobUpdateAction.java │ │ │ └── SubMenuAction.java │ │ ├── canvas │ │ └── search │ │ │ ├── ComponentContentProposal.java │ │ │ ├── ComponentDetails.java │ │ │ ├── ComponentSearchUtility.java │ │ │ ├── HydrographComponentProposalProvider.java │ │ │ └── SearchCanvasLabelProvider.java │ │ ├── command │ │ ├── CommentBoxCommand.java │ │ ├── CommentBoxSetConstraintCommand.java │ │ ├── CommentCommand.java │ │ ├── ComponentCopyCommand.java │ │ ├── ComponentCreateCommand.java │ │ ├── ComponentCutCommand.java │ │ ├── ComponentDeleteCommand.java │ │ ├── ComponentPasteCommand.java │ │ ├── ComponentSetConstraintCommand.java │ │ ├── LinkCommand.java │ │ ├── LinkDeleteCommand.java │ │ ├── LinkReconnectSourceCommand.java │ │ ├── LinkReconnectTargetCommand.java │ │ └── SubJobCommand.java │ │ ├── controller │ │ ├── CommentBoxCellEditorLocator.java │ │ ├── CommentBoxEditPart.java │ │ ├── CommentBoxEditor.java │ │ ├── ComponentEditPart.java │ │ ├── ComponentLabelEditPart.java │ │ ├── ContainerEditPart.java │ │ ├── LinkEditPart.java │ │ └── PortEditPart.java │ │ ├── debug │ │ └── service │ │ │ ├── DebugDataWizard.java │ │ │ └── PurgeViewDataFiles.java │ │ ├── debugconverter │ │ ├── DebugConverter.java │ │ ├── DebugHelper.java │ │ └── SchemaHelper.java │ │ ├── dialog │ │ └── SaveJobFileBeforeRunDialog.java │ │ ├── editor │ │ ├── ComponentsEditorContextMenuProvider.java │ │ ├── CustomEditActionProvider.java │ │ ├── CustomFigureCanvas.java │ │ ├── CustomPaletteViewer.java │ │ ├── ELTGraphicalEditor.java │ │ ├── ELTGraphicalEditorInput.java │ │ ├── JobCopyParticipant.java │ │ ├── JobDeleteParticipant.java │ │ ├── PaletteContainerListener.java │ │ ├── RenameJobParticipant.java │ │ └── ResourceChangeListener.java │ │ ├── editorfactory │ │ ├── FileEditorContainer.java │ │ ├── FileStorageEditorContainer.java │ │ ├── GenrateContainerData.java │ │ ├── GraphicalEditorContiner.java │ │ └── IGenrateContainerData.java │ │ ├── execution │ │ └── tracking │ │ │ ├── connection │ │ │ ├── HydrographServerConnection.java │ │ │ └── HydrographUiClientSocket.java │ │ │ ├── constants │ │ │ └── MenuConstants.java │ │ │ ├── datastructure │ │ │ ├── ComponentStatus.java │ │ │ ├── ExecutionStatus.java │ │ │ └── SubjobDetails.java │ │ │ ├── handlers │ │ │ ├── ActionFactory.java │ │ │ ├── ClearConsoleAction.java │ │ │ ├── ExecutionTrackingConsoleHandler.java │ │ │ └── ScrollLockAction.java │ │ │ ├── logger │ │ │ └── ExecutionTrackingFileLogger.java │ │ │ ├── preferences │ │ │ ├── ExecutionPreferenceConstants.java │ │ │ ├── ExecutionTrackPreference.java │ │ │ ├── ExecutionTrackingPreferanceComposite.java │ │ │ ├── ExecutionTrackingPreferencesDataStructure.java │ │ │ ├── JobRunPreference.java │ │ │ ├── JobRunPreferenceComposite.java │ │ │ └── Utils.java │ │ │ ├── replay │ │ │ ├── ViewExecutionHistoryComponentDialog.java │ │ │ ├── ViewExecutionHistoryDataDialog.java │ │ │ └── ViewExecutionHistoryUtility.java │ │ │ ├── utils │ │ │ ├── CoolBarHelperUtility.java │ │ │ ├── ExecutionTrackingConsoleUtils.java │ │ │ ├── TrackingDisplayUtils.java │ │ │ └── TrackingStatusUpdateUtils.java │ │ │ └── windows │ │ │ └── ExecutionTrackingConsole.java │ │ ├── factory │ │ ├── ComponentsEditPartFactory.java │ │ └── CustomPaletteEditPartFactory.java │ │ ├── handler │ │ ├── CommentBoxHandler.java │ │ ├── DebugHandler.java │ │ ├── ExternalSchemaUpdaterHandler.java │ │ ├── GraphPropertiesHandler.java │ │ ├── JobCreationPage.java │ │ ├── JobCreationWizard.java │ │ ├── JobHandler.java │ │ ├── RemoveDebugHandler.java │ │ ├── RunJobHandler.java │ │ ├── StopJobHandler.java │ │ └── ViewExecutionHistoryHandler.java │ │ ├── job │ │ ├── AbstractJobLauncher.java │ │ ├── DebugLocalJobLauncher.java │ │ ├── DebugRemoteJobLauncher.java │ │ ├── GradleCommandConstants.java │ │ ├── Job.java │ │ ├── JobManager.java │ │ ├── JobStatus.java │ │ ├── LocalJobLauncher.java │ │ ├── RemoteJobLauncher.java │ │ └── RunStopButtonCommunicator.java │ │ ├── policy │ │ ├── CommentBoxDirectEditPolicy.java │ │ ├── CommentBoxResizableEditPolicy.java │ │ ├── ComponentResizableEditPolicy.java │ │ ├── ComponentSelectionPolicy.java │ │ ├── GraphComponentEditPolicy.java │ │ ├── LinkEditPolicy.java │ │ ├── LinkEndPointEditPolicy.java │ │ ├── NodeConnectionEditPolicy.java │ │ └── ShapesXYLayoutEditPolicy.java │ │ ├── propertywindow │ │ ├── ELTPropertyWindow.java │ │ └── IELTPropertyWindow.java │ │ ├── utility │ │ ├── CanvasUtils.java │ │ ├── DataViewerUtility.java │ │ ├── JobScpAndProcessUtility.java │ │ ├── MessageBox.java │ │ ├── ResourceChangeUtil.java │ │ ├── SubJobPortLinkUtilty.java │ │ ├── SubJobUtility.java │ │ ├── ViewDataUtils.java │ │ └── XStreamUtil.java │ │ └── viewdatadialog │ │ └── ViewDataUniqueIdDialog.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── graph │ └── editor │ └── PaletteViewTest.java ├── hydrograph.ui.help ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── html │ ├── Components │ │ ├── Unknown.html │ │ ├── command │ │ │ ├── FTP.html │ │ │ ├── FTP_Properties.html │ │ │ ├── Run_Program.html │ │ │ ├── Run_Program_Properties.html │ │ │ ├── Run_Sql.html │ │ │ └── Run_Sql_Properties.html │ │ ├── input │ │ │ ├── Generate_Records.html │ │ │ ├── Generate_Records_Properties.html │ │ │ ├── Input_File_Delimited.html │ │ │ ├── Input_File_Delimited_Properties.html │ │ │ ├── Input_File_Fixed_Width.html │ │ │ ├── Input_File_Fixed_Width_Properties.html │ │ │ ├── Input_File_Mixed_Scheme.html │ │ │ ├── Input_File_Mixed_Scheme_Properties.html │ │ │ ├── Input_File_Parquet.html │ │ │ ├── Input_File_Parquet_Properties.html │ │ │ ├── Input_Hive_Parquet.html │ │ │ ├── Input_Hive_Parquet_Properties.html │ │ │ ├── Input_Hive_Text.html │ │ │ ├── Input_Hive_Text_Properties.html │ │ │ ├── Input_Mysql.html │ │ │ ├── Input_Mysql_Properties.html │ │ │ ├── Input_Oracle.html │ │ │ ├── Input_Oracle_Properties.html │ │ │ ├── Input_Redshift.html │ │ │ ├── Input_Redshift_Properties.html │ │ │ ├── Input_Teradata.html │ │ │ ├── Input_Teradata_Properties.html │ │ │ ├── Input_Xml.html │ │ │ └── Input_Xml_Properties.html │ │ ├── output │ │ │ ├── DBUpdate.html │ │ │ ├── DB_Update_Properties.html │ │ │ ├── Discard.html │ │ │ ├── Discard_Properties.html │ │ │ ├── Output_File_Delimited.html │ │ │ ├── Output_File_Delimited_Properties.html │ │ │ ├── Output_File_Excel.html │ │ │ ├── Output_File_Excel_Properties.html │ │ │ ├── Output_File_Fixed_Width.html │ │ │ ├── Output_File_Fixed_Width_Properties.html │ │ │ ├── Output_File_Mixed_Scheme.html │ │ │ ├── Output_File_Mixed_Scheme_Properties.html │ │ │ ├── Output_File_Parquet.html │ │ │ ├── Output_File_Parquet_Properties.html │ │ │ ├── Output_Hive_Parquet.html │ │ │ ├── Output_Hive_Parquet_Properties.html │ │ │ ├── Output_Hive_Text.html │ │ │ ├── Output_Hive_Text_Properties.html │ │ │ ├── Output_Mysql.html │ │ │ ├── Output_Mysql_Properties.html │ │ │ ├── Output_Oracle.html │ │ │ ├── Output_Oracle_Properties.html │ │ │ ├── Output_Redshift.html │ │ │ ├── Output_Redshift_Properties.html │ │ │ ├── Output_Teradata.html │ │ │ ├── Output_Teradata_Properties.html │ │ │ ├── Output_Xml.html │ │ │ └── Output_Xml_Properties.html │ │ ├── straightpull │ │ │ ├── Clone.html │ │ │ ├── Clone_Properties.html │ │ │ ├── Limit.html │ │ │ ├── Limit_Properties.html │ │ │ ├── Remove_Dups.html │ │ │ ├── Remove_Dups_Properties.html │ │ │ ├── Sort.html │ │ │ ├── Sort_Properties.html │ │ │ ├── Union_All.html │ │ │ └── Union_All_Properties.html │ │ └── transform │ │ │ ├── Aggregate.html │ │ │ ├── Aggregate_Expression_Editor_window.html │ │ │ ├── Aggregate_Operation_Class_Window.html │ │ │ ├── Aggregate_Operation_Editor.html │ │ │ ├── Aggregate_Properties.html │ │ │ ├── Comment_Box.html │ │ │ ├── Cumulate.html │ │ │ ├── Cumulate_Operation_Class_Window.html │ │ │ ├── Cumulate_Operation_Editor.html │ │ │ ├── Cumulate_Properties.html │ │ │ ├── Expression_Editor_Predefined_Functions.html │ │ │ ├── Expression_Editor_window.html │ │ │ ├── Expression_Editor_window_for_groupCombine.html │ │ │ ├── Externalizing_Transformations_Aggregate.html │ │ │ ├── Externalizing_Transformations_Cumulate.html │ │ │ ├── Externalizing_Transformations_Filter.html │ │ │ ├── Externalizing_Transformations_GroupCombine.html │ │ │ ├── Externalizing_Transformations_Normalize.html │ │ │ ├── Externalizing_Transformations_Partition_By_Expression.html │ │ │ ├── Externalizing_Transformations_Transform.html │ │ │ ├── Filter.html │ │ │ ├── Filter_Operation_Window.html │ │ │ ├── Filter_Properties.html │ │ │ ├── GroupCombine.html │ │ │ ├── GroupCombine_Operation_Class_Window.html │ │ │ ├── GroupCombine_Operation_Editor.html │ │ │ ├── GroupCombine_Properties.html │ │ │ ├── Join.html │ │ │ ├── Join_Mapping_View.html │ │ │ ├── Join_Properties.html │ │ │ ├── Lookup.html │ │ │ ├── Lookup_Mapping_View.html │ │ │ ├── Lookup_Properties.html │ │ │ ├── Normalize.html │ │ │ ├── Normalize_Mapping_View.html │ │ │ ├── Normalize_Operation_Class_Window.html │ │ │ ├── Normalize_Operation_Editor.html │ │ │ ├── Normalize_Properties.html │ │ │ ├── Partition_By_Expression.html │ │ │ ├── Partition_By_Expression_Operation_Window.html │ │ │ ├── Partition_By_Expression_Properties.html │ │ │ ├── Transform.html │ │ │ ├── Transform_Mapping_View.html │ │ │ ├── Transform_Operation_Class_Window.html │ │ │ ├── Transform_Properties.html │ │ │ ├── Unique_Sequence.html │ │ │ ├── Unique_Sequence_Properties.html │ │ │ └── Unique_Sequence_Validations.html │ ├── How To Steps │ │ ├── GIT-How_to_Check_in_New_Project.html │ │ ├── GIT-How_to_check_in_changes_to_existing_Hydrograph_project.html │ │ ├── GIT-How_to_create_new_Hydrograph_project.html │ │ ├── GIT-How_to_work_with_Git_in_Hydrograph.html │ │ ├── Git_How_to_check_out_existing_Hydrograph_proj_from_Git.html │ │ ├── How_To_Create_A_Job.html │ │ ├── How_To_Create_An_ELT_Project.html │ │ ├── How_To_Import_Engine_XML_to_UI.html │ │ ├── How_To_Pass_Hadoop_Properties_To_Component.html │ │ ├── How_to_Import_a_Project_Files_from_File_System.html │ │ ├── How_to_run_a_Job_on_Cluster.html │ │ └── How_to_run_a_Job_on_Locally.html │ ├── Hydrograph Features │ │ ├── Execution_Tracking_Window.html │ │ ├── Generalizing_jobs.html │ │ ├── Schema_Propagation.html │ │ ├── Update_Schema.html │ │ ├── View Data History.html │ │ ├── View Execution History.html │ │ └── View_Data.html │ ├── Installation and Configuration │ │ ├── Launching_Hydrograph_on_Macintosh.html │ │ ├── Launching_Hydrograph_on_Windows.html │ │ ├── Pre-requisites_for_Macintosh.html │ │ └── Pre-requisites_for_Windows.html │ ├── Introduction │ │ ├── Overview.html │ │ └── What_is_Hydrograph.html │ ├── License Info │ │ ├── ApacheLicense2.0Info.html │ │ ├── BSD3LicenseInfo.html │ │ ├── BSDLicenseInfo.html │ │ ├── CDDL 1.1_GPL 2.0LicenseInfo.html │ │ ├── CDDL-1.0.html │ │ ├── EclipsePublicLicense.html │ │ ├── GNULGPL_Version 3.0.html │ │ ├── GNULibraryLicenseInfo.html │ │ ├── JDKLicense.html │ │ ├── MITLicense.html │ │ ├── P2Repository.html │ │ └── janinoLicenseInfo.html │ ├── Operation Base Interface │ │ ├── Aggregate │ │ │ ├── AggregateTransformBase.html │ │ │ ├── Count.html │ │ │ ├── Max.html │ │ │ ├── Min.html │ │ │ ├── StringAppend.html │ │ │ └── Sum.html │ │ ├── Cumulate │ │ │ ├── Count.html │ │ │ ├── CumulateTransformBase.html │ │ │ ├── StringAppend.html │ │ │ └── Sum.html │ │ ├── Filter │ │ │ └── FilterBase.html │ │ ├── GroupCombine │ │ │ ├── Count.html │ │ │ ├── GroupCombineTransformBase.html │ │ │ ├── Max.html │ │ │ ├── Min.html │ │ │ ├── StringAppend.html │ │ │ └── Sum.html │ │ ├── Normalize │ │ │ ├── MetaPivot.html │ │ │ ├── NormalizeTransformBase.html │ │ │ └── RegexSplitNormalize.html │ │ ├── OperationClassBestPractices.html │ │ ├── OutputDispatcher.html │ │ ├── ReusableRow.html │ │ └── Transform │ │ │ ├── RegexSplitTransform.html │ │ │ └── TransformBase.html │ ├── User Interface │ │ ├── Component_Palette.html │ │ ├── Job_Canvas.html │ │ ├── Job_Console.html │ │ ├── Menu_Tool_Bar.html │ │ ├── Parameter_Grid.html │ │ ├── Project_Explorer.html │ │ └── Run_Configuration.html │ ├── concepts │ │ ├── maintopic.html │ │ ├── subtopic.html │ │ └── subtopic2.html │ ├── css │ │ └── style.css │ ├── gettingstarted │ │ ├── maintopic.html │ │ ├── subtopic.html │ │ └── subtopic2.html │ ├── images │ │ ├── 13_Drag_Input_File1.png │ │ ├── 14_Input_File1_Properties.png │ │ ├── 15_Input_File1_Properties_Filled.png │ │ ├── 16_Input_File1_Schema_Filled.png │ │ ├── 17_Drag_Input_File2.png │ │ ├── 18_Input_File2_Properties.png │ │ ├── 19_Input_File2_Properties_Filled.png │ │ ├── 20_Input_File2_Schema_Filled.png │ │ ├── 21_Drag_Join.png │ │ ├── 22_Connect_Input_Files_to_Join.png │ │ ├── 23_Join_Properties.png │ │ ├── 24_Join_Properties_Parent_Window_Filled.png │ │ ├── 25_Join_Configuration.png │ │ ├── 26_Join_Configuration_Select_Keys.png │ │ ├── 27_Join_Configuration_Select_Join_Type.png │ │ ├── 28_Join_Mapping_View.png │ │ ├── 29_Join_Mapping_View_Drag_Fields.png │ │ ├── 30_Join_Schema_Tab.png │ │ ├── 31_Drag_Aggregate.png │ │ ├── 32_Connect_Aggregate.png │ │ ├── 33_Aggregate_Properties.png │ │ ├── 34_Aggregate_Key_Fields.png │ │ ├── 35_Aggregate_Sec_Key_Fields.png │ │ ├── 36_Aggregate_Mapping_View.png │ │ ├── 37_Aggregate_Select_Std_Op_Class.png │ │ ├── 38_Aggregate_Specify_Mappings.png │ │ ├── 39_Aggregate_Schema.png │ │ ├── 40_Drag_Clone.png │ │ ├── 42_Drag_Multiple_Output.png │ │ ├── 43_Connect_Multiple_Output.png │ │ ├── 44_Output_File1_Properties.PNG │ │ ├── 45_Output_File1_Properties_Filled.png │ │ ├── 46_Output_File1_Schema.png │ │ ├── 47_Output_File2_Properties_Filled.png │ │ ├── 48_Output_File3_Properties_Filled.png │ │ ├── 49_Complete_Job_Flow.png │ │ ├── 50_Save_Job.png │ │ ├── 51_Run_Job.png │ │ ├── 52_Run_Job_in_Progress.png │ │ ├── 53_Job_Console_Build_Successful.png │ │ ├── 56_Output_Files_in_Project_Explorer.png │ │ ├── 57_Output1.png │ │ ├── 58_Output2.png │ │ ├── 59_Output3.png │ │ ├── Aggregate_Canvas.png │ │ ├── Aggregate_Key_Field.png │ │ ├── Aggregate_Mapping_View.png │ │ ├── Aggregate_Mapping_View1.png │ │ ├── Aggregate_Operation_Class_Window.png │ │ ├── Aggregate_Operation_Class_Window1.png │ │ ├── Aggregate_Palette.png │ │ ├── Aggregate_Properties_General.png │ │ ├── Aggregate_Properties_Schema.png │ │ ├── Aggregate_Properties_Validation.png │ │ ├── Aggregate_Secondary_keys.png │ │ ├── Aggregate_Validation_Error.png │ │ ├── Aggregate_Validation_Warning.png │ │ ├── Branch_Selection1.png │ │ ├── Branch_Selection2.png │ │ ├── Browse_Location_Import.png │ │ ├── Canvas.png │ │ ├── Checking_in.png │ │ ├── Clone_Canvas.png │ │ ├── Clone_Export1.png │ │ ├── Clone_Export2.png │ │ ├── Clone_Export3.png │ │ ├── Clone_Export4.png │ │ ├── Clone_Export5.png │ │ ├── Clone_For_Export.png │ │ ├── Clone_GIT.png │ │ ├── Clone_Palette.png │ │ ├── Clone_Phase_Validation.png │ │ ├── Clone_Properties_General.png │ │ ├── Clone_Validation_Error.PNG │ │ ├── Clone_Validation_Warning.PNG │ │ ├── Clone_properties_Batch_Validation.png │ │ ├── Clone_properties_Name_Validation.png │ │ ├── Component_Palette.png │ │ ├── Component_Tooltip.png │ │ ├── Configure_Repo.png │ │ ├── Copy_Repo_URL.png │ │ ├── Create_Project_File_Menu_Option.png │ │ ├── Cumulate_Canvas.png │ │ ├── Cumulate_Key_Field.png │ │ ├── Cumulate_Mapping_View.png │ │ ├── Cumulate_Mapping_View1.png │ │ ├── Cumulate_Palette.png │ │ ├── Cumulate_Properties_General.png │ │ ├── Cumulate_Properties_Schema.png │ │ ├── Cumulate_Properties_Validation.png │ │ ├── Cumulate_Secondary_keys.png │ │ ├── Cumulate_Validation_Error.png │ │ ├── Cumulate_Validation_Warning.png │ │ ├── Execution_Tracking_1.png │ │ ├── Execution_Tracking_2.png │ │ ├── Execution_Tracking_3.png │ │ ├── Execution_Tracking_4.png │ │ ├── Execution_Tracking_Completed_Status.png │ │ ├── Execution_Tracking_Failed_Status.png │ │ ├── Execution_Tracking_Filter_Window.png │ │ ├── Execution_Tracking_Pending_Status.png │ │ ├── Execution_Tracking_Running_Status.png │ │ ├── Execution_Tracking_Subjob_Success_Status.png │ │ ├── Expression_Editor_Expression1_Window.png │ │ ├── Expression_Editor_Merge_Expression_Window.png │ │ ├── Externalize_Aggregate_Expression.png │ │ ├── Externalize_Aggregate_Operation.png │ │ ├── Externalize_Aggregate_Operation_Editor.png │ │ ├── Externalize_Aggregate_Output_Fields.png │ │ ├── Externalize_Cumulate_Expression.png │ │ ├── Externalize_Cumulate_Operation.png │ │ ├── Externalize_Cumulate_Operation_Editor.png │ │ ├── Externalize_Cumulate_OutputFields.png │ │ ├── Externalize_Filter_Expression_Editor.png │ │ ├── Externalize_Filter_Operation_Editor.png │ │ ├── Externalize_GroupCombine_Expression_Example.png │ │ ├── Externalize_GroupCombine_Operation.png │ │ ├── Externalize_GroupCombine_Operation_Editor.png │ │ ├── Externalize_GroupCombine_OutputField_Example.png │ │ ├── Externalize_GroupCombine_OutputFields.png │ │ ├── Externalize_GroupComine_Expression.png │ │ ├── Externalize_Group_Combine_Operation_Example.png │ │ ├── Externalize_Normalize_Expression.png │ │ ├── Externalize_Normalize_Expression_Example.png │ │ ├── Externalize_Normalize_Operation.png │ │ ├── Externalize_Normalize_Operation_Editor.png │ │ ├── Externalize_Normalize_Operation_Example.png │ │ ├── Externalize_Normalize_OutputFields.png │ │ ├── Externalize_Normalize_OutputFields_Example.png │ │ ├── Externalize_PartitionByExpression_Editor.png │ │ ├── Externalize_PartitionByExpression_Expression.png │ │ ├── Externalize_PartitionByExpression_Expression_Example.png │ │ ├── Externalize_PartitionByExpression_Operation.png │ │ ├── Externalize_PartitionByExpression_Operation_Example.png │ │ ├── Externalize_Transform_Expression.png │ │ ├── Externalize_Transform_Expression_Example.png │ │ ├── Externalize_Transform_Operation.png │ │ ├── Externalize_Transform_Operation_Editor.png │ │ ├── Externalize_Transform_Operation_Example.png │ │ ├── Externalize_Transform_OutputFields.png │ │ ├── Externalize_Transform_OutputFields_Example.png │ │ ├── Externalize_aggregate_Expression_Example.png │ │ ├── Externalize_aggregate_Operation_Example.png │ │ ├── Externalize_aggregate_OutputFields_Example.png │ │ ├── File_Import_Option.png │ │ ├── Filer_Logic_Window.png │ │ ├── Files_on_Hadoop.png │ │ ├── Filter_Canvas.PNG │ │ ├── Filter_Class.PNG │ │ ├── Filter_Palette.PNG │ │ ├── Filter_Phase_Validation.PNG │ │ ├── Filter_Properties_Validation.PNG │ │ ├── Force_Update.png │ │ ├── GIT_Imported_Job.png │ │ ├── Generate_Records_Canvas.png │ │ ├── Generate_Records_Palette.png │ │ ├── Generate_Records_Properties_General.png │ │ ├── Generate_Records_Properties_Schema.png │ │ ├── Generate_Records_Properties_Validation.png │ │ ├── Generate_Records_Validation_Error.png │ │ ├── Generate_Records_Validation_Warning.png │ │ ├── Git_Import_option.png │ │ ├── Git_URI.png │ │ ├── Git_add_to_index.png │ │ ├── Git_branch_empty_repo.PNG │ │ ├── Git_chk_homedir.png │ │ ├── Git_configurations_add_email.png │ │ ├── Git_project_explorer_import.png │ │ ├── Github_check.png │ │ ├── GroupCombine_Key_Field.png │ │ ├── GroupCombine_Mapping_View1.png │ │ ├── GroupCombine_Palette.PNG │ │ ├── GroupCombine_Properties_General.png │ │ ├── GroupCombine_Properties_Schema.png │ │ ├── GroupCombine_Validation_Error.PNG │ │ ├── GroupCombine_Validation_Warning.PNG │ │ ├── Group_Combine_Icon.png │ │ ├── Group_combine_Properties_Error.png │ │ ├── Header_DataFormattingWindow.png │ │ ├── Header_Data_Formaating_Window.png │ │ ├── Hive_Partition_Keys_Validation.png │ │ ├── Home_Directory_Window.png │ │ ├── Hydrograph.png │ │ ├── IFParquet_Properties_Validation.png │ │ ├── IFParquet_Validation_Error.png │ │ ├── IFParquet_Validation_Warning.png │ │ ├── IF_Delim_Delimiter_Validation.png │ │ ├── IF_Delim_Ex_Schema_Validation.png │ │ ├── IF_Delim_File_Path_Validation.png │ │ ├── IF_Delim_Safe_Validation.png │ │ ├── IF_Delim_Schema_Validation.png │ │ ├── IF_Fixed_Width_Ex_Schema_Validation.png │ │ ├── IF_Fixed_Width_File_Path_Validation.png │ │ ├── IF_Fixed_Width_Phase_Validation.png │ │ ├── IF_Fixed_Width_Safe_Validation.png │ │ ├── IF_Fixed_Width_Schema_Validation.png │ │ ├── IF_Parquet_Ex_Schema_Validation.png │ │ ├── IF_Parquet_File_Path_Validation.png │ │ ├── IF_Parquet_Schema_Validation.png │ │ ├── Import_Engine_XML1.png │ │ ├── Import_Engine_XML2.png │ │ ├── Import_Engine_XML3.png │ │ ├── Import_Engine_XML4.png │ │ ├── Import_Engine_XML5.png │ │ ├── Import_Engine_XML6.png │ │ ├── Imported_Project_File_System.png │ │ ├── Input_File_Delimited_Canvas.png │ │ ├── Input_File_Delimited_Palette.png │ │ ├── Input_File_Delimited_Properties_General.png │ │ ├── Input_File_Delimited_Properties_Schema.png │ │ ├── Input_File_Fixed_Width_Canvas.png │ │ ├── Input_File_Fixed_Width_Palette.png │ │ ├── Input_File_Fixed_Width_Properties_General.png │ │ ├── Input_File_Fixed_Width_Properties_Schema.png │ │ ├── Input_File_Mixed_Scheme_Batch_Validation_Error.png │ │ ├── Input_File_Mixed_Scheme_Canvas.png │ │ ├── Input_File_Mixed_Scheme_File_Path_Validations_Warning.png │ │ ├── Input_File_Mixed_Scheme_Palette.png │ │ ├── Input_File_Mixed_Scheme_Properties_General.png │ │ ├── Input_File_Mixed_Scheme_Properties_Schema.png │ │ ├── Input_File_Mixed_Scheme_Validation_Error.png │ │ ├── Input_File_Parquet_Canvas.png │ │ ├── Input_File_Parquet_Palette.png │ │ ├── Input_File_Parquet_Properties_General.png │ │ ├── Input_File_Parquet_Properties_Schema.png │ │ ├── Input_Hive_Parquest_Component_Property_Window_Error.png │ │ ├── Input_Hive_Parquest_Component_Validation_Canvas_Error.png │ │ ├── Input_Hive_Parquest_Component_Validation_Warning.png │ │ ├── Input_Hive_Parquet_Canvas.png │ │ ├── Input_Hive_Parquet_Database_Validation.png │ │ ├── Input_Hive_Parquet_ExternalSchema_Validation.png │ │ ├── Input_Hive_Parquet_InternalSchema_Validation.png │ │ ├── Input_Hive_Parquet_Palette.png │ │ ├── Input_Hive_Parquet_Partition_Keys_Validation.png │ │ ├── Input_Hive_Parquet_Parttion_Key_ Value.png │ │ ├── Input_Hive_Parquet_Phase_Validation.png │ │ ├── Input_Hive_Parquet_Properties_General.png │ │ ├── Input_Hive_Parquet_Properties_Schema.png │ │ ├── Input_Hive_Parquet_Table_Validation.png │ │ ├── Input_Hive_Text_File_Canvas.png │ │ ├── Input_Hive_Text_File_Canvas_Error.png │ │ ├── Input_Hive_Text_File_Palette.png │ │ ├── Input_Hive_Text_File_PartitionKeys.png │ │ ├── Input_Hive_Text_File_Properties_General.png │ │ ├── Input_Hive_Text_File_Properties_Schema.png │ │ ├── Input_Hive_Text_File_Tab_Error.png │ │ ├── Input_Hive_Text_File_Warning.png │ │ ├── Input_Hive_Textfile_Palette.png │ │ ├── Input_Mysql_Canvas.png │ │ ├── Input_Mysql_General_Properties.png │ │ ├── Input_Mysql_Palette.png │ │ ├── Input_Mysql_SchemaTab.png │ │ ├── Input_Mysql_Validation_Warning.png │ │ ├── Input_Mysql_error_icon.png │ │ ├── Input_Mysql_warning_icon.png │ │ ├── Input_Redshift_Canvas.png │ │ ├── Input_Redshift_Palette.png │ │ ├── Input_Redshift_Properties_General.png │ │ ├── Input_Redshift_Properties_validations.png │ │ ├── Input_Redshift_Schema.png │ │ ├── Input_Redshift_Schema_tab.png │ │ ├── Input_Redshift_error_icon.png │ │ ├── Input_Redshift_icon_warning.png │ │ ├── Input_Xml_Canvas.png │ │ ├── Input_Xml_Palette.png │ │ ├── Input_Xml_Properties_General.png │ │ ├── Input_Xml_Properties_Schema.png │ │ ├── Input_file.png │ │ ├── Input_file1.png │ │ ├── Input_file2.png │ │ ├── Input_file3.png │ │ ├── Job_Console.png │ │ ├── Job_Console_Build_Successful.png │ │ ├── Job_run_progress.png │ │ ├── Job_successful.png │ │ ├── Join_Mapping_View1.png │ │ ├── Join_Mapping_View2.png │ │ ├── Join_Mapping_View3.png │ │ ├── Join_Mapping_View4.png │ │ ├── Join_Palette.png │ │ ├── Join_canvas.PNG │ │ ├── Launch_mac1.png │ │ ├── Launch_mac2.png │ │ ├── Launch_mac3.png │ │ ├── Launch_mac4.png │ │ ├── Launch_windows1.png │ │ ├── Launch_windows2.png │ │ ├── Launch_windows3.png │ │ ├── Limit_Canvas.png │ │ ├── Limit_Count_Validation.png │ │ ├── Limit_Palette.png │ │ ├── Limit_Phase_Validation.png │ │ ├── Limit_Properties_General.png │ │ ├── Limit_Properties_Validation.png │ │ ├── Limit_Validation_Error.png │ │ ├── Limit_Validation_Warning.PNG │ │ ├── Lkp_Canvas.png │ │ ├── Lkp_Configuration.png │ │ ├── Lkp_Configuration_for_Lookup_input.png │ │ ├── Lkp_Mapping_View.png │ │ ├── Lkp_Mapping_view1.png │ │ ├── Lkp_Mapping_view2.png │ │ ├── Lkp_Mapping_view3.png │ │ ├── Lkp_Palette.PNG │ │ ├── Lkp_Properties_General.png │ │ ├── Lkp_Properties_Schema.png │ │ ├── Lkp_Properties_Validation.png │ │ ├── Lkp_Validation_Error.PNG │ │ ├── Lkp_Validation_Warning.png │ │ ├── Local_option1.png │ │ ├── Lookup_Canvas.png │ │ ├── Lookup_Configuration.png │ │ ├── Lookup_Configuration_for_Lookup_input.png │ │ ├── Lookup_Mapping_View.png │ │ ├── Lookup_Mapping_View1.png │ │ ├── Lookup_Mapping_View2.png │ │ ├── Lookup_Mapping_View3.png │ │ ├── Lookup_Palette.png │ │ ├── Lookup_Properties_General.png │ │ ├── Lookup_Schema_Tab.png │ │ ├── Mac_Runtime_Properties_Grid.png │ │ ├── Menu_Bar.gif │ │ ├── New_Repo_Creation.png │ │ ├── Normalize_Canvas.png │ │ ├── Normalize_Mapping_View.png │ │ ├── Normalize_Mapping_View1.png │ │ ├── Normalize_Operation_Class_Window.png │ │ ├── Normalize_Operation_Class_Window1.png │ │ ├── Normalize_Palette.png │ │ ├── Normalize_Properties_General.png │ │ ├── Normalize_Properties_Schema.png │ │ ├── Normalize_Properties_Validation.PNG │ │ ├── Normalize_Validation_Error.png │ │ ├── Normalize_Validation_Warning.png │ │ ├── OFParquet_Validation_Error.png │ │ ├── OFParquet_Validation_Warning.png │ │ ├── OF_Delim_Delimiter_Validation.png │ │ ├── OF_Delim_Ex_Schema_Validation.png │ │ ├── OF_Delim_File_Path_Validation.png │ │ ├── OF_Delim_Phase_Validation.png │ │ ├── OF_Delim_Safe_Validation.png │ │ ├── OF_Delim_Schema_Validation.png │ │ ├── OF_Fixed_Width_Ex_Schema_Validation.png │ │ ├── OF_Fixed_Width_File_Path_Validation.png │ │ ├── OF_Fixed_Width_Phase_Validation.png │ │ ├── OF_Fixed_Width_Safe_Validation.png │ │ ├── OF_Fixed_Width_Schema_Validation.png │ │ ├── OF_Parquet_Ex_Schema_Validation.png │ │ ├── OF_Parquet_File_Path_Validation.png │ │ ├── OF_Parquet_Phase_Validation.png │ │ ├── OF_Parquet_Schema_Validation.png │ │ ├── Operation_Class_New_Java_Class.png │ │ ├── Output_Discard_Canvas.PNG │ │ ├── Output_Discard_Palette.png │ │ ├── Output_Discard_Properties.png │ │ ├── Output_File_Delimited_Canvas.png │ │ ├── Output_File_Delimited_Palette.png │ │ ├── Output_File_Delimited_Properties_General.png │ │ ├── Output_File_Delimited_Properties_Schema.png │ │ ├── Output_File_Fixed_Width_Canvas.png │ │ ├── Output_File_Fixed_Width_Palette.png │ │ ├── Output_File_Fixed_Width_Properties_General.png │ │ ├── Output_File_Fixed_Width_Properties_Schema.png │ │ ├── Output_File_Mixed_Scheme_Canvas.png │ │ ├── Output_File_Mixed_Scheme_Palette.png │ │ ├── Output_File_Mixed_Scheme_Properties_General.png │ │ ├── Output_File_Mixed_Scheme_Properties_Schema.png │ │ ├── Output_File_Parquet_Canvas.png │ │ ├── Output_Hive_Parquest_Component_Validation_Canvas_Error.png │ │ ├── Output_Hive_Parquest_Component_Validation_Warning.png │ │ ├── Output_Hive_Parquet_Canvas.png │ │ ├── Output_Hive_Parquet_Database_Validation.png │ │ ├── Output_Hive_Parquet_ExternalSchema_Validation.png │ │ ├── Output_Hive_Parquet_InternalSchema_Validation.png │ │ ├── Output_Hive_Parquet_Phase_Validation.png │ │ ├── Output_Hive_Parquet_Table_Validation.png │ │ ├── Output_Hive_Text_File_Canvas.png │ │ ├── Output_Hive_Text_File_Canvas_Error.png │ │ ├── Output_Hive_Text_File_PartitionKeys.png │ │ ├── Output_Hive_Text_File_Properties_General.png │ │ ├── Output_Hive_Text_File_Properties_Schema.png │ │ ├── Output_Hive_Text_File_Tab_Error.png │ │ ├── Output_Hive_Text_File_Warning.png │ │ ├── Output_Mysql_Canvas.png │ │ ├── Output_Mysql_Palette.png │ │ ├── Output_Mysql_Properties_General.png │ │ ├── Output_Mysql_Properties_Validation.png │ │ ├── Output_Mysql_error_icon.png │ │ ├── Output_Mysql_schemaTab.png │ │ ├── Output_Mysql_warning_icon.png │ │ ├── Output_Redshift_Canvas.png │ │ ├── Output_Redshift_Palette.png │ │ ├── Output_Redshift_Properties_General.png │ │ ├── Output_Redshift_Properties_Validations.png │ │ ├── Output_Redshift_Schema_tab.png │ │ ├── Output_Redshift_error_icon.png │ │ ├── Output_Redshift_warning_icon.png │ │ ├── Output_Xml_Canvas.PNG │ │ ├── Output_Xml_Palette.PNG │ │ ├── Output_Xml_Properties_General.PNG │ │ ├── Output_Xml_Properties_Schema.PNG │ │ ├── Output_file1.png │ │ ├── Output_file2.png │ │ ├── Output_file_fixed_width_component_validation_error.png │ │ ├── Output_file_fixed_width_component_validation_warning.png │ │ ├── Output_file_fixed_width_property_window_validation_error.png │ │ ├── Output_file_mixed_scheme_batch_warning.png │ │ ├── Output_file_mixed_scheme_filepath_validation.png │ │ ├── Output_file_mixed_scheme_warning.png │ │ ├── Output_file_mixed_scheme_warning_canvas.png │ │ ├── Param_Grid2.png │ │ ├── Parameter_Grid_Toolbar.png │ │ ├── Parameter_Grid_window.png │ │ ├── Parquet_Phase_Validation.png │ │ ├── Partition_Editor.PNG │ │ ├── Partition_Keys.png │ │ ├── Parttition_Keys_window.png │ │ ├── Path_Repo_URI.png │ │ ├── Phase_Validation.png │ │ ├── Project_Explorer.png │ │ ├── Projects_From_Git.png │ │ ├── Propagate_field_properties_window.png │ │ ├── Pull_Schema_Transform.png │ │ ├── Push.png │ │ ├── Push_Repo.png │ │ ├── Pushing_Complete.png │ │ ├── Pushing_Process.png │ │ ├── Remote_Job_Console_Build_Successful.png │ │ ├── Remote_option.png │ │ ├── Remote_option1.png │ │ ├── Remote_option2.png │ │ ├── Remote_results.png │ │ ├── Remove_Dups_Canvas.png │ │ ├── Remove_Dups_Key_Field.png │ │ ├── Remove_Dups_Key_Field_Validation.png │ │ ├── Remove_Dups_Palette.png │ │ ├── Remove_Dups_Secondary_Key_Field_Validation.png │ │ ├── Remove_Dups_Secondary_Keys.png │ │ ├── Remove_Dups_Validation.png │ │ ├── Remove_Dups_Validation_Error.PNG │ │ ├── Remove_Dups_Warning.PNG │ │ ├── Removedups_Properties_General.png │ │ ├── Right_click_option.PNG │ │ ├── Run_Button.png │ │ ├── Run_Configuration.png │ │ ├── Run_Configuration_Toolbar.png │ │ ├── Run_Program_Properties_General.png │ │ ├── Run_Program_canvas.png │ │ ├── Run_Program_error.png │ │ ├── Run_Program_palette.png │ │ ├── Run_Program_properties_validation.png │ │ ├── Run_Program_warning.png │ │ ├── Run_config.png │ │ ├── Runtime_Properties_Grid.png │ │ ├── Runtime_Properties_Grid_values.png │ │ ├── Search_Component.png │ │ ├── Select_GIT_Project.png │ │ ├── Share_Project_GIT.png │ │ ├── Show_in_Repo_View.png │ │ ├── Sort_Canvas.png │ │ ├── Sort_Empty_Field_Validation.png │ │ ├── Sort_Empty_Sec_Field_Validation.png │ │ ├── Sort_Invalid_Field_Validation.png │ │ ├── Sort_Invalid_Sec_Field_Validation.png │ │ ├── Sort_Key_Fields.png │ │ ├── Sort_Palette.png │ │ ├── Sort_Phase_Validation.png │ │ ├── Sort_Properties_General.png │ │ ├── Sort_Properties_Validation.png │ │ ├── Sort_Secondary_Key_Fields.png │ │ ├── Sort_Validation_Error.PNG │ │ ├── Sort_Validation_Warning.PNG │ │ ├── Stop_icon.PNG │ │ ├── Stop_icon_with_tooltip.PNG │ │ ├── Tool_Bar.png │ │ ├── Transform_Canvas.png │ │ ├── Transform_Mapping_View.png │ │ ├── Transform_Operation_Class_Window.png │ │ ├── Transform_Operation_Class_Window1.png │ │ ├── Transform_Palette.png │ │ ├── Transform_Properties_General.png │ │ ├── Transform_Properties_Schema.png │ │ ├── Transform_Property_Window_Tabs_Error.PNG │ │ ├── Transform_Validation_Warning.PNG │ │ ├── Union_All_Canvas.png │ │ ├── Union_All_Component_Error.png │ │ ├── Union_All_Palette.png │ │ ├── Union_All_Phase_Validation.png │ │ ├── Union_All_Properties_General.png │ │ ├── Union_All_Properties_error.png │ │ ├── Union_All_Validation_Warning.PNG │ │ ├── Unique_Sequence_Canvas.png │ │ ├── Unique_Sequence_Field_Property.png │ │ ├── Unique_Sequence_Palette.png │ │ ├── Unique_Sequence_Phase_Validation.png │ │ ├── Unique_Sequence_Properties_General.png │ │ ├── Unique_Sequence_Properties_Validation.png │ │ ├── Unique_Sequence_Sequence_Field_Validation.png │ │ ├── Unique_Sequence_Validation_Error.png │ │ ├── Unique_Sequence_Validation_Warning.png │ │ ├── Update_Schema.PNG │ │ ├── Utility_on_Cluster.png │ │ ├── add_configuration_entry.png │ │ ├── addwatchpoint.png │ │ ├── aggregate_expression_editor_window.png │ │ ├── app_icon.png │ │ ├── auth_sftp_key.png │ │ ├── bitwiselogo.png │ │ ├── capitalOneLogo.png │ │ ├── category_pane.png │ │ ├── clone_existing_project_for_git.png │ │ ├── comment_box_canvas_edit.png │ │ ├── comment_box_context_menu.png │ │ ├── comment_box_coolbar_icon.png │ │ ├── commit_ELT_project.png │ │ ├── configuration_entry_for_email.png │ │ ├── configure_git_repository.png │ │ ├── console_buffer_size.png │ │ ├── dbupdate_canvas.png │ │ ├── dbupdate_icon_error.png │ │ ├── dbupdate_icon_warning.png │ │ ├── dbupdate_palette.png │ │ ├── dbupdate_properties_validations.png │ │ ├── dbupdate_schema_tab.png │ │ ├── dbupdate_update_keys.png │ │ ├── elt_job.png │ │ ├── evaluate_expression_window.png │ │ ├── existing _projects _into _workspace.png │ │ ├── expression_editor.png │ │ ├── expression_editor_window.png │ │ ├── expression_pane.png │ │ ├── field_pane.png │ │ ├── filter_properties_schema.png │ │ ├── ftp_auth_error.png │ │ ├── ftp_canvas.png │ │ ├── ftp_error_icon.png │ │ ├── ftp_general_error.png │ │ ├── ftp_general_value.png │ │ ├── ftp_palette.png │ │ ├── ftp_warning_icon.png │ │ ├── function_description_pane.png │ │ ├── function_pane.png │ │ ├── git_add_index.png │ │ ├── git_branch_selection.png │ │ ├── git_clone_uri.png │ │ ├── git_commit.png │ │ ├── git_commit_add_message.png │ │ ├── git_commit_selection.png │ │ ├── git_configuration.png │ │ ├── git_push_result.png │ │ ├── git_push_upstream.png │ │ ├── git_repository_new_ELT_project.png │ │ ├── git_select_wizard.png │ │ ├── git_staging.png │ │ ├── git_staging_staged_changes.png │ │ ├── github.png │ │ ├── import_local_destination.png │ │ ├── import_projects_from_git.png │ │ ├── import_to_select_existing_project.png │ │ ├── importproject.png │ │ ├── input_Delimited_error_icon.PNG │ │ ├── input_Delimited_property_validation.png │ │ ├── input_Delimited_warning_icon.PNG │ │ ├── input_database_SQL_window.png │ │ ├── input_file_fixed_width_component_validation_error.png │ │ ├── input_file_fixed_width_component_validation_warning.png │ │ ├── input_file_fixed_width_property_window_validation_error.png │ │ ├── input_oracle_canvas.png │ │ ├── input_oracle_error_icon.png │ │ ├── input_oracle_palette.png │ │ ├── input_oracle_property_validations.png │ │ ├── input_oracle_property_window.png │ │ ├── input_oracle_schema_tab.png │ │ ├── input_oracle_warn_icon.png │ │ ├── input_teradata_canvas.png │ │ ├── input_teradata_error_icon.png │ │ ├── input_teradata_palette.png │ │ ├── input_teradata_properties_general.png │ │ ├── input_teradata_property_validation.png │ │ ├── input_teradata_schema.png │ │ ├── input_teradata_warning_icon.png │ │ ├── input_xml_error_icon.PNG │ │ ├── input_xml_property_validation.png │ │ ├── input_xml_warning_icon.PNG │ │ ├── jar_added_window.png │ │ ├── job_parameters.png │ │ ├── join_Properties_Validation.png │ │ ├── join_config.png │ │ ├── join_config_for_join_input.png │ │ ├── join_input_cnt.PNG │ │ ├── join_map_view.png │ │ ├── join_prop_general.png │ │ ├── join_schema_tab_v.png │ │ ├── join_validation_error.png │ │ ├── join_validation_warning.png │ │ ├── jumptopage.png │ │ ├── new_ELT_project.png │ │ ├── new_job_window.png │ │ ├── op_class_1.png │ │ ├── op_class_2.png │ │ ├── op_class_3.png │ │ ├── op_class_6.png │ │ ├── op_class_fig5.png │ │ ├── operation_class.png │ │ ├── operation_class_validation.png │ │ ├── operation_fields.png │ │ ├── operation_fields_validation.png │ │ ├── output.png │ │ ├── output1.png │ │ ├── output_Delimited_error_icon.PNG │ │ ├── output_Delimited_property_validation.png │ │ ├── output_Delimited_warning_icon.PNG │ │ ├── output_db_load_configuration.png │ │ ├── output_dbupdate_properties_general.png │ │ ├── output_file_excel_canvas.png │ │ ├── output_file_excel_error_icon.png │ │ ├── output_file_excel_palette.png │ │ ├── output_file_excel_property_validation.png │ │ ├── output_file_excel_property_window.png │ │ ├── output_file_excel_schema.png │ │ ├── output_file_excel_warn_icon.png │ │ ├── output_file_parquet_general.png │ │ ├── output_file_parquet_palette.png │ │ ├── output_file_parquet_properties_validation.png │ │ ├── output_file_parquet_schema.png │ │ ├── output_hive_parquet_error.png │ │ ├── output_hive_parquet_general.png │ │ ├── output_hive_parquet_palette.png │ │ ├── output_hive_parquet_partition_keys.png │ │ ├── output_hive_parquet_schema.png │ │ ├── output_hive_text_error.png │ │ ├── output_hive_text_general.png │ │ ├── output_hive_text_palette.png │ │ ├── output_hive_text_partition_keys.png │ │ ├── output_hive_text_schema.png │ │ ├── output_oracle_canvas.png │ │ ├── output_oracle_error_icon.png │ │ ├── output_oracle_palette.png │ │ ├── output_oracle_property_validation.png │ │ ├── output_oracle_property_window.png │ │ ├── output_oracle_schema.png │ │ ├── output_oracle_warn_icon.png │ │ ├── output_teradata_canvas.png │ │ ├── output_teradata_error_icon.png │ │ ├── output_teradata_palate.png │ │ ├── output_teradata_property_validation.png │ │ ├── output_teradata_property_window.png │ │ ├── output_teradata_schema.png │ │ ├── output_teradata_warn_icon.png │ │ ├── output_xml_error_icon.PNG │ │ ├── output_xml_property_validation.PNG │ │ ├── output_xml_warning_icon.PNG │ │ ├── pagination.png │ │ ├── parameterize_general_properties.png │ │ ├── parameterize_schema_properties.png │ │ ├── partition_by_expression_batch_validation.png │ │ ├── partition_by_expression_canvas.png │ │ ├── partition_by_expression_error.png │ │ ├── partition_by_expression_outputpartitions_validation.png │ │ ├── partition_by_expression_palette.png │ │ ├── partition_by_expression_properties.png │ │ ├── partition_by_expression_properties_schema.png │ │ ├── partition_by_expression_properties_validation.png │ │ ├── partition_by_expression_warning.png │ │ ├── projectExplorer_ELTProject.png │ │ ├── project_explorer_git_repository_new_proj.png │ │ ├── project_explorer_import_project.png │ │ ├── project_explorer_newproj.png │ │ ├── properties_file.png │ │ ├── properties_file_projectExplorer.png │ │ ├── push_results.png │ │ ├── run_sql_canvas.png │ │ ├── run_sql_database_widget.png │ │ ├── run_sql_error_icon.png │ │ ├── run_sql_general_tab_validation.png │ │ ├── run_sql_general_tab_value.png │ │ ├── run_sql_palette.png │ │ ├── run_sql_warning_icon.png │ │ ├── s3_auth_access.png │ │ ├── s3_get_operation.png │ │ ├── s3_prop_file.png │ │ ├── s3_put_operation.png │ │ ├── select_project_from_git.png │ │ ├── select_wizard_new_project.png │ │ ├── selected_histroyoption_withoutrunningjob.PNG │ │ ├── sftp_get_png.PNG │ │ ├── sftp_put_operation.png │ │ ├── share_project_into_git_repo.png │ │ ├── toolbar_ELTJob.png │ │ ├── toolbar_newELTproject.png │ │ ├── viedata_execution_history.png │ │ ├── view_execution_history_feature.PNG │ │ ├── view_execution_history_window.png │ │ ├── view_histroy_oprtion.PNG │ │ ├── viewdata_window.png │ │ ├── viewexecutiontrackingmessage.png │ │ ├── viewexecutiontrakingbrowsebutton.PNG │ │ ├── viewexecutiontrakingincorrectfilemessage.PNG │ │ ├── viewrecordsdifferentviews.png │ │ └── watchpointadded.png │ ├── references │ │ ├── Date_formats.html │ │ ├── Java_Date_Formats.html │ │ ├── Job_Examples.html │ │ └── SupportedDataTypes.html │ └── refrence_urls │ │ └── refrence_urls.html ├── plugin.xml ├── pom.xml ├── resources │ └── messages.properties ├── src │ └── main │ │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── help │ │ ├── Activator.java │ │ ├── Messages.java │ │ └── aboutDialog │ │ ├── Constants.java │ │ ├── CustomAboutDialog.java │ │ ├── HydrographInstallationDialog.java │ │ ├── InstallationDetailsContentProvider.java │ │ └── InstallationDetailsLabelProvider.java └── xml │ ├── About_Window_Installation_Details.xml │ ├── Components │ ├── Command │ │ ├── Command.xml │ │ ├── ftp.xml │ │ ├── runProgram.xml │ │ └── runSql.xml │ ├── Output │ │ ├── Output.xml │ │ ├── discard.xml │ │ ├── outputDBUpdate.xml │ │ ├── outputFileDelimited.xml │ │ ├── outputFileExcel.xml │ │ ├── outputFileFixedWidth.xml │ │ ├── outputFileMixedScheme.xml │ │ ├── outputHiveParquet.xml │ │ ├── outputHiveTextFile.xml │ │ ├── outputMysql.xml │ │ ├── outputOracle.xml │ │ ├── outputRedshift.xml │ │ ├── outputTeradata.xml │ │ ├── outputXml.xml │ │ └── output_File_Parquet.xml │ ├── components.xml │ ├── input │ │ ├── Input.xml │ │ ├── InputXml.xml │ │ ├── generateRecords.xml │ │ ├── inpuMysql.xml │ │ ├── inputFileDelimited.xml │ │ ├── inputFileFixedWidth.xml │ │ ├── inputFileMixedScheme.xml │ │ ├── inputFileParquet.xml │ │ ├── inputHiveParquet.xml │ │ ├── inputHiveTextFile.xml │ │ ├── inputOracle.xml │ │ ├── inputRedshift.xml │ │ └── inputTeradata.xml │ ├── straightpull │ │ ├── Straightpull.xml │ │ ├── clone.xml │ │ ├── limit.xml │ │ ├── removeDups.xml │ │ ├── sort.xml │ │ └── unionAll.xml │ └── transform │ │ ├── Cumulate.xml │ │ ├── TransformComponents.xml │ │ ├── aggregate.xml │ │ ├── filter.xml │ │ ├── groupCombine.xml │ │ ├── join.xml │ │ ├── lookup.xml │ │ ├── normalize.xml │ │ ├── partitionByExpression.xml │ │ ├── transform.xml │ │ └── uniqueSequence.xml │ ├── How To Steps │ ├── git_check_in_existing_proj.xml │ ├── git_check_in_new_proj.xml │ ├── git_checkout_exst_prj.xml │ ├── git_create_new_project.xml │ ├── git_working_with_git_in_hydrograph.xml │ ├── howToCreateAJob.xml │ ├── howToCreateAnELTProject.xml │ ├── howToImportEngineXMLToUI.xml │ ├── howToImportProjectFilesFromFileSystem.xml │ ├── howToPassHadoopPropertiesToComponent.xml │ ├── howToRunAJobLocally.xml │ ├── howToRunAJobOnCluster.xml │ └── howToSteps.xml │ ├── Hydrograph Features │ └── hydrographfeatures.xml │ ├── Installation and Configuration │ ├── installation.xml │ ├── launchingHydrographOnMacintosh.xml │ ├── launchingHydrographOnWindows.xml │ ├── prerequisitesForMacintosh.xml │ └── prerequisitesForWindows.xml │ ├── Introduction │ ├── GlossaryTerminology.xml │ ├── WhatIsHydrograph.xml │ ├── gettingStarted.xml │ ├── howItWorks.xml │ ├── introduction.xml │ └── overview.xml │ ├── Operation Base Interface │ ├── aggregateTransformBase.xml │ ├── filterBase.xml │ ├── groupCombineTransformBase.xml │ ├── normalizeTransformBase.xml │ ├── operationBaseInterface.xml │ └── transformBase.xml │ ├── References │ ├── FAQs.xml │ ├── dosandDonts.xml │ ├── jobExamples.xml │ ├── operationExamples.xml │ ├── referenceURLs.xml │ ├── references.xml │ ├── releaseNotes.xml │ └── whenShouldIUseHashJoinVsCoJoin.xml │ ├── User Interface │ ├── componentPalette.xml │ ├── console.xml │ ├── jobCanvas.xml │ ├── menuBarToolBar.xml │ ├── parameterGrid.xml │ ├── projectExplorer.xml │ ├── runConfiguration.xml │ └── userInterface.xml │ └── index.xml ├── hydrograph.ui.joblogger ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── joblogger │ ├── Activator.java │ ├── JobLogger.java │ ├── logger │ ├── AbstractJobLogger.java │ ├── ConsoleLogger.java │ └── FileLogger.java │ └── utils │ └── JobLoggerUtils.java ├── hydrograph.ui.logging ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── logging │ ├── Activator.java │ ├── execution │ └── tracking │ │ └── ExecutionTrackingLogger.java │ └── factory │ └── LogFactory.java ├── hydrograph.ui.menus ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── icons │ ├── aggregate_palette.png │ ├── class_obj.gif │ ├── cumulate_palette.png │ ├── cut_o.png │ ├── delete.png │ ├── dis_cut.png │ ├── dis_paste.png │ ├── dis_redo.png │ ├── dis_save.png │ ├── dis_undo.png │ ├── disable_copy_icon.png │ ├── enable_copy_icon.png │ ├── filter_palette.png │ ├── folder_o.png │ ├── import_xml_option.png │ ├── newclass_wiz.gif │ ├── normalize_palette.png │ ├── paste_o.png │ ├── redo_o.png │ ├── sample.gif │ ├── saveAll_o.png │ ├── save_o.png │ ├── transform_palette.png │ └── undo_o.png ├── plugin.xml ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── menus │ ├── Activator.java │ ├── handlers │ ├── AboutDialogHandler.java │ ├── ConsoleHandler.java │ ├── CopyHandler.java │ ├── CutHandler.java │ ├── DeleteHandler.java │ ├── NewCustomClassHandler.java │ ├── PaletteHandler.java │ ├── PasteHandler.java │ ├── ProjectExplorerHandler.java │ ├── RedoHandler.java │ ├── SelectAllHandler.java │ ├── ShowHidePortLabelsHandler.java │ └── UndoHandler.java │ ├── importWizards │ ├── ImportEngineXmlWizard.java │ └── ImportEngineXmlWizardPage.java │ └── messages │ ├── Messages.java │ └── messages.properties ├── hydrograph.ui.model ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ ├── graph │ ├── model │ │ ├── CommentBox.java │ │ ├── Component.java │ │ ├── ComponentExecutionStatus.java │ │ ├── ComponentLabel.java │ │ ├── Container.java │ │ ├── Link.java │ │ ├── LinkComparatorBySourceLocation.java │ │ ├── Model.java │ │ ├── ModelConstants.java │ │ ├── Port.java │ │ ├── PortAlignmentEnum.java │ │ ├── PortDetails.java │ │ ├── PortTypeEnum.java │ │ ├── categories │ │ │ ├── CommandCategory.java │ │ │ ├── DummyCategory.java │ │ │ ├── InputCategory.java │ │ │ ├── OutputCategory.java │ │ │ ├── StraightPullCategory.java │ │ │ ├── SubjobCategory.java │ │ │ └── TransformCategory.java │ │ ├── components │ │ │ ├── Aggregate.java │ │ │ ├── CloneComponent.java │ │ │ ├── Cumulate.java │ │ │ ├── Discard.java │ │ │ ├── FTPComponent.java │ │ │ ├── Filter.java │ │ │ ├── GenerateRecords.java │ │ │ ├── GroupCombine.java │ │ │ ├── IFDelimited.java │ │ │ ├── IFParquet.java │ │ │ ├── IFileMixedScheme.java │ │ │ ├── IFixedWidth.java │ │ │ ├── IHiveParquet.java │ │ │ ├── IHiveTextFile.java │ │ │ ├── IMysql.java │ │ │ ├── IOracle.java │ │ │ ├── IRedshift.java │ │ │ ├── ISRedshift.java │ │ │ ├── ITeradata.java │ │ │ ├── IXml.java │ │ │ ├── InputSubjobComponent.java │ │ │ ├── Join.java │ │ │ ├── JoinComponent.java │ │ │ ├── LimitComponent.java │ │ │ ├── Lookup.java │ │ │ ├── Normalize.java │ │ │ ├── ODBUpdate.java │ │ │ ├── OFDelimited.java │ │ │ ├── OFExcel.java │ │ │ ├── OFMixedScheme.java │ │ │ ├── OFParquet.java │ │ │ ├── OFixedWidth.java │ │ │ ├── OHiveParquet.java │ │ │ ├── OHiveTextFile.java │ │ │ ├── OMysql.java │ │ │ ├── OOracle.java │ │ │ ├── ORedshift.java │ │ │ ├── OSRedShift.java │ │ │ ├── OTeradata.java │ │ │ ├── OXml.java │ │ │ ├── OutputSubjobComponent.java │ │ │ ├── PartitionByExpression.java │ │ │ ├── RemovedupsComponent.java │ │ │ ├── RunProgram.java │ │ │ ├── RunSQL.java │ │ │ ├── SortComponent.java │ │ │ ├── SubjobComponent.java │ │ │ ├── Transform.java │ │ │ ├── UnionallComponent.java │ │ │ ├── UniqueSequence.java │ │ │ └── UnknownComponent.java │ │ ├── helper │ │ │ └── LoggerUtil.java │ │ ├── processor │ │ │ ├── ComponentCategoryRepository.java │ │ │ └── DynamicClassProcessor.java │ │ └── utils │ │ │ ├── ComponentNameValidator.java │ │ │ └── GenerateUniqueJobIdUtil.java │ └── schema │ │ └── propagation │ │ ├── SchemaData.java │ │ ├── SchemaPropagation.java │ │ └── SequenceFieldPropagation.java │ └── model │ └── Activator.java ├── hydrograph.ui.parametergrid ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── plugin.xml ├── pom.xml ├── resources │ ├── ErrorMessages.properties │ └── icons │ │ └── parameter_grid.png └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── parametergrid │ │ ├── Activator.java │ │ ├── actions │ │ └── ParameterGridOpenHandler.java │ │ ├── constants │ │ ├── ErrorMessages.java │ │ ├── MessageType.java │ │ └── MultiParameterFileDialogConstants.java │ │ ├── dialog │ │ ├── LookAheadObjectInputStream.java │ │ ├── MultiParameterFileDialog.java │ │ ├── ParameterGridDialog.java │ │ ├── ParamterValueDialog.java │ │ ├── TableContentProvider.java │ │ ├── models │ │ │ ├── Parameter.java │ │ │ └── ParameterWithFilePath.java │ │ └── support │ │ │ └── ParameterEditingSupport.java │ │ ├── textgridwidget │ │ ├── TextGrid.java │ │ ├── columns │ │ │ ├── TextGridColumnLayout.java │ │ │ └── TextGridRowLayout.java │ │ └── rows │ │ │ └── TextGridRowBuilder.java │ │ └── utils │ │ ├── ParameterFileManager.java │ │ ├── Properties.java │ │ └── SWTResourceManager.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── parametergrid │ ├── textgridwidget │ └── layout │ │ └── ParameterGridLayoutDataTest.java │ └── utils │ └── PropertiesTest.java ├── hydrograph.ui.perspective ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── book.css ├── build.properties ├── css │ └── style.css ├── helpData.xml ├── icons │ ├── ELT.png │ ├── about_img.gif │ ├── alt_about.gif │ ├── app_icon.png │ └── help.png ├── plugin.xml ├── plugin_customization.ini ├── pom.xml ├── resources │ └── messages.properties ├── splash.bmp └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── perspective │ │ ├── Activator.java │ │ ├── Application.java │ │ ├── ApplicationActionBarAdvisor.java │ │ ├── ApplicationWorkbenchAdvisor.java │ │ ├── ApplicationWorkbenchWindowAdvisor.java │ │ ├── Messages.java │ │ ├── Perspective.java │ │ ├── TitleBarPartListener.java │ │ ├── config │ │ ├── ELTPerspectiveConfig.java │ │ ├── ELTPerspectives.java │ │ └── PerspectiveRemover.java │ │ └── dialog │ │ ├── JdkPathDialog.java │ │ └── PreStartActivity.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── perspective │ └── config │ └── ELTPerspectivesTest.java ├── hydrograph.ui.platformspecificplugins ├── .gitignore ├── about.html ├── build.properties ├── feature.xml └── pom.xml ├── hydrograph.ui.product ├── .gitignore ├── hydrograph.ui.perspective.product ├── icons │ ├── 16x16.bmp │ ├── 16x16_8bit.bmp │ ├── 256x256.bmp │ ├── 32x32.bmp │ ├── 32x32_8bit.bmp │ ├── 48x48.bmp │ ├── 48x48_8bit.bmp │ └── icons.icns ├── pom.xml └── resources │ ├── Release_Notes │ ├── Release_Notes_April_2017.txt │ ├── Release_Notes_March_2017.txt │ ├── Release_Notes_May_2017.txt │ ├── phase_2 │ │ ├── Milestone_1.txt │ │ ├── Milestone_2.txt │ │ ├── Milestone_3.txt │ │ └── Milestone_4.txt │ └── phase_3 │ │ ├── Milestone_1.txt │ │ ├── Milestone_2.txt │ │ ├── Milestone_3.txt │ │ └── Milestone_4.txt │ └── config │ ├── Preferences │ └── preferences.properties │ ├── gradle │ ├── build │ │ ├── build.gradle │ │ └── common.gradle │ ├── properties │ │ └── build.properties │ └── settings │ │ └── gradle.prefs │ ├── gradlesettings │ └── org.eclipse.buildship.core.prefs │ ├── icons │ ├── Command_categoryIcon.png │ ├── DBUpdate_canvas.png │ ├── DBUpdate_palette.png │ ├── FTP-Component_canvas.png │ ├── FTP-Component_palette.png │ ├── Input_categoryIcon.png │ ├── Output_categoryIcon.png │ ├── Straightpull_categoryIcon.png │ ├── Transform_categoryIcon.png │ ├── add.png │ ├── advicons │ │ ├── autoadjustcolumns.png │ │ ├── copy_icon.png │ │ ├── deselect.png │ │ ├── deselectAll.png │ │ ├── down.png │ │ ├── export.png │ │ ├── filter.png │ │ ├── lookup.png │ │ ├── refresh.png │ │ ├── reset_sort.png │ │ ├── select.png │ │ ├── selectAll.png │ │ ├── sort_asc.png │ │ ├── sort_desc.png │ │ ├── switchview.png │ │ ├── table.png │ │ ├── up.png │ │ └── warning.png │ ├── aggregate_canvas.png │ ├── aggregate_palette.png │ ├── app_icon.png │ ├── checkall.png │ ├── clear_console.png │ ├── clone_canvas.png │ ├── clone_palette.png │ ├── comment-box-icon.png │ ├── componentFail.png │ ├── componentPending.png │ ├── componentRun.png │ ├── componentSuccess.png │ ├── connection_s16.gif │ ├── connection_s24.gif │ ├── console_scroll_lock.png │ ├── cumulate_canvas.png │ ├── cumulate_palette.png │ ├── delete.png │ ├── delete_icon.png │ ├── discard_canvas.png │ ├── discard_palette.png │ ├── down.png │ ├── down_arrow.png │ ├── dummy-canvas.png │ ├── dummy_palette.png │ ├── editImage.png │ ├── enable_copy_icon.png │ ├── error.png │ ├── export_schema.png │ ├── fileexcel_canvas.png │ ├── fileexcel_palette.png │ ├── filter_canvas.png │ ├── filter_palette.png │ ├── generate_records_canvas.png │ ├── generate_records_palette.png │ ├── graph_property_window.png │ ├── hive_canvas.png │ ├── hive_palette.png │ ├── iconadd.png │ ├── icondelete.png │ ├── import_schema.png │ ├── input_canvas.png │ ├── input_file_canvas.png │ ├── input_file_palette.png │ ├── input_palette.png │ ├── input_subjob_canvas.png │ ├── input_subjob_palette.png │ ├── input_xml_canvas.png │ ├── input_xml_palette.png │ ├── intellisense_icon.png │ ├── join_canvas.png │ ├── join_palette.png │ ├── limit_canvas.png │ ├── limit_palette.png │ ├── lookup_canvas.png │ ├── lookup_palette.png │ ├── multiparamterdropbox.png │ ├── normalize_canvas.png │ ├── normalize_palette.png │ ├── output_file_canvas.png │ ├── output_file_palette.png │ ├── output_subjob_canvas.png │ ├── output_subjob_palette.png │ ├── output_xml_canvas.png │ ├── output_xml_palette.png │ ├── partitionbyexpression_canvas.png │ ├── partitionbyexpression_palette.png │ ├── property_window_icon.png │ ├── pull_schema.png │ ├── rdbms_canvas.png │ ├── rdbms_palette.png │ ├── refresh.png │ ├── removedups_canvas.png │ ├── removedups_palette.png │ ├── runprogram_canvas.png │ ├── runprogram_palette.png │ ├── runsql.png │ ├── runsql_palette.png │ ├── save_o.png │ ├── sort_canvas.png │ ├── sort_palette.png │ ├── stop.png │ ├── subjob_canvas.png │ ├── subjob_categoryIcon.png │ ├── subjob_palette.png │ ├── transform_canvas.png │ ├── transform_palette.png │ ├── uncheckall.png │ ├── unionall_canvas.png │ ├── unionall_palette.png │ ├── unique_sequence_canvas.png │ ├── unique_sequence_palette.png │ ├── up.png │ ├── update.png │ └── warn.png │ ├── logger │ └── logback.xml │ ├── maven │ └── pom.xml │ ├── policy │ └── PolicyConfig.xml │ ├── properties │ └── common.properties │ ├── service │ ├── .gitignore │ ├── config │ │ ├── ServiceConfig.properties │ │ └── log4j.properties │ ├── hydrograph-services-0.1.1.jar │ ├── ojdbc6-11.2.0.4.jar │ ├── tdgssconfig-0.1.jar │ └── terajdbc4-0.1.jar │ ├── xml │ ├── OutputSparkReadShift.xml │ ├── aggregate.xml │ ├── clone.xml │ ├── cumulate.xml │ ├── discard.xml │ ├── filter.xml │ ├── ftpComponent.xml │ ├── generaterecords.xml │ ├── groupcombine.xml │ ├── inputFileMixedScheme.xml │ ├── inputMysql.xml │ ├── inputSparkRedshift.xml │ ├── inputTeradata.xml │ ├── inputdelimited.xml │ ├── inputfileparquet.xml │ ├── inputfixedwidth.xml │ ├── inputhiveparquet.xml │ ├── inputhivetextfile.xml │ ├── inputoracle.xml │ ├── inputsubjob.xml │ ├── inputxml.xml │ ├── join.xml │ ├── limit.xml │ ├── lookup.xml │ ├── normalize.xml │ ├── outputDBUpadte.xml │ ├── outputFileExcel.xml │ ├── outputFileMixedScheme.xml │ ├── outputMysql.xml │ ├── outputTeradata.xml │ ├── outputdelimited.xml │ ├── outputfileparquet.xml │ ├── outputfixedwidth.xml │ ├── outputhiveparquet.xml │ ├── outputhivetextfile.xml │ ├── outputoracle.xml │ ├── outputsubjob.xml │ ├── outputxml.xml │ ├── partitionbyexpression.xml │ ├── removedups.xml │ ├── runprogram.xml │ ├── runsql.xml │ ├── sort.xml │ ├── subjob.xml │ ├── transform.xml │ ├── unionall.xml │ ├── uniquesequence.xml │ └── unknown.xml │ └── xsds │ ├── Common.xsd │ ├── ComponentConfig.xsd │ ├── PolicyConfig.xsd │ ├── Schema.xsd │ ├── debug.xsd │ └── externalOperation │ ├── common.xsd │ ├── expression.xsd │ ├── mapping.xsd │ └── operation.xsd ├── hydrograph.ui.project.structure ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── icon │ ├── filenav_nav.gif │ ├── newprj_wiz.gif │ ├── newprj_wiz.png │ └── prj_obj.gif ├── plugin.xml ├── pom.xml └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── project │ │ └── structure │ │ ├── Activator.java │ │ ├── CustomMessages.java │ │ ├── console │ │ └── HydrographConsole.java │ │ ├── messages.properties │ │ ├── natures │ │ └── ProjectNature.java │ │ └── wizard │ │ ├── CustomWizard.java │ │ ├── ProjectExplorerView.java │ │ ├── ProjectStructureCreator.java │ │ └── WizardNewProjectCreationPage.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── project │ └── structure │ └── TestProjectStructure.java ├── hydrograph.ui.propertywindow ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── icons │ └── run_config.png ├── plugin.xml ├── pom.xml ├── resources │ ├── .gitignore │ └── messages.properties └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── propertywindow │ │ ├── Activator.java │ │ ├── adapters │ │ ├── ELTComponentPropertyAdapter.java │ │ └── IPropertyAdapter.java │ │ ├── constants │ │ └── ELTProperties.java │ │ ├── custom │ │ └── celleditor │ │ │ ├── CustomAbstractComboBoxCellEditor.java │ │ │ └── CustomComboBoxCellEditor.java │ │ ├── datastructures │ │ └── ComboBoxParameter.java │ │ ├── factory │ │ ├── ListenerFactory.java │ │ └── WidgetFactory.java │ │ ├── filemixedschema │ │ ├── ELTMixedSchemeWidget.java │ │ ├── MixedSchemeGridCellModifier.java │ │ ├── MixedSchemeGridLabelProvider.java │ │ └── MixedSchemeGridWidgetBuilder.java │ │ ├── filter │ │ ├── FilterExpressionOperationDialog.java │ │ ├── FilterLogicWidget.java │ │ ├── composites │ │ │ ├── AvailableFieldComposite.java │ │ │ ├── ExpressionComposite.java │ │ │ ├── InputFieldsComposite.java │ │ │ └── OperationComposite.java │ │ └── viewer │ │ │ └── ErrorLogTableViewer.java │ │ ├── fixedwidthschema │ │ ├── ELTFixedWidget.java │ │ ├── FixedWidthGridCellModifier.java │ │ ├── FixedWidthGridLabelProvider.java │ │ ├── FixedWidthGridWidgetBuilder.java │ │ └── TransformSchemaWidget.java │ │ ├── ftp │ │ ├── AuthenticationWidget.java │ │ ├── FTPAuthenticEditorDialog.java │ │ ├── FTPAuthenticEditorUtility.java │ │ ├── FTPOperationConfigDialog.java │ │ ├── FTPOperationConfigUtility.java │ │ ├── FTPProtocolWidget.java │ │ ├── FTPWidgetUtility.java │ │ └── OperationConfigWidget.java │ │ ├── generaterecords │ │ └── schema │ │ │ ├── GenerateRecordsGridCellModifier.java │ │ │ ├── GenerateRecordsGridLabelProvider.java │ │ │ ├── GenerateRecordsGridWidget.java │ │ │ └── GenerateRecordsGridWidgetBuilder.java │ │ ├── handlers │ │ ├── RunConfigHandler.java │ │ └── ShowHidePropertyHelpHandler.java │ │ ├── messagebox │ │ └── ConfirmCancelMessageBox.java │ │ ├── messages │ │ └── Messages.java │ │ ├── property │ │ ├── ComponentConfigrationProperty.java │ │ ├── ComponentMiscellaneousProperties.java │ │ ├── ELTComponenetProperties.java │ │ ├── IPropertyTreeBuilder.java │ │ ├── Property.java │ │ └── PropertyTreeBuilder.java │ │ ├── propertydialog │ │ ├── PropertyDialog.java │ │ ├── PropertyDialogBuilder.java │ │ ├── PropertyDialogButtonBar.java │ │ └── ScrolledCompositeHolder.java │ │ ├── runconfig │ │ ├── EmptyTextListener.java │ │ ├── Notification.java │ │ └── RunConfigDialog.java │ │ ├── runprogram │ │ └── RunComponentWidget.java │ │ ├── schema │ │ └── propagation │ │ │ └── helper │ │ │ └── SchemaPropagationHelper.java │ │ ├── transform │ │ └── viewdata │ │ │ ├── TransformViewDataDialog.java │ │ │ └── TransformViewDataDialogConstants.java │ │ ├── utils │ │ ├── SWTResourceManager.java │ │ └── WordUtils.java │ │ ├── validators │ │ ├── ComponentSchemaMapValidator.java │ │ ├── ComponentValidator.java │ │ └── IComponentValidator.java │ │ └── widgets │ │ ├── customwidget │ │ └── inputXML │ │ │ ├── GenerateSchemaWizard.java │ │ │ ├── InputXMLGenerateSchemaWidget.java │ │ │ ├── SchemaPreviewPage.java │ │ │ └── SourceSelectionPage.java │ │ ├── customwidgets │ │ ├── AbstractWidget.java │ │ ├── DelimiterWidget.java │ │ ├── DropDownWidget.java │ │ ├── ELTBrowseWorkspaceWidget.java │ │ ├── ELTComponentID.java │ │ ├── ELTComponentNameWidget.java │ │ ├── ELTComponentType.java │ │ ├── ELTFilePathWidget.java │ │ ├── ELTJoinMapWidget.java │ │ ├── ELTJoinWidget.java │ │ ├── ELTLookupConfigWidget.java │ │ ├── ELTLookupMapWidget.java │ │ ├── ELTOperationClassWidget.java │ │ ├── ELTRetentionLogicWidget.java │ │ ├── ELTXmlPropertiesContainer.java │ │ ├── ExcelFileNameWidget.java │ │ ├── ExportXSDWidget.java │ │ ├── HiveInputSingleColumnWidget.java │ │ ├── HiveOutputSingleColumnWidget.java │ │ ├── JDBCDriverClassWidget.java │ │ ├── OutputRecordCountWidget.java │ │ ├── PortWidget.java │ │ ├── PropogateWidget.java │ │ ├── RadioButtonsWidget.java │ │ ├── RunSQLQueryWidget.java │ │ ├── SingleColumnWidget.java │ │ ├── TextBoxWithIsParameterCheckBoxWidget.java │ │ ├── TextBoxWithIsParameterCheckBoxWidgetForDatabaseComponents.java │ │ ├── TextBoxWithLabelWidget.java │ │ ├── TextBoxWithLabelWidgetWithoutAnyValidation.java │ │ ├── UpdateByKeysWidget.java │ │ ├── WidgetHelper.java │ │ ├── WorksheetWidget.java │ │ ├── config │ │ │ ├── DropDownConfig.java │ │ │ ├── EditButtonWithLabelConfig.java │ │ │ ├── FilePathConfig.java │ │ │ ├── OperationClassConfig.java │ │ │ ├── RadioButtonConfig.java │ │ │ ├── RuntimeConfig.java │ │ │ ├── SchemaConfig.java │ │ │ ├── SingleColumnGridConfig.java │ │ │ ├── TextBoxWithLableConfig.java │ │ │ └── WidgetConfig.java │ │ ├── databasecomponents │ │ │ ├── DataBaseUtility.java │ │ │ ├── DatabaseTestConnectionWidget.java │ │ │ ├── InputAdditionalParametersDialog.java │ │ │ ├── InputAdditionalParametersWidget.java │ │ │ ├── LoadTypeConfigurationDialog.java │ │ │ ├── LoadTypeConfigurationWidget.java │ │ │ ├── ModifyListenerForDBComp.java │ │ │ ├── OutputAdditionalParametersDialog.java │ │ │ ├── OutputAdditionalParametersWidget.java │ │ │ ├── SQLQueryStatementDialog.java │ │ │ └── SelectionDatabaseWidget.java │ │ ├── excelcomponent │ │ │ ├── DataFormatCustomCellEditior.java │ │ │ ├── DataFormattingEditingSupport.java │ │ │ ├── ExcelFormattingDialog.java │ │ │ ├── ExcelFormattingWidget.java │ │ │ ├── HeaderAndDataFormattingContentProvider.java │ │ │ ├── HeaderAndDataFormattingDialog.java │ │ │ ├── HeaderFormatCustomCellEditior.java │ │ │ ├── HeaderFormattingEditingSupport.java │ │ │ ├── ParameterNameLabelProvider.java │ │ │ └── ParameterValueLabelProvider.java │ │ ├── joinlookupproperty │ │ │ ├── DragDropLookupImp.java │ │ │ ├── JoinContentProvider.java │ │ │ ├── LookupCellModifier.java │ │ │ └── LookupLabelProvider.java │ │ ├── joinproperty │ │ │ ├── ELTJoinConfigGrid.java │ │ │ ├── ELTJoinPortCount.java │ │ │ └── JoinMapGrid.java │ │ ├── lookupproperty │ │ │ ├── ELTLookupConfigGrid.java │ │ │ └── ELTLookupMapWizard.java │ │ ├── mapping │ │ │ ├── datastructures │ │ │ │ ├── MappingDialogButtonBar.java │ │ │ │ └── RowData.java │ │ │ └── tables │ │ │ │ └── inputtable │ │ │ │ ├── InputFieldColumnLabelProvider.java │ │ │ │ ├── InputFieldEditingSupport.java │ │ │ │ └── TableContentProvider.java │ │ ├── metastore │ │ │ ├── ELTExtractMetaStoreDataWidget.java │ │ │ ├── HiveTableSchema.java │ │ │ └── HiveTableSchemaField.java │ │ ├── operational │ │ │ ├── AbstractExpressionComposite.java │ │ │ ├── AggregateCumulateExpressionComposite.java │ │ │ ├── DragDropTransformOpImp.java │ │ │ ├── ExpressionCompositeFactory.java │ │ │ ├── GroupCombineExpressionComposite.java │ │ │ ├── MapAndPassthroughComposite.java │ │ │ ├── NormalizeExpressionComposite.java │ │ │ ├── OperationClassComposite.java │ │ │ ├── OperationClassDeleteDialog.java │ │ │ ├── OperationClassDialog.java │ │ │ ├── OperationGridCellModifier.java │ │ │ ├── OperationLabelProvider.java │ │ │ ├── OperationSystemCellModifier.java │ │ │ ├── OperationSystemLabelProvider.java │ │ │ ├── PropertyGridCellModifier.java │ │ │ ├── PropertyGridInnerCellModifier.java │ │ │ ├── PropertyLabelProvider.java │ │ │ ├── TransformCellEditorFieldValidator.java │ │ │ ├── TransformDialog.java │ │ │ ├── TransformExpressionComposite.java │ │ │ ├── TransformGridContentProvider.java │ │ │ ├── TransformWidget.java │ │ │ └── external │ │ │ │ ├── ExpresssionOperationImportExportComposite.java │ │ │ │ └── ImportExportType.java │ │ ├── runtimeproperty │ │ │ ├── ELTRuntimePropertiesWidget.java │ │ │ ├── PropertyContentProvider.java │ │ │ ├── PropertyLabelProvider.java │ │ │ ├── RunTimePropertyCellModifier.java │ │ │ ├── RuntimeProperties.java │ │ │ └── RuntimePropertyDialog.java │ │ ├── schema │ │ │ ├── ELTGenericSchemaGridWidget.java │ │ │ ├── ELTSchemaGridWidget.java │ │ │ ├── GeneralGridWidgetBuilder.java │ │ │ ├── GridRowLoader.java │ │ │ ├── SchemaGridCellModifier.java │ │ │ ├── SchemaGridContentProvider.java │ │ │ ├── SchemaGridLabelProvider.java │ │ │ ├── XPathGridWidgetBuilder.java │ │ │ ├── XPathSchemaGridCellModifier.java │ │ │ └── XPathSchemaGridWidget.java │ │ └── secondarykeys │ │ │ ├── SecondaryColumnKeysContentProvider.java │ │ │ ├── SecondaryColumnKeysDialog.java │ │ │ ├── SecondaryColumnKeysInformation.java │ │ │ ├── SecondaryColumnKeysLabelProvider.java │ │ │ ├── SecondaryColumnKeysWidget.java │ │ │ └── SecondaryColumnKeysWidgetCellModifier.java │ │ ├── dialog │ │ └── hiveInput │ │ │ ├── HiveFieldDialogCellModifier.java │ │ │ ├── HiveFieldDialogHelper.java │ │ │ ├── HiveFieldDialogLableProvider.java │ │ │ ├── HivePartitionFields.java │ │ │ ├── HivePartitionKeyValueDialog.java │ │ │ └── SingleClickEvent.java │ │ ├── dialogs │ │ ├── ELTOperationClassDialog.java │ │ ├── ExternalSchemaFileSelectionDialog.java │ │ ├── FieldDialog.java │ │ ├── FieldDialogForDBComponents.java │ │ ├── GenericExportFileDialog.java │ │ ├── GenericImportExportFileDialog.java │ │ ├── HiveInputExtractMetaStoreDialog.java │ │ ├── HiveOutputFieldDialog.java │ │ ├── join │ │ │ ├── JoinMapDialog.java │ │ │ ├── support │ │ │ │ └── JoinMappingEditingSupport.java │ │ │ └── utils │ │ │ │ └── JoinMapDialogConstants.java │ │ └── lookup │ │ │ └── LookupMapDialog.java │ │ ├── filterproperty │ │ ├── ELTCellModifier.java │ │ ├── ELTFilterContentProvider.java │ │ ├── ELTFilterLabelProvider.java │ │ ├── ELTFilterProperties.java │ │ ├── ErrorLabelProvider.java │ │ └── TransformMappingOutputTableCellModifier.java │ │ ├── gridwidgets │ │ ├── basic │ │ │ ├── AbstractELTWidget.java │ │ │ ├── ELTDefaultButton.java │ │ │ ├── ELTDefaultCheckBox.java │ │ │ ├── ELTDefaultCombo.java │ │ │ ├── ELTDefaultLable.java │ │ │ ├── ELTDefaultTextBox.java │ │ │ ├── ELTRadioButton.java │ │ │ ├── ELTSWTWidgets.java │ │ │ ├── ELTSaparater.java │ │ │ ├── ELTTable.java │ │ │ └── ELTTableViewer.java │ │ └── container │ │ │ ├── AbstractELTContainerWidget.java │ │ │ ├── ELTDefaultSubgroup.java │ │ │ ├── ELTDefaultSubgroupComposite.java │ │ │ ├── ELTHydroSubGroup.java │ │ │ ├── ELTSchemaSubgroupComposite.java │ │ │ ├── ELTSchemaTableComposite.java │ │ │ ├── ELTSubGroupCompositeWithStack.java │ │ │ └── ELTSubgroupComposite.java │ │ ├── interfaces │ │ └── IOperationClassDialog.java │ │ ├── listeners │ │ ├── DelimiterFocusInListener.java │ │ ├── DelimiterFocusOutListener.java │ │ ├── DelimiterModifyListener.java │ │ ├── DirectoryDialogSelectionListener.java │ │ ├── ELTBrowseFileListener.java │ │ ├── ELTCheckFileExtensionListener.java │ │ ├── ELTCreateNewClassListener.java │ │ ├── ELTEmptyTextModifyListener.java │ │ ├── ELTEnableButtonListener.java │ │ ├── ELTEventChangeListener.java │ │ ├── ELTFileDialogSelectionListener.java │ │ ├── ELTFocusGainedListener.java │ │ ├── ELTFocusOutListener.java │ │ ├── ELTInputCountListener.java │ │ ├── ELTModifyListener.java │ │ ├── ELTMouseDoubleClickListener.java │ │ ├── ELTMouseDownListener.java │ │ ├── ELTNormalFocusOutListener.java │ │ ├── ELTOpenFileEditorListener.java │ │ ├── ELTRuntimeButtonClickListener.java │ │ ├── ELTSchemaDialogSelectionListener.java │ │ ├── ELTSelectionListener.java │ │ ├── ELTSelectionTaskListener.java │ │ ├── ELTShortcutKeyGridListener.java │ │ ├── ELTVerifyComponentNameListener.java │ │ ├── ELTVerifyNumbericListener.java │ │ ├── ELTVerifySequenceFieldName.java │ │ ├── ELTVerifyTextListener.java │ │ ├── ExtraURLParameterValidationForDBComponents.java │ │ ├── FilePathModifyListener.java │ │ ├── FocusInExcelFileNameListener.java │ │ ├── FocusInListener.java │ │ ├── FocusOutExcelFileNameListener.java │ │ ├── IELTListener.java │ │ ├── JoinInputCountFocusOutListener.java │ │ ├── ListenerHelper.java │ │ ├── ModifyAlphaNumbericTextListener.java │ │ ├── MouseActionListener.java │ │ ├── OperationClassComboChangeListener.java │ │ ├── OverWriteWidgetSelectionListener.java │ │ ├── PortFocusInListener.java │ │ ├── PortFocusOutListener.java │ │ ├── VerifyCharacterLimitListener.java │ │ ├── VerifyDigitLimitNumericListener.java │ │ ├── VerifyExcelFileNameListener.java │ │ ├── VerifyNumbericOrParameterFocusInListener.java │ │ ├── VerifyNumbericOrParameterFocusOutListener.java │ │ ├── VerifyNumericAndParameterForDBComponents.java │ │ ├── VerifyNumericAndParameterListener.java │ │ ├── VerifyTeraDataFastLoadOption.java │ │ ├── XmlFilePathModifyListener.java │ │ ├── extended │ │ │ └── GridCellEditorListener.java │ │ └── grid │ │ │ ├── DisposeSchemaGridListener.java │ │ │ ├── ELTCellEditorIsEmptyValidator.java │ │ │ ├── ELTCellEditorIsNumericValidator.java │ │ │ ├── ELTCellEditorTransformValidator.java │ │ │ ├── ELTGridAddSelectionListener.java │ │ │ ├── ELTGridDeleteAllSelectionListener.java │ │ │ ├── ELTGridDeleteSelectionListener.java │ │ │ ├── ELTGridDetails.java │ │ │ ├── ELTGridMouseDoubleClickListener.java │ │ │ ├── ELTGridMouseDownListener.java │ │ │ ├── GridChangeListener.java │ │ │ ├── KeyDownSchemaGridListener.java │ │ │ ├── MouseDownSchemaGridListener.java │ │ │ ├── MouseExitSchemaGridListener.java │ │ │ ├── MouseHoverOnSchemaGridListener.java │ │ │ ├── MouseMoveOnSchemaGridListener.java │ │ │ ├── schema │ │ │ └── ELTCellEditorFieldValidator.java │ │ │ └── transform │ │ │ ├── ELTTransforAddOpSysSelectionListener.java │ │ │ ├── ELTTransforAddPropValueListener.java │ │ │ ├── ELTTransforAddSelectionListener.java │ │ │ └── ELTTransformDeleteSelectionListener.java │ │ ├── utility │ │ ├── CustomizeNewClassWizardPage.java │ │ ├── DataType.java │ │ ├── DragDropOperation.java │ │ ├── DragDropUtility.java │ │ ├── Extensions.java │ │ ├── FilterOperationClassUtility.java │ │ ├── FilterOperationExpressionValidation.java │ │ ├── GridComparator.java │ │ ├── GridWidgetCommonBuilder.java │ │ ├── MouseWheelScrollingOnComposite.java │ │ ├── OutputRecordCountUtility.java │ │ ├── ResourceFileSelectionDialog.java │ │ ├── SchemaButtonsSyncUtility.java │ │ ├── SchemaRowValidation.java │ │ ├── SchemaSyncUtility.java │ │ ├── SubjobUtility.java │ │ └── WidgetUtility.java │ │ └── xmlPropertiesContainer │ │ └── XMLTextContainer.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── propertywindow │ ├── adapters │ └── ELTComponentPropertyAdapterTest.java │ ├── constants │ └── ELTPropertiesTest.java │ ├── property │ ├── PropertyTest.java │ └── PropertyTreeBuilderTest.java │ └── testdata │ ├── ComponentModel.java │ ├── PropertyStore.java │ └── RawProperties.java ├── hydrograph.ui.theme ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── css │ ├── dark │ │ ├── e4-dark_basestyle.css │ │ ├── e4-dark_globalstyle.css │ │ ├── e4-dark_partstyle.css │ │ └── e4-dark_preferencestyle.css │ ├── e4-dark.css │ ├── e4-dark_mac.css │ ├── e4-dark_win.css │ ├── e4_basestyle.css │ ├── e4_classic_win7.css │ ├── e4_classic_winxp.css │ ├── e4_default_gtk.css │ ├── e4_default_mac.css │ ├── e4_default_mru_on_win7.css │ ├── e4_default_win.css │ ├── e4_default_winxp_blu.css │ ├── e4_default_winxp_olv.css │ ├── high-contrast.css │ ├── hydroblue.css │ ├── hydrodark.css │ └── hydroteal.css ├── images │ ├── dragHandle.png │ ├── gtkHandle.png │ ├── gtkTSFrame.png │ ├── macGrey.png │ ├── macHandle.png │ ├── macTSFrame.png │ ├── win7.png │ ├── win7Handle.png │ ├── win7TSFrame.png │ ├── winClassicHandle.png │ ├── winClassicTSFrame.png │ ├── winXPBluHandle.png │ ├── winXPBluTSFrame.png │ ├── winXPBlue.png │ ├── winXPHandle.png │ ├── winXPOlive.png │ └── winXPTSFrame.png ├── plugin.properties ├── plugin.xml ├── pom.xml └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── theme │ └── Activator.java ├── hydrograph.ui.tooltip ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml ├── resources │ └── tooltipErrorMessages.properties └── src │ └── main │ └── java │ └── hydrograph │ └── ui │ └── tooltip │ ├── pluginactivator │ └── Activator.java │ ├── tooltips │ ├── ComponentTooltip.java │ ├── Messages.java │ └── PaletteToolTip.java │ └── utils │ └── ToolTipUtils.java ├── hydrograph.ui.validators ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml ├── resources │ └── messages.properties └── src │ ├── main │ └── java │ │ └── hydrograph │ │ └── ui │ │ └── validators │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── impl │ │ ├── AdditionalParamDBValidationRule.java │ │ ├── BooleanOrParameterValidationRule.java │ │ ├── ClassNameValidatorRule.java │ │ ├── DatabaseKeyValidation.java │ │ ├── FTPAuthenticationValidator.java │ │ ├── FTPBooleanValidation.java │ │ ├── FTPOperationParamValidator.java │ │ ├── FTPProtocolSelectionValidator.java │ │ ├── FileExistsValidatorRule.java │ │ ├── FilterDataValidation.java │ │ ├── IValidator.java │ │ ├── IntegerOrParameterValidationRule.java │ │ ├── IntegerValidatorRule.java │ │ ├── JoinConfigValidationRule.java │ │ ├── JoinMappingValidationRule.java │ │ ├── KeyFieldsValidationRule.java │ │ ├── LongValidatorRule.java │ │ ├── LookupConfigValidationRule.java │ │ ├── LookupMappingValidationRule.java │ │ ├── MixedSchemeGridValidationRule.java │ │ ├── NonBlankStringValidatorRule.java │ │ ├── NonEmptyStringValidatorRule.java │ │ ├── NormalizeMappingValidator.java │ │ ├── PortValidationRule.java │ │ ├── RuntimePropertyValueValidationRule.java │ │ ├── SchemaGridValidationRule.java │ │ ├── SecondaryColumnKeyValidation.java │ │ ├── SortComponentKeysFieldsValidationRule.java │ │ ├── ToggleSelectionValidationRule.java │ │ ├── TransformMappingValidationRule.java │ │ ├── TransformSchemaGridValidationRule.java │ │ ├── WorksheetNameValidationRule.java │ │ └── XPathSchemaGridValidationRule.java │ │ └── utils │ │ └── ValidatorUtility.java │ └── test │ └── java │ └── hydrograph │ └── ui │ └── validators │ └── impl │ └── test │ └── MixedSchemeGridValidationRuleTest.java └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hydrograph.engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/gradle.properties -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/testData/Input/all.txt -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/delimitedInputFile1.txt: -------------------------------------------------------------------------------- 1 | 20,Low,hhfh 2 | 30,High,xjfhgk 3 | 40,Med,kityi -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/dep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/testData/Input/dep.txt -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/dep1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/testData/Input/dep1.txt -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/testData/Input/file.txt -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/fixed.txt: -------------------------------------------------------------------------------- 1 | 123abc 2 | 456xyz -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/i1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/i2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/i3.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.command-line/testData/Input/input.txt -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.command-line/testData/Input/newTeraInputFile.txt: -------------------------------------------------------------------------------- 1 | sdjs,464.34 2 | sdkfh,56786.45 3 | dfkdl,676.72 -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.core/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.core/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.core/testData/XMLFiles/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.core/testData/XMLFiles/schema.xml -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.core/testData/XMLFiles/schema2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.core/testData/XMLFiles/schema2.xml -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.expression/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.expression/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.expression/Expression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.expression/Expression.class -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.expression/ExpressionEditor.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.expression/ExpressionEditor.g4 -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.expression/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.expression/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.plugin/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.plugin/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.spark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.spark/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.spark/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.spark/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.transformation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.transformation/.gitignore -------------------------------------------------------------------------------- /hydrograph.engine/hydrograph.engine.transformation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/hydrograph.engine.transformation/build.gradle -------------------------------------------------------------------------------- /hydrograph.engine/libs/oracle-ojdbc6-11.2.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/libs/oracle-ojdbc6-11.2.0.4.jar -------------------------------------------------------------------------------- /hydrograph.engine/libs/teradata-tdgssconfig-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/libs/teradata-tdgssconfig-0.1.jar -------------------------------------------------------------------------------- /hydrograph.engine/libs/teradata-terajdbc4-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/libs/teradata-terajdbc4-0.1.jar -------------------------------------------------------------------------------- /hydrograph.engine/publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/publish.gradle -------------------------------------------------------------------------------- /hydrograph.engine/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/settings.gradle -------------------------------------------------------------------------------- /hydrograph.engine/version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.engine/version.gradle -------------------------------------------------------------------------------- /hydrograph.server/hydrograph.server.debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.server/hydrograph.server.debug/.gitignore -------------------------------------------------------------------------------- /hydrograph.server/hydrograph.server.debug/QueryParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.server/hydrograph.server.debug/QueryParser.g4 -------------------------------------------------------------------------------- /hydrograph.server/hydrograph.server.debug/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.server/hydrograph.server.debug/build.gradle -------------------------------------------------------------------------------- /hydrograph.server/hydrograph.server.debug/src/main/resources/jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.server/hydrograph.server.debug/src/main/resources/jaas.conf -------------------------------------------------------------------------------- /hydrograph.server/hydrograph.server.execution.tracking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.server/hydrograph.server.execution.tracking/.gitignore -------------------------------------------------------------------------------- /hydrograph.server/hydrograph.server.execution.tracking/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.server/hydrograph.server.execution.tracking/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /.project 3 | -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.datastructures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.datastructures/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.datastructures/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.datastructures/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.datastructures/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.datastructures/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.datastructures/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.datastructures/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.datastructures/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.datastructures/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.interfaces/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.interfaces/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.interfaces/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.interfaces/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.interfaces/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.interfaces/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.interfaces/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.interfaces/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common.interfaces/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common.interfaces/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.common/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.communication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.communication/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.communication/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.communication/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.communication/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.communication/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.communication/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.communication/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.communication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.communication/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.dataviewer/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.dataviewer/resources/messages.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.engine/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.engine/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.engine/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.engine/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.engine/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.engine/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.engine/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.engine/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.engine/src/main/java/hydrograph/ui/engine/ui/util/.gitignore: -------------------------------------------------------------------------------- 1 | /ValidateTargetXML.JAVA 2 | -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/resources/gradle_update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/resources/gradle_update.txt -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.expression.editor/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.expression.editor/resources/icons/delete.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph.figure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph.figure/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph.figure/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph.figure/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph.figure/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph.figure/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph.figure/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph.figure/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph.figure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph.figure/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/File.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/New_File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/New_File.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/OpenFile1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/OpenFile1.jpg -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/aggregate_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/aggregate_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/class_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/class_obj.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/comment-box-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/comment-box-icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/cut_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/cut_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/debug_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/debug_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/delete.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_cancel.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_cut.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_paste.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_redo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_save.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/dis_undo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/disable_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/disable_copy_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/enable_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/enable_copy_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/filter_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/filter_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/folder_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/folder_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/job_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/job_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/new_file_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/new_file_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/newclass_wiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/newclass_wiz.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/paste_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/paste_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/redo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/redo_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/remove_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/remove_debug.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/replay.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/run.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/saveAll_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/saveAll_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/save_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/save_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/stop_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/stop_job.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/transform_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/transform_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/icons/undo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/icons/undo_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.graph/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.graph/resources/messages.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/Unknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/Unknown.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/command/FTP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/command/FTP.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/command/Run_Program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/command/Run_Program.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/command/Run_Sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/command/Run_Sql.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/input/Input_Mysql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/input/Input_Mysql.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/input/Input_Oracle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/input/Input_Oracle.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/input/Input_Xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/input/Input_Xml.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/output/DBUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/output/DBUpdate.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/output/Discard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/output/Discard.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/output/Output_Mysql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/output/Output_Mysql.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/output/Output_Xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/output/Output_Xml.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/straightpull/Clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/straightpull/Clone.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/straightpull/Limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/straightpull/Limit.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/straightpull/Sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/straightpull/Sort.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Aggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Aggregate.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Cumulate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Cumulate.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Filter.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Join.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Lookup.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Normalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Normalize.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Components/transform/Transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Components/transform/Transform.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Hydrograph Features/View_Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Hydrograph Features/View_Data.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/Introduction/Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/Introduction/Overview.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/BSD3LicenseInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/BSD3LicenseInfo.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/BSDLicenseInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/BSDLicenseInfo.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/CDDL-1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/CDDL-1.0.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/JDKLicense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/JDKLicense.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/MITLicense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/MITLicense.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/P2Repository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/P2Repository.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/License Info/janinoLicenseInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/License Info/janinoLicenseInfo.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/User Interface/Job_Canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/User Interface/Job_Canvas.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/User Interface/Job_Console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/User Interface/Job_Console.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/User Interface/Menu_Tool_Bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/User Interface/Menu_Tool_Bar.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/User Interface/Parameter_Grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/User Interface/Parameter_Grid.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/concepts/maintopic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/concepts/maintopic.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/concepts/subtopic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/concepts/subtopic.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/concepts/subtopic2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/concepts/subtopic2.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/css/style.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/gettingstarted/maintopic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/gettingstarted/maintopic.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/gettingstarted/subtopic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/gettingstarted/subtopic.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/gettingstarted/subtopic2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/gettingstarted/subtopic2.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/13_Drag_Input_File1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/13_Drag_Input_File1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/17_Drag_Input_File2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/17_Drag_Input_File2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/21_Drag_Join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/21_Drag_Join.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/23_Join_Properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/23_Join_Properties.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/25_Join_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/25_Join_Configuration.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/28_Join_Mapping_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/28_Join_Mapping_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/30_Join_Schema_Tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/30_Join_Schema_Tab.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/31_Drag_Aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/31_Drag_Aggregate.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/32_Connect_Aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/32_Connect_Aggregate.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/33_Aggregate_Properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/33_Aggregate_Properties.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/34_Aggregate_Key_Fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/34_Aggregate_Key_Fields.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/39_Aggregate_Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/39_Aggregate_Schema.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/40_Drag_Clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/40_Drag_Clone.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/42_Drag_Multiple_Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/42_Drag_Multiple_Output.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/46_Output_File1_Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/46_Output_File1_Schema.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/49_Complete_Job_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/49_Complete_Job_Flow.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/50_Save_Job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/50_Save_Job.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/51_Run_Job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/51_Run_Job.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/52_Run_Job_in_Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/52_Run_Job_in_Progress.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/57_Output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/57_Output1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/58_Output2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/58_Output2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/59_Output3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/59_Output3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Key_Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Key_Field.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Mapping_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Mapping_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Mapping_View1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Mapping_View1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Secondary_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Aggregate_Secondary_keys.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Branch_Selection1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Branch_Selection1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Branch_Selection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Branch_Selection2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Browse_Location_Import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Browse_Location_Import.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Checking_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Checking_in.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export4.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Export5.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_For_Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_For_Export.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_GIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_GIT.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Phase_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Phase_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Properties_General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Properties_General.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Validation_Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Validation_Error.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Clone_Validation_Warning.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Clone_Validation_Warning.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Component_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Component_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Component_Tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Component_Tooltip.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Configure_Repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Configure_Repo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Copy_Repo_URL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Copy_Repo_URL.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Key_Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Key_Field.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Mapping_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Mapping_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Mapping_View1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Mapping_View1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Secondary_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Cumulate_Secondary_keys.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Execution_Tracking_4.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/File_Import_Option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/File_Import_Option.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Filer_Logic_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Filer_Logic_Window.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Files_on_Hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Files_on_Hadoop.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Filter_Canvas.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Filter_Canvas.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Filter_Class.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Filter_Class.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Filter_Palette.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Filter_Palette.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Filter_Phase_Validation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Filter_Phase_Validation.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Force_Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Force_Update.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/GIT_Imported_Job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/GIT_Imported_Job.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Generate_Records_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Generate_Records_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Generate_Records_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Generate_Records_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Git_Import_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Git_Import_option.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Git_URI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Git_URI.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Git_add_to_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Git_add_to_index.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Git_branch_empty_repo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Git_branch_empty_repo.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Git_chk_homedir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Git_chk_homedir.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Github_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Github_check.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/GroupCombine_Key_Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/GroupCombine_Key_Field.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/GroupCombine_Palette.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/GroupCombine_Palette.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Group_Combine_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Group_Combine_Icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Home_Directory_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Home_Directory_Window.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Hydrograph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Hydrograph.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/IF_Delim_Safe_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/IF_Delim_Safe_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML4.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML5.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Import_Engine_XML6.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_SchemaTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_SchemaTab.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_error_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_error_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_warning_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Mysql_warning_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Redshift_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Redshift_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Redshift_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Redshift_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Redshift_Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Redshift_Schema.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Xml_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Xml_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_Xml_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_Xml_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_file.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_file1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_file2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Input_file3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Input_file3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Job_Console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Job_Console.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Job_run_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Job_run_progress.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Job_successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Job_successful.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Join_Mapping_View4.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Join_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Join_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Join_canvas.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Join_canvas.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_mac4.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_windows1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_windows1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_windows2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_windows2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Launch_windows3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Launch_windows3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Count_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Count_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Phase_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Phase_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Properties_General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Properties_General.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Validation_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Validation_Error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Limit_Validation_Warning.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Limit_Validation_Warning.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Configuration.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_view1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_view1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_view2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_view3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Mapping_view3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Palette.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Palette.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Properties_General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Properties_General.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Properties_Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Properties_Schema.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Validation_Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Validation_Error.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Validation_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lkp_Validation_Warning.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Local_option1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Local_option1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Configuration.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Mapping_View3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Schema_Tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Lookup_Schema_Tab.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Menu_Bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Menu_Bar.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/New_Repo_Creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/New_Repo_Creation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Mapping_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Mapping_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Mapping_View1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Mapping_View1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Normalize_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/OF_Delim_Safe_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/OF_Delim_Safe_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Discard_Canvas.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Discard_Canvas.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Discard_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Discard_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Mysql_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Mysql_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Mysql_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Mysql_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Mysql_error_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Mysql_error_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Xml_Canvas.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Xml_Canvas.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_Xml_Palette.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_Xml_Palette.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_file1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Output_file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Output_file2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Param_Grid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Param_Grid2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Parameter_Grid_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Parameter_Grid_window.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Partition_Editor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Partition_Editor.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Partition_Keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Partition_Keys.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Path_Repo_URI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Path_Repo_URI.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Phase_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Phase_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Project_Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Project_Explorer.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Projects_From_Git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Projects_From_Git.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Pull_Schema_Transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Pull_Schema_Transform.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Push.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Push_Repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Push_Repo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Pushing_Complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Pushing_Complete.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Pushing_Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Pushing_Process.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remote_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remote_option.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remote_option1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remote_option1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remote_option2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remote_option2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remote_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remote_results.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Key_Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Key_Field.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Warning.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Remove_Dups_Warning.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Right_click_option.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Right_click_option.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_Button.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_Configuration.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_Program_warning.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Run_config.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Search_Component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Search_Component.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Select_GIT_Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Select_GIT_Project.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Share_Project_GIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Share_Project_GIT.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Show_in_Repo_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Show_in_Repo_View.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Sort_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Sort_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Sort_Key_Fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Sort_Key_Fields.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Sort_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Sort_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Sort_Phase_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Sort_Phase_Validation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Sort_Validation_Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Sort_Validation_Error.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Stop_icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Stop_icon.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Tool_Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Tool_Bar.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Transform_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Transform_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Transform_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Transform_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Union_All_Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Union_All_Canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Union_All_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Union_All_Palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Update_Schema.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Update_Schema.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/Utility_on_Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/Utility_on_Cluster.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/addwatchpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/addwatchpoint.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/app_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/auth_sftp_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/auth_sftp_key.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/bitwiselogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/bitwiselogo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/capitalOneLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/capitalOneLogo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/category_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/category_pane.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/commit_ELT_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/commit_ELT_project.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/console_buffer_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/console_buffer_size.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_icon_error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_icon_warning.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_schema_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_schema_tab.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_update_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/dbupdate_update_keys.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/elt_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/elt_job.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/expression_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/expression_editor.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/expression_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/expression_pane.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/field_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/field_pane.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_auth_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_auth_error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_error_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_error_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_general_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_general_error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_general_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_general_value.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/ftp_warning_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/ftp_warning_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/function_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/function_pane.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_add_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_add_index.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_branch_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_branch_selection.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_clone_uri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_clone_uri.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_commit.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_commit_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_commit_selection.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_configuration.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_push_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_push_result.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_push_upstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_push_upstream.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_select_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_select_wizard.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/git_staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/git_staging.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/github.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/importproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/importproject.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/input_oracle_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/input_oracle_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/input_oracle_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/input_oracle_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/input_teradata_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/input_teradata_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/input_teradata_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/input_teradata_schema.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/input_xml_error_icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/input_xml_error_icon.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/jar_added_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/jar_added_window.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/job_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/job_parameters.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/join_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/join_config.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/join_input_cnt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/join_input_cnt.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/join_map_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/join_map_view.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/join_prop_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/join_prop_general.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/join_schema_tab_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/join_schema_tab_v.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/join_validation_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/join_validation_error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/jumptopage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/jumptopage.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/new_ELT_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/new_ELT_project.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/new_job_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/new_job_window.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/op_class_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/op_class_1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/op_class_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/op_class_2.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/op_class_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/op_class_3.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/op_class_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/op_class_6.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/op_class_fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/op_class_fig5.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/operation_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/operation_class.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/operation_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/operation_fields.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/output.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/output1.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/output_oracle_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/output_oracle_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/output_oracle_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/output_oracle_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/output_oracle_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/output_oracle_schema.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/output_xml_error_icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/output_xml_error_icon.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/pagination.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/properties_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/properties_file.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/push_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/push_results.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/run_sql_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/run_sql_canvas.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/run_sql_error_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/run_sql_error_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/run_sql_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/run_sql_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/run_sql_warning_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/run_sql_warning_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/s3_auth_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/s3_auth_access.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/s3_get_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/s3_get_operation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/s3_prop_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/s3_prop_file.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/s3_put_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/s3_put_operation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/sftp_get_png.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/sftp_get_png.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/sftp_put_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/sftp_put_operation.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/toolbar_ELTJob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/toolbar_ELTJob.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/toolbar_newELTproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/toolbar_newELTproject.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/view_histroy_oprtion.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/view_histroy_oprtion.PNG -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/viewdata_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/viewdata_window.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/images/watchpointadded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/images/watchpointadded.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/references/Date_formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/references/Date_formats.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/references/Job_Examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/references/Job_Examples.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/html/refrence_urls/refrence_urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/html/refrence_urls/refrence_urls.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/resources/messages.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Command/Command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Command/Command.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Command/ftp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Command/ftp.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Command/runProgram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Command/runProgram.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Command/runSql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Command/runSql.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Output/Output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Output/Output.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Output/discard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Output/discard.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Output/outputMysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Output/outputMysql.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/Output/outputXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/Output/outputXml.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/components.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/input/Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/input/Input.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/input/InputXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/input/InputXml.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/input/inpuMysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/input/inpuMysql.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/input/inputOracle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/input/inputOracle.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/straightpull/clone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/straightpull/clone.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/straightpull/limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/straightpull/limit.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/straightpull/sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/straightpull/sort.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/transform/Cumulate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/transform/Cumulate.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/transform/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/transform/filter.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/transform/join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/transform/join.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Components/transform/lookup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Components/transform/lookup.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/How To Steps/howToCreateAJob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/How To Steps/howToCreateAJob.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/How To Steps/howToSteps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/How To Steps/howToSteps.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Introduction/WhatIsHydrograph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Introduction/WhatIsHydrograph.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Introduction/gettingStarted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Introduction/gettingStarted.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Introduction/howItWorks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Introduction/howItWorks.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Introduction/introduction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Introduction/introduction.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/Introduction/overview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/Introduction/overview.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/FAQs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/FAQs.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/dosandDonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/dosandDonts.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/jobExamples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/jobExamples.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/operationExamples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/operationExamples.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/referenceURLs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/referenceURLs.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/references.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/references.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/References/releaseNotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/References/releaseNotes.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/User Interface/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/User Interface/console.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/User Interface/jobCanvas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/User Interface/jobCanvas.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/User Interface/menuBarToolBar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/User Interface/menuBarToolBar.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/User Interface/parameterGrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/User Interface/parameterGrid.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/User Interface/userInterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/User Interface/userInterface.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.help/xml/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.help/xml/index.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.joblogger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.joblogger/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.joblogger/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.joblogger/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.joblogger/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.joblogger/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.joblogger/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.joblogger/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.joblogger/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.joblogger/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.logging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.logging/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.logging/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.logging/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.logging/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.logging/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.logging/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.logging/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.logging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.logging/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/aggregate_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/aggregate_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/class_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/class_obj.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/cumulate_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/cumulate_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/cut_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/cut_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/delete.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/dis_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/dis_cut.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/dis_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/dis_paste.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/dis_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/dis_redo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/dis_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/dis_save.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/dis_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/dis_undo.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/disable_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/disable_copy_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/enable_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/enable_copy_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/filter_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/filter_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/folder_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/folder_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/import_xml_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/import_xml_option.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/newclass_wiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/newclass_wiz.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/normalize_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/normalize_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/paste_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/paste_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/redo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/redo_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/sample.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/saveAll_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/saveAll_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/save_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/save_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/transform_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/transform_palette.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/icons/undo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/icons/undo_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.menus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.menus/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.model/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.model/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.model/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.model/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.model/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.model/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.parametergrid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.parametergrid/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.parametergrid/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.parametergrid/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.parametergrid/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.parametergrid/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.parametergrid/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.parametergrid/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.parametergrid/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.parametergrid/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.parametergrid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.parametergrid/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/book.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/css/style.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/helpData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/helpData.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/icons/ELT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/icons/ELT.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/icons/about_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/icons/about_img.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/icons/alt_about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/icons/alt_about.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/icons/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/icons/app_icon.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/icons/help.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/plugin_customization.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/plugin_customization.ini -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/resources/messages.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.perspective/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.perspective/splash.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.platformspecificplugins/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.project 4 | -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.platformspecificplugins/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.platformspecificplugins/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.platformspecificplugins/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.platformspecificplugins/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.platformspecificplugins/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.platformspecificplugins/feature.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.platformspecificplugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.platformspecificplugins/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.project 4 | -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/hydrograph.ui.perspective.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/hydrograph.ui.perspective.product -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/16x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/16x16.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/16x16_8bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/16x16_8bit.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/256x256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/256x256.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/32x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/32x32.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/32x32_8bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/32x32_8bit.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/48x48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/48x48.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/48x48_8bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/48x48_8bit.bmp -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/icons/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/icons/icons.icns -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/add.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/delete.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/down.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/error.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/iconadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/iconadd.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/refresh.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/runsql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/runsql.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/save_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/save_o.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/stop.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/up.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/update.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/icons/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/icons/warn.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/maven/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/aggregate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/aggregate.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/clone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/clone.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/cumulate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/cumulate.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/discard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/discard.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/filter.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/inputxml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/inputxml.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/join.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/limit.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/lookup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/lookup.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/normalize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/normalize.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/outputxml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/outputxml.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/runsql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/runsql.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/sort.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/subjob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/subjob.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/transform.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/unionall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/unionall.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xml/unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xml/unknown.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xsds/Common.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xsds/Common.xsd -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xsds/Schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xsds/Schema.xsd -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.product/resources/config/xsds/debug.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.product/resources/config/xsds/debug.xsd -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/icon/filenav_nav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/icon/filenav_nav.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/icon/newprj_wiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/icon/newprj_wiz.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/icon/newprj_wiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/icon/newprj_wiz.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/icon/prj_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/icon/prj_obj.gif -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.project.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.project.structure/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/icons/run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/icons/run_config.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.propertywindow/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.propertywindow/resources/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_basestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_basestyle.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_globalstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_globalstyle.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_partstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_partstyle.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_preferencestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/dark/e4-dark_preferencestyle.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4-dark.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4-dark_mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4-dark_mac.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4-dark_win.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4-dark_win.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_basestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_basestyle.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_classic_win7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_classic_win7.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_classic_winxp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_classic_winxp.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_default_gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_default_gtk.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_default_mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_default_mac.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_default_mru_on_win7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_default_mru_on_win7.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_default_win.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_default_win.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_default_winxp_blu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_default_winxp_blu.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/e4_default_winxp_olv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/e4_default_winxp_olv.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/high-contrast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/high-contrast.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/hydroblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/hydroblue.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/hydrodark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/hydrodark.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/css/hydroteal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/css/hydroteal.css -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/dragHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/dragHandle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/gtkHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/gtkHandle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/gtkTSFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/gtkTSFrame.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/macGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/macGrey.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/macHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/macHandle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/macTSFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/macTSFrame.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/win7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/win7.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/win7Handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/win7Handle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/win7TSFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/win7TSFrame.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winClassicHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winClassicHandle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winClassicTSFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winClassicTSFrame.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winXPBluHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winXPBluHandle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winXPBluTSFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winXPBluTSFrame.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winXPBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winXPBlue.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winXPHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winXPHandle.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winXPOlive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winXPOlive.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/images/winXPTSFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/images/winXPTSFrame.png -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/plugin.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/plugin.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.theme/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.theme/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.tooltip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.tooltip/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.tooltip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.tooltip/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.tooltip/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.tooltip/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.tooltip/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.tooltip/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.tooltip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.tooltip/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.validators/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.validators/.gitignore -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.validators/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.validators/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.validators/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.validators/about.html -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.validators/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.validators/build.properties -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.validators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.validators/pom.xml -------------------------------------------------------------------------------- /hydrograph.ui/hydrograph.ui.validators/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/hydrograph.ui.validators/resources/messages.properties -------------------------------------------------------------------------------- /hydrograph.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitwiseInc/Hydrograph/HEAD/hydrograph.ui/pom.xml --------------------------------------------------------------------------------