io.overcoded.grid.annotation.GridAnchorTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grid-annotation Show documentation
Show all versions of grid-annotation Show documentation
An annotation library to help generate views, dialogs, and grids.
package io.overcoded.grid.annotation;
public enum GridAnchorTarget {
/**
* DIALOG means the anchor should be opened in a dialog
*/
DIALOG,
/**
* BLANK means the anchor should be opened in a new tab / window
*/
BLANK,
/**
* SELF means the anchor should be opened on the current page
*/
SELF
}