View Javadoc

1   package net.sf.tomp.xtcl.result;
2   
3   import javax.xml.transform.Result;
4   
5   /***
6    * Intf for object that can provide a JAXP Result 
7    * 
8    * @author $author$
9    * @version $Revision$
10   */
11  public interface HasResult {
12      /***
13       * gets the JAXP Result
14       * 
15       * @return the JAXP Result provided by this object
16       */
17      Result getResult();
18  }
19  
20  /*
21   * The contents of this file are subject to the Mozilla Public License Version
22   * 1.1 (the "License"); you may not use this file except in compliance with the
23   * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
24   * Software distributed under the License is distributed on an "AS IS" basis,
25   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
26   * the specific language governing rights and limitations under the License. The
27   * Original Code is: all this file. The Initial Developer of the Original Code
28   * is: Tomas Pitner, Masaryk University in Brno, Czech Republic. Contributor(s):
29   */