All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.apple.eventkit.EKCalendarItem Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013-2015 RoboVM AB
 *
 * 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.
 */
package com.bugvm.apple.eventkit;

/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.corelocation.*;
import com.bugvm.apple.addressbook.*;
import com.bugvm.apple.mapkit.*;
/**/

/**/
/**
 * @since Available in iOS 5.0 and later.
 */
/**/
/**/@Library("EventKit") @NativeClass/**/
/**/public/**/ class /**/EKCalendarItem/**/ 
    extends /**/EKObject/**/ 
    /**//**/ {

    /**/public static class EKCalendarItemPtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(EKCalendarItem.class); }/**/
    /**//**/
    /**/
    public EKCalendarItem() {}
    protected EKCalendarItem(long handle) { super(handle); }
    protected EKCalendarItem(SkipInit skipInit) { super(skipInit); }
    /**/
    /**/
    @Property(selector = "calendar")
    public native EKCalendar getCalendar();
    @Property(selector = "setCalendar:")
    public native void setCalendar(EKCalendar v);
    /**
     * @since Available in iOS 6.0 and later.
     */
    @Property(selector = "calendarItemIdentifier")
    public native String getCalendarItemIdentifier();
    /**
     * @since Available in iOS 6.0 and later.
     */
    @Property(selector = "calendarItemExternalIdentifier")
    public native String getCalendarItemExternalIdentifier();
    @Property(selector = "title")
    public native String getTitle();
    @Property(selector = "setTitle:")
    public native void setTitle(String v);
    @Property(selector = "location")
    public native String getLocation();
    @Property(selector = "setLocation:")
    public native void setLocation(String v);
    @Property(selector = "notes")
    public native String getNotes();
    @Property(selector = "setNotes:")
    public native void setNotes(String v);
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "URL")
    public native NSURL getURL();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "setURL:")
    public native void setURL(NSURL v);
    @Property(selector = "lastModifiedDate")
    public native NSDate getLastModifiedDate();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "creationDate")
    public native NSDate getCreationDate();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "timeZone")
    public native NSTimeZone getTimeZone();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "setTimeZone:")
    public native void setTimeZone(NSTimeZone v);
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "hasAlarms")
    public native boolean hasAlarms();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "hasRecurrenceRules")
    public native boolean hasRecurrenceRules();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "hasAttendees")
    public native boolean hasAttendees();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "hasNotes")
    public native boolean hasNotes();
    @Property(selector = "attendees")
    public native NSArray getAttendees();
    @Property(selector = "alarms")
    public native NSArray getAlarms();
    @Property(selector = "setAlarms:")
    public native void setAlarms(NSArray v);
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "recurrenceRules")
    public native NSArray getRecurrenceRules();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "setRecurrenceRules:")
    public native void setRecurrenceRules(NSArray v);
    /**/
    /**//**/
    /**/
    @Method(selector = "addAlarm:")
    public native void addAlarm(EKAlarm alarm);
    @Method(selector = "removeAlarm:")
    public native void removeAlarm(EKAlarm alarm);
    @Method(selector = "addRecurrenceRule:")
    public native void addRecurrenceRule(EKRecurrenceRule rule);
    @Method(selector = "removeRecurrenceRule:")
    public native void removeRecurrenceRule(EKRecurrenceRule rule);
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy