// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-exports.getCalendars = function() {
- throw 'getCalendars not implemented';
-};
-
-exports.getUnifiedCalendar = function() {
- throw 'getUnifiedCalendar not implemented';
-};
-
-exports.getDefaultCalendar = function() {
- throw 'getDefaultCalendar not implemented';
-};
-
-exports.getCalendar = function() {
- throw 'getCalendar not implemented';
-};
-
-exports.addCalendar = function() {
- throw 'addCalendar not implemented';
-};
-
-exports.removeCalendar = function() {
- throw 'removeCalendar not implemented';
-};
-
-tizen.Calendar = function(accountId, name, type) {
- throw 'Calendar not implemented';
-};
-
-tizen.CalendarEventId = function(uid, rid) {
- throw 'CalendarEventId not implemented';
-};
-
-tizen.CalendarEvent = function(eventInitDict, format) {
- throw 'CalendarEvent not implemented';
-};
-
-tizen.CalendarTask = function(taskInitDict, format) {
- throw 'CalendarTask not implemented';
-};
-
-tizen.CalendarAlarm = function(time, method, description) {
- throw 'CalendarAlarm not implemented';
-};
-
-tizen.CalendarAttendee = function(uri, attendeeInitDict) {
- throw 'CalendarAttendee not implemented';
-};
-
-tizen.CalendarRecurrenceRule = function(frequency, ruleInitDict) {
- throw 'CalendarRecurrenceRule not implemented';
-};
+//= require('tizen.calendar.Common.js');
+//= require('tizen.calendar.CalendarItem.js');
+//= require('tizen.calendar.Calendar.js');
+//= require('tizen.calendar.CalendarManager.js');
+//= require('tizen.calendar.CalendarAttendee.js');
+//= require('tizen.calendar.CalendarAlarm.js');
+//= require('tizen.calendar.CalendarRecurrenceRule.js');
+++ /dev/null
-/*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * 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.
- */
-
-(function () {
- 'use strict';
-
- var CalendarCommon = require('./tizen.calendar.Common');
- var CalendarItem = require('./tizen.calendar.CalendarItem');
- var Calendar = require('./tizen.calendar.Calendar');
- var CalendarManager = require('./tizen.calendar.CalendarManager');
- var CalendarAttendee = require('./tizen.calendar.CalendarAttendee');
- var CalendarAlarm = require('./tizen.calendar.CalendarAlarm');
- var CalendarRecurrenceRule = require('./tizen.calendar.CalendarRecurrenceRule');
-
-})();