Revision: 6008
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6008&view=rev
Author: gerdwagner
Date: 2010-12-14 20:35:57 +0000 (Tue, 14 Dec 2010)
Log Message:
-----------
Icons in Object tree
Modified Paths:
--------------
trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeCellRenderer.java
trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeNode.java
trunk/sql12/doc/src/main/resources/changes.txt
trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.java
trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/DatabaseObjectType.java
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.properties
Added Paths:
-----------
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/catalog.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/database.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/datatype.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/datatypes.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/index.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/indexes.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/procedure.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/procedures.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/schema.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/sequence.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/sequences.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/table.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/tables.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/trigger.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/triggers.gif
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/user.png
trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/view.gif
Modified: trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeCellRenderer.java
===================================================================
--- trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeCellRenderer.java 2010-12-10 03:38:51 UTC (rev 6007)
+++ trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeCellRenderer.java 2010-12-14 20:35:57 UTC (rev 6008)
@@ -120,7 +120,41 @@
}
else
{
+ if(value instanceof ObjectTreeNode)
+ {
+ ObjectTreeNode otn = (ObjectTreeNode) value;
+ if (null != otn.getIcon())
+ {
+ ret.setIcon(otn.getIcon());
+ }
+ else
+ {
+ setDefaultIcon(expanded, leaf, ret);
+ }
+
+ }
+ else
+ {
+ setDefaultIcon(expanded, leaf, ret);
+ }
+
return ret;
}
}
+
+ private void setDefaultIcon(boolean expanded, boolean leaf, JLabel lbl)
+ {
+ if (leaf)
+ {
+ lbl.setIcon(getLeafIcon());
+ }
+ else if (expanded)
+ {
+ lbl.setIcon(getDefaultOpenIcon());
+ }
+ else
+ {
+ lbl.setIcon(getDefaultClosedIcon());
+ }
+ }
}
Modified: trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeNode.java
===================================================================
--- trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeNode.java 2010-12-10 03:38:51 UTC (rev 6007)
+++ trunk/sql12/app/src/main/java/net/sourceforge/squirrel_sql/client/session/mainpanel/objecttree/ObjectTreeNode.java 2010-12-14 20:35:57 UTC (rev 6008)
@@ -20,10 +20,12 @@
import java.util.ArrayList;
import java.util.List;
+import javax.swing.*;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.MutableTreeNode;
import net.sourceforge.squirrel_sql.fw.id.IIdentifier;
+import net.sourceforge.squirrel_sql.fw.resources.LibraryResources;
import net.sourceforge.squirrel_sql.fw.sql.DatabaseObjectType;
import net.sourceforge.squirrel_sql.fw.sql.IDatabaseObjectInfo;
@@ -54,10 +56,11 @@
private boolean _allowsChildren = true;
/** Collection of <TT>INodeExpander</TT> objects for this node. */
- private final List<INodeExpander> _expanders =
- new ArrayList<INodeExpander>();
+ private final List<INodeExpander> _expanders = new ArrayList<INodeExpander>();
- /**
+ private ImageIcon _icon;
+
+ /**
* Ctor that assumes node cannot have children.
*
* @param session Current session.
@@ -82,6 +85,13 @@
_app = session.getApplication();
_sessionId = session.getIdentifier();
_dboInfo = dboInfo;
+
+ if(null != _dboInfo.getDatabaseObjectType().getImageName())
+ {
+ LibraryResources rsrc = new LibraryResources();
+
+ _icon = rsrc.getIcon(_dboInfo.getDatabaseObjectType().getImageName());
+ }
}
public void add(MutableTreeNode newChild)
@@ -183,4 +193,9 @@
}
return dbinfo.toString();
}
+
+ public ImageIcon getIcon()
+ {
+ return _icon;
+ }
}
Modified: trunk/sql12/doc/src/main/resources/changes.txt
===================================================================
--- trunk/sql12/doc/src/main/resources/changes.txt 2010-12-10 03:38:51 UTC (rev 6007)
+++ trunk/sql12/doc/src/main/resources/changes.txt 2010-12-14 20:35:57 UTC (rev 6008)
@@ -7,6 +7,8 @@
Enhancements:
+New icons in Object tree
+
New translation
Japanese (thanks to Toshiki IGA)
Modified: trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.java
===================================================================
--- trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.java 2010-12-10 03:38:51 UTC (rev 6007)
+++ trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.java 2010-12-14 20:35:57 UTC (rev 6008)
@@ -26,6 +26,28 @@
String TABLE_ASCENDING = "table.ascending";
String TABLE_DESCENDING = "table.descending";
String OPEN = "open";
+
+ String DOT_CATALOG = "dot.catalog";
+ String DOT_DATABASE = "dot.database";
+ String DOT_DATATYPE = "dot.datatype";
+ String DOT_DATATYPES = "dot.datatypes";
+ String DOT_INDEX = "dot.index";
+ String DOT_INDEXES = "dot.indexes";
+ String DOT_PROCEDURE = "dot.procedure";
+ String DOT_PROCEDURES = "dot.procedures";
+ String DOT_SCHEMA = "dot.schema";
+ String DOT_TABLE = "dot.table";
+ String DOT_TABLES = "dot.tables";
+ String DOT_VIEW = "dot.view";
+ String DOT_USER = "dot.user";
+ String DOT_SEQUENCE = "dot.sequence";
+ String DOT_SEQUENCES = "dot.sequences";
+ String DOT_TRIGGER = "dot.trigger";
+ String DOT_TRIGGERS = "dot.triggers";
+
+
+
+
}
public LibraryResources() throws IllegalArgumentException
Modified: trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/DatabaseObjectType.java
===================================================================
--- trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/DatabaseObjectType.java 2010-12-10 03:38:51 UTC (rev 6007)
+++ trunk/sql12/fw/src/main/java/net/sourceforge/squirrel_sql/fw/sql/DatabaseObjectType.java 2010-12-14 20:35:57 UTC (rev 6008)
@@ -23,6 +23,8 @@
import net.sourceforge.squirrel_sql.fw.util.StringManager;
import net.sourceforge.squirrel_sql.fw.util.StringManagerFactory;
+import static net.sourceforge.squirrel_sql.fw.resources.LibraryResources.IImageNames.*;
+
import java.io.Serializable;
/**
@@ -33,8 +35,6 @@
*/
public class DatabaseObjectType implements IHasIdentifier, Serializable
{
- static final long serialVersionUID = 2325635336825122256L;
-
/** Internationalized strings for this class. */
private static final StringManager s_stringMgr =
StringManagerFactory.getStringManager(DatabaseObjectType.class);
@@ -49,24 +49,24 @@
public final static DatabaseObjectType BEST_ROW_ID = createNewDatabaseObjectTypeI18n("DatabaseObjectType.bestRowID");
/** Catalog. */
- public final static DatabaseObjectType CATALOG = createNewDatabaseObjectTypeI18n("DatabaseObjectType.catalog");
+ public final static DatabaseObjectType CATALOG = createNewDatabaseObjectTypeI18n("DatabaseObjectType.catalog", DOT_CATALOG);
/** Column. */
public final static DatabaseObjectType COLUMN = createNewDatabaseObjectTypeI18n("DatabaseObjectType.column");
/** Database. */
- public final static DatabaseObjectType SESSION = createNewDatabaseObjectTypeI18n("DatabaseObjectType.database");
+ public final static DatabaseObjectType SESSION = createNewDatabaseObjectTypeI18n("DatabaseObjectType.database", DOT_DATABASE);
/**
* Datbase object type for a "Database" node in the object tree. There is onle one
* node of this type in the object tree and it indicates the alias of the database.
*/
- public final static DatabaseObjectType DATABASE_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.DATABASE_TYPE_DBO"); //DatabaseObjectType.DATABASE_TYPE_DBO=Database Type
+ public final static DatabaseObjectType DATABASE_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.DATABASE_TYPE_DBO", DOT_DATABASE); //DatabaseObjectType.DATABASE_TYPE_DBO=Database Type
/** Standard datatype. */
- public final static DatabaseObjectType DATATYPE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.datatype");
+ public final static DatabaseObjectType DATATYPE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.datatype", DOT_DATATYPE);
/** Unique Key for a table. */
public final static DatabaseObjectType PRIMARY_KEY = createNewDatabaseObjectTypeI18n("DatabaseObjectType.primarykey");
@@ -81,78 +81,78 @@
* Database object type for a "Index Type" node in the object tree. There is
* one node of this type in the object tree for each table and it is labeled "INDEX".
*/
- public static final DatabaseObjectType INDEX_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.INDEX_TYPE_DBO"); //DatabaseObjectType.INDEX_TYPE_DBO=Index Type
+ public static final DatabaseObjectType INDEX_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.INDEX_TYPE_DBO", DOT_INDEXES); //DatabaseObjectType.INDEX_TYPE_DBO=Index Type
/** Index. */
- public final static DatabaseObjectType INDEX = createNewDatabaseObjectTypeI18n("DatabaseObjectType.index");
+ public final static DatabaseObjectType INDEX = createNewDatabaseObjectTypeI18n("DatabaseObjectType.index", DOT_INDEX);
/** Stored procedure. */
- public final static DatabaseObjectType PROCEDURE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.storproc");
+ public final static DatabaseObjectType PROCEDURE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.storproc", DOT_PROCEDURE);
/**
* Database object type for a "Procedure Type" node in the object tree. There is
* only one node of this type in the object tree and it is labeled "PROCEDURE".
*/
- public final static DatabaseObjectType PROC_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.PROC_TYPE_DBO"); //DatabaseObjectType.PROC_TYPE_DBO=Stored Procedure Type
+ public final static DatabaseObjectType PROC_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.PROC_TYPE_DBO", DOT_PROCEDURES); //DatabaseObjectType.PROC_TYPE_DBO=Stored Procedure Type
/** Schema. */
- public final static DatabaseObjectType SCHEMA = createNewDatabaseObjectTypeI18n("DatabaseObjectType.schema");
+ public final static DatabaseObjectType SCHEMA = createNewDatabaseObjectTypeI18n("DatabaseObjectType.schema", DOT_SCHEMA);
/**
* Database object type for a "Sequence Type" node in the object tree. There is
* one node of this type in the object tree for each table and it is labeled "SEQUENCE".
*/
- public static final DatabaseObjectType SEQUENCE_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.SEQUENCE_TYPE_DBO"); //DatabaseObjectType.SEQUENCE_TYPE_DBO=Sequence Type
+ public static final DatabaseObjectType SEQUENCE_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.SEQUENCE_TYPE_DBO", DOT_SEQUENCE); //DatabaseObjectType.SEQUENCE_TYPE_DBO=Sequence Type
/**
* An object that generates uniques IDs for primary keys. E.G. an Oracle
* sequence.
*/
- public final static DatabaseObjectType SEQUENCE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.sequence");
-
+ public final static DatabaseObjectType SEQUENCE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.sequence", DOT_SEQUENCES);
+
/**
* Database object type for a "Synonym Type" node in the object tree. There is
* one node of this type in the object tree for each table and it is labeled "SYNONYM".
- */
+ */
public static final DatabaseObjectType SYNONYM_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.SYNONYM_TYPE_DBO"); //DatabaseObjectType.SEQUENCE_TYPE_DBO=Sequence Type
-
+
/**
* An object that is an alias for another object. While support for this isn't standardized or universal
* this type of object is found in a few different databases (e.g. Oracle, Netezza)
*/
public final static DatabaseObjectType SYNONYM = createNewDatabaseObjectTypeI18n("DatabaseObjectType.synonym");
-
+
/** TABLE. */
- public final static DatabaseObjectType TABLE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.table");
+ public final static DatabaseObjectType TABLE = createNewDatabaseObjectTypeI18n("DatabaseObjectType.table", DOT_TABLE);
/**
* Database object type for a "Table Type" node in the object tree. Some examples
* are "TABLE", "SYSTEM TABLE", "VIEW" etc.
*/
- public final static DatabaseObjectType TABLE_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.TABLE_TYPE_DBO"); //DatabaseObjectType.TABLE_TYPE_DBO=Table Type
+ public final static DatabaseObjectType TABLE_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.TABLE_TYPE_DBO", DOT_TABLES); //DatabaseObjectType.TABLE_TYPE_DBO=Table Type
- public static final DatabaseObjectType VIEW = createNewDatabaseObjectTypeI18n("DatabaseObjectType.view");
+ public static final DatabaseObjectType VIEW = createNewDatabaseObjectTypeI18n("DatabaseObjectType.view", DOT_VIEW);
/**
* Database object type for a "Trigger Type" node in the object tree. There is
* one node of this type in the object tree for each table and it is labeled "TRIGGER".
*/
- public static final DatabaseObjectType TRIGGER_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.TRIGGER_TYPE_DBO"); //DatabaseObjectType.TRIGGER_TYPE_DBO=Trigger Type
+ public static final DatabaseObjectType TRIGGER_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.TRIGGER_TYPE_DBO", DOT_TRIGGERS); //DatabaseObjectType.TRIGGER_TYPE_DBO=Trigger Type
/** Trigger. */
- public final static DatabaseObjectType TRIGGER = createNewDatabaseObjectTypeI18n("DatabaseObjectType.catalog");
+ public final static DatabaseObjectType TRIGGER = createNewDatabaseObjectTypeI18n("DatabaseObjectType.catalog", DOT_TRIGGER);
/** User defined type. */
- public final static DatabaseObjectType UDT = createNewDatabaseObjectTypeI18n("DatabaseObjectType.udt");
+ public final static DatabaseObjectType UDT = createNewDatabaseObjectTypeI18n("DatabaseObjectType.udt", DOT_DATATYPE);
/**
* Database object type for a "UDT Type" node in the object tree. There is only one
* node of this type in the object tree and it says "UDT".
*/
- public final static DatabaseObjectType UDT_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.UDT_TYPE_DBO"); //DatabaseObjectType.UDT_TYPE_DBO=UDT Type
+ public final static DatabaseObjectType UDT_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.UDT_TYPE_DBO", DOT_DATATYPES); //DatabaseObjectType.UDT_TYPE_DBO=UDT Type
/** User defined function. */
public final static DatabaseObjectType UDF = createNewDatabaseObjectTypeI18n("DatabaseObjectType.udf");
@@ -164,7 +164,7 @@
public final static DatabaseObjectType UDF_TYPE_DBO = createNewDatabaseObjectTypeI18n("DatabaseObjectType.UDF_TYPE_DBO"); //DatabaseObjectType.UDF_TYPE_DBO=UDF Type
/** A database user. */
- public final static DatabaseObjectType USER = createNewDatabaseObjectTypeI18n("DatabaseObjectType.user");
+ public final static DatabaseObjectType USER = createNewDatabaseObjectTypeI18n("DatabaseObjectType.user", DOT_USER);
/** Uniquely identifies this Object. */
private final IIdentifier _id;
@@ -172,13 +172,15 @@
/** Describes this object type. */
private final String _name;
private String _keyForSerializationReplace;
+ private String _imageName;
/**
* Default ctor.
*/
- private DatabaseObjectType(String name, String keyForSerializationReplace)
+ private DatabaseObjectType(String name, String keyForSerializationReplace, String imageName)
{
_keyForSerializationReplace = keyForSerializationReplace;
+ _imageName = imageName;
_id = s_idFactory.createIdentifier();
_name = name != null ? name : _id.toString();
}
@@ -209,19 +211,29 @@
return _keyForSerializationReplace;
}
+ public String getImageName()
+ {
+ return _imageName;
+ }
+
public String toString()
{
return getName();
}
+ public static DatabaseObjectType createNewDatabaseObjectTypeI18n(String key, String imageName)
+ {
+ return new DatabaseObjectType(key, s_stringMgr.getString(key), imageName);
+ }
+
public static DatabaseObjectType createNewDatabaseObjectTypeI18n(String key)
{
- return new DatabaseObjectType(key, s_stringMgr.getString(key));
+ return createNewDatabaseObjectTypeI18n(key, null);
}
public static DatabaseObjectType createNewDatabaseObjectType(String key)
{
- return new DatabaseObjectType(key, key);
+ return new DatabaseObjectType(key, key, null);
}
}
Modified: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.properties
===================================================================
--- trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.properties 2010-12-10 03:38:51 UTC (rev 6007)
+++ trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/LibraryResources.properties 2010-12-14 20:35:57 UTC (rev 6008)
@@ -30,3 +30,23 @@
table.ascending.image=eclipse/prev_nav.gif
table.descending.image=eclipse/next_nav.gif
open.image=eclipse/open.gif
+
+
+
+dot.catalog.image=dot/catalog.png
+dot.database.image=dot/database.gif
+dot.datatype.image=dot/datatype.png
+dot.datatypes.image=dot/datatypes.png
+dot.index.image=dot/index.gif
+dot.indexes.image=dot/indexes.gif
+dot.procedure.image=dot/procedure.gif
+dot.procedures.image=dot/procedures.gif
+dot.schema.image=dot/schema.png
+dot.table.image=dot/table.png
+dot.tables.image=dot/tables.png
+dot.view.image=dot/view.gif
+dot.user.image=dot/user.png
+dot.sequence.image=dot/sequence.png
+dot.sequences.image=dot/sequences.png
+dot.trigger.image=dot/trigger.gif
+dot.triggers.image=dot/triggers.gif
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/catalog.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/catalog.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/database.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/database.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/datatype.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/datatype.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/datatypes.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/datatypes.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/index.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/index.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/indexes.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/indexes.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/procedure.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/procedure.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/procedures.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/procedures.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/schema.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/schema.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/sequence.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/sequence.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/sequences.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/sequences.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/table.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/table.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/tables.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/tables.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/trigger.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/trigger.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/triggers.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/triggers.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/user.png
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/user.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/view.gif
===================================================================
(Binary files differ)
Property changes on: trunk/sql12/fw/src/main/resources/net/sourceforge/squirrel_sql/fw/resources/images/dot/view.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|