X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsonitus%2Fdata%2FControlled.java;h=e3116810908f34d5c9aa5731aef6c0f0ded535d3;hb=09f8bd2297dc864e24baa67c65be97104e00c320;hp=88ce3e016b9001e6fda0e94da3ad57ddeccd89d4;hpb=a92d013bb270a9cbd094c662bf20c98a3326f009;p=sonitus.git diff --git a/src/main/java/net/pterodactylus/sonitus/data/Controlled.java b/src/main/java/net/pterodactylus/sonitus/data/Controlled.java index 88ce3e0..e311681 100644 --- a/src/main/java/net/pterodactylus/sonitus/data/Controlled.java +++ b/src/main/java/net/pterodactylus/sonitus/data/Controlled.java @@ -27,10 +27,17 @@ import java.util.List; public interface Controlled { /** + * Returns the name of this controlled component. + * + * @return The name of this controlled component + */ + public String name(); + + /** * Returns the controllers offered by this component. * * @return The controllers of this component */ - public List controllers(); + public List> controllers(); }