CommonMethods.java :  » Web » mssw » org » aksw » mssw » Android Open Source

Android Open Source » Web » mssw 
mssw » org » aksw » mssw » CommonMethods.java
package org.aksw.mssw;

import android.content.ContentResolver;

public class CommonMethods {

  public static boolean checkForTripleProvider(ContentResolver cr) {
    if (cr.acquireContentProviderClient(
        Constants.TRIPLE_AUTHORITY) == null) {
      return false;
    } else {
      return true;
    }
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.