/* * @(#)$Id: DataOrValueExp.java,v 1.1 2001/10/18 23:52:09 Bear 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; import org.relaxng.datatype.Datatype; import com.sun.msv.util.StringPair; /** * The common interface for {@link DataExp} and {@link ValueExp} * * @author <a href="mailto:kohsuke.kawaguchi@sun.com">Kohsuke KAWAGUCHI</a> */ public interface DataOrValueExp { StringPair getName(); Datatype getType(); }