1 package com.thaiopensource.relaxng.impl;2 3 import org.xml.sax.SAXException ;4 import com.thaiopensource.validate.IncorrectSchemaException;5 6 import java.io.IOException ;7 8 public interface PatternFuture {9 Pattern getPattern(boolean isAttributesPattern) throws IncorrectSchemaException, SAXException , IOException ;10 }11