1 /*
2 wsmo4j - a WSMO API and Reference Implementation
3
4 Copyright (c) 2004-2005, 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
20 package com.ontotext.wsmo4j.serializer.wsml;
21
22 /**
23 * <p>Title: WSMO4J</p>
24 * <p>Description: WSMO API and a Reference Implementation</p>
25 * <p>Copyright: Copyright (c) 2004-2005</p>
26 * <p>Company: OntoText Lab. / SIRMA </p>
27 * @author not attributable
28 * @version 1.0
29 *
30 */
31
32 public interface Item2Visit {
33 public void apply(Visitor visitor);
34 }
35
36 /*
37 * $Log$
38 * Revision 1.2 2005/11/28 14:51:37 vassil_momtchev
39 * moved from com.ontotext.wsmo4j.parser
40 *
41 * Revision 1.1.2.1 2005/11/28 13:59:35 vassil_momtchev
42 * package refactored from com.ontotext.wsmo4j.parser to com.ontotext.wsmo4j.serializer.wsml
43 *
44 * Revision 1.1 2005/06/27 08:32:00 alex_simov
45 * refactoring: *.io.parser -> *.parser
46 *
47 * Revision 1.4 2005/06/22 14:49:17 alex_simov
48 * Copyright header added/updated
49 *
50 * Revision 1.3 2005/06/02 14:19:18 alex_simov
51 * v0.4.0
52 *
53 * Revision 1.1 2005/05/26 09:36:04 damian
54 * io package
55 *
56 * Revision 1.2 2005/01/12 15:20:18 alex_simov
57 * checkstyle formatting
58 *
59 */