01: /*
02: * ViewDefinition.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2007, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.db;
13:
14: /**
15: * @author support@sql-workbench.net
16: */
17: public class ViewDefinition extends TableIdentifier {
18: public ViewDefinition(String name) {
19: super (name);
20: this .setType("VIEW");
21: }
22:
23: public ViewDefinition(String schema, String name) {
24: super (schema, name);
25: this .setType("VIEW");
26: }
27:
28: }
|