mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-03-26 10:47:47 +01:00
17 lines
364 B
Java
17 lines
364 B
Java
![]() |
package com.mikepenz.materialdrawer.holder;
|
||
|
|
||
|
import androidx.annotation.StringRes;
|
||
|
|
||
|
/**
|
||
|
* Created by mikepenz on 13.07.15.
|
||
|
*/
|
||
|
public class StringHolder extends com.mikepenz.materialize.holder.StringHolder {
|
||
|
public StringHolder(CharSequence text) {
|
||
|
super(text);
|
||
|
}
|
||
|
|
||
|
public StringHolder(@StringRes int textRes) {
|
||
|
super(textRes);
|
||
|
}
|
||
|
}
|