com.sun.tools.xjc.model.CClassInfoParent Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2022 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.model;
import com.sun.codemodel.JPackage;
/**
* Parent of a {@link CClassInfo}/{@link CElementInfo}.
*
* TODO: rename
*
* Either {@link CClassInfo} or {@link CClassInfoParent.Package}.
*/
public interface CClassInfoParent {
/**
* Returns the fully-qualified name.
*/
String fullName();
T accept( Visitor visitor );
/**
* Gets the nearest {@link JPackage}.
*/
JPackage getOwnerPackage();
/**
* Visitor of {@link CClassInfoParent}
*/
interface Visitor {
T onBean( CClassInfo bean );
T onPackage( JPackage pkg );
T onElement( CElementInfo element );
}
/**
* {@link JPackage} as a {@link CClassInfoParent}.
*
* Use {@link Model#getPackage} to obtain an instance.
*/
final class Package implements CClassInfoParent {
public final JPackage pkg;
public Package(JPackage pkg) {
this.pkg = pkg;
}
@Override
public String fullName() {
return pkg.name();
}
@Override
public T accept(Visitor visitor) {
return visitor.onPackage(pkg);
}
@Override
public JPackage getOwnerPackage() {
return pkg;
}
}
}