Skip to content

Commit

Permalink
Fix javadoc errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Nov 7, 2024
1 parent 905ef55 commit be5c222
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ public LabkitImporter(
* @param currentTimePoint
* the time-point in the TrackMate model that corresponds to the
* index image.
* @param the
* map of spots (vs the label value in the previous labeling)
* @param previousSpotLabels
* the map of spots (vs the label value in the previous labeling)
* that were written in the previous index image.
*/
public void reimport(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Expand Down Expand Up @@ -43,6 +43,7 @@
import sc.fiji.labkit.ui.BasicLabelingComponent;
import sc.fiji.labkit.ui.DefaultExtensible;
import sc.fiji.labkit.ui.MenuBar;
import sc.fiji.labkit.ui.SegmentationComponent;
import sc.fiji.labkit.ui.actions.AddLabelingIoAction;
import sc.fiji.labkit.ui.actions.LabelEditAction;
import sc.fiji.labkit.ui.actions.LabelingIoAction;
Expand All @@ -58,6 +59,10 @@
import sc.fiji.labkit.ui.segmentation.PredictionLayer;

/**
* This class is copy/pasted and adapted from {@link SegmentationComponent} to
* control what is shown in the TrackMate UI. This could be revised to avoid
* class duplication.
*
* {@link SegmentationComponent} is the central Labkit UI component. Provides UI
* to display and modify a {@link SegmentationModel}.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Expand Down Expand Up @@ -42,17 +42,21 @@
import net.imagej.Dataset;
import sc.fiji.labkit.pixel_classification.utils.SingletonContext;
import sc.fiji.labkit.ui.InitialLabeling;
import sc.fiji.labkit.ui.LabkitFrame;
import sc.fiji.labkit.ui.inputimage.DatasetInputImage;
import sc.fiji.labkit.ui.inputimage.InputImage;
import sc.fiji.labkit.ui.models.DefaultSegmentationModel;
import sc.fiji.labkit.ui.models.SegmentationModel;
import sc.fiji.labkit.ui.utils.Notifier;

/**
* This class is copied and adapted from {@link LabkitFrame}.
* <p>
* The main Labkit window. (This window allows to segment a single image. It has
* to be distinguished from the LabkitProjectFrame, which allows to operation on
* multiple images.) The window only contains a {@link SegmentationComponent}
* and shows the associated main menu.
* multiple images.) The window only contains a
* {@link TrackMateLabKitSegmentationComponent} and shows the associated main
* menu.
*
* @author Matthias Arzt
*/
Expand Down

0 comments on commit be5c222

Please sign in to comment.