HomeSort by relevance Sort by last modified time
    Searched refs:ActionException (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViews_ActionExceptionTest.java 26 import android.widget.RemoteViews.ActionException;
29 * Test {@link ActionException}.
31 @TestTargetClass(ActionException.class)
36 method = "RemoteViews.ActionException",
41 method = "RemoteViews.ActionException",
47 new RemoteViews.ActionException(message);
49 new RemoteViews.ActionException(new Exception());
RemoteViewsTest.java 53 import android.widget.RemoteViews.ActionException;
184 fail("Should throw ActionException");
185 } catch (ActionException e) {
210 fail("Should throw ActionException");
211 } catch (ActionException e) {
290 fail("Should throw ActionException");
291 } catch (ActionException e) {
327 fail("Should throw ActionException");
328 } catch (ActionException e) {
371 fail("Should throw ActionException");
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 90 public static class ActionException extends RuntimeException {
91 public ActionException(Exception ex) {
94 public ActionException(String message) {
106 public abstract void apply(View root) throws ActionException;
447 throw new ActionException("can't find view: 0x" + Integer.toHexString(viewId));
452 throw new ActionException("bad type: " + this.type);
461 throw new ActionException("view: " + klass.getName() + " doesn't have method: "
466 throw new ActionException("view: " + klass.getName()
481 throw new ActionException(ex);
566 throw new ActionException("Tag " + tag + " not found")
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 84 milliseconds