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

com.bugvm.apple.coredata.NSManagedObject Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show 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.coredata;

/**/
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.*;
/**/

/**/
/**
 * @since Available in iOS 3.0 and later.
 */
/**/
/**/@Library("CoreData") @NativeClass/**/
/**/public/**/ class /**/NSManagedObject/**/ 
    extends /**/NSObject/**/ 
    /**//**/ {

    /**/public static class NSManagedObjectPtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(NSManagedObject.class); }/**/
    /**//**/
    /**/
    public NSManagedObject() {}
    protected NSManagedObject(SkipInit skipInit) { super(skipInit); }
    public NSManagedObject(NSEntityDescription entity, NSManagedObjectContext context) { super((SkipInit) null); initObject(init(entity, context)); }
    /**/
    /**/
    @Property(selector = "managedObjectContext")
    public native NSManagedObjectContext getManagedObjectContext();
    @Property(selector = "entity")
    public native NSEntityDescription getEntity();
    @Property(selector = "objectID")
    public native NSManagedObjectID getObjectID();
    @Property(selector = "isInserted")
    public native boolean isInserted();
    @Property(selector = "isUpdated")
    public native boolean isUpdated();
    @Property(selector = "isDeleted")
    public native boolean isDeleted();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "hasChanges")
    public native boolean hasChanges();
    /**
     * @since Available in iOS 7.0 and later.
     */
    @Property(selector = "hasPersistentChangedValues")
    public native boolean hasPersistentChangedValues();
    @Property(selector = "isFault")
    public native boolean isFault();
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Property(selector = "faultingState")
    public native @MachineSizedUInt long getFaultingState();
    /**/
    /**//**/
    public void setValue(String key, NSObject value) {
        setValue(value, key);
    }
    public void setPrimitiveValue(String key, NSObject value) {
        setPrimitiveValue(value, key);
    }
    /**
     * 
     * @param key
     * @param value
     * @return
     * @throws NSErrorException
     */
    public boolean validateValue(String key, NSObject value) throws NSErrorException {
        return validateValue(value, key);
    }
    /**/
    @Method(selector = "initWithEntity:insertIntoManagedObjectContext:")
    protected native @Pointer long init(NSEntityDescription entity, NSManagedObjectContext context);
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Method(selector = "hasFaultForRelationshipNamed:")
    public native boolean hasFaultForRelationship(String key);
    /**
     * @since Available in iOS 8.3 and later.
     */
    @Method(selector = "objectIDsForRelationshipNamed:")
    public native NSArray getObjectIDsForRelationship(String key);
    @Method(selector = "willAccessValueForKey:")
    public native void willAccessValue(String key);
    @Method(selector = "didAccessValueForKey:")
    public native void didAccessValue(String key);
    @Method(selector = "willChangeValueForKey:")
    public native void willChangeValue(String key);
    @Method(selector = "didChangeValueForKey:")
    public native void didChangeValue(String key);
    @Method(selector = "willChangeValueForKey:withSetMutation:usingObjects:")
    public native void willChangeValue(String inKey, NSKeyValueSetMutationKind inMutationKind, NSSet inObjects);
    @Method(selector = "didChangeValueForKey:withSetMutation:usingObjects:")
    public native void didChangeValue(String inKey, NSKeyValueSetMutationKind inMutationKind, NSSet inObjects);
    @Method(selector = "awakeFromFetch")
    public native void awakeFromFetch();
    @Method(selector = "awakeFromInsert")
    public native void awakeFromInsert();
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Method(selector = "awakeFromSnapshotEvents:")
    public native void awakeFromSnapshotEvents(NSSnapshotEventType flags);
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Method(selector = "prepareForDeletion")
    public native void prepareForDeletion();
    @Method(selector = "willSave")
    public native void willSave();
    @Method(selector = "didSave")
    public native void didSave();
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Method(selector = "willTurnIntoFault")
    public native void willTurnIntoFault();
    @Method(selector = "didTurnIntoFault")
    public native void didTurnIntoFault();
    @Method(selector = "valueForKey:")
    public native NSObject getValue(String key);
    @Method(selector = "setValue:forKey:")
    private native void setValue(NSObject value, String key);
    @Method(selector = "primitiveValueForKey:")
    public native NSObject getPrimitiveValue(String key);
    @Method(selector = "setPrimitiveValue:forKey:")
    private native void setPrimitiveValue(NSObject value, String key);
    @Method(selector = "committedValuesForKeys:")
    public native NSDictionary getCommittedValues(NSArray keys);
    @Method(selector = "changedValues")
    public native NSDictionary getChangedValues();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Method(selector = "changedValuesForCurrentEvent")
    public native NSDictionary getChangedValuesForCurrentEvent();
    private boolean validateValue(NSObject value, String key) throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       boolean result = validateValue(value, key, ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    @Method(selector = "validateValue:forKey:error:")
    private native boolean validateValue(NSObject value, String key, NSError.NSErrorPtr error);
    public boolean validateForDelete() throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       boolean result = validateForDelete(ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    @Method(selector = "validateForDelete:")
    private native boolean validateForDelete(NSError.NSErrorPtr error);
    public boolean validateForInsert() throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       boolean result = validateForInsert(ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    @Method(selector = "validateForInsert:")
    private native boolean validateForInsert(NSError.NSErrorPtr error);
    public boolean validateForUpdate() throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       boolean result = validateForUpdate(ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    @Method(selector = "validateForUpdate:")
    private native boolean validateForUpdate(NSError.NSErrorPtr error);
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Method(selector = "contextShouldIgnoreUnmodeledPropertyChanges")
    public static native boolean shouldContextIgnoreUnmodeledPropertyChanges();
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy