All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 getElements();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy