Skip to content

Commit 1e1dd44

Browse files
authored
Merge pull request #229 from imagej/fixing-links
Relinking broken links to ImageJ tutorials
2 parents 07988ca + bb6de9a commit 1e1dd44

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

_pages/develop/plugins.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -192,40 +192,41 @@ There are always other options for saving or restoring your work—[stashing](ht
192192

193193
### First steps
194194

195-
The [IntroToImageJ API](https://github.com/imagej/tutorials/blob/master/maven-projects/intro-to-imagej-api/src/main/java/IntroToImageJAPI.java) class documents many common functions and structures in ImageJ, and is a great starting point.
195+
The [IntroToImageJ API](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/adv/IntroToImageJAPI.java) class documents many common functions and structures in ImageJ, and is a great starting point.
196196

197197
### Basic plugins
198198

199199
These projects provide minimal examples with thorough online documentation.
200200

201201
- [example-imagej-command](https://github.com/imagej/example-imagej-command) - A minimal template for an ImageJ command plugin
202-
- Look at some [simple commands](https://github.com/imagej/tutorials/tree/master/maven-projects/simple-commands/src/main/java) and see how they interact with users
203-
- [Getting started with modules](https://github.com/imagej/tutorials/tree/master/maven-projects/working-with-modules/src/main/java)—the foundation of many user-facing plugin types, including [commands](#Commands)
202+
- Look at some [simple commands](https://github.com/imagej/tutorials/tree/master/java/simple-commands/src/main/java) and see how they interact with users
203+
- [Getting started with modules](https://github.com/imagej/tutorials/blob/master/java/working-with-modules/src/main/java/WorkingWithModules.java)—the foundation of many user-facing plugin types, including [commands](#Commands)
204204

205205
### Targeted tasks
206206

207207
These projects are examples of specific *use cases* within the ImageJ API.
208208

209-
- [Execute commands programmatically](https://github.com/imagej/tutorials/tree/master/maven-projects/execute-commands/src/main/java)
210-
- [Open a dataset](https://github.com/imagej/tutorials/tree/master/maven-projects/load-and-display-dataset/src/main/java)
211-
- [Combine ROIs](https://github.com/imagej/tutorials/tree/master/maven-projects/add-rois/src/main/java)
212-
- [React to framework events](https://github.com/imagej/tutorials/tree/master/maven-projects/listen-to-events/src/main/java)—such as creating a dataset
209+
- [Execute commands programmatically](https://github.com/imagej/tutorials/master/java/execute-commands/src/main/java/ExecuteCommands.java)
210+
- [Open a dataset](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/datasets/LoadAndDisplayDataset.java)
211+
- [Combine ROIs](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/images/AddROIs.java)
212+
- [React to framework events](https://github.com/imagej/tutorials/blob/master/java/listen-to-events/src/main/java/ListenToEvents.java)—such as creating a dataset
213213

214214
### Working with Ops
215215

216-
- [Using Ops](https://github.com/imagej/tutorials/tree/master/maven-projects/using-ops/src/main/java)
217-
- [Add datasets](https://github.com/imagej/tutorials/tree/master/maven-projects/add-two-datasets/src/main/java)
218-
- [Create a new Op type](https://github.com/imagej/tutorials/tree/master/maven-projects/create-a-new-op/src/main/java)
216+
- [Using Ops](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/ops/UsingOps.java)
217+
- [Add datasets](https://github.com/imagej/tutorials/blob/master/java/add-two-datasets/src/main/java/AddTwoDatasets.java)
218+
- [Create a new Op type](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/ops/CreateANewOp.java)
219+
-
219220

220221
### Working with user input
221222

222-
- [Look at all the widgets!](https://github.com/imagej/tutorials/tree/master/howtos/src/main/java/howto/ui)
223-
- [Previewable commands](https://github.com/imagej/tutorials/tree/master/maven-projects/commands-with-preview/src/main/java)
223+
- [Look at all the widgets!](https://github.com/imagej/tutorials/tree/master/java/howtos/src/main/java/howto/ui)
224+
- [Previewable commands](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/ui/preview/CommandWithPreview.java)
224225

225226
### Plugin development
226227

227-
- [Create a new plugin type](https://github.com/imagej/tutorials/tree/master/maven-projects/create-a-new-plugin-type/src/main/java)
228-
<!-- - [Create a new preprocessor](https://github.com/imagej/tutorials/tree/master/maven-projects/custom-preprocessor-plugin/src/main/java) -->
228+
- [Create a new plugin type](https://github.com/imagej/tutorials/blob/master/java/howtos/src/main/java/howto/plugins/create/CreateANewPluginType.java)
229+
<!-- - [Create a new preprocessor](https://github.com/imagej/tutorials/tree/master/java/custom-preprocessor-plugin/src/main/java) -->
229230

230231
## Starting your own plugin
231232

0 commit comments

Comments
 (0)