com.bugvm.apple.addressbook.ABProperty Maven / Gradle / Ivy
/*
* 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.addressbook;
/**/
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.corefoundation.*;
/* */
/**/
/* */
@StronglyLinked
@Marshaler(ABProperty.Marshaler.class)
/**//* */
/**/public/* */abstract class /**/ABProperty/* */
extends /**/CocoaUtility/* */
/**//* */ {
public static class Marshaler {
@MarshalsValue
public static ABProperty toObject(Class> cls, int v, long flags) {
return ABProperty.valueOf(v);
}
@MarshalsValue
public static int toNative(ABProperty o, long flags) {
return o.value();
}
}
public static class AsListMarshaler {
@SuppressWarnings("unchecked")
@MarshalsPointer
public static List toObject(Class extends NSObject> cls, long handle, long flags) {
NSArray o = (NSArray) NSObject.Marshaler.toObject(cls, handle, flags);
if (o == null) {
return null;
}
List list = new ArrayList<>();
for (NSNumber n : o) {
list.add(ABProperty.valueOf(n.intValue()));
}
return list;
}
@MarshalsPointer
public static long toNative(List l, long flags) {
if (l == null) {
return 0L;
}
NSMutableArray array = new NSMutableArray<>();
for (ABProperty i : l) {
array.add(NSNumber.valueOf(i.value()));
}
return NSObject.Marshaler.toNative(array, flags);
}
}
private static final List> allSubClasses = new ArrayList<>();
private static final int ABSTRACT = 0x00000400;
static {
@SuppressWarnings("unchecked")
Class extends ABProperty>[] classes = (Class extends ABProperty>[])
VM.listClasses(ABProperty.class, ClassLoader.getSystemClassLoader());
final Class> baseClass = ABProperty.class;
for (Class extends ABProperty> cls : classes) {
if (cls != baseClass && (cls.getModifiers() & ABSTRACT) == 0) {
allSubClasses.add(cls);
}
}
}
/**/
/* */
/**/
/* */
/**/
public static final int InvalidID = -1;
/* */
private final LazyGlobalValue lazyGlobalValue;
protected ABProperty(Class extends ABProperty> clazz, String getterName) {
lazyGlobalValue = new LazyGlobalValue<>(clazz, getterName);
}
/**//* */
/**//* */
/**//* */
public int value() {
return lazyGlobalValue.value().intValue();
}
public static ABProperty valueOf(int value) {
Class>[] args = new Class>[] {int.class};
for (Class extends ABProperty> cls : allSubClasses) {
try {
Bro.bind(cls); // Global values need to be bound.
java.lang.reflect.Method m = cls.getMethod("valueOf", args);
ABProperty key = (ABProperty) m.invoke(null, value);
if (key != null) return key;
} catch (Throwable e) {
System.err.println("WARN: Failed to call valueOf() for "
+ "the ABProperty subclass " + cls.getName());
}
}
throw new IllegalArgumentException("No constant with value " + value + " found in "
+ /**/ABProperty/* */.class.getName());
}
/**//* */
}