com.sun.tools.xjc.outline.ElementOutline Maven / Gradle / Ivy
/*
* 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 com.sun.tools.xjc.outline;
import com.sun.codemodel.JDefinedClass;
import com.sun.tools.xjc.model.CCustomizable;
import com.sun.tools.xjc.model.CElementInfo;
/**
* Outline object that provides per-{@link CElementInfo} information
* for filling in methods/fields for a bean.
*
* This interface is accessible from {@link Outline}. This object is
* not created for all {@link CElementInfo}s.
* It is only for those {@link CElementInfo} that has a class.
* (IOW, {@link CElementInfo#hasClass()}
*
* @author Kohsuke Kawaguchi
*/
public abstract class ElementOutline implements CustomizableOutline {
/**
* A {@link Outline} that encloses all the class outlines.
*/
public abstract Outline parent();
/**
* {@link PackageOutline} that contains this class.
*/
public PackageOutline _package() {
return parent().getPackageContext(implClass._package());
}
/**
* This {@link ElementOutline} holds information about this {@link CElementInfo}.
*/
public final CElementInfo target;
/**
* The implementation aspect of a bean.
* The actual place where fields/methods should be generated into.
*/
public final JDefinedClass implClass;
protected ElementOutline(CElementInfo target, JDefinedClass implClass) {
this.target = target;
this.implClass = implClass;
}
@Override
public CCustomizable getTarget() {
return target;
}
@Override
public JDefinedClass getImplClass() {
return implClass;
}
}