Uses of Class
org.openstreetmap.josm.data.osm.User

Packages that use User
org.openstreetmap.josm.data.osm   
org.openstreetmap.josm.data.osm.history   
org.openstreetmap.josm.gui.dialogs   
org.openstreetmap.josm.gui.history   
org.openstreetmap.josm.io   
 

Uses of User in org.openstreetmap.josm.data.osm
 

Fields in org.openstreetmap.josm.data.osm declared as User
private static User User.anonymous
           
private  User Changeset.user
          the user who owns the changeset
protected  User AbstractPrimitive.user
          User that last modified this primitive, as specified by the server.
 

Fields in org.openstreetmap.josm.data.osm with type parameters of type User
private static java.util.HashMap<java.lang.Long,User> User.userMap
          the map of known users
 

Methods in org.openstreetmap.josm.data.osm that return User
static User User.createLocalUser(java.lang.String name)
          Creates a local user with the given name
static User User.createOsmUser(long uid, java.lang.String name)
          Creates a user known to the OSM server
static User User.getAnonymous()
           
static User User.getById(long uid)
          Returns the user with user id uid or null if this user doesn't exist
 User IPrimitive.getUser()
           
 User Changeset.getUser()
           
 User AbstractPrimitive.getUser()
          Replies the user who has last touched this object.
 

Methods in org.openstreetmap.josm.data.osm that return types with arguments of type User
static java.util.List<User> User.getByName(java.lang.String name)
          Returns the list of users with name name or the empty list if no such users exist
 

Methods in org.openstreetmap.josm.data.osm with parameters of type User
 void OsmPrimitive.setUser(User user)
           
 void IPrimitive.setUser(User user)
           
 void Changeset.setUser(User user)
           
 void AbstractPrimitive.setUser(User user)
          Sets the user who has last touched this object.
 

Uses of User in org.openstreetmap.josm.data.osm.history
 

Fields in org.openstreetmap.josm.data.osm.history declared as User
private  User HistoryOsmPrimitive.user
           
 

Methods in org.openstreetmap.josm.data.osm.history that return User
 User HistoryOsmPrimitive.getUser()
           
 

Constructors in org.openstreetmap.josm.data.osm.history with parameters of type User
HistoryNode(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, LatLon coords)
          Constructs a new HistoryNode.
HistoryNode(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, LatLon coords, boolean checkHistoricParams)
          Constructs a new HistoryNode with a configurable checking of historic parameters.
HistoryOsmPrimitive(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp)
          Constructs a new HistoryOsmPrimitive.
HistoryOsmPrimitive(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, boolean checkHistoricParams)
          Constructs a new HistoryOsmPrimitive with a configurable checking of historic parameters.
HistoryRelation(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp)
          constructor
HistoryRelation(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, java.util.ArrayList<RelationMemberData> members)
          constructor
HistoryRelation(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, boolean checkHistoricParams)
          constructor
HistoryWay(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp)
          Constructs a new HistoryWay.
HistoryWay(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, java.util.ArrayList<java.lang.Long> nodeIdList)
          Constructs a new HistoryWay with a given list of node ids.
HistoryWay(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, boolean checkHistoricParams)
          Constructs a new HistoryWay with a configurable checking of historic parameters.
 

Uses of User in org.openstreetmap.josm.gui.dialogs
 

Fields in org.openstreetmap.josm.gui.dialogs declared as User
 User UserListDialog.UserInfo.user
           
 

Methods in org.openstreetmap.josm.gui.dialogs that return types with arguments of type User
protected  java.util.Map<User,java.lang.Integer> UserListDialog.UserTableModel.computeStatistics(java.util.Collection<? extends OsmPrimitive> primitives)
           
 java.util.List<User> UserListDialog.UserTableModel.getSelectedUsers(int[] rows)
           
 

Constructors in org.openstreetmap.josm.gui.dialogs with parameters of type User
UserListDialog.UserInfo(User user, int count, double percent)
           
 

Uses of User in org.openstreetmap.josm.gui.history
 

Methods in org.openstreetmap.josm.gui.history that return User
private  User HistoryBrowserModel.HistoryPrimitiveBuilder.getCurrentUser()
           
 

Uses of User in org.openstreetmap.josm.io
 

Methods in org.openstreetmap.josm.io that return User
protected  User OsmChangesetParser.Parser.createUser(java.lang.String uid, java.lang.String name)
           
private  User OsmReader.createUser(java.lang.String uid, java.lang.String name)
           
 



JOSM