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

com.bugvm.apple.foundation.NSOrthography 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.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.*;
/**/

/**/
/**
 * @since Available in iOS 4.0 and later.
 */
/**/
/**/@Library("Foundation") @NativeClass/**/
/**/public/**/ class /**/NSOrthography/**/ 
    extends /**/NSObject/**/ 
    /**/implements NSCoding/**/ {

    public static class LanguageMapMarshaler {
        @SuppressWarnings("unchecked")
        @MarshalsPointer
        public static Map> toObject(Class cls, long handle, long flags) {
            NSDictionary> o = (NSDictionary>) NSObject.Marshaler.toObject(cls, handle, flags);
            if (o == null) {
                return null;
            }
            Map> map = new HashMap<>();
            for (Map.Entry> e : o.entrySet()) {
                map.put(e.getKey().toString(), e.getValue().asStringList());
            }
            
            return map;
        }
        @MarshalsPointer
        public static long toNative(Map> l, long flags) {
            if (l == null) {
                return 0L;
            }
            
            NSMutableDictionary> dict = new NSMutableDictionary<>();
            for (Map.Entry> e : l.entrySet()) {
                dict.put(new NSString(e.getKey()), NSArray.fromStrings(e.getValue()));
            }
            
            return NSObject.Marshaler.toNative(dict, flags);
        }
    }
    
    /**/public static class NSOrthographyPtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(NSOrthography.class); }/**/
    /**//**/
    /**/
    public NSOrthography() {}
    protected NSOrthography(SkipInit skipInit) { super(skipInit); }
    /**
     * @since Available in iOS 4.0 and later.
     */
    public NSOrthography(String script, @com.bugvm.rt.bro.annotation.Marshaler(NSOrthography.LanguageMapMarshaler.class) Map> map) { super((SkipInit) null); initObject(init(script, map)); }
    public NSOrthography(NSCoder aDecoder) { super((SkipInit) null); initObject(init(aDecoder)); }
    /**/
    /**/
    @Property(selector = "dominantScript")
    public native String getDominantScript();
    @Property(selector = "languageMap")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSOrthography.LanguageMapMarshaler.class) Map> getLanguageMap();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "dominantLanguage")
    public native String getDominantLanguage();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "allScripts")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getAllScripts();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "allLanguages")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getAllLanguages();
    /**/
    /**//**/
    /**/
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "initWithDominantScript:languageMap:")
    protected native @Pointer long init(String script, @com.bugvm.rt.bro.annotation.Marshaler(NSOrthography.LanguageMapMarshaler.class) Map> map);
    @Method(selector = "initWithCoder:")
    protected native @Pointer long init(NSCoder aDecoder);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "languagesForScript:")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getLanguagesForScript(String script);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Method(selector = "dominantLanguageForScript:")
    public native String getDominantLanguageForScript(String script);
    @Method(selector = "encodeWithCoder:")
    public native void encode(NSCoder coder);
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy