Skip to content

Instantly share code, notes, and snippets.

@odaBio
Created October 23, 2021 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save odaBio/4f52045f8b124e6dcd2a3fa7b858c2de to your computer and use it in GitHub Desktop.
Save odaBio/4f52045f8b124e6dcd2a3fa7b858c2de to your computer and use it in GitHub Desktop.
package com.biomerieux.adobe.core.models;
public interface OptionItem {
default String getValue() {
return null;
}
default String getText() {
return null;
}
default String getUrl() {
return null;
}
default String getTitle() {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment