diff options
| author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-08-11 21:26:34 +0200 | 
|---|---|---|
| committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-08-11 21:26:34 +0200 | 
| commit | 777d22d75da9bfecf0bcfe2088da3fef01b2259f (patch) | |
| tree | 029d88a0b0ffd75f3d94453e2b7c89c42b33792d | |
| parent | 9aa5f23788f19689fb172fd209de72bc6941afdf (diff) | |
| download | openpgp-api-777d22d75da9bfecf0bcfe2088da3fef01b2259f.tar.gz openpgp-api-777d22d75da9bfecf0bcfe2088da3fef01b2259f.tar.bz2 openpgp-api-777d22d75da9bfecf0bcfe2088da3fef01b2259f.zip | |
Rename to OpenPgpMetadata
| -rw-r--r-- | src/org/openintents/openpgp/OpenPgpMetadata.java (renamed from src/org/openintents/openpgp/OpenPgpDecryptMetadata.java) | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/src/org/openintents/openpgp/OpenPgpDecryptMetadata.java b/src/org/openintents/openpgp/OpenPgpMetadata.java index 832feb8..2a99e40 100644 --- a/src/org/openintents/openpgp/OpenPgpDecryptMetadata.java +++ b/src/org/openintents/openpgp/OpenPgpMetadata.java @@ -23,7 +23,7 @@ import android.os.Parcelable;   * Parcelable versioning has been copied from Dashclock Widget   * https://code.google.com/p/dashclock/source/browse/api/src/main/java/com/google/android/apps/dashclock/api/ExtensionData.java   */ -public class OpenPgpDecryptMetadata implements Parcelable { +public class OpenPgpMetadata implements Parcelable {      /**       * Since there might be a case where new versions of the client using the library getting       * old versions of the protocol (and thus old versions of this class), we need a versioning @@ -52,18 +52,18 @@ public class OpenPgpDecryptMetadata implements Parcelable {          return originalSize;      } -    public OpenPgpDecryptMetadata() { +    public OpenPgpMetadata() {      } -    public OpenPgpDecryptMetadata(String filename, String mimeType, long modificationTime, -                                  long originalSize) { +    public OpenPgpMetadata(String filename, String mimeType, long modificationTime, +                           long originalSize) {          this.filename = filename;          this.mimeType = mimeType;          this.modificationTime = modificationTime;          this.originalSize = originalSize;      } -    public OpenPgpDecryptMetadata(OpenPgpDecryptMetadata b) { +    public OpenPgpMetadata(OpenPgpMetadata b) {          this.filename = b.filename;          this.mimeType = b.mimeType;          this.modificationTime = b.modificationTime; @@ -97,13 +97,13 @@ public class OpenPgpDecryptMetadata implements Parcelable {          dest.setDataPosition(startPosition + parcelableSize);      } -    public static final Creator<OpenPgpDecryptMetadata> CREATOR = new Creator<OpenPgpDecryptMetadata>() { -        public OpenPgpDecryptMetadata createFromParcel(final Parcel source) { +    public static final Creator<OpenPgpMetadata> CREATOR = new Creator<OpenPgpMetadata>() { +        public OpenPgpMetadata createFromParcel(final Parcel source) {              int parcelableVersion = source.readInt();              int parcelableSize = source.readInt();              int startPosition = source.dataPosition(); -            OpenPgpDecryptMetadata vr = new OpenPgpDecryptMetadata(); +            OpenPgpMetadata vr = new OpenPgpMetadata();              vr.filename = source.readString();              vr.mimeType = source.readString();              vr.modificationTime = source.readLong(); @@ -115,8 +115,8 @@ public class OpenPgpDecryptMetadata implements Parcelable {              return vr;          } -        public OpenPgpDecryptMetadata[] newArray(final int size) { -            return new OpenPgpDecryptMetadata[size]; +        public OpenPgpMetadata[] newArray(final int size) { +            return new OpenPgpMetadata[size];          }      }; | 
