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