Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.uikit;
/**/
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.coreanimation.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coredata.*;
import com.bugvm.apple.coreimage.*;
import com.bugvm.apple.coretext.*;
import com.bugvm.apple.corelocation.*;
/**/
/**/
/**/
/**/@Library("UIKit")/**/
@Marshaler(/**/UIFontDescriptorAttributes/**/.Marshaler.class)
/**/public/**/ class /**/UIFontDescriptorAttributes/**/
extends /**/NSDictionaryWrapper/**/
/**//**/ {
/**/
public static class Marshaler {
@MarshalsPointer
public static UIFontDescriptorAttributes toObject(Class cls, long handle, long flags) {
NSDictionary o = (NSDictionary) NSObject.Marshaler.toObject(NSDictionary.class, handle, flags);
if (o == null) {
return null;
}
return new UIFontDescriptorAttributes(o);
}
@MarshalsPointer
public static long toNative(UIFontDescriptorAttributes o, long flags) {
if (o == null) {
return 0L;
}
return NSObject.Marshaler.toNative(o.data, flags);
}
}
public static class AsListMarshaler {
@MarshalsPointer
public static List toObject(Class extends NSObject> cls, long handle, long flags) {
NSArray o = (NSArray) NSObject.Marshaler.toObject(NSArray.class, handle, flags);
if (o == null) {
return null;
}
List list = new ArrayList<>();
for (int i = 0; i < o.size(); i++) {
list.add(new UIFontDescriptorAttributes(o.get(i)));
}
return list;
}
@MarshalsPointer
public static long toNative(List l, long flags) {
if (l == null) {
return 0L;
}
NSArray array = new NSMutableArray<>();
for (UIFontDescriptorAttributes i : l) {
array.add(i.getDictionary());
}
return NSObject.Marshaler.toNative(array, flags);
}
}
/**/
/**/
UIFontDescriptorAttributes(NSDictionary data) {
super(data);
}
public UIFontDescriptorAttributes() {}
/**/
/**/
public boolean has(UIFontDescriptorAttribute key) {
return data.containsKey(key.value());
}
public NSObject get(UIFontDescriptorAttribute key) {
if (has(key)) {
return data.get(key.value());
}
return null;
}
public UIFontDescriptorAttributes set(UIFontDescriptorAttribute key, NSObject value) {
data.put(key.value(), value);
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public String getFamily() {
if (has(UIFontDescriptorAttribute.Family)) {
NSString val = (NSString) get(UIFontDescriptorAttribute.Family);
return val.toString();
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setFamily(String family) {
set(UIFontDescriptorAttribute.Family, new NSString(family));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public String getName() {
if (has(UIFontDescriptorAttribute.Name)) {
NSString val = (NSString) get(UIFontDescriptorAttribute.Name);
return val.toString();
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setName(String name) {
set(UIFontDescriptorAttribute.Name, new NSString(name));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public String getFace() {
if (has(UIFontDescriptorAttribute.Face)) {
NSString val = (NSString) get(UIFontDescriptorAttribute.Face);
return val.toString();
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setFace(String face) {
set(UIFontDescriptorAttribute.Face, new NSString(face));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public double getSize() {
if (has(UIFontDescriptorAttribute.Size)) {
NSNumber val = (NSNumber) get(UIFontDescriptorAttribute.Size);
return val.doubleValue();
}
return 0;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setSize(double size) {
set(UIFontDescriptorAttribute.Size, NSNumber.valueOf(size));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public String getVisibleName() {
if (has(UIFontDescriptorAttribute.VisibleName)) {
NSString val = (NSString) get(UIFontDescriptorAttribute.VisibleName);
return val.toString();
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setVisibleName(String visibleName) {
set(UIFontDescriptorAttribute.VisibleName, new NSString(visibleName));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public CGAffineTransform getMatrix() {
if (has(UIFontDescriptorAttribute.Matrix)) {
NSValue val = (NSValue) get(UIFontDescriptorAttribute.Matrix);
return val.affineTransformValue();
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setMatrix(CGAffineTransform matrix) {
set(UIFontDescriptorAttribute.Matrix, NSValue.valueOf(matrix));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public NSCharacterSet getCharacterSet() {
if (has(UIFontDescriptorAttribute.CharacterSet)) {
NSCharacterSet val = (NSCharacterSet) get(UIFontDescriptorAttribute.CharacterSet);
return val;
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setCharacterSet(NSCharacterSet characterSet) {
set(UIFontDescriptorAttribute.CharacterSet, characterSet);
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public NSArray getCascadeList() {
if (has(UIFontDescriptorAttribute.CascadeList)) {
NSArray val = (NSArray) get(UIFontDescriptorAttribute.CascadeList);
return val;
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setCascadeList(NSArray cascadeList) {
set(UIFontDescriptorAttribute.CascadeList, cascadeList);
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorTraits getTraits() {
if (has(UIFontDescriptorAttribute.Traits)) {
NSDictionary val = (NSDictionary) get(UIFontDescriptorAttribute.Traits);
return new UIFontDescriptorTraits(val);
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setTraits(UIFontDescriptorTraits traits) {
set(UIFontDescriptorAttribute.Traits, traits.getDictionary());
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public double getFixedAdvance() {
if (has(UIFontDescriptorAttribute.FixedAdvance)) {
NSNumber val = (NSNumber) get(UIFontDescriptorAttribute.FixedAdvance);
return val.doubleValue();
}
return 0;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setFixedAdvance(double fixedAdvance) {
set(UIFontDescriptorAttribute.FixedAdvance, NSNumber.valueOf(fixedAdvance));
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public List getFeatureSettings() {
if (has(UIFontDescriptorAttribute.FeatureSettings)) {
NSArray> val = (NSArray>) get(UIFontDescriptorAttribute.FeatureSettings);
List list = new ArrayList<>();
NSDictionary[] array = (NSDictionary[]) val.toArray(new NSDictionary[val.size()]);
for (NSDictionary d : array) {
list.add(new UIFontFeatureSetting(d));
}
return list;
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setFeatureSettings(List featureSettings) {
NSArray val = new NSMutableArray<>();
for (UIFontFeatureSetting e : featureSettings) {
val.add(e.getDictionary());
}
set(UIFontDescriptorAttribute.FeatureSettings, val);
return this;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontTextStyle getTextStyle() {
if (has(UIFontDescriptorAttribute.TextStyle)) {
NSString val = (NSString) get(UIFontDescriptorAttribute.TextStyle);
return UIFontTextStyle.valueOf(val);
}
return null;
}
/**
* @since Available in iOS 7.0 and later.
*/
public UIFontDescriptorAttributes setTextStyle(UIFontTextStyle textStyle) {
set(UIFontDescriptorAttribute.TextStyle, textStyle.value());
return this;
}
/**/
/**/
/**/
}