Lines Matching full:bundle
24 private Bundle bundle; // The parent Bundle object of this group field in BundleGroup
28 * Creates a BundleGroup with a parent bundle and a given name.
30 public BundleGroup(Bundle parent, String name) { in BundleGroup()
31 bundle = parent; in BundleGroup()
47 * Two bundle groups are considered equal iff their names are the same.
67 * This method should, in most cases, only be called from the Bundle class.
113 * Returns the bundle to which this group belongs
115 public Bundle getParentBundle() { in getParentBundle()
116 return bundle; in getParentBundle()
120 * Returns the comment associated with this bundle
127 * Returns the name of the bundle
133 protected void setParentBundle(Bundle bundle) { in setParentBundle() argument
134 this.bundle = bundle; in setParentBundle()