blob: dd81fa7232bf9405d89a2b3de64c47db6b205a9a [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.generics;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
public class GenericJvmDetector {
/**
* Check whether the proper class Nest for Bird's property 'home' is
* recognised.
*/
public static boolean isProperJvm() throws IntrospectionException {
for (PropertyDescriptor property : Introspector.getBeanInfo(Bird.class)
.getPropertyDescriptors()) {
if (property.getName().equals("home")) {
return property.getPropertyType() == Nest.class;
}
}
throw new RuntimeException("Bird must contain 'home' property.");
}
}