Skip to content

Commit 4b7221d

Browse files
committed
README Update
1 parent 0f9bbc0 commit 4b7221d

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ An [InterSystems ObjectScript](https://docs.intersystems.com/irislatest/csp/docb
2727
- In the [InterSystems Management Portal](https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=GSA_USING_PORTAL) navigate to `System Explorer > Classes`
2828
- Click on `Import`
2929
- Under _Import from File or a Directory_ make sure to select _Directory_
30-
- Enter the path to the [MTConnect Folder](https://github.com/phil1436/MTConnect-ObjectScript/tree/master/cls/MTConnect) under `cls/MTConnect`
30+
- Enter the path to the [MTConnect Folder](https://github.com/phil1436/MTConnect-ObjectScript/tree/master/src/cls/MTConnect) under `src/cls/MTConnect`
3131
- Click on `Import`
3232

3333
<img src="https://raw.githubusercontent.com/phil1436/MTConnect-ObjectScript/master/resources/ImportClassesScreenshot.png" title ="ImportClassesScreenshot" width = "60%"/>
3434

3535
---
3636

37-
## [MTConnect.MSG.MTConnectRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/MTConnectRequest.cls) / [Response](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/MTConnectResponse.cls)
37+
## [MTConnect.MSG.MTConnectRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/MTConnectRequest.cls) / [Response](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/MTConnectResponse.cls)
3838

3939
- `probe`: Holds the data from the probe file.
4040
- `probeFromFile`: When enabled the probe property contains an absolute path to the probe file. When disabled the probe property contains the probe file as a string.
@@ -45,17 +45,17 @@ An [InterSystems ObjectScript](https://docs.intersystems.com/irislatest/csp/docb
4545

4646
---
4747

48-
## [MTConnect.BO.ClassBuilder](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/BO/ClassBuilder.cls)
48+
## [MTConnect.BO.ClassBuilder](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/BO/ClassBuilder.cls)
4949

5050
A Business Operation, that builts an ObjectScript class based on a MTConnect probe file. After the class is successfully generated, the operation inserts data from a MTConnect current file.
5151

5252
### Request
5353

54-
[MTConnect.MSG.MTConnectRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/MTConnectRequest.cls)
54+
[MTConnect.MSG.MTConnectRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/MTConnectRequest.cls)
5555

5656
### Response
5757

58-
[MTConnect.MSG.MTConnectResponse](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/MTConnectResponse.cls)
58+
[MTConnect.MSG.MTConnectResponse](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/MTConnectResponse.cls)
5959

6060
### Settings
6161

@@ -83,7 +83,7 @@ A Business Operation, that builts an ObjectScript class based on a MTConnect pro
8383

8484
---
8585

86-
## [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/CreateDataTypeRequest.cls)
86+
## [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/CreateDataTypeRequest.cls)
8787

8888
- `Name`: The name of the datatype.
8989
- `Unit`: The unit to display the datatype with.
@@ -94,13 +94,13 @@ A Business Operation, that builts an ObjectScript class based on a MTConnect pro
9494

9595
---
9696

97-
## [MTConnect.DataTypesBuilder](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/DataTypesBuilder.cls)
97+
## [MTConnect.DataTypesBuilder](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/DataTypesBuilder.cls)
9898

9999
Builds MTConnect Datatypes based on a [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/CreateDataTypeRequest.cls).
100100

101101
### Execute Method
102102

103-
- `pRequest`: The [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/CreateDataTypeRequest.cls)
103+
- `pRequest`: The [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/CreateDataTypeRequest.cls)
104104
- `pPackage`: The package name to store the datatypes (Default is _MTConnect.DataTypes_)
105105
- `pGenerateIsValid`: If enabled generates the _IsValid_ method for the datatype (enabled by default)
106106
- `pGenerateNormalize`: If enabled generates the _Normalize_ method for the datatype (enabled by default)
@@ -109,13 +109,13 @@ Builds MTConnect Datatypes based on a [MTConnect.MSG.CreateDataTypeRequest](http
109109

110110
---
111111

112-
## [MTConnect.BO.DataTypesBuilderOperation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/BO/DataTypesBuilderOperation.cls)
112+
## [MTConnect.BO.DataTypesBuilderOperation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/BO/DataTypesBuilderOperation.cls)
113113

114-
A Business Operation to build MTConnect Datatypes based on a [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/CreateDataTypeRequest.cls).
114+
A Business Operation to build MTConnect Datatypes based on a [MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/CreateDataTypeRequest.cls).
115115

116116
### Request
117117

118-
[MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/MSG/CreateDataTypeRequest.cls)
118+
[MTConnect.MSG.CreateDataTypeRequest](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/MSG/CreateDataTypeRequest.cls)
119119

120120
### Response
121121

@@ -131,13 +131,13 @@ A Business Operation to build MTConnect Datatypes based on a [MTConnect.MSG.Crea
131131
- `DisplayToLogical`: If enabled generates the _DisplayToLogical_ method for the datatype
132132
- `LogicalToDisplay`: If enabled generates the _LogicalToDisplay_ method for the datatype
133133

134-
> Tip: Hava a look at [MTConnect.DataTypes](https://github.com/phil1436/MTConnect-ObjectScript/tree/master/cls/MTConnect/DataTypes) for some default MTConnect DataTypes.
134+
> Tip: Hava a look at [MTConnect.DataTypes](https://github.com/phil1436/MTConnect-ObjectScript/tree/master/src/cls/MTConnect/DataTypes) for some default MTConnect DataTypes.
135135
136136
---
137137

138-
## [Example Production](https://github.com/phil1436/MTConnect-ObjectScript/tree/master/cls/MTConnect/ExampleProduction)
138+
## [Example Production](https://github.com/phil1436/MTConnect-ObjectScript/tree/master/src/cls/MTConnect/ExampleProduction)
139139

140-
A simple [Production](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/ExampleProduction/Production.cls) to show the usage of the [DataTypesBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/BO/DataTypesBuilderOperation.cls) and the [ClassBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/BO/ClassBuilder.cls).
140+
A simple [Production](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/ExampleProduction/Production.cls) to show the usage of the [DataTypesBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/BO/DataTypesBuilderOperation.cls) and the [ClassBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/BO/ClassBuilder.cls).
141141

142142
How to open and start the Production:
143143

@@ -149,7 +149,7 @@ How to open and start the Production:
149149

150150
### DataTypes
151151

152-
An example for how to use the [DataTypesBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/BO/DataTypesBuilderOperation.cls) to create MTConnect DataTypes.
152+
An example for how to use the [DataTypesBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/BO/DataTypesBuilderOperation.cls) to create MTConnect DataTypes.
153153

154154
- From the _category_ dropdown menu choose `DataTypes`
155155
- Choose the `DataTypes Process`
@@ -168,7 +168,7 @@ An example for how to use the [DataTypesBuilder Operation](https://github.com/ph
168168

169169
### Class Builder
170170

171-
An example for how to use the [ClassBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/cls/MTConnect/BO/ClassBuilder.cls) to create MTConnect Class from a MTConnect [Probe](http://mtconnect.mazakcorp.com:5609/probe) and [Current](http://mtconnect.mazakcorp.com:5609/current) file.
171+
An example for how to use the [ClassBuilder Operation](https://github.com/phil1436/MTConnect-ObjectScript/blob/master/src/cls/MTConnect/BO/ClassBuilder.cls) to create MTConnect Class from a MTConnect [Probe](http://mtconnect.mazakcorp.com:5609/probe) and [Current](http://mtconnect.mazakcorp.com:5609/current) file.
172172

173173
- From the _category_ dropdown menu choose `Class Builder`
174174
- Choose the `Class Builder Process`

0 commit comments

Comments
 (0)