Skip to content

Instantly share code, notes, and snippets.

@chenzhang2006
Last active April 24, 2020 14:51
Show Gist options
  • Save chenzhang2006/f73eac42cea92c0ce7df1f1bb1ebdaf7 to your computer and use it in GitHub Desktop.
Save chenzhang2006/f73eac42cea92c0ce7df1f1bb1ebdaf7 to your computer and use it in GitHub Desktop.
Kotlin compiler generated @jvmoverloads with 3 arguments
@JvmOverloads
public CustomTextInput(@NotNull Context context, @Nullable AttributeSet attrs, int defStyleAttr){
super(context, attrs, defStyleAttr);
}
@JvmOverloads
public CustomTextInput(@NotNull Context context, @Nullable AttributeSet attrs){
super(context, attrs, 0);
}
@JvmOverloads
public CustomTextInput(@NotNull Context context){
super(context, null, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment