blob: 3cf53874dca7a873e4e0a3bead2ebb61d4ca2c9b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.jaxb.core.internal.context.java;
import org.eclipse.jpt.common.core.resource.java.JavaResourceEnum;
import org.eclipse.jpt.jaxb.core.context.JaxbContextNode;
import org.eclipse.jpt.jaxb.core.context.JaxbEnum;
import org.eclipse.jpt.jaxb.core.context.JaxbEnumMapping;
import org.eclipse.jpt.jaxb.core.context.JaxbType;
import org.eclipse.jpt.jaxb.core.resource.java.JAXB;
import org.eclipse.jpt.jaxb.core.resource.java.XmlEnumAnnotation;
public class GenericJavaJaxbEnum
extends AbstractJavaType
implements JaxbEnum {
public GenericJavaJaxbEnum(JaxbContextNode parent, JavaResourceEnum resourceType) {
super(parent, resourceType);
}
@Override
public JavaResourceEnum getJavaResourceType() {
return (JavaResourceEnum) super.getJavaResourceType();
}
public Kind getKind() {
return JaxbType.Kind.ENUM;
}
// ***** mapping *****
@Override
public JaxbEnumMapping getMapping() {
return (JaxbEnumMapping) super.getMapping();
}
@Override
protected JaxbEnumMapping buildMapping() {
return getFactory().buildJaxbEnumMapping(this);
}
@Override
protected boolean isSpecifiedMapped() {
return super.isSpecifiedMapped()
|| getXmlEnumAnnotation() != null;
}
protected XmlEnumAnnotation getXmlEnumAnnotation() {
return (XmlEnumAnnotation) getJavaResourceType().getAnnotation(JAXB.XML_ENUM);
}
}