All Downloads are FREE. Search and download functionalities are using the official Maven repository.

msv.tahiti.src.com.sun.tahiti.grammar.SuperClassItem Maven / Gradle / Ivy

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