KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > xquark > mapper > mapping > MappingLocator


1 /*
2  * This file belongs to the XQuark distribution.
3  * Copyright (C) 2003 Universite de Versailles Saint-Quentin.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307.
18  * You can also get it at http://www.gnu.org/licenses/lgpl.html
19  *
20  * For more information on this software, see http://www.xquark.org.
21  */

22
23 package org.xquark.mapper.mapping;
24
25 import java.util.List JavaDoc;
26
27 import org.xquark.xpath.PathExpr;
28
29 /** This interface allows to access table and column mappings for a given context.
30  */

31 public interface MappingLocator
32 {
33     /** Get the table mappings for the current context
34      */

35     List JavaDoc currentTableMappings();
36     
37     /** Get the column mappings for the current context
38      */

39     List JavaDoc currentColumnMappings();
40     
41     /** Get the table mappings for a particular subelement in the current context
42      */

43     List JavaDoc getElementTableMappings(String JavaDoc namespace, String JavaDoc localName);
44     
45     /** Get the column mappings for a particular subelement in the current context
46      */

47     List JavaDoc getElementColumnMappings(String JavaDoc namespace, String JavaDoc localName);
48     
49     /** Get the table mappings for a particular attribute in the current context
50      */

51     List JavaDoc getAttributeTableMappings(String JavaDoc namespace, String JavaDoc localName);
52     
53     /** Get the column mappings for a particular attribute in the current context
54      */

55     List JavaDoc getAttributeColumnMappings(String JavaDoc namespace, String JavaDoc localName);
56     
57     /** Return the absolute position of the locator.
58      * <p>i.e., !isDiscardable()</p>
59      */

60     PathExpr getLocation();
61     
62      /** Get the table mappings for a particular subelement in the current context
63      */

64     // public List getElementTableMappings(ElementDeclaration decl);
65

66     /** Get the column mappings for a particular subelement in the current context
67      */

68     // public List getElementColumnMappings(ElementDeclaration decl);
69

70     /** Get the table mappings for a particular attribute in the current context
71      */

72     // public List getAttributeTableMappings(AttributeDeclaration decl);
73

74     /** Get the column mappings for a particular attribute in the current context
75      */

76     // public List getAttributeColumnMappings(AttributeDeclaration decl);
77

78     /** get the number of mapped attributes for the current context
79      */

80     // public int getMappedAttributesCount();
81

82 }
83
Popular Tags