If you think the Android project DashClockWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright 2013 Google Inc./*fromwww.java2s.com*/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/package com.google.android.apps.dashclock.api;
import android.content.ComponentName;
import android.os.Parcel;
import android.os.Parcelable;
import android.text.TextUtils;
publicclass VisibleExtension implements Parcelable {
// TODO: if this ever becomes a public API, make sure to add parcel versioning.
private ComponentName mComponentName;
private ExtensionData mData;
public VisibleExtension() {
}
public ComponentName componentName() {
return this.mComponentName;
}
public VisibleExtension componentName(final ComponentName mComponentName) {
this.mComponentName = mComponentName;
returnthis;
}
public ExtensionData data() {
return this.mData;
}
public VisibleExtension data(final ExtensionData mData) {
this.mData = mData;
returnthis;
}
publicstaticfinal Creator<VisibleExtension> CREATOR
= new Creator<VisibleExtension>() {
public VisibleExtension createFromParcel(Parcel in) {
returnnew VisibleExtension(in);
}
public VisibleExtension[] newArray(int size) {
returnnew VisibleExtension[size];
}
};
private VisibleExtension(Parcel in) {
// Read extension data
boolean dataPresent = in.readInt() == 1;
this.mData = (ExtensionData) (dataPresent
? in.readParcelable(ExtensionData.class.getClassLoader())
: null);
// Read component name
String componentName = in.readString();
if (!TextUtils.isEmpty(componentName)) {
mComponentName = ComponentName.unflattenFromString(componentName);
} else {
mComponentName = null;
}
}
@Override
publicvoid writeToParcel(Parcel parcel, int i) {
parcel.writeInt((mData != null) ? 1 : 0);
if (mData != null) {
parcel.writeParcelable(mData, 0);
}
parcel.writeString((mComponentName == null) ? "" : mComponentName.flattenToString());
}
@Override
publicint describeContents() {
return 0;
}
@SuppressWarnings("EqualsWhichDoesntCheckParameterClass")
@Override
publicboolean equals(Object o) {
if (o == null) {
return false;
}
try {
VisibleExtension other = (VisibleExtension) o;
return objectEquals(other.mComponentName, mComponentName)
&& objectEquals(other.mData, mData);
} catch (ClassCastException e) {
return false;
}
}
privatestaticboolean objectEquals(Object x, Object y) {
if (x == null || y == null) {
return x == y;
} else {
return x.equals(y);
}
}
@Override
publicint hashCode() {
thrownew UnsupportedOperationException();
}
}