Changeset 2181 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2009-09-22T15:34:19+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/ConflictCollection.java
r2017 r2181 76 76 protected void addConflict(Conflict<?> conflict) throws IllegalStateException { 77 77 if (hasConflictForMy(conflict.getMy())) 78 throw new IllegalStateException(tr(" already registered a conflict for primitive ''{0}''", conflict.getMy().toString()));78 throw new IllegalStateException(tr("Already registered a conflict for primitive ''{0}''.", conflict.getMy().toString())); 79 79 if (!conflicts.contains(conflict)) { 80 80 conflicts.add(conflict); … … 92 92 public void add(Conflict<?> conflict) throws IllegalStateException, IllegalArgumentException { 93 93 if (conflict == null) 94 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", "conflict"));94 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "conflict")); 95 95 addConflict(conflict); 96 96 fireConflictAdded(); -
trunk/src/org/openstreetmap/josm/data/osm/BackreferencedDataSet.java
r2095 r2181 103 103 public BackreferencedDataSet(DataSet source) { 104 104 if (source == null) 105 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null"));105 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.")); 106 106 this.source = source; 107 107 int size = source.ways.size() + source.relations.size(); -
trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
r2165 r2181 391 391 public OsmPrimitive getPrimitiveById(long id, OsmPrimitiveType type) { 392 392 if (id <= 0) 393 throw new IllegalArgumentException(tr(" parameter{0} > 0 required. Got{1}.", "id", id));393 throw new IllegalArgumentException(tr("Parameter ''{0}'' > 0 expected. Got ''{1}''.", "id", id)); 394 394 if (id <= 0) 395 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", "type"));395 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "type")); 396 396 Collection<? extends OsmPrimitive> primitives = null; 397 397 switch(type) { -
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r2120 r2181 176 176 public OsmPrimitive(long id) throws IllegalArgumentException { 177 177 if (id < 0) 178 throw new IllegalArgumentException(tr(" expectedid>= 0. Got {0}", id));178 throw new IllegalArgumentException(tr("Expected ID >= 0. Got {0}.", id)); 179 179 this.id = id; 180 180 this.version = 0; … … 300 300 public void setVisible(boolean visible) throws IllegalStateException{ 301 301 if (id == 0 && visible == false) 302 throw new IllegalStateException(tr(" aprimitive withid=0 can't be invisible"));302 throw new IllegalStateException(tr("A primitive with ID = 0 can't be invisible.")); 303 303 this.visible = visible; 304 304 } … … 336 336 public void setOsmId(long id, int version) { 337 337 if (id <= 0) 338 throw new IllegalArgumentException(tr(" id> 0 expected. Got {0}", id));338 throw new IllegalArgumentException(tr("ID > 0 expected. Got {0}.", id)); 339 339 if (version <= 0) 340 throw new IllegalArgumentException(tr(" version > 0 expected. Got {0}", version));340 throw new IllegalArgumentException(tr("Version > 0 expected. Got {0}.", version)); 341 341 this.id = id; 342 342 this.version = version; -
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitiveType.java
r2115 r2181 23 23 if (type.getAPIName().equals(typeName)) return type; 24 24 } 25 throw new IllegalArgumentException(tr(" parameter ''{0}'' is not a valid type name, got ''{1}''", "typeName", typeName));25 throw new IllegalArgumentException(tr("Parameter ''{0}'' is not a valid type name. Got ''{1}''.", "typeName", typeName)); 26 26 } 27 27 … … 34 34 if (cls.equals(Way.class)) return WAY; 35 35 if (cls.equals(Relation.class)) return RELATION; 36 throw new IllegalArgumentException(tr(" parameter ''{0}'' is not an acceptable class, got ''{1}''", "cls", cls.toString()));36 throw new IllegalArgumentException(tr("Parameter ''{0}'' is not an acceptable class. Got ''{1}''.", "cls", cls.toString())); 37 37 } 38 38 -
trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
r2070 r2181 570 570 if (primitive == null) return; 571 571 if (! isApplicableToPrimitive()) 572 throw new IllegalStateException(tr(" tag collection can't be applied to a primitive because there are keys with multiple values"));572 throw new IllegalStateException(tr("Tag collection can't be applied to a primitive because there are keys with multiple values.")); 573 573 for (Tag tag: tags) { 574 574 if (tag.getValue() == null || tag.getValue().equals("")) { … … 591 591 if (primitives == null) return; 592 592 if (! isApplicableToPrimitive()) 593 throw new IllegalStateException(tr(" tag collection can't be applied to a primitive because there are keys with multiple values"));593 throw new IllegalStateException(tr("Tag collection can't be applied to a primitive because there are keys with multiple values.")); 594 594 for (OsmPrimitive primitive: primitives) { 595 595 applyTo(primitive); … … 608 608 if (primitive == null) return; 609 609 if (! isApplicableToPrimitive()) 610 throw new IllegalStateException(tr(" tag collection can't be applied to a primitive because there are keys with multiple values"));610 throw new IllegalStateException(tr("Tag collection can't be applied to a primitive because there are keys with multiple values.")); 611 611 primitive.removeAll(); 612 612 for (Tag tag: tags) { … … 626 626 if (primitives == null) return; 627 627 if (! isApplicableToPrimitive()) 628 throw new IllegalStateException(tr(" tag collection can't be applied to a primitive because there are keys with multiple values"));628 throw new IllegalStateException(tr("Tag collection can't be applied to a primitive because there are keys with multiple values.")); 629 629 for (OsmPrimitive primitive: primitives) { 630 630 replaceTagsOf(primitive); -
trunk/src/org/openstreetmap/josm/data/osm/Way.java
r2077 r2181 210 210 if (n==null) return; 211 211 if (incomplete) 212 throw new IllegalStateException(tr(" can't add node {0} to incomplete way {1}", n.getId(), getId()));212 throw new IllegalStateException(tr("Cannot add node {0} to incomplete way {1}.", n.getId(), getId())); 213 213 if (incomplete) return; 214 214 clearCached(); … … 228 228 if (n==null) return; 229 229 if (incomplete) 230 throw new IllegalStateException(tr(" can't add node {0} to incomplete way {1}", n.getId(), getId()));230 throw new IllegalStateException(tr("Cannot add node {0} to incomplete way {1}.", n.getId(), getId())); 231 231 clearCached(); 232 232 nodes.add(offs, n); -
trunk/src/org/openstreetmap/josm/data/osm/history/History.java
r2017 r2181 152 152 return primitive; 153 153 } 154 throw new NoSuchElementException(tr("There's no primitive with version {0} in this history", version)); 154 throw new NoSuchElementException(tr("There's no primitive with version {0} in this history.", version)); 155 155 } 156 156 … … 159 159 160 160 if (versions.isEmpty()) 161 throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history", date)); 161 throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history.", date)); 162 162 if (get(0).getTimestamp().compareTo(date)> 0) 163 throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history", date)); 163 throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history.", date)); 164 164 for (int i = 1; i < versions.size();i++) { 165 165 if (get(i-1).getTimestamp().compareTo(date) <= 0 … … 172 172 public HistoryOsmPrimitive get(int idx) { 173 173 if (idx < 0 || idx >= versions.size()) 174 throw new IndexOutOfBoundsException(tr(" parameter ''{0}'' in range 0..{1} expected, got {2}", "idx", versions.size()-1, idx));174 throw new IndexOutOfBoundsException(tr("Parameter ''{0}'' in range 0..{1} expected. Got ''{2}''.", "idx", versions.size()-1, idx)); 175 175 return versions.get(idx); 176 176 } … … 178 178 public HistoryOsmPrimitive getEarliest() { 179 179 if (isEmpty()) 180 throw new NoSuchElementException(tr(" no earliest version found. History is empty."));180 throw new NoSuchElementException(tr("No earliest version found. History is empty.")); 181 181 return sortAscending().versions.get(0); 182 182 } … … 184 184 public HistoryOsmPrimitive getLatest() { 185 185 if (isEmpty()) 186 throw new NoSuchElementException(tr(" no latest version found. History is empty."));186 throw new NoSuchElementException(tr("No latest version found. History is empty.")); 187 187 return sortDescending().versions.get(0); 188 188 } -
trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java
r2017 r2181 29 29 protected void ensurePositiveLong(long value, String name) { 30 30 if (value <= 0) 31 throw new IllegalArgumentException(tr(" parameter ''{0}'' > 0 expected, got ''{1}''", name, value));31 throw new IllegalArgumentException(tr("Parameter ''{0}'' > 0 expected. Got ''{1}''.", name, value)); 32 32 } 33 33 34 34 protected void ensureNotNull(Object obj, String name) { 35 35 if (obj == null) 36 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", name));36 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", name)); 37 37 } 38 38 … … 102 102 public int compareTo(HistoryOsmPrimitive o) { 103 103 if (this.id != o.id) 104 throw new ClassCastException(tr(" can't compare primitive withid''{0}'' to primitive withid''{1}''", o.id, this.id));104 throw new ClassCastException(tr("Can't compare primitive with ID ''{0}'' to primitive with ID ''{1}''.", o.id, this.id)); 105 105 return new Long(this.version).compareTo(o.version); 106 106 } -
trunk/src/org/openstreetmap/josm/data/osm/history/HistoryRelation.java
r1670 r2181 87 87 public RelationMember getRelationMember(int idx) throws IndexOutOfBoundsException { 88 88 if (idx < 0 || idx >= members.size()) 89 throw new IndexOutOfBoundsException(tr(" parameter {0} not in range 0..{1}, got {2}", "idx", members.size(),idx));89 throw new IndexOutOfBoundsException(tr("Parameter {0} not in range 0..{1}. Got ''{2}''.", "idx", members.size(),idx)); 90 90 return members.get(idx); 91 91 } … … 108 108 public void addMember(RelationMember member) throws IllegalArgumentException { 109 109 if (member == null) 110 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", "member"));110 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "member")); 111 111 members.add(member); 112 112 } -
trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java
r1670 r2181 46 46 public long getNodeId(int idx) throws IndexOutOfBoundsException { 47 47 if (idx < 0 || idx >= nodeIds.size()) 48 throw new IndexOutOfBoundsException(tr(" parameter {0} not in range 0..{1}, got {2}", "idx", nodeIds.size(),idx));48 throw new IndexOutOfBoundsException(tr("Parameter {0} not in range 0..{1}. Got ''{2}''.", "idx", nodeIds.size(),idx)); 49 49 return nodeIds.get(idx); 50 50 } -
trunk/src/org/openstreetmap/josm/data/osm/history/RelationMember.java
r2017 r2181 29 29 this.role = (role == null ? "" : role); 30 30 if (primitiveType == null) 31 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", "primitiveType"));31 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "primitiveType")); 32 32 this.primitiveType = primitiveType; 33 33 if (primitiveId <=0) 34 throw new IllegalArgumentException(tr(" parameter ''{0}'' > 0 expected, got ''{1}''", "primitiveId", primitiveId));34 throw new IllegalArgumentException(tr("Parameter ''{0}'' > 0 expected. Got ''{1}''.", "primitiveId", primitiveId)); 35 35 this.primitiveId = primitiveId; 36 36 } -
trunk/src/org/openstreetmap/josm/data/osm/visitor/MergeSourceBuildingVisitor.java
r2025 r2181 42 42 public MergeSourceBuildingVisitor(DataSet selectionBase) throws IllegalArgumentException { 43 43 if (selectionBase == null) 44 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", "selectionBase"));44 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "selectionBase")); 45 45 this.selectionBase = selectionBase; 46 46 this.hull = new DataSet();
Note:
See TracChangeset
for help on using the changeset viewer.