Skip to content

Commit e741a4f

Browse files
authored
Revert "Sqldev 2076 Optionally accept connection info from the command line and/or on a SocketServer"
1 parent 4b4c366 commit e741a4f

24 files changed

+64
-1079
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
*.class
33
*.jar
44
classes/
5-
built/
65
.*

sqldeveloper/extension/.classpath

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="src" output="java/DependencyExample/built/classes" path="java/DependencyExample/built/gen-src"/>
4-
<classpathentry kind="src" path="java/ConnectionHelper/built/gen-src"/>
5-
<classpathentry kind="src" path="java/InsertTemplateAction/built/gen-src"/>
6-
<classpathentry kind="src" path="java/InsertTemplateAction/src"/>
7-
<classpathentry kind="src" path="java/ContextMenuAction/built/gen-src"/>
8-
<classpathentry kind="src" path="java/ContextMenuAction/src"/>
9-
<classpathentry kind="src" output="java/DependencyExample/built/classes" path="java/DependencyExample/src"/>
10-
<classpathentry kind="src" path="java/DumpObjectTypesAction/src"/>
11-
<classpathentry kind="src" path="java/ConnectionHelper/src"/>
12-
<classpathentry kind="src" path="java/ConnectionHelperClient/src"/>
13-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
14-
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/FXDiagram 0.35.0-SNAPSHOT"/>
15-
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/KIELER KLay Layouters v. 2015.02"/>
16-
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/SQLDeveloper 20.1"/>
17-
<classpathentry kind="output" path="built/classes"/>
18-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="java/DependencyExample/built/classes" path="java/DependencyExample/built/gen-src"/>
4+
<classpathentry kind="src" path="java/InsertTemplateAction/built/gen-src"/>
5+
<classpathentry kind="src" path="java/InsertTemplateAction/src"/>
6+
<classpathentry kind="src" path="java/ContextMenuAction/built/gen-src"/>
7+
<classpathentry kind="src" path="java/ContextMenuAction/src"/>
8+
<classpathentry kind="src" output="java/DependencyExample/built/classes" path="java/DependencyExample/src"/>
9+
<classpathentry kind="src" path="java/DumpObjectTypesAction/src"/>
10+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
11+
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/FXDiagram 0.35.0-SNAPSHOT"/>
12+
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/KIELER KLay Layouters v. 2015.02"/>
13+
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/SQLDeveloper 19.2"/>
14+
<classpathentry kind="output" path="built/classes"/>
15+
</classpath>

sqldeveloper/extension/README.md

Lines changed: 26 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,26 @@
1-
# [SQL Developer](http://www.oracle.com/technetwork/developer-tools/sql-developer/) Examples
2-
## Extensions
3-
You can add new folders and nodes to navigators, new actions on objects (*or sets of them*), and new editors or viewers.
4-
5-
Depending on requirements, this can be done in either XML or java and deployed by simply copying an XML file to the appropriate directory, or creating an extension jar -- or *check for updates* bundle for XML and/or java.
6-
7-
### New
8-
9-
* [ConnectionHelper](java/ConnectionHelper)
10-
Optionally accept connection info from the command line and/or on a [SocketServer](https://docs.oracle.com/javase/tutorial/networking/sockets/clientServer.html)
11-
12-
* [ConnectionHelperClient](java/ConnectionHelperClient)
13-
A simple command line client for the ConnectionHelper socket server.
14-
15-
* Added resource reference for Philipp Salvisberg's [Example-based tutorials](https://github.com/PhilippSalvisberg/sqldev) to extend SQL Developer functionality. (external)
16-
17-
18-
### Contents
19-
20-
* [Set Up / Tutorial](./setup.md) - A step by step guide to building your first extension and check for updates bundle.
21-
22-
23-
* ["Simple" User Extensions (XML)](xml)
24-
25-
26-
* [XML Based Favorites Example](xml/favorites)
27-
28-
29-
* [Standard Extensions (java)](java)
30-
31-
32-
* [Check For Updates (cfu)](cfu)
33-
34-
35-
### External Resources
36-
Please note these are links to external resources. They are not supplied or supported by Oracle.
37-
38-
* [Example Update Center](https://github.com/bjeffrie/sqldev-update-center) (external) with pre-built cfu bundles for these examples.
39-
40-
* Philipp Salvisberg's [Example-based tutorials](https://github.com/PhilippSalvisberg/sqldev) to extend SQL Developer functionality. (external)
41-
1+
# [SQL Developer](http://www.oracle.com/technetwork/developer-tools/sql-developer/) Examples
2+
## Extensions
3+
You can add new folders and nodes to navigators, new actions on objects (*or sets of them*), and new editors or viewers.
4+
5+
Depending on requirements, this can be done in either XML or java and deployed by simply copying an XML file to the appropriate directory, or creating an extension jar -- or *check for updates* bundle for XML and/or java.
6+
7+
### New
8+
9+
* [XML Based Favorites Example](xml/favorites)
10+
11+
12+
* [Example Update Center](https://github.com/bjeffrie/sqldev-update-center) (external) with pre-built cfu bundles for these examples.
13+
14+
### Contents
15+
16+
* [Set Up / Tutorial](./setup.md) - A step by step guide to building your first extension and check for updates bundle.
17+
18+
19+
* ["Simple" User Extensions (XML)](xml)
20+
21+
22+
* [Standard Extensions (java)](java)
23+
24+
25+
* [Check For Updates (cfu)](cfu)
26+

sqldeveloper/extension/build.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
# This is where the builds will deploy the extension
77
# and where we can find our dependencies
88
#sqldev.dir=D:/sqldeveloper-4.2.0.17.089.1709/sqldeveloper
9-
#sqldev.dir=D:/sqldeveloper-19.2.1/sqldeveloper
10-
sqldev.dir=/Users/bjeffrie/eclipse-workspace-20.1/sql-developer/ide
9+
sqldev.dir=D:/sqldeveloper-19.2.1/sqldeveloper
1110

1211
# Information about the company or person creating the extension
1312
extension.owner=Oracle Examples

sqldeveloper/extension/java/ConnectionHelper/README.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

sqldeveloper/extension/java/ConnectionHelper/build.properties

Lines changed: 0 additions & 8 deletions
This file was deleted.

sqldeveloper/extension/java/ConnectionHelper/build.xml

Lines changed: 0 additions & 23 deletions
This file was deleted.

sqldeveloper/extension/java/ConnectionHelper/etc/extension.xml

Lines changed: 0 additions & 68 deletions
This file was deleted.

sqldeveloper/extension/java/ConnectionHelper/resfiles.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)