Browse Source

Clarify the need and responsibilites of MetadataLoader interface (#1360)

pull/1365/head
Keghani Kouzoujian 9 years ago
committed by GitHub
parent
commit
9f5085965d
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      java/libphonenumber/src/com/google/i18n/phonenumbers/MetadataLoader.java

+ 3
- 1
java/libphonenumber/src/com/google/i18n/phonenumbers/MetadataLoader.java View File

@ -19,7 +19,9 @@ package com.google.i18n.phonenumbers;
import java.io.InputStream;
/**
* Interface for caller to specify a customized phone metadata loader.
* Interface for clients to specify a customized phone metadata loader, useful for Android apps to
* load Android resources since the library loads Java resources by default. Note that
* implementation owners have the responsibility to ensure this is thread-safe.
*/
public interface MetadataLoader {
/**


Loading…
Cancel
Save