Changeset 12646 in josm for trunk/src/org
- Timestamp:
- 2017-08-25T19:33:05+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/AuthorizationProcedure.java
r3083 r12646 2 2 package org.openstreetmap.josm.gui.oauth; 3 3 4 /** 5 * The type of procedure to use for retrieving OAuth credentials. 6 */ 4 7 public enum AuthorizationProcedure { 5 8 /** -
trunk/src/org/openstreetmap/josm/gui/oauth/AuthorizationProcedureComboBox.java
r8836 r12646 13 13 import org.openstreetmap.josm.gui.widgets.JosmComboBox; 14 14 15 /** 16 * Combo box that lets the user choose one of the avaliable {@link AuthorizationProcedure}s. 17 */ 15 18 public class AuthorizationProcedureComboBox extends JosmComboBox<AuthorizationProcedure> { 16 19 -
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticPropertiesPanel.java
r10183 r12646 17 17 import org.openstreetmap.josm.gui.widgets.SelectAllOnFocusGainedDecorator; 18 18 19 /** 20 * Panel to enter username and password for the "fully automatic" authorization 21 * procedure. 22 * 23 * @see AuthorizationProcedure#FULLY_AUTOMATIC 24 */ 19 25 public class FullyAutomaticPropertiesPanel extends JPanel { 20 26 -
trunk/src/org/openstreetmap/josm/gui/oauth/OsmPrivilegesPanel.java
r10183 r12646 15 15 import org.openstreetmap.josm.gui.widgets.VerticallyScrollablePanel; 16 16 17 /** 18 * Panel letting the user choose from a detailed list of privileges that will be 19 * requested for the OAuth token. 20 */ 17 21 public class OsmPrivilegesPanel extends VerticallyScrollablePanel { 18 22 -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetLabel.java
r8863 r12646 11 11 import javax.swing.JLabel; 12 12 13 /** 14 * A hyperlink {@link JLabel}. 15 * 16 * To indicate that the user can click on the text, it displays an appropriate 17 * mouse cursor and dotted underline when the mouse is inside the hover area. 18 */ 13 19 public class TaggingPresetLabel extends JLabel { 14 20 -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetMenu.java
r12643 r12646 25 25 import org.openstreetmap.josm.tools.AlphanumComparator; 26 26 27 /** 28 * Menu that groups several presets from one topic. 29 * <p> 30 * Used, to create the nested directory structure in the preset main menu entry. 31 */ 27 32 public class TaggingPresetMenu extends TaggingPreset { 28 33 public JMenu menu; // set by TaggingPresets -
trunk/src/org/openstreetmap/josm/io/auth/AbstractCredentialsAgent.java
r10615 r12646 11 11 import org.openstreetmap.josm.gui.util.GuiHelper; 12 12 13 /** 14 * Partial implementation of the {@link CredentialsAgent} interface. 15 * <p> 16 * Provides a memory cache for the credentials and means to query the information 17 * from the user. 18 */ 13 19 public abstract class AbstractCredentialsAgent implements CredentialsAgent { 14 20 -
trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentException.java
r8510 r12646 2 2 package org.openstreetmap.josm.io.auth; 3 3 4 /** 5 * Exception thrown for errors while handling credentials. 6 * <p> 7 * Missing credentials and discarded password dialog are not considered an error. 8 * At time of writing, methods return <code>null</code> in this case. 9 * @see CredentialsAgent 10 */ 4 11 public class CredentialsAgentException extends Exception { 5 12
Note:
See TracChangeset
for help on using the changeset viewer.