
com.cedarsoft.ObjectAccess Maven / Gradle / Ivy
The newest version!
package com.cedarsoft;
import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* Implementing classes offer access to a list of elements
* @param the type
*/
public interface ObjectAccess {
/**
* Returns all elements
*
* @return all elements
*/
@NotNull
List extends T> getElements();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy