Android Open Source - porter Mms Entry






From Project

Back to project page porter.

License

The source code is released under:

Copyright (c) 2014, Benjamin Damer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...

If you think the Android project porter 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

package com.afqa123.porter;
//w ww .ja  v a  2 s . c  o m
public class MmsEntry implements Entry {

  private String id;
  private String address;
  private String date;
  private String type;
  private String body;
  
  @Override
  public String getId() {
    return id;
  }
  public void setId(String id) {
    this.id = id;
  }
  @Override
  public String getAddress() {
    return address;
  }
  public void setAddress(String address) {
    this.address = address;
  }
  @Override
  public String getDate() {
    return date;
  }
  public void setDate(String date) {
    this.date = date;
  }
  public String getType() {
    return type;
  }
  public void setType(String type) {
    this.type = type;
  }
  @Override
  public String getBody() {
    return body;
  }
  public void setBody(String body) {
    this.body = body;
  }
  @Override
  public boolean isOutgoing() {
    return "128".equals(type);
  }
}




Java Source Code List

com.afqa123.porter.Entry.java
com.afqa123.porter.MainActivity.java
com.afqa123.porter.MmsEntry.java
com.afqa123.porter.MmsProvider.java
com.afqa123.porter.SmsEntry.java
com.afqa123.porter.SmsProvider.java
com.afqa123.porter.StoppableThread.java