01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.schema;
07:
08: import org.h2.engine.DbObject;
09:
10: /**
11: * Any database object that is stored in a schema.
12: */
13: public interface SchemaObject extends DbObject {
14:
15: /**
16: * Get the schema in which this object is defined
17: *
18: * @return the schema
19: */
20: Schema getSchema();
21: }
|