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

com.sun.msv.grammar.relax.RELAXExpressionVisitor Maven / Gradle / Ivy

There is a newer version: 2.2.5.1
Show newest version
/*
 * @(#)$Id: RELAXExpressionVisitor.java,v 1.7 2003/06/09 20:37:19 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.relax;

import com.sun.msv.grammar.ExpressionVisitor;

/**
 * Visitor interface for RELAX expressions.
 * 
 * By implementing this interface, your visitor can distinguish
 * four subclass of ReferenceExp introduced as RELAX stub.
 * 
 * 

* Note that onRef method may still be called if you visit AGM created from * TREX pattern. * * @author Kohsuke KAWAGUCHI */ public interface RELAXExpressionVisitor extends ExpressionVisitor { Object onAttPool( AttPoolClause exp ); Object onTag( TagClause exp ); Object onElementRules( ElementRules exp ); Object onHedgeRules( HedgeRules exp ); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy