org.glassfish.jaxb.runtime.v2.model.impl.RuntimeAttributePropertyInfoImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package cn.lzgabel.jaxb.runtime.v2.model.impl;
import cn.lzgabel.jaxb.runtime.v2.model.runtime.RuntimeAttributePropertyInfo;
import cn.lzgabel.jaxb.runtime.v2.model.runtime.RuntimeNonElement;
import cn.lzgabel.jaxb.runtime.v2.model.runtime.RuntimePropertyInfo;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.List;
/**
* @author Kohsuke Kawaguchi
*/
class RuntimeAttributePropertyInfoImpl extends AttributePropertyInfoImpl
implements RuntimeAttributePropertyInfo {
RuntimeAttributePropertyInfoImpl(RuntimeClassInfoImpl classInfo, PropertySeed seed) {
super(classInfo, seed);
}
@Override
public boolean elementOnlyContent() {
return true;
}
@Override
public RuntimeNonElement getTarget() {
return (RuntimeNonElement) super.getTarget();
}
@Override
public List extends RuntimeNonElement> ref() {
return (List extends RuntimeNonElement>)super.ref();
}
@Override
public RuntimePropertyInfo getSource() {
return this;
}
@Override
public void link() {
getTransducer();
super.link();
}
}