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

org.swrlapi.ui.model.SWRLAutoCompleter Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.swrlapi.ui.model;

import org.checkerframework.checker.nullness.qual.NonNull;

import java.util.List;

public interface SWRLAutoCompleter
{
  /**
   * @param prefix A prefix string
   * @return The possible completions
   */
  @NonNull List<@NonNull String> getCompletions(@NonNull String prefix);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy