Skip to contentPackage: SimpleListDescriptor
SimpleListDescriptor
Coverage
1: /**
2: * Copyright (C) 2016 Czech Technical University in Prague
3: *
4: * This program is free software: you can redistribute it and/or modify it under
5: * the terms of the GNU General Public License as published by the Free Software
6: * Foundation, either version 3 of the License, or (at your option) any
7: * later version.
8: *
9: * This program is distributed in the hope that it will be useful, but WITHOUT
10: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12: * details. You should have received a copy of the GNU General Public License
13: * along with this program. If not, see <http://www.gnu.org/licenses/>.
14: */
15: package cz.cvut.kbss.ontodriver.descriptor;
16:
17:
18: /**
19: * Represents a simple LIPS-style sequence, which is basically a singly-linked list.
20: * <p>
21: * Each node in the list is subject to a statement referencing the next node.
22: */
23: public interface SimpleListDescriptor extends ListDescriptor {
24:
25: // We are just exporting the API from ListDescriptor, as ReferencedListDescriptor is not a SimpleListDescriptor,
26: // but they share the basic common methods.
27: // This way, we can declare the methods only once, but the list descriptor have each their own hierarchy.s
28: }