mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-01-07 14:38:04 -05:00
24 lines
461 B
Java
24 lines
461 B
Java
package protect.card_locker;
|
|
|
|
public class BarcodeValues {
|
|
private final String mFormat;
|
|
private final String mContent;
|
|
|
|
public BarcodeValues(String format, String content) {
|
|
mFormat = format;
|
|
mContent = content;
|
|
}
|
|
|
|
public String format() {
|
|
return mFormat;
|
|
}
|
|
|
|
public String content() {
|
|
return mContent;
|
|
}
|
|
|
|
public boolean isEmpty() {
|
|
return mFormat == null && mContent == null;
|
|
}
|
|
}
|