(Lio/sentry/SentryFeedbackOptions;)V
- public fun getCancelButtonLabel ()Ljava/lang/String;
- public fun getEmailLabel ()Ljava/lang/String;
- public fun getEmailPlaceholder ()Ljava/lang/String;
- public fun getFormTitle ()Ljava/lang/String;
- public fun getIsRequiredLabel ()Ljava/lang/String;
- public fun getMessageLabel ()Ljava/lang/String;
- public fun getMessagePlaceholder ()Ljava/lang/String;
- public fun getNameLabel ()Ljava/lang/String;
- public fun getNamePlaceholder ()Ljava/lang/String;
+ public fun getCancelButtonLabel ()Ljava/lang/CharSequence;
+ public fun getEmailLabel ()Ljava/lang/CharSequence;
+ public fun getEmailPlaceholder ()Ljava/lang/CharSequence;
+ public fun getFormTitle ()Ljava/lang/CharSequence;
+ public fun getIsRequiredLabel ()Ljava/lang/CharSequence;
+ public fun getMessageLabel ()Ljava/lang/CharSequence;
+ public fun getMessagePlaceholder ()Ljava/lang/CharSequence;
+ public fun getNameLabel ()Ljava/lang/CharSequence;
+ public fun getNamePlaceholder ()Ljava/lang/CharSequence;
public fun getOnFormClose ()Ljava/lang/Runnable;
public fun getOnFormOpen ()Ljava/lang/Runnable;
public fun getOnSubmitError ()Lio/sentry/SentryFeedbackOptions$SentryFeedbackCallback;
public fun getOnSubmitSuccess ()Lio/sentry/SentryFeedbackOptions$SentryFeedbackCallback;
- public fun getSubmitButtonLabel ()Ljava/lang/String;
- public fun getSuccessMessageText ()Ljava/lang/String;
+ public fun getSubmitButtonLabel ()Ljava/lang/CharSequence;
+ public fun getSuccessMessageText ()Ljava/lang/CharSequence;
public fun isEmailRequired ()Z
public fun isNameRequired ()Z
public fun isShowBranding ()Z
public fun isShowEmail ()Z
public fun isShowName ()Z
public fun isUseSentryUser ()Z
- public fun setCancelButtonLabel (Ljava/lang/String;)V
- public fun setEmailLabel (Ljava/lang/String;)V
- public fun setEmailPlaceholder (Ljava/lang/String;)V
+ public fun setCancelButtonLabel (Ljava/lang/CharSequence;)V
+ public fun setEmailLabel (Ljava/lang/CharSequence;)V
+ public fun setEmailPlaceholder (Ljava/lang/CharSequence;)V
public fun setEmailRequired (Z)V
- public fun setFormTitle (Ljava/lang/String;)V
- public fun setIsRequiredLabel (Ljava/lang/String;)V
- public fun setMessageLabel (Ljava/lang/String;)V
- public fun setMessagePlaceholder (Ljava/lang/String;)V
- public fun setNameLabel (Ljava/lang/String;)V
- public fun setNamePlaceholder (Ljava/lang/String;)V
+ public fun setFormTitle (Ljava/lang/CharSequence;)V
+ public fun setIsRequiredLabel (Ljava/lang/CharSequence;)V
+ public fun setMessageLabel (Ljava/lang/CharSequence;)V
+ public fun setMessagePlaceholder (Ljava/lang/CharSequence;)V
+ public fun setNameLabel (Ljava/lang/CharSequence;)V
+ public fun setNamePlaceholder (Ljava/lang/CharSequence;)V
public fun setNameRequired (Z)V
public fun setOnFormClose (Ljava/lang/Runnable;)V
public fun setOnFormOpen (Ljava/lang/Runnable;)V
@@ -3015,8 +3015,8 @@ public final class io/sentry/SentryFeedbackOptions {
public fun setShowBranding (Z)V
public fun setShowEmail (Z)V
public fun setShowName (Z)V
- public fun setSubmitButtonLabel (Ljava/lang/String;)V
- public fun setSuccessMessageText (Ljava/lang/String;)V
+ public fun setSubmitButtonLabel (Ljava/lang/CharSequence;)V
+ public fun setSuccessMessageText (Ljava/lang/CharSequence;)V
public fun setUseSentryUser (Z)V
public fun toString ()Ljava/lang/String;
}
diff --git a/sentry/src/main/java/io/sentry/SentryFeedbackOptions.java b/sentry/src/main/java/io/sentry/SentryFeedbackOptions.java
index 2a4782d4d0..5e94423beb 100644
--- a/sentry/src/main/java/io/sentry/SentryFeedbackOptions.java
+++ b/sentry/src/main/java/io/sentry/SentryFeedbackOptions.java
@@ -32,33 +32,33 @@ public final class SentryFeedbackOptions {
// Text Customization
/** The title of the feedback form. Defaults to "Report a Bug". */
- private @NotNull String formTitle = "Report a Bug";
+ private @NotNull CharSequence formTitle = "Report a Bug";
/** The label of the submit button. Defaults to "Send Bug Report". */
- private @NotNull String submitButtonLabel = "Send Bug Report";
+ private @NotNull CharSequence submitButtonLabel = "Send Bug Report";
/** The label of the cancel button. Defaults to "Cancel". */
- private @NotNull String cancelButtonLabel = "Cancel";
+ private @NotNull CharSequence cancelButtonLabel = "Cancel";
/** The label next to the name input field. Defaults to "Name". */
- private @NotNull String nameLabel = "Name";
+ private @NotNull CharSequence nameLabel = "Name";
/** The placeholder in the name input field. Defaults to "Your Name". */
- private @NotNull String namePlaceholder = "Your Name";
+ private @NotNull CharSequence namePlaceholder = "Your Name";
/** The label next to the email input field. Defaults to "Email". */
- private @NotNull String emailLabel = "Email";
+ private @NotNull CharSequence emailLabel = "Email";
/** The placeholder in the email input field. Defaults to "your.email@example.org". */
- private @NotNull String emailPlaceholder = "your.email@example.org";
+ private @NotNull CharSequence emailPlaceholder = "your.email@example.org";
/** The text to attach to the title label for a required field. Defaults to " (Required)". */
- private @NotNull String isRequiredLabel = " (Required)";
+ private @NotNull CharSequence isRequiredLabel = " (Required)";
/** The label of the feedback description input field. Defaults to "Description". */
- private @NotNull String messageLabel = "Description";
+ private @NotNull CharSequence messageLabel = "Description";
/**
* The placeholder in the feedback description input field. Defaults to "What's the bug? What did
* you expect?".
*/
- private @NotNull String messagePlaceholder = "What's the bug? What did you expect?";
+ private @NotNull CharSequence messagePlaceholder = "What's the bug? What did you expect?";
/**
* The message displayed after a successful feedback submission. Defaults to "Thank you for your
* report!".
*/
- private @NotNull String successMessageText = "Thank you for your report!";
+ private @NotNull CharSequence successMessageText = "Thank you for your report!";
// Callbacks
/** Callback called when the feedback form is opened. */
@@ -216,7 +216,7 @@ public void setShowBranding(final boolean showBranding) {
*
* @return the title of the feedback form
*/
- public @NotNull String getFormTitle() {
+ public @NotNull CharSequence getFormTitle() {
return formTitle;
}
@@ -225,7 +225,7 @@ public void setShowBranding(final boolean showBranding) {
*
* @param formTitle the title of the feedback form
*/
- public void setFormTitle(final @NotNull String formTitle) {
+ public void setFormTitle(final @NotNull CharSequence formTitle) {
this.formTitle = formTitle;
}
@@ -234,7 +234,7 @@ public void setFormTitle(final @NotNull String formTitle) {
*
* @return the label of the submit button
*/
- public @NotNull String getSubmitButtonLabel() {
+ public @NotNull CharSequence getSubmitButtonLabel() {
return submitButtonLabel;
}
@@ -243,7 +243,7 @@ public void setFormTitle(final @NotNull String formTitle) {
*
* @param submitButtonLabel the label of the submit button
*/
- public void setSubmitButtonLabel(final @NotNull String submitButtonLabel) {
+ public void setSubmitButtonLabel(final @NotNull CharSequence submitButtonLabel) {
this.submitButtonLabel = submitButtonLabel;
}
@@ -252,7 +252,7 @@ public void setSubmitButtonLabel(final @NotNull String submitButtonLabel) {
*
* @return the label of the cancel button
*/
- public @NotNull String getCancelButtonLabel() {
+ public @NotNull CharSequence getCancelButtonLabel() {
return cancelButtonLabel;
}
@@ -261,7 +261,7 @@ public void setSubmitButtonLabel(final @NotNull String submitButtonLabel) {
*
* @param cancelButtonLabel the label of the cancel button
*/
- public void setCancelButtonLabel(final @NotNull String cancelButtonLabel) {
+ public void setCancelButtonLabel(final @NotNull CharSequence cancelButtonLabel) {
this.cancelButtonLabel = cancelButtonLabel;
}
@@ -270,7 +270,7 @@ public void setCancelButtonLabel(final @NotNull String cancelButtonLabel) {
*
* @return the label next to the name input field
*/
- public @NotNull String getNameLabel() {
+ public @NotNull CharSequence getNameLabel() {
return nameLabel;
}
@@ -279,7 +279,7 @@ public void setCancelButtonLabel(final @NotNull String cancelButtonLabel) {
*
* @param nameLabel the label next to the name input field
*/
- public void setNameLabel(final @NotNull String nameLabel) {
+ public void setNameLabel(final @NotNull CharSequence nameLabel) {
this.nameLabel = nameLabel;
}
@@ -288,7 +288,7 @@ public void setNameLabel(final @NotNull String nameLabel) {
*
* @return the placeholder in the name input field
*/
- public @NotNull String getNamePlaceholder() {
+ public @NotNull CharSequence getNamePlaceholder() {
return namePlaceholder;
}
@@ -297,7 +297,7 @@ public void setNameLabel(final @NotNull String nameLabel) {
*
* @param namePlaceholder the placeholder in the name input field
*/
- public void setNamePlaceholder(final @NotNull String namePlaceholder) {
+ public void setNamePlaceholder(final @NotNull CharSequence namePlaceholder) {
this.namePlaceholder = namePlaceholder;
}
@@ -306,7 +306,7 @@ public void setNamePlaceholder(final @NotNull String namePlaceholder) {
*
* @return the label next to the email input field
*/
- public @NotNull String getEmailLabel() {
+ public @NotNull CharSequence getEmailLabel() {
return emailLabel;
}
@@ -315,7 +315,7 @@ public void setNamePlaceholder(final @NotNull String namePlaceholder) {
*
* @param emailLabel the label next to the email input field
*/
- public void setEmailLabel(final @NotNull String emailLabel) {
+ public void setEmailLabel(final @NotNull CharSequence emailLabel) {
this.emailLabel = emailLabel;
}
@@ -324,7 +324,7 @@ public void setEmailLabel(final @NotNull String emailLabel) {
*
* @return the placeholder in the email input field
*/
- public @NotNull String getEmailPlaceholder() {
+ public @NotNull CharSequence getEmailPlaceholder() {
return emailPlaceholder;
}
@@ -333,7 +333,7 @@ public void setEmailLabel(final @NotNull String emailLabel) {
*
* @param emailPlaceholder the placeholder in the email input field
*/
- public void setEmailPlaceholder(final @NotNull String emailPlaceholder) {
+ public void setEmailPlaceholder(final @NotNull CharSequence emailPlaceholder) {
this.emailPlaceholder = emailPlaceholder;
}
@@ -342,7 +342,7 @@ public void setEmailPlaceholder(final @NotNull String emailPlaceholder) {
*
* @return the text to attach to the title label for a required field
*/
- public @NotNull String getIsRequiredLabel() {
+ public @NotNull CharSequence getIsRequiredLabel() {
return isRequiredLabel;
}
@@ -351,7 +351,7 @@ public void setEmailPlaceholder(final @NotNull String emailPlaceholder) {
*
* @param isRequiredLabel the text to attach to the title label for a required field
*/
- public void setIsRequiredLabel(final @NotNull String isRequiredLabel) {
+ public void setIsRequiredLabel(final @NotNull CharSequence isRequiredLabel) {
this.isRequiredLabel = isRequiredLabel;
}
@@ -360,7 +360,7 @@ public void setIsRequiredLabel(final @NotNull String isRequiredLabel) {
*
* @return the label of the feedback description input field
*/
- public @NotNull String getMessageLabel() {
+ public @NotNull CharSequence getMessageLabel() {
return messageLabel;
}
@@ -369,7 +369,7 @@ public void setIsRequiredLabel(final @NotNull String isRequiredLabel) {
*
* @param messageLabel the label of the feedback description input field
*/
- public void setMessageLabel(final @NotNull String messageLabel) {
+ public void setMessageLabel(final @NotNull CharSequence messageLabel) {
this.messageLabel = messageLabel;
}
@@ -379,7 +379,7 @@ public void setMessageLabel(final @NotNull String messageLabel) {
*
* @return the placeholder in the feedback description input field
*/
- public @NotNull String getMessagePlaceholder() {
+ public @NotNull CharSequence getMessagePlaceholder() {
return messagePlaceholder;
}
@@ -388,7 +388,7 @@ public void setMessageLabel(final @NotNull String messageLabel) {
*
* @param messagePlaceholder the placeholder in the feedback description input field
*/
- public void setMessagePlaceholder(final @NotNull String messagePlaceholder) {
+ public void setMessagePlaceholder(final @NotNull CharSequence messagePlaceholder) {
this.messagePlaceholder = messagePlaceholder;
}
@@ -398,7 +398,7 @@ public void setMessagePlaceholder(final @NotNull String messagePlaceholder) {
*
* @return the message displayed after a successful feedback submission
*/
- public @NotNull String getSuccessMessageText() {
+ public @NotNull CharSequence getSuccessMessageText() {
return successMessageText;
}
@@ -407,7 +407,7 @@ public void setMessagePlaceholder(final @NotNull String messagePlaceholder) {
*
* @param successMessageText the message displayed after a successful feedback submission
*/
- public void setSuccessMessageText(final @NotNull String successMessageText) {
+ public void setSuccessMessageText(final @NotNull CharSequence successMessageText) {
this.successMessageText = successMessageText;
}
pFad - Phonifier reborn
Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy