View Javadoc

1   /*
2    wsmo4j - a WSMO API and Reference Implementation
3   
4    Copyright (c) 2004-2007, Ontotext Lab. / SIRMA
5   
6    This library is free software; you can redistribute it and/or modify it under
7    the terms of the GNU Lesser General Public License as published by the Free
8    Software Foundation; either version 2.1 of the License, or (at your option)
9    any later version.
10   This library is distributed in the hope that it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13   details.
14   You should have received a copy of the GNU Lesser General Public License along
15   with this library; if not, write to the Free Software Foundation, Inc.,
16   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17   */
18  
19  package org.wsmo.grounding.sawsdl;
20  
21  /**
22   * Abstract representation of a single annotation reference from an XML Schema type (simple or
23   *  complex) definition to a concept of a semantic model.
24   * 
25   * For details see: <br>
26   *   <a href="http://www.w3.org/TR/sawsdl/" target="_blank">http://www.w3.org/TR/sawsdl/</a> <br>
27   *   <a href="http://www.w3.org/2001/XMLSchema/" target="_blank">http://www.w3.org/2001/XMLSchema/</a>
28   */
29  
30  public interface TypeModelRef extends ModelRef {
31  
32  }
33  
34  /*
35   * $Log$
36   * Revision 1.2  2007/04/27 17:46:31  alex_simov
37   * javadoc added
38   *
39   * Revision 1.1  2007/04/24 15:33:39  alex_simov
40   * TypeModelReference -> TypeModelRef
41   *
42   * Revision 1.1  2007/04/24 14:09:44  alex_simov
43   * new SA-WSDL api
44   *
45   */