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

com.bugvm.apple.foundation.NSBundle 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.foundation;

/**/
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.corefoundation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coretext.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.coredata.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coremedia.*;
import com.bugvm.apple.security.*;
import com.bugvm.apple.dispatch.*;
/**/

/**/

/**/
/**/@Library("Foundation") @NativeClass/**/
/**/public/**/ class /**/NSBundle/**/ 
    extends /**/NSObject/**/ 
    /**//**/ {

    public static class Notifications {
        public static NSObject observeDidLoad(NSBundle object, final VoidBlock2> block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidLoadNotification(), object, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @SuppressWarnings("unchecked")
                @Override
                public void invoke(NSNotification a) {
                    List classes = null;
                    NSDictionary data = a.getUserInfo();
                    if (data.containsKey(LoadedClassesKey())) {
                        NSArray val = (NSArray)data.get(LoadedClassesKey());
                        classes = val.asStringList();
                    }
                    
                    block.invoke((NSBundle)a.getObject(), classes);
                }
            });
        }
    }
    
    /**/public static class NSBundlePtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(NSBundle.class); }/**/
    /**//**/
    /**/
    public NSBundle() {}
    protected NSBundle(SkipInit skipInit) { super(skipInit); }
    /**
     * @since Available in iOS 4.0 and later.
     */
    public NSBundle(NSURL url) { super((SkipInit) null); initObject(init(url)); }
    /**/
    
    public NSBundle(File file) {
        super((SkipInit) null);
        initObject(init(file.getAbsolutePath()));
    }
    
    /**/
    @Property(selector = "isLoaded")
    public native boolean isLoaded();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "bundleURL")
    public native NSURL getBundleURL();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "resourceURL")
    public native NSURL getResourceURL();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "executableURL")
    public native NSURL getExecutableURL();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "privateFrameworksURL")
    public native NSURL getPrivateFrameworksURL();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "sharedFrameworksURL")
    public native NSURL getSharedFrameworksURL();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "sharedSupportURL")
    public native NSURL getSharedSupportURL();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "builtInPlugInsURL")
    public native NSURL getBuiltInPlugInsURL();
    /**
     * @since Available in iOS 7.0 and later.
     */
    @Property(selector = "appStoreReceiptURL")
    public native NSURL getAppStoreReceiptURL();
    @Property(selector = "bundlePath")
    public native String getBundlePath();
    @Property(selector = "resourcePath")
    public native String getResourcePath();
    @Property(selector = "executablePath")
    public native String getExecutablePath();
    @Property(selector = "privateFrameworksPath")
    public native String getPrivateFrameworksPath();
    @Property(selector = "sharedFrameworksPath")
    public native String getSharedFrameworksPath();
    @Property(selector = "sharedSupportPath")
    public native String getSharedSupportPath();
    @Property(selector = "builtInPlugInsPath")
    public native String getBuiltInPlugInsPath();
    @Property(selector = "bundleIdentifier")
    public native String getBundleIdentifier();
    @Property(selector = "infoDictionary")
    public native NSDictionary getInfoDictionary();
    @Property(selector = "localizedInfoDictionary")
    public native NSDictionary getLocalizedInfoDictionary();
    @Property(selector = "principalClass")
    public native Class getPrincipalClass();
    @Property(selector = "preferredLocalizations")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getPreferredLocalizations();
    @Property(selector = "localizations")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getLocalizations();
    @Property(selector = "developmentLocalization")
    public native String getDevelopmentLocalization();
    /**
     * @since Available in iOS 2.0 and later.
     */
    @Property(selector = "executableArchitectures")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSBundleExecutableArchitectureType.AsListMarshaler.class) List getExecutableArchitectures();
    /**/
    /**//**/
    
    /* UIKit extensions */
    @WeaklyLinked
    public NSArray loadNib(String name, NSObject owner, UINibLoadingOptions options) {
        return NSBundleExtensions.loadNib(this, name, owner, options);
    }
    
    /**/
    @GlobalValue(symbol="NSBundleDidLoadNotification", optional=true)
    public static native NSString DidLoadNotification();
    @GlobalValue(symbol="NSLoadedClasses", optional=true)
    protected static native NSString LoadedClassesKey();
    
    @Method(selector = "initWithPath:")
    protected native @Pointer long init(String path);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "initWithURL:")
    protected native @Pointer long init(NSURL url);
    /**
     * @since Available in iOS 2.0 and later.
     */
    public boolean preflight() throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       boolean result = preflight(ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    /**
     * @since Available in iOS 2.0 and later.
     */
    @Method(selector = "preflightAndReturnError:")
    private native boolean preflight(NSError.NSErrorPtr error);
    /**
     * @since Available in iOS 2.0 and later.
     */
    public boolean load() throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       boolean result = load(ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    /**
     * @since Available in iOS 2.0 and later.
     */
    @Method(selector = "loadAndReturnError:")
    private native boolean load(NSError.NSErrorPtr error);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLForAuxiliaryExecutable:")
    public native NSURL findAuxiliaryExecutableURL(String executableName);
    @Method(selector = "pathForAuxiliaryExecutable:")
    public native String findAuxiliaryExecutablePath(String executableName);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLForResource:withExtension:")
    public native NSURL findResourceURL(String name, String ext);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLForResource:withExtension:subdirectory:")
    public native NSURL findResourceURL(String name, String ext, String subpath);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLForResource:withExtension:subdirectory:localization:")
    public native NSURL findResourceURL(String name, String ext, String subpath, String localizationName);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLsForResourcesWithExtension:subdirectory:")
    public native NSArray findResourceURLs(String ext, String subpath);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLsForResourcesWithExtension:subdirectory:localization:")
    public native NSArray findResourceURLs(String ext, String subpath, String localizationName);
    @Method(selector = "pathForResource:ofType:")
    public native String findResourcePath(String name, String ext);
    @Method(selector = "pathForResource:ofType:inDirectory:")
    public native String findResourcePath(String name, String ext, String subpath);
    @Method(selector = "pathForResource:ofType:inDirectory:forLocalization:")
    public native String findResourcePath(String name, String ext, String subpath, String localizationName);
    @Method(selector = "pathsForResourcesOfType:inDirectory:")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List findResourcesPaths(String ext, String subpath);
    @Method(selector = "pathsForResourcesOfType:inDirectory:forLocalization:")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List findResourcesPaths(String ext, String subpath, String localizationName);
    @Method(selector = "localizedStringForKey:value:table:")
    public native String getLocalizedString(String key, String value, String tableName);
    @Method(selector = "objectForInfoDictionaryKey:")
    public native NSObject getInfoDictionaryObject(String key);
    @Method(selector = "classNamed:")
    public native Class getClassNamed(String className);
    @Method(selector = "mainBundle")
    public static native NSBundle getMainBundle();
    @Method(selector = "bundleForClass:")
    public static native NSBundle getBundle(Class aClass);
    @Method(selector = "bundleWithIdentifier:")
    public static native NSBundle getBundle(String identifier);
    @Method(selector = "allBundles")
    public static native NSArray getAllBundles();
    @Method(selector = "allFrameworks")
    public static native NSArray getAllFrameworks();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLForResource:withExtension:subdirectory:inBundleWithURL:")
    public static native NSURL findResourceURLInBundle(String name, String ext, String subpath, NSURL bundleURL);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "URLsForResourcesWithExtension:subdirectory:inBundleWithURL:")
    public static native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List findResourceURLsInBundle(String ext, String subpath, NSURL bundleURL);
    @Method(selector = "pathForResource:ofType:inDirectory:")
    public static native String findResourcePathInBundle(String name, String ext, String bundlePath);
    @Method(selector = "pathsForResourcesOfType:inDirectory:")
    public static native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List findResourcesPathsInBundle(String ext, String bundlePath);
    @Method(selector = "preferredLocalizationsFromArray:")
    public static native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getPreferredLocalizations(@com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List localizationsArray);
    @Method(selector = "preferredLocalizationsFromArray:forPreferences:")
    public static native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getPreferredLocalizations(@com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List localizationsArray, @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List preferencesArray);
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy