本文整理匯總了Java中android.os.RemoteException.setStackTrace方法的典型用法代碼示例。如果您正苦於以下問題:Java RemoteException.setStackTrace方法的具體用法?Java RemoteException.setStackTrace怎麽用?Java RemoteException.setStackTrace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.os.RemoteException
的用法示例。
在下文中一共展示了RemoteException.setStackTrace方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getReceiverIntentFilter
import android.os.RemoteException; //導入方法依賴的package包/類
public List<IntentFilter> getReceiverIntentFilter(ActivityInfo info) throws RemoteException {
try {
if (getAndCheckCallingPkg(info.packageName) != null) {
PluginPackageParser parser = (PluginPackageParser) this.mPluginCache.get(info.packageName);
if (parser != null) {
List<IntentFilter> filters = parser.getReceiverIntentFilter(info);
if (filters != null && filters.size() > 0) {
return new ArrayList(filters);
}
}
}
return new ArrayList(0);
} catch (Exception e) {
RemoteException remoteException = new RemoteException();
remoteException.setStackTrace(e.getStackTrace());
throw remoteException;
}
}
示例2: getReceivers
import android.os.RemoteException; //導入方法依賴的package包/類
@Override
public List<ActivityInfo> getReceivers(String packageName, int flags) throws RemoteException {
try {
String pkg = getAndCheckCallingPkg(packageName);
if (pkg != null) {
PluginPackageParser parser = mPluginCache.get(packageName);
if (parser != null) {
return new ArrayList<ActivityInfo>(parser.getReceivers());
}
}
} catch (Exception e) {
RemoteException remoteException = new RemoteException();
remoteException.setStackTrace(e.getStackTrace());
throw remoteException;
}
return new ArrayList<ActivityInfo>(0);
}
示例3: getReceiverIntentFilter
import android.os.RemoteException; //導入方法依賴的package包/類
@Override
public List<IntentFilter> getReceiverIntentFilter(ActivityInfo info) throws RemoteException {
try {
String pkg = getAndCheckCallingPkg(info.packageName);
if (pkg != null) {
PluginPackageParser parser = mPluginCache.get(info.packageName);
if (parser != null) {
List<IntentFilter> filters = parser.getReceiverIntentFilter(info);
if (filters != null && filters.size() > 0) {
return new ArrayList<IntentFilter>(filters);
}
}
}
return new ArrayList<IntentFilter>(0);
} catch (Exception e) {
RemoteException remoteException = new RemoteException();
remoteException.setStackTrace(e.getStackTrace());
throw remoteException;
}
}
示例4: getReceivers
import android.os.RemoteException; //導入方法依賴的package包/類
public List<ActivityInfo> getReceivers(String packageName, int flags) throws RemoteException {
try {
if (getAndCheckCallingPkg(packageName) != null) {
PluginPackageParser parser = (PluginPackageParser) this.mPluginCache.get(packageName);
if (parser != null) {
return new ArrayList(parser.getReceivers());
}
}
return new ArrayList(0);
} catch (Exception e) {
RemoteException remoteException = new RemoteException();
remoteException.setStackTrace(e.getStackTrace());
throw remoteException;
}
}