01: /*
02: (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
03: [See end of file]
04: $Id: AllCapabilities.java,v 1.10 2008/01/02 12:05:18 andy_seaborne Exp $
05: */
06:
07: package com.hp.hpl.jena.graph.impl;
08:
09: import com.hp.hpl.jena.graph.Capabilities;
10:
11: /**
12: A default implementation of capabilities, in which everything is allowed,
13: size is accurate, and graphs may be completely empty.
14:
15: @author hedgehog
16: */
17:
18: public class AllCapabilities implements Capabilities {
19: public boolean sizeAccurate() {
20: return true;
21: }
22:
23: public boolean addAllowed() {
24: return addAllowed(false);
25: }
26:
27: public boolean addAllowed(boolean every) {
28: return true;
29: }
30:
31: public boolean deleteAllowed() {
32: return deleteAllowed(false);
33: }
34:
35: public boolean deleteAllowed(boolean every) {
36: return true;
37: }
38:
39: public boolean canBeEmpty() {
40: return true;
41: }
42:
43: public boolean iteratorRemoveAllowed() {
44: return true;
45: }
46:
47: public boolean findContractSafe() {
48: return true;
49: }
50:
51: public boolean handlesLiteralTyping() {
52: return true;
53: }
54: }
55:
56: /*
57: (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
58: All rights reserved.
59:
60: Redistribution and use in source and binary forms, with or without
61: modification, are permitted provided that the following conditions
62: are met:
63:
64: 1. Redistributions of source code must retain the above copyright
65: notice, this list of conditions and the following disclaimer.
66:
67: 2. Redistributions in binary form must reproduce the above copyright
68: notice, this list of conditions and the following disclaimer in the
69: documentation and/or other materials provided with the distribution.
70:
71: 3. The name of the author may not be used to endorse or promote products
72: derived from this software without specific prior written permission.
73:
74: THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
75: IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
76: OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
77: IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
78: INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
79: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
80: DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
81: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
82: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
83: THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
84: */
|