Android Open Source - foodroid Date Fields






From Project

Back to project page foodroid.

License

The source code is released under:

GNU General Public License

If you think the Android project foodroid 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.sba.util;
/*from w w w . ja v a 2s  .c  o m*/
public class DateFields
{
  // year
  /**
    This field denotes the Persian year.
  */
  private int year;
  /**
    Accessor method to assign a new value to year.
    @param year The new value to be assigned to year.
  */
  public void setYear(int year)
  {
    this.year = year;
  }
  /**
    Accessor method to fetch the value of year.
    @return The value of year.
  */
  public int getYear()
  {
     return year;
  }

  // month
  /**
    This field denotes the Persian month.
    <p>Note: month is zero-based.
    See constants in <code>SimplePersianCalendar</code>.
  */
  private int month;
  /**
    Accessor method to assign a new value to month.
    @param month The new value to be assigned to month.
  */
  public void setMonth(int month)
  {
    this.month = month;
  }
  /**
    Accessor method to fetch the value of month.
    @return The value of month.
  */
  public int getMonth()
  {
     return month;
  }

  // day
  /**
    This field denotes the Persian day.
  */
  private int day;
  /**
    Accessor method to assign a new value to day.
    @param day The new value to be assigned to day.
  */
  public void setDay(int day)
  {
    this.day = day;
  }
  /**
    Accessor method to fetch the value of day.
    @return The value of day.
  */
  public int getDay()
  {
     return day;
  }
  /** Constructs a <code>DateFields</code> object with the given date fields. */
  public DateFields(int year, int month, int day)
  {
    super();
    setYear(year);
    setMonth(month);
    setDay(day);
  }
  /** Constructs a <code>DateFields</code> object with the date fields initialized to 0. */
  public DateFields()
  {
    this(0, 0, 0);
  }
  
  /**
    This method returns a usable string representation of this object.
    Month is incremented to show one-based Persian month index.
    
    @return A usable string representation of this object.
  */
 
  public String toString()
  {
    return "" + year + "/" + (month + 1) + "/" + day;
  }
}




Java Source Code List

com.adp.ADPWsSample.java
com.adp.BalanceResult.java
com.adp.ChangePasswordResponse.java
com.adp.ChangePassword.java
com.adp.GetBalanceResponse.java
com.adp.GetBalance.java
com.adp.GetStatusResponse.java
com.adp.GetStatus.java
com.adp.IncomingMessage.java
com.adp.JaxRpcMessagingServiceServiceLocator.java
com.adp.JaxRpcMessagingServiceService.java
com.adp.JaxRpcMessagingService.java
com.adp.MessageObject.java
com.adp.MessagingServiceSoapBindingStub.java
com.adp.MultiAddressMessageObject.java
com.adp.OutgoingMessage.java
com.adp.ReceiveResponse.java
com.adp.ReceiveResult.java
com.adp.Receive.java
com.adp.ReportResponse.java
com.adp.ReportResult.java
com.adp.Report.java
com.adp.Result.java
com.adp.SendMultipleResponse.java
com.adp.SendMultiple.java
com.adp.SendResponse.java
com.adp.SendResult.java
com.adp.Send.java
com.adp.StatusReportResponse.java
com.adp.StatusReportResult.java
com.adp.StatusReportType0.java
com.adp.StatusReport.java
com.sba.util.DateFields.java
com.sba.util.PersianCalendar.java
com.wmc.Registration.BranchlistResource.java
com.wmc.Registration.CommentListBean.java
com.wmc.Registration.CommentResource.java
com.wmc.Registration.CommentlistResource.java
com.wmc.Registration.FoodListResource.java
com.wmc.Registration.LoginResource.java
com.wmc.Registration.OrderBean.java
com.wmc.Registration.OrderListBean.java
com.wmc.Registration.OrderResource.java
com.wmc.Registration.RegisterResource.java
com.wmc.Registration.ReserveListBean.java
com.wmc.Registration.Settings.java
com.wmc.ReservationClient.Account.java
com.wmc.ReservationClient.BranchList.java
com.wmc.ReservationClient.BranchPage.java
com.wmc.ReservationClient.Branch.java
com.wmc.ReservationClient.Comment.java
com.wmc.ReservationClient.DatabaseHelper.java
com.wmc.ReservationClient.Favorite.java
com.wmc.ReservationClient.FoodList.java
com.wmc.ReservationClient.FoodPage.java
com.wmc.ReservationClient.Food.java
com.wmc.ReservationClient.Login.java
com.wmc.ReservationClient.Main.java
com.wmc.ReservationClient.OrderList.java
com.wmc.ReservationClient.Order.java
com.wmc.ReservationClient.Search.java
com.wmc.ReservationClient.SmsMessageReceiver.java
com.wmc.ReservationClient.Table.java
com.wmc.ReservationClient.Update.java
com.wmc.ReservationClient.Utility.java
smsserver.CommentSMS.java
smsserver.LoginSMS.java
smsserver.OrderSMS.java
smsserver.Settings.java
smsserver.SmsServer.java