forked from IDEMSInternational/R-Instat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from africanmathsinitiative/master
updating master
- Loading branch information
Showing
7 changed files
with
223 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Public Class Condition | ||
Private strType As String = "ParameterValue" | ||
Private strParameterName As String = "" | ||
Private lstValues As List(Of String) = New List(Of String) | ||
|
||
Public Sub SetParameterPresentName(strParamName As String) | ||
strType = "ParameterPresent" | ||
strParameterName = strParamName | ||
End Sub | ||
|
||
Public Sub SetParameterValues(strParamName As String, lstParamValues As List(Of String)) | ||
strType = "ParameterValue" | ||
strParameterName = strParamName | ||
lstValues = lstParamValues | ||
End Sub | ||
|
||
Public Sub SetParameterValues(strParamName As String, strParamValues As String) | ||
strType = "ParameterValue" | ||
strParameterName = strParamName | ||
lstValues = New List(Of String)({strParamValues}) | ||
End Sub | ||
|
||
Public Sub SetFunctionName(strFuncName As String) | ||
strType = "FunctionName" | ||
lstValues = New List(Of String)({strFuncName}) | ||
End Sub | ||
|
||
Public Sub SetFunctionNamesMultiple(lstFuncNames As List(Of String)) | ||
strType = "FunctionName" | ||
lstValues = lstFuncNames | ||
End Sub | ||
End Class |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.