Lines Matching defs:LinkProperties

52 public class LinkProperties implements Parcelable {
75 public LinkProperties() {
80 public LinkProperties(LinkProperties source) {
174 * Compares this {@code LinkProperties} interface name against the target
176 * @param target LinkProperties to compare.
179 public boolean isIdenticalInterfaceName(LinkProperties target) {
184 * Compares this {@code LinkProperties} interface name against the target
186 * @param target LinkProperties to compare.
189 public boolean isIdenticalAddresses(LinkProperties target) {
197 * Compares this {@code LinkProperties} DNS addresses against the target
199 * @param target LinkProperties to compare.
202 public boolean isIdenticalDnses(LinkProperties target) {
209 * Compares this {@code LinkProperties} Routes against the target
211 * @param target LinkProperties to compare.
214 public boolean isIdenticalRoutes(LinkProperties target) {
221 * Compares this {@code LinkProperties} HttpProxy against the target
223 * @param target LinkProperties to compare.
226 public boolean isIdenticalHttpProxy(LinkProperties target) {
233 * Compares this {@code LinkProperties} instance against the target
234 * LinkProperties in {@code obj}. Two LinkPropertieses are equal if
249 if (!(obj instanceof LinkProperties)) return false;
251 LinkProperties target = (LinkProperties) obj;
266 * @param target is a LinkProperties with the new list of addresses
269 public CompareResult<LinkAddress> compareAddresses(LinkProperties target) {
296 * @param target is a LinkProperties with the new list of dns addresses
299 public CompareResult<InetAddress> compareDnses(LinkProperties target) {
327 * @param target is a LinkProperties with the new list of routes
330 public CompareResult<RouteInfo> compareRoutes(LinkProperties target) {
399 public static final Creator<LinkProperties> CREATOR =
400 new Creator<LinkProperties>() {
401 public LinkProperties createFromParcel(Parcel in) {
402 LinkProperties netProp = new LinkProperties();
431 public LinkProperties[] newArray(int size) {
432 return new LinkProperties[size];