Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions assay/api-src/org/labkey/api/assay/plate/Plate.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ public interface Plate extends PropertySet, Identifiable

@Nullable WellGroup getWellGroup(int rowId);

@NotNull List<WellGroup> getWellGroups();
@NotNull List<? extends WellGroup> getWellGroups();

@NotNull List<WellGroup> getWellGroups(Position position);
@NotNull List<? extends WellGroup> getWellGroups(Position position);

@NotNull List<WellGroup> getWellGroups(WellGroup.Type type);
@NotNull List<? extends WellGroup> getWellGroups(WellGroup.Type type);

@NotNull Map<WellGroup.Type, Map<String, WellGroup>> getWellGroupMap();

Expand Down
2 changes: 1 addition & 1 deletion assay/api-src/org/labkey/api/assay/plate/PlateService.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ static PlateService get()
*/
@Nullable Plate getPlate(ContainerFilter cf, Long plateSetId, Object plateIdentifier);

@NotNull List<Plate> getPlates(Container container);
@NotNull List<? extends Plate> getPlates(Container container);

/**
* Gets the plate set by ID
Expand Down
2 changes: 1 addition & 1 deletion assay/api-src/org/labkey/api/assay/plate/PlateSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface PlateSet extends Identifiable

boolean isTemplate();

List<Plate> getPlates();
List<? extends Plate> getPlates();

PlateSetType getType();

Expand Down
Loading
Loading