001 package com.thaiopensource.relaxng.impl;
002
003 import org.xml.sax.SAXException;
004 import com.thaiopensource.validate.IncorrectSchemaException;
005
006 import java.io.IOException;
007
008 public interface PatternFuture {
009 Pattern getPattern(boolean isAttributesPattern) throws IncorrectSchemaException, SAXException, IOException;
010 }