Skip to content
Snippets Groups Projects
Commit c1ef2532 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

#174 - Fix return types

parent 66e5eba2
No related branches found
No related tags found
No related merge requests found
package de.tobias.playpad.project.api; package de.tobias.playpad.project.api;
import de.tobias.playpad.pad.Pad;
import de.tobias.playpad.project.page.PadIndex; import de.tobias.playpad.project.page.PadIndex;
import java.util.Collection; import java.util.Collection;
...@@ -10,11 +9,11 @@ import java.util.UUID; ...@@ -10,11 +9,11 @@ import java.util.UUID;
public interface IProject { public interface IProject {
IProjectSettings getSettings(); IProjectSettings getSettings();
Pad getPad(int x, int y, int page); IPad getPad(int x, int y, int page);
Pad getPad(PadIndex index); IPad getPad(PadIndex index);
Pad getPad(UUID uuid); IPad getPad(UUID uuid);
Collection<? extends IPad> getPads(); Collection<? extends IPad> getPads();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment