KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > graph > FrontsTriple


1 /*
2     (c) Copyright 2004, 2005 Hewlett-Packard Development Company, LP
3     [See end of file]
4     $Id: FrontsTriple.java,v 1.2 2005/02/21 11:51:56 andy_seaborne Exp $
5 */

6 package com.hp.hpl.jena.graph;
7
8 /**
9     FrontsTriple (see also FrontsNode) is an interface for things that can
10     be seen as wrappers round triples.
11     
12     @author hedgehog
13 */

14 public interface FrontsTriple
15     {
16     Triple asTriple();
17     }
18
19 /*
20     (c) Copyright 2004, 2005 Hewlett-Packard Development Company, LP All rights
21     reserved. Redistribution and use in source and binary forms, with or without
22     modification, are permitted provided that the following conditions are met:
23     1. Redistributions of source code must retain the above copyright notice,
24     this list of conditions and the following disclaimer. 2. Redistributions in
25     binary form must reproduce the above copyright notice, this list of
26     conditions and the following disclaimer in the documentation and/or other
27     materials provided with the distribution. 3. The name of the author may not
28     be used to endorse or promote products derived from this software without
29     specific prior written permission.
30      
31     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
32     WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
33     MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
34     EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
36     PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
37     OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
38     WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
39     OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
40     ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 */

42
Popular Tags