diff --git a/LINQ/Drivers/NetCDF/CDFDataSet.vb b/LINQ/Drivers/NetCDF/CDFDataSet.vb
index f24d194..fdc4c49 100644
--- a/LINQ/Drivers/NetCDF/CDFDataSet.vb
+++ b/LINQ/Drivers/NetCDF/CDFDataSet.vb
@@ -1,4 +1,46 @@
-Imports LINQ.Runtime.Drivers
+#Region "Microsoft.VisualBasic::6b9b62435842858d057df49f23e18377, LINQ\Drivers\NetCDF\CDFDataSet.vb"
+
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
+
+
+
+ ' /********************************************************************************/
+
+ ' Summaries:
+
+ ' Class CDFDataSet
+ '
+ ' Constructor: (+1 Overloads) Sub New
+ ' Function: ReadFromUri
+ '
+ ' /********************************************************************************/
+
+#End Region
+
+Imports LINQ.Runtime.Drivers
Public Class CDFDataSet : Inherits DataSourceDriver
@@ -11,3 +53,4 @@ Public Class CDFDataSet : Inherits DataSourceDriver
Throw New NotImplementedException()
End Function
End Class
+
diff --git a/LINQ/Drivers/Sqlite3/TableReader.vb b/LINQ/Drivers/Sqlite3/TableReader.vb
index 5e4098f..8c1f773 100644
--- a/LINQ/Drivers/Sqlite3/TableReader.vb
+++ b/LINQ/Drivers/Sqlite3/TableReader.vb
@@ -1,41 +1,42 @@
-#Region "Microsoft.VisualBasic::2e67bb6e4e5b8829ff378ffe4c371121, LINQ\Drivers\Sqlite3\Class1.vb"
+#Region "Microsoft.VisualBasic::fe7c1b7eeec229a2c9042fe003b3cb67, LINQ\Drivers\Sqlite3\TableReader.vb"
-' Author:
-'
-' asuka (amethyst.asuka@gcmodeller.org)
-' xie (genetics@smrucc.org)
-' xieguigang (xie.guigang@live.com)
-'
-' Copyright (c) 2018 GPL3 Licensed
-'
-'
-' GNU GENERAL PUBLIC LICENSE (GPL3)
-'
-'
-' This program is free software: you can redistribute it and/or modify
-' it under the terms of the GNU General Public License as published by
-' the Free Software Foundation, either version 3 of the License, or
-' (at your option) any later version.
-'
-' This program is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-' GNU General Public License for more details.
-'
-' You should have received a copy of the GNU General Public License
-' along with this program. If not, see .
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
-' /********************************************************************************/
+ ' /********************************************************************************/
-' Summaries:
+ ' Summaries:
-' Class Class1
-'
-'
-'
-' /********************************************************************************/
+ ' Class TableReader
+ '
+ ' Constructor: (+1 Overloads) Sub New
+ ' Function: ReadFromUri
+ '
+ ' /********************************************************************************/
#End Region
@@ -70,4 +71,3 @@ Public Class TableReader : Inherits DataSourceDriver
Next
End Function
End Class
-
diff --git a/LINQ/LINQ/Interpreter/Expressions/Keywords/ImportDataDriver.vb b/LINQ/LINQ/Interpreter/Expressions/Keywords/ImportDataDriver.vb
index 26819e1..5b8de0b 100644
--- a/LINQ/LINQ/Interpreter/Expressions/Keywords/ImportDataDriver.vb
+++ b/LINQ/LINQ/Interpreter/Expressions/Keywords/ImportDataDriver.vb
@@ -1,4 +1,49 @@
-Imports Microsoft.VisualBasic.Language
+#Region "Microsoft.VisualBasic::18c2cdefaa836a7d92f5be04551abea7, LINQ\LINQ\Interpreter\Expressions\Keywords\ImportDataDriver.vb"
+
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
+
+
+
+ ' /********************************************************************************/
+
+ ' Summaries:
+
+ ' Class ImportDataDriver
+ '
+ ' Properties: dllName, keyword
+ '
+ ' Constructor: (+1 Overloads) Sub New
+ ' Function: Exec, ToString
+ '
+ '
+ ' /********************************************************************************/
+
+#End Region
+
+Imports Microsoft.VisualBasic.Language
Namespace Interpreter.Expressions
@@ -41,4 +86,4 @@ Namespace Interpreter.Expressions
Return $"load driver: {dllName}"
End Function
End Class
-End Namespace
\ No newline at end of file
+End Namespace
diff --git a/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/SkipItems.vb b/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/SkipItems.vb
index e985e95..a9741c1 100644
--- a/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/SkipItems.vb
+++ b/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/SkipItems.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::a47858251c0d09202512517202fe5de6, LINQ\LINQ\Interpreter\Expressions\Keywords\Options\SkipItems.vb"
+#Region "Microsoft.VisualBasic::50b33ca454fd3b8845e493d7457afd78, LINQ\LINQ\Interpreter\Expressions\Keywords\Options\SkipItems.vb"
' Author:
'
@@ -36,7 +36,7 @@
' Properties: keyword
'
' Constructor: (+1 Overloads) Sub New
- ' Function: (+2 Overloads) Exec
+ ' Function: (+2 Overloads) Exec, ToString
'
'
' /********************************************************************************/
diff --git a/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/TakeItems.vb b/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/TakeItems.vb
index 9d8989c..144ce66 100644
--- a/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/TakeItems.vb
+++ b/LINQ/LINQ/Interpreter/Expressions/Keywords/Options/TakeItems.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::094b21167dcd85f47ff8710a93aa3ae2, LINQ\LINQ\Interpreter\Expressions\Keywords\Options\TakeItems.vb"
+#Region "Microsoft.VisualBasic::e8b1900f81c66558565fff66bb11cf99, LINQ\LINQ\Interpreter\Expressions\Keywords\Options\TakeItems.vb"
' Author:
'
@@ -36,7 +36,7 @@
' Properties: keyword
'
' Constructor: (+1 Overloads) Sub New
- ' Function: (+2 Overloads) Exec
+ ' Function: (+2 Overloads) Exec, ToString
'
'
' /********************************************************************************/
diff --git a/LINQ/LINQ/Interpreter/Expressions/Keywords/SymbolDeclare.vb b/LINQ/LINQ/Interpreter/Expressions/Keywords/SymbolDeclare.vb
index 84fee1c..174309f 100644
--- a/LINQ/LINQ/Interpreter/Expressions/Keywords/SymbolDeclare.vb
+++ b/LINQ/LINQ/Interpreter/Expressions/Keywords/SymbolDeclare.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::072cb6ae41a3b6174888b57bb609c38a, LINQ\LINQ\Interpreter\Expressions\Keywords\SymbolDeclare.vb"
+#Region "Microsoft.VisualBasic::da28944790a219e92897ec35a5fe0e13, LINQ\LINQ\Interpreter\Expressions\Keywords\SymbolDeclare.vb"
' Author:
'
@@ -33,7 +33,7 @@
' Class SymbolDeclare
'
- ' Properties: keyword, symbolName, type
+ ' Properties: arguments, keyword, symbolName, type
'
' Function: Exec, ToString
'
diff --git a/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb b/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb
index ee12e12..623a11a 100644
--- a/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb
+++ b/LINQ/LINQ/Interpreter/Query/DataSoruce/URIIteratorDriver.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::550ac42be283838badad0e16ae7212fe, LINQ\LINQ\Interpreter\Query\DataSoruce\URIIteratorDriver.vb"
+#Region "Microsoft.VisualBasic::60bcd17ad4a2f4d16c0a950a86be8c6b, LINQ\LINQ\Interpreter\Query\DataSoruce\URIIteratorDriver.vb"
' Author:
'
diff --git a/LINQ/LINQ/Interpreter/Query/Options.vb b/LINQ/LINQ/Interpreter/Query/Options.vb
index 0735f33..8f49516 100644
--- a/LINQ/LINQ/Interpreter/Query/Options.vb
+++ b/LINQ/LINQ/Interpreter/Query/Options.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::03e9812fd9a9cf4d263c43fc47b7eac6, LINQ\LINQ\Interpreter\Query\Options.vb"
+#Region "Microsoft.VisualBasic::58a8244873f3fb35cb8b0370172d7ec9, LINQ\LINQ\Interpreter\Query\Options.vb"
' Author:
'
@@ -34,7 +34,7 @@
' Class Options
'
' Constructor: (+1 Overloads) Sub New
- ' Function: RunOptionPipeline
+ ' Function: RunOptionPipeline, ToString
'
'
' /********************************************************************************/
diff --git a/LINQ/LINQ/Interpreter/Query/ProjectionExpression.vb b/LINQ/LINQ/Interpreter/Query/ProjectionExpression.vb
index 2bc5066..ebdd261 100644
--- a/LINQ/LINQ/Interpreter/Query/ProjectionExpression.vb
+++ b/LINQ/LINQ/Interpreter/Query/ProjectionExpression.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::b9d664122e63e0f360e0b26b2dec6a29, LINQ\LINQ\Interpreter\Query\ProjectionExpression.vb"
+#Region "Microsoft.VisualBasic::e964dd6164ddb0aa2e34cf054fdfb15b, LINQ\LINQ\Interpreter\Query\ProjectionExpression.vb"
' Author:
'
diff --git a/LINQ/LINQ/Interpreter/Query/QueryExpression.vb b/LINQ/LINQ/Interpreter/Query/QueryExpression.vb
index ef5376a..85a6c57 100644
--- a/LINQ/LINQ/Interpreter/Query/QueryExpression.vb
+++ b/LINQ/LINQ/Interpreter/Query/QueryExpression.vb
@@ -1,45 +1,48 @@
-#Region "Microsoft.VisualBasic::c17b9f4ba6163467b2124e29397af322, LINQ\LINQ\Interpreter\Query\QueryExpression.vb"
-
-' Author:
-'
-' asuka (amethyst.asuka@gcmodeller.org)
-' xie (genetics@smrucc.org)
-' xieguigang (xie.guigang@live.com)
-'
-' Copyright (c) 2018 GPL3 Licensed
-'
-'
-' GNU GENERAL PUBLIC LICENSE (GPL3)
-'
-'
-' This program is free software: you can redistribute it and/or modify
-' it under the terms of the GNU General Public License as published by
-' the Free Software Foundation, either version 3 of the License, or
-' (at your option) any later version.
-'
-' This program is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-' GNU General Public License for more details.
-'
-' You should have received a copy of the GNU General Public License
-' along with this program. If not, see .
-
-
-
-' /********************************************************************************/
-
-' Summaries:
-
-' Class QueryExpression
-'
-' Properties: IsURISource
-'
-' Constructor: (+1 Overloads) Sub New
-' Function: GetDataSet, GetSeqValue
-'
-'
-' /********************************************************************************/
+#Region "Microsoft.VisualBasic::31b1d517569d8bac88bfda23087c33ad, LINQ\LINQ\Interpreter\Query\QueryExpression.vb"
+
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
+
+
+
+ ' /********************************************************************************/
+
+ ' Summaries:
+
+ ' Class QueryExpression
+ '
+ ' Properties: IsURISource
+ '
+ ' Constructor: (+1 Overloads) Sub New
+ '
+ ' Function: AddAttachDrivers, GetDataSet, GetSeqValue
+ '
+ ' Sub: LoadDrivers
+ '
+ '
+ ' /********************************************************************************/
#End Region
diff --git a/LINQ/LINQ/Interpreter/Script/Builders/BinaryBuilder.vb b/LINQ/LINQ/Interpreter/Script/Builders/BinaryBuilder.vb
index 956bbfc..46ff110 100644
--- a/LINQ/LINQ/Interpreter/Script/Builders/BinaryBuilder.vb
+++ b/LINQ/LINQ/Interpreter/Script/Builders/BinaryBuilder.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::c4037e554a26529e91e78f3b46cacdb4, LINQ\LINQ\Script\Builders\BinaryBuilder.vb"
+#Region "Microsoft.VisualBasic::c4037e554a26529e91e78f3b46cacdb4, LINQ\LINQ\Interpreter\Script\Builders\BinaryBuilder.vb"
' Author:
'
diff --git a/LINQ/LINQ/Interpreter/Script/Builders/ExpressionTree.vb b/LINQ/LINQ/Interpreter/Script/Builders/ExpressionTree.vb
index 2c57e78..fae2392 100644
--- a/LINQ/LINQ/Interpreter/Script/Builders/ExpressionTree.vb
+++ b/LINQ/LINQ/Interpreter/Script/Builders/ExpressionTree.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::bf796cc0e55fc3ef8f77c2c2430299d3, LINQ\LINQ\Script\Builders\ExpressionTree.vb"
+#Region "Microsoft.VisualBasic::bf796cc0e55fc3ef8f77c2c2430299d3, LINQ\LINQ\Interpreter\Script\Builders\ExpressionTree.vb"
' Author:
'
diff --git a/LINQ/LINQ/Interpreter/Script/StackParser.vb b/LINQ/LINQ/Interpreter/Script/StackParser.vb
index fff430c..0fb4e16 100644
--- a/LINQ/LINQ/Interpreter/Script/StackParser.vb
+++ b/LINQ/LINQ/Interpreter/Script/StackParser.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::eb430db1738374b44566811a7d062d13, LINQ\LINQ\Script\StackParser.vb"
+#Region "Microsoft.VisualBasic::eb430db1738374b44566811a7d062d13, LINQ\LINQ\Interpreter\Script\StackParser.vb"
' Author:
'
diff --git a/LINQ/LINQ/Interpreter/Script/SyntaxImplements.vb b/LINQ/LINQ/Interpreter/Script/SyntaxImplements.vb
index c98606a..3285897 100644
--- a/LINQ/LINQ/Interpreter/Script/SyntaxImplements.vb
+++ b/LINQ/LINQ/Interpreter/Script/SyntaxImplements.vb
@@ -1,44 +1,44 @@
-#Region "Microsoft.VisualBasic::de349ecee86e889bc5d654c56be0427b, LINQ\LINQ\Script\SyntaxImplements.vb"
-
-' Author:
-'
-' asuka (amethyst.asuka@gcmodeller.org)
-' xie (genetics@smrucc.org)
-' xieguigang (xie.guigang@live.com)
-'
-' Copyright (c) 2018 GPL3 Licensed
-'
-'
-' GNU GENERAL PUBLIC LICENSE (GPL3)
-'
-'
-' This program is free software: you can redistribute it and/or modify
-' it under the terms of the GNU General Public License as published by
-' the Free Software Foundation, either version 3 of the License, or
-' (at your option) any later version.
-'
-' This program is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-' GNU General Public License for more details.
-'
-' You should have received a copy of the GNU General Public License
-' along with this program. If not, see .
-
-
-
-' /********************************************************************************/
-
-' Summaries:
-
-' Module SyntaxImplements
-'
-' Function: CreateAggregateQuery, CreateProjectionQuery, GetParameters, GetProjection, GetSequence
-' GetVector, IsClosure, IsNumeric, JoinOperators, ParseExpression
-' ParseKeywordExpression, ParseToken, PopulateExpressions, PopulateQueryExpression
-'
-'
-' /********************************************************************************/
+#Region "Microsoft.VisualBasic::e0435db0915bd15f52f6e49be711a14f, LINQ\LINQ\Interpreter\Script\SyntaxImplements.vb"
+
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
+
+
+
+ ' /********************************************************************************/
+
+ ' Summaries:
+
+ ' Module SyntaxImplements
+ '
+ ' Function: CreateAggregateQuery, CreateProjectionQuery, GetParameters, GetProjection, GetSequence
+ ' GetVector, IsClosure, IsNumeric, JoinOperators, ParseExpression
+ ' ParseKeywordExpression, ParseToken, PopulateExpressions, PopulateQueryExpression
+ '
+ '
+ ' /********************************************************************************/
#End Region
diff --git a/LINQ/LINQ/Program.vb b/LINQ/LINQ/Program.vb
index c8c05de..cb3170b 100644
--- a/LINQ/LINQ/Program.vb
+++ b/LINQ/LINQ/Program.vb
@@ -1,41 +1,41 @@
-#Region "Microsoft.VisualBasic::8ee987237312a675a87a8260f921a261, LINQ\LINQ\Program.vb"
+#Region "Microsoft.VisualBasic::3f0c4cae11e3453a41755bb53fd0d676, LINQ\LINQ\Program.vb"
-' Author:
-'
-' asuka (amethyst.asuka@gcmodeller.org)
-' xie (genetics@smrucc.org)
-' xieguigang (xie.guigang@live.com)
-'
-' Copyright (c) 2018 GPL3 Licensed
-'
-'
-' GNU GENERAL PUBLIC LICENSE (GPL3)
-'
-'
-' This program is free software: you can redistribute it and/or modify
-' it under the terms of the GNU General Public License as published by
-' the Free Software Foundation, either version 3 of the License, or
-' (at your option) any later version.
-'
-' This program is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-' GNU General Public License for more details.
-'
-' You should have received a copy of the GNU General Public License
-' along with this program. If not, see .
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
-' /********************************************************************************/
+ ' /********************************************************************************/
-' Summaries:
+ ' Summaries:
-' Module Program
-'
-' Function: Main, RunQuery
-'
-' /********************************************************************************/
+ ' Module Program
+ '
+ ' Function: Main, RunQuery
+ '
+ ' /********************************************************************************/
#End Region
diff --git a/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb b/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb
index 95098bd..e34f9bd 100644
--- a/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb
+++ b/LINQ/LINQ/Runtime/Drivers/DataFrameDriver.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::044174265e2439437d9433d34b1d38e6, LINQ\LINQ\Runtime\Drivers\DataFrameDriver.vb"
+#Region "Microsoft.VisualBasic::4038b3952bb34ff8167bb72c35c0619c, LINQ\LINQ\Runtime\Drivers\DataFrameDriver.vb"
' Author:
'
@@ -33,6 +33,7 @@
' Class DataFrameDriver
'
+ ' Constructor: (+1 Overloads) Sub New
' Function: ReadFromUri
'
'
diff --git a/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb b/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb
index 7653580..0b5145a 100644
--- a/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb
+++ b/LINQ/LINQ/Runtime/Drivers/DataSourceDriver.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::2c1f0f5168103746a577bd5c8921a507, LINQ\LINQ\Runtime\Drivers\DataSourceDriver.vb"
+#Region "Microsoft.VisualBasic::81cc4bb3a24f205dc47b7db13b4c0f7d, LINQ\LINQ\Runtime\Drivers\DataSourceDriver.vb"
' Author:
'
@@ -33,7 +33,7 @@
' Class DataSourceDriver
'
- '
+ ' Constructor: (+1 Overloads) Sub New
'
'
' /********************************************************************************/
diff --git a/LINQ/LINQ/Runtime/Drivers/DriverFlagAttribute.vb b/LINQ/LINQ/Runtime/Drivers/DriverFlagAttribute.vb
index 9874ead..322c9c2 100644
--- a/LINQ/LINQ/Runtime/Drivers/DriverFlagAttribute.vb
+++ b/LINQ/LINQ/Runtime/Drivers/DriverFlagAttribute.vb
@@ -1,4 +1,49 @@
-Namespace Runtime.Drivers
+#Region "Microsoft.VisualBasic::eb833244f56a8f07c24bbab2b8432239, LINQ\LINQ\Runtime\Drivers\DriverFlagAttribute.vb"
+
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
+
+
+
+ ' /********************************************************************************/
+
+ ' Summaries:
+
+ ' Class DriverFlagAttribute
+ '
+ ' Properties: type
+ '
+ ' Constructor: (+1 Overloads) Sub New
+ ' Function: ToString
+ '
+ '
+ ' /********************************************************************************/
+
+#End Region
+
+Namespace Runtime.Drivers
Public Class DriverFlagAttribute : Inherits Attribute
@@ -14,4 +59,4 @@
End Function
End Class
-End Namespace
\ No newline at end of file
+End Namespace
diff --git a/LINQ/LINQ/Runtime/GlobalEnvironment.vb b/LINQ/LINQ/Runtime/GlobalEnvironment.vb
index b84340f..1d4e666 100644
--- a/LINQ/LINQ/Runtime/GlobalEnvironment.vb
+++ b/LINQ/LINQ/Runtime/GlobalEnvironment.vb
@@ -1,4 +1,4 @@
-#Region "Microsoft.VisualBasic::ab6301c864f94a35ede0a5a03a60263e, LINQ\LINQ\Runtime\GlobalEnvironment.vb"
+#Region "Microsoft.VisualBasic::f52f81768990b5c04714f9db2d5f4672, LINQ\LINQ\Runtime\GlobalEnvironment.vb"
' Author:
'
diff --git a/LINQ/LINQ/Runtime/Registry.vb b/LINQ/LINQ/Runtime/Registry.vb
index c478388..047639f 100644
--- a/LINQ/LINQ/Runtime/Registry.vb
+++ b/LINQ/LINQ/Runtime/Registry.vb
@@ -1,42 +1,47 @@
-#Region "Microsoft.VisualBasic::0124b5f27111e2adaadc328227661fb0, LINQ\LINQ\Runtime\Registry.vb"
-
-' Author:
-'
-' asuka (amethyst.asuka@gcmodeller.org)
-' xie (genetics@smrucc.org)
-' xieguigang (xie.guigang@live.com)
-'
-' Copyright (c) 2018 GPL3 Licensed
-'
-'
-' GNU GENERAL PUBLIC LICENSE (GPL3)
-'
-'
-' This program is free software: you can redistribute it and/or modify
-' it under the terms of the GNU General Public License as published by
-' the Free Software Foundation, either version 3 of the License, or
-' (at your option) any later version.
-'
-' This program is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-' GNU General Public License for more details.
-'
-' You should have received a copy of the GNU General Public License
-' along with this program. If not, see .
-
-
-
-' /********************************************************************************/
-
-' Summaries:
-
-' Class Registry
-'
-' Function: GetReader, GetTypeCodeName
-'
-'
-' /********************************************************************************/
+#Region "Microsoft.VisualBasic::d1d63509484407ff2856ed8eda58fb3f, LINQ\LINQ\Runtime\Registry.vb"
+
+ ' Author:
+ '
+ ' asuka (amethyst.asuka@gcmodeller.org)
+ ' xie (genetics@smrucc.org)
+ ' xieguigang (xie.guigang@live.com)
+ '
+ ' Copyright (c) 2018 GPL3 Licensed
+ '
+ '
+ ' GNU GENERAL PUBLIC LICENSE (GPL3)
+ '
+ '
+ ' This program is free software: you can redistribute it and/or modify
+ ' it under the terms of the GNU General Public License as published by
+ ' the Free Software Foundation, either version 3 of the License, or
+ ' (at your option) any later version.
+ '
+ ' This program is distributed in the hope that it will be useful,
+ ' but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ' GNU General Public License for more details.
+ '
+ ' You should have received a copy of the GNU General Public License
+ ' along with this program. If not, see .
+
+
+
+ ' /********************************************************************************/
+
+ ' Summaries:
+
+ ' Class Registry
+ '
+ ' Function: GetReader, GetTypeCodeName
+ '
+ ' Sub: Register
+ '
+ ' Delegate Function
+ '
+ '
+ '
+ ' /********************************************************************************/
#End Region