Extras: made enums in text components public (issue #117)

This commit is contained in:
Karl Tauber
2020-12-11 13:39:51 +01:00
parent 1323b46ac7
commit 91bc994532
3 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ public class FlatFormattedTextField
// NOTE: enum names must be equal to allowed strings
enum SelectAllOnFocusPolicy { never, once, always };
public enum SelectAllOnFocusPolicy { never, once, always };
/**
* Returns whether all text is selected when the text component gains focus.

View File

@@ -44,7 +44,7 @@ public class FlatPasswordField
// NOTE: enum names must be equal to allowed strings
enum SelectAllOnFocusPolicy { never, once, always };
public enum SelectAllOnFocusPolicy { never, once, always };
/**
* Returns whether all text is selected when the text component gains focus.

View File

@@ -44,7 +44,7 @@ public class FlatTextField
// NOTE: enum names must be equal to allowed strings
enum SelectAllOnFocusPolicy { never, once, always };
public enum SelectAllOnFocusPolicy { never, once, always };
/**
* Returns whether all text is selected when the text component gains focus.