You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _pages/develop/plugins.md
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,40 +192,41 @@ There are always other options for saving or restoring your work—[stashing](ht
192
192
193
193
### First steps
194
194
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.
196
196
197
197
### Basic plugins
198
198
199
199
These projects provide minimal examples with thorough online documentation.
200
200
201
201
-[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)
204
204
205
205
### Targeted tasks
206
206
207
207
These projects are examples of specific *use cases* within the ImageJ API.
-[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
0 commit comments