summaryrefslogtreecommitdiffstats
path: root/src/com/android/lunar/ILunarService.aidl
diff options
context:
space:
mode:
authorMatt Garnes <matt@cyngn.com>2014-11-11 17:55:27 -0800
committerMatt Garnes <matt@cyngn.com>2014-11-13 16:20:18 -0800
commit47851abf10de03162f18eb0620650f1f0b0c4232 (patch)
tree445840854eb02714632243b5046c72a07c933110 /src/com/android/lunar/ILunarService.aidl
parent4f65ce8f7e3b63754b532fb4c87057b287f692fe (diff)
downloadandroid_packages_apps_Calendar-47851abf10de03162f18eb0620650f1f0b0c4232.tar.gz
android_packages_apps_Calendar-47851abf10de03162f18eb0620650f1f0b0c4232.tar.bz2
android_packages_apps_Calendar-47851abf10de03162f18eb0620650f1f0b0c4232.zip
Revert "Calendar: To display the complex lunar info."
This reverts commit 3dc108642c87bc85085e7b5dd40d0a227ead24ff.
Diffstat (limited to 'src/com/android/lunar/ILunarService.aidl')
-rw-r--r--src/com/android/lunar/ILunarService.aidl26
1 files changed, 17 insertions, 9 deletions
diff --git a/src/com/android/lunar/ILunarService.aidl b/src/com/android/lunar/ILunarService.aidl
index 99702a1c..f5a24f32 100644
--- a/src/com/android/lunar/ILunarService.aidl
+++ b/src/com/android/lunar/ILunarService.aidl
@@ -30,13 +30,21 @@
package com.android.lunar;
interface ILunarService {
- String getLunarInfo(int year, int month, int monthDay, boolean multipleInfo,
- boolean appendType);
- String getComplexLunarInfo(int year, int month, int monthDay, boolean multipleInfo,
- boolean appendType);
- String[] getLunarInfoForMonth(int year, int month, boolean multipleInfo, boolean appendType);
- String getSeparationForMultiInfo();
- String getSeparationForType();
- String getSpecialFlag();
- String getCommonFlag();
+ String getTraditionalFestivalSimple();
+ String getTraditionalFestival(int lunarYear, int lunarMonth, int lunarDay);
+ String getFestivalSimple();
+ String getFestival(int year, int month, int day);
+ String getLunarSolarTerms(int year);
+ String getAnimalsYearSimple();
+ String getAnimalsYear(int lunarYear);
+ String getChinaMonthStringSimple();
+ String getChinaMonthString(int lunarMonth, boolean isLeapMonth);
+ String getChinaDayStringSimple(boolean isDisplayLunarMonthForFirstDay);
+ String getChinaDayString(int lunarMonth, int lunarDay, boolean isLeapMonth,
+ boolean isDisplayLunarMonthForFirstDay);
+ String getChinaYearStringSimple();
+ String getChinaYearString(int lunarYear);
+ String getLunarCalendarInfo();
+ String getLunarStringForDayView(int year, int month, int monthDay);
+ String getLunarDay(int year, int month, int monthDay);
}