Revision: 6043
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6043&view=rev
Author: manningr
Date: 2010-12-22 13:32:12 +0000 (Wed, 22 Dec 2010)
Log Message:
-----------
Interface for ObjectTypes in anticipation of its use in many of the plugins.
Added Paths:
-----------
trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/IObjectTypes.java
Added: trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/IObjectTypes.java
===================================================================
--- trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/IObjectTypes.java (rev 0)
+++ trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/IObjectTypes.java 2010-12-22 13:32:12 UTC (rev 6043)
@@ -0,0 +1,64 @@
+package net.sourceforge.squirrel_sql.fw.sql;
+
+
+/*
+ * Copyright (C) 2010 Rob Manning
+ * man...@us...
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+public interface IObjectTypes
+{
+
+ DatabaseObjectType getConsumerGroupParent();
+
+ DatabaseObjectType getFunctionParent();
+
+ DatabaseObjectType getIndexParent();
+
+ DatabaseObjectType getInstanceParent();
+
+ DatabaseObjectType getLobParent();
+
+ DatabaseObjectType getPackageParent();
+
+ DatabaseObjectType getSequenceParent();
+
+ DatabaseObjectType getSessionParent();
+
+ DatabaseObjectType getTriggerParent();
+
+ DatabaseObjectType getTypeParent();
+
+ DatabaseObjectType getUserParent();
+
+ DatabaseObjectType getConstraintParent();
+
+ DatabaseObjectType getConsumerGroup();
+
+ DatabaseObjectType getInstance();
+
+ DatabaseObjectType getLob();
+
+ DatabaseObjectType getPackage();
+
+ DatabaseObjectType getSession();
+
+ DatabaseObjectType getType();
+
+ DatabaseObjectType getConstraint();
+
+}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|