LicenseInfo.java 544 B

1234567891011121314151617181920212223
  1. package com.epson.mobilephone.common.license;
  2. import android.content.Context;
  3. import androidx.annotation.NonNull;
  4. import java.io.Serializable;
  5. import java.lang.annotation.Retention;
  6. import java.lang.annotation.RetentionPolicy;
  7. /**
  8. * 协议对象
  9. */
  10. public interface LicenseInfo extends Serializable {
  11. String getApplicationName(@NonNull Context context);
  12. String getDocumentString(@NonNull Context context, int i);
  13. int getLicenseAgreement(@NonNull Context context);
  14. void setLicenceAgreement(@NonNull Context context);
  15. }