Ignore:
Timestamp:
2018-10-28T17:20:58+01:00 (7 years ago)
Author:
donvip
Message:

rename openjfx plugin to javafx

Location:
applications/editors/josm/plugins/javafx
Files:
2 added
1 deleted
2 edited
3 copied
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/JavafxPlugin.java

    r34699 r34700  
    11// License: GPL. For details, see LICENSE file.
    2 package org.openstreetmap.josm.plugins.openjfx;
     2package org.openstreetmap.josm.plugins.javafx;
    33
    44import java.io.File;
     
    2525import org.openstreetmap.josm.plugins.Plugin;
    2626import org.openstreetmap.josm.plugins.PluginInformation;
    27 import org.openstreetmap.josm.plugins.openjfx.io.audio.JavaFxMediaPlayer;
     27import org.openstreetmap.josm.plugins.javafx.io.audio.JavaFxMediaPlayer;
    2828import org.openstreetmap.josm.tools.Logging;
    2929import org.openstreetmap.josm.tools.PlatformManager;
     
    3232 * OpenJFX plugin brings OpenJFX (JavaFX) to other plugins.
    3333 */
    34 public class OpenJfxPlugin extends Plugin {
     34public class JavafxPlugin extends Plugin {
    3535
    3636    /**
     
    3838     * @param info plugin info
    3939     */
    40     public OpenJfxPlugin(PluginInformation info) {
     40    public JavafxPlugin(PluginInformation info) {
    4141        super(info);
    4242        AudioPlayer.setSoundPlayerClass(JavaFxMediaPlayer.class);
     
    5454
    5555    private static void extractNativeLibs(String ext) {
    56         CodeSource src = OpenJfxPlugin.class.getProtectionDomain().getCodeSource();
     56        CodeSource src = JavafxPlugin.class.getProtectionDomain().getCodeSource();
    5757        if (src != null) {
    5858            try (ZipFile zf = new ZipFile(Paths.get(src.getLocation().toURI()).toFile(), StandardCharsets.UTF_8)) {
  • applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/io/audio/JavaFxMediaPlayer.java

    r34603 r34700  
    11// License: GPL. For details, see LICENSE file.
    2 package org.openstreetmap.josm.plugins.openjfx.io.audio;
     2package org.openstreetmap.josm.plugins.javafx.io.audio;
    33
    44import java.io.File;
  • applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/io/audio/package-info.java

    r34603 r34700  
    44 * Provides the classes for Audio mapping features requiring JavaFX.
    55 */
    6 package org.openstreetmap.josm.plugins.openjfx.io.audio;
     6package org.openstreetmap.josm.plugins.javafx.io.audio;
  • applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/package-info.java

    r34699 r34700  
    44 * Provides Main plugin class.
    55 */
    6 package org.openstreetmap.josm.plugins.openjfx;
     6package org.openstreetmap.josm.plugins.javafx;
Note: See TracChangeset for help on using the changeset viewer.