Difference between revisions of "Developer Documentation and HowTo"
Jump to navigation
Jump to search
(Created page with ' == General Docs == * [http://www.vividsolutions.com/jump/bin/JUMP%20Developer%20Guide.pdf Jump Developers Guide] * Devel FAQ == Basics == * [[How to run OpenJUMP in Eclipse…') |
(→Basics) |
||
(27 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
== Basics == | == Basics == | ||
− | * [[ | + | * [[Eclipse: Set up OpenJUMP as a Maven project from git sources]] |
− | * [[ | + | * [[Creating an OJ release version]] |
− | * [ | + | * java API docs are available for |
− | * | + | ** stable releasesalongside the [[Downloading OpenJUMP#Latest Stable|distribution downloads]] |
+ | ** latest snapshot online https://oj.soldin.de/apidocs/ | ||
* [[OpenJUMP programming Guideline]] | * [[OpenJUMP programming Guideline]] | ||
+ | * [[Devel FAQ]] | ||
== Making Your Own Plugins == | == Making Your Own Plugins == | ||
+ | |||
+ | [[image:OJPlugInContextDiagram.png|thumb|right|200px|PlugInContext diagram]] | ||
* [[The difference of PlugIn and Extension and Registry]] | * [[The difference of PlugIn and Extension and Registry]] | ||
* [[How to use and make own Plugins]] | * [[How to use and make own Plugins]] | ||
+ | * [[How to use a plugin with a properties file in ECLIPSE]] | ||
+ | |||
* Example PlugIns: | * Example PlugIns: | ||
** [[How to display customer xyz data from a file]] | ** [[How to display customer xyz data from a file]] | ||
** [[Example Plugin For Buffering Features in a Layer]] | ** [[Example Plugin For Buffering Features in a Layer]] | ||
+ | ** [[How to Access and Display Attributes of Selected Features]] | ||
+ | ** [[Example Plugin For Accessing Sextante Algorithms]] | ||
+ | ** [[How to load a Sextante raster layer and read its cell values]] | ||
+ | |||
+ | [[image:Openjump-feature-model.png|thumb|right|200px|FeatureModel diagram]] | ||
+ | |||
* [[How to use i18n Internationalization]] | * [[How to use i18n Internationalization]] | ||
+ | * [[How to load data from a Shape File directly]] | ||
* [[Implementing Undo]] | * [[Implementing Undo]] | ||
+ | * [[Displaying Debug Messages]] | ||
* [[Adding A Toolbar Button]] | * [[Adding A Toolbar Button]] | ||
* [[Implementing cursortools]] | * [[Implementing cursortools]] | ||
* [[Converting a CursorTool to a PlugIn]] | * [[Converting a CursorTool to a PlugIn]] | ||
* [[Extending a FeatureCollection by Adding new Attributes]] | * [[Extending a FeatureCollection by Adding new Attributes]] | ||
+ | * [[Drawing an on-screen ornament]] | ||
+ | * [[OpenJUMP with Wallpaper]] | ||
+ | |||
+ | '''Notes''': | ||
* [[Tips and Tricks around the Java Topology Suite]] | * [[Tips and Tricks around the Java Topology Suite]] | ||
* [[Notes On OpenJUMP's Rendering System]] | * [[Notes On OpenJUMP's Rendering System]] | ||
+ | * [[Notes on Speed Improvements on Rendering]] | ||
* [[Notes on TaskFrames]] | * [[Notes on TaskFrames]] | ||
* [[Notes on the Display of AttributeTables]] | * [[Notes on the Display of AttributeTables]] | ||
* [[Using JUMP Libraries in an External Application]] | * [[Using JUMP Libraries in an External Application]] | ||
+ | * A method/class diagram for the PlugInContext (click on the image to the right) | ||
+ | * Looking for Icons? then check out: http://projects.opengeo.org/geosilk | ||
== Adding support for new data formats == | == Adding support for new data formats == | ||
* [[How to write a new driver]] (Spring 2007) | * [[How to write a new driver]] (Spring 2007) | ||
− | * [[ | + | * [[How to Create an Open Wizard]] (Since OpenJUMP Version 1.2) |
* Some additional notes on adding support for a new file format: [[File DataSource Notes]] | * Some additional notes on adding support for a new file format: [[File DataSource Notes]] | ||
* [[Working with GML]] | * [[Working with GML]] | ||
+ | |||
+ | == Scripting and Customization == | ||
+ | * [[Scripting with BeanShell]] | ||
+ | * [[Using Jython]] | ||
== Other == | == Other == | ||
− | * | + | * [[How to translate OpenJUMP into another language]] |
Latest revision as of 22:47, 1 July 2024
Basics
- Eclipse: Set up OpenJUMP as a Maven project from git sources
- Creating an OJ release version
- java API docs are available for
- stable releasesalongside the distribution downloads
- latest snapshot online https://oj.soldin.de/apidocs/
- OpenJUMP programming Guideline
- Devel FAQ
Making Your Own Plugins
- The difference of PlugIn and Extension and Registry
- How to use and make own Plugins
- How to use a plugin with a properties file in ECLIPSE
- Example PlugIns:
- How to use i18n Internationalization
- How to load data from a Shape File directly
- Implementing Undo
- Displaying Debug Messages
- Adding A Toolbar Button
- Implementing cursortools
- Converting a CursorTool to a PlugIn
- Extending a FeatureCollection by Adding new Attributes
- Drawing an on-screen ornament
- OpenJUMP with Wallpaper
Notes:
- Tips and Tricks around the Java Topology Suite
- Notes On OpenJUMP's Rendering System
- Notes on Speed Improvements on Rendering
- Notes on TaskFrames
- Notes on the Display of AttributeTables
- Using JUMP Libraries in an External Application
- A method/class diagram for the PlugInContext (click on the image to the right)
- Looking for Icons? then check out: http://projects.opengeo.org/geosilk
Adding support for new data formats
- How to write a new driver (Spring 2007)
- How to Create an Open Wizard (Since OpenJUMP Version 1.2)
- Some additional notes on adding support for a new file format: File DataSource Notes
- Working with GML