Changeset 8470 in josm for trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
- Timestamp:
- 2015-06-06T04:32:00+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
r8466 r8470 83 83 /** 84 84 * Add (register) MatchFactory with SearchCompiler 85 * @param factory 85 * @param factory match factory 86 86 */ 87 87 public static void addMatchFactory(MatchFactory factory) { … … 1355 1355 * 1356 1356 * @return match determined by search string 1357 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError 1357 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError if search expression cannot be parsed 1358 1358 */ 1359 1359 public Match parse() throws ParseError { … … 1370 1370 * 1371 1371 * @return match determined by parsing expression 1372 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError 1372 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError if search expression cannot be parsed 1373 1373 */ 1374 1374 private Match parseExpression() throws ParseError { … … 1397 1397 * @param errorMessage to display if parsing error occurs 1398 1398 * @return match determined by parsing expression 1399 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError 1399 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError if search expression cannot be parsed 1400 1400 * @see #parseExpression() 1401 1401 */ … … 1412 1412 * 1413 1413 * @return match determined by parsing factor string 1414 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError 1414 * @throws org.openstreetmap.josm.actions.search.SearchCompiler.ParseError if search expression cannot be parsed 1415 1415 */ 1416 1416 private Match parseFactor() throws ParseError {
Note:
See TracChangeset
for help on using the changeset viewer.