com.sun.msv.grammar.xmlschema.GroupDeclExp Maven / Gradle / Ivy
/*
* @(#)$Id: GroupDeclExp.java,v 1.7 2003/06/09 20:37:22 kk122374 Exp $
*
* 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.msv.grammar.xmlschema;
/**
* model group declaration.
*
* @author Kohsuke KAWAGUCHI
*/
public class GroupDeclExp extends RedefinableExp {
public GroupDeclExp( String typeLocalName ) {
super(typeLocalName);
}
/** clone this object. */
public RedefinableExp getClone() {
RedefinableExp exp = new GroupDeclExp(super.name);
exp.redefine(this);
return exp;
}
// serialization support
private static final long serialVersionUID = 1;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy