
msv.tahiti.src.com.sun.tahiti.grammar.SuperClassItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb1-impl Show documentation
Show all versions of jaxb1-impl Show documentation
JAXB (JSR 222) reference implementation - JAXB1 build
The newest version!
/*
* @(#)$Id: SuperClassItem.java 930 2001-07-21 02:39:46Z Bear $
*
* Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package com.sun.tahiti.grammar;
import com.sun.msv.grammar.Expression;
/**
* represents a derivation relationship between two classes.
*
* @author
* Kohsuke KAWAGUCHI
*/
public class SuperClassItem extends JavaItem {
public SuperClassItem() {
super("superClass-marker");
}
public SuperClassItem( Expression exp ) {
this();
this.exp=exp;
}
/** actual super class definition. */
public ClassItem definition = null;
public Object visitJI( JavaItemVisitor visitor ) {
return visitor.onSuper(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy