KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > rdf > arp > DAMLTailCollection


1 /*
2   (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP,
3   all rights reserved.
4   [See end of file]
5   $Id: DAMLTailCollection.java,v 1.7 2005/02/21 12:09:04 andy_seaborne Exp $
6 */

7 package com.hp.hpl.jena.rdf.arp;
8
9 /**
10  * @author Jeremy J. Carroll
11  *
12  */

13 class DAMLTailCollection extends DAMLCollection {
14     DAMLTailCollection(ParserSupport x,ARPResource cell) {
15         super(x);
16         last = cell;
17         f = cell;
18     }
19     ARPResource last;
20     final ARPResource f;
21     private void endLastScope() {
22         if (last!=f)
23            X.arp.endLocalScope(last);
24     }
25     void terminate() {
26         last.setPredicateObject(rest, nil, null);
27         endLastScope();
28     }
29     public void cleanUp() {
30       endLastScope();
31   }
32
33     /* (non-Javadoc)
34      * @see com.hp.hpl.jena.rdf.arp.CollectionAction#next(com.hp.hpl.jena.rdf.arp.AResource)
35      */

36     CollectionAction next(AResourceInternal head) {
37         ARPResource cell = new ARPResource(X.arp);
38         try {
39             last.setPredicateObject(rest, cell, null);
40             cell.setPredicateObject(first, head, null);
41             cell.setType(List);
42         }
43         finally {
44             X.arp.endLocalScope(head);
45             endLastScope();
46             last = cell;
47         }
48         return this;
49     }
50 }
51
52 /*
53     (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP
54     All rights reserved.
55
56     Redistribution and use in source and binary forms, with or without
57     modification, are permitted provided that the following conditions
58     are met:
59
60     1. Redistributions of source code must retain the above copyright
61        notice, this list of conditions and the following disclaimer.
62
63     2. Redistributions in binary form must reproduce the above copyright
64        notice, this list of conditions and the following disclaimer in the
65        documentation and/or other materials provided with the distribution.
66
67     3. The name of the author may not be used to endorse or promote products
68        derived from this software without specific prior written permission.
69
70     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
71     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
72     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
73     IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
74     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
75     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
76     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
77     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
78     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
79     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
80 */
Popular Tags