Changeset 36147 in osm for applications/editors/josm/plugins/geochat/src/org
- Timestamp:
- 2023-09-20T17:59:32+02:00 (2 years ago)
- Location:
- applications/editors/josm/plugins/geochat/src/org
- Files:
-
- 5 added
- 10 copied
-
. (added)
-
openstreetmap (added)
-
openstreetmap/josm (added)
-
openstreetmap/josm/plugins (added)
-
openstreetmap/josm/plugins/geochat (added)
-
openstreetmap/josm/plugins/geochat/ChatMessage.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/ChatMessage.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/ChatPaneManager.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/ChatPaneManager.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/ChatServerConnection.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/ChatServerConnection.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/ChatServerConnectionListener.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/ChatServerConnectionListener.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/GeoChatPanel.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/GeoChatPanel.java ) (2 diffs)
-
openstreetmap/josm/plugins/geochat/GeoChatPlugin.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/GeoChatPlugin.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/GeoChatPopupAdapter.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/GeoChatPopupAdapter.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/JPanelTextField.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/JPanelTextField.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/JsonQueryCallback.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/JsonQueryCallback.java ) (1 diff)
-
openstreetmap/josm/plugins/geochat/JsonQueryUtil.java (copied) (copied from applications/editors/josm/plugins/geochat/src/geochat/JsonQueryUtil.java ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatMessage.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.time.Instant; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatPaneManager.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatServerConnection.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/ChatServerConnectionListener.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.util.List; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/GeoChatPanel.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; … … 68 68 */ 69 69 public GeoChatPanel() { 70 super(tr("GeoChat"), "geochat", tr("Open GeoChat panel"), null, 200, true); 70 super(tr("GeoChat"), "org/openstreetmap/josm/plugins/geochat", tr("Open GeoChat panel"), null, 200, true); 71 71 72 72 noData = new JLabel(tr("Zoom in to see messages"), SwingConstants.CENTER); -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/GeoChatPlugin.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import org.openstreetmap.josm.gui.MapFrame; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/GeoChatPopupAdapter.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/JPanelTextField.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.awt.KeyboardFocusManager; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/JsonQueryCallback.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import jakarta.json.JsonObject; -
applications/editors/josm/plugins/geochat/src/org/openstreetmap/josm/plugins/geochat/JsonQueryUtil.java
r36146 r36147 1 1 // License: WTFPL. For details, see LICENSE file. 2 package geochat; 2 package org.openstreetmap.josm.plugins.geochat; 3 3 4 4 import java.awt.EventQueue;
Note:
See TracChangeset
for help on using the changeset viewer.
