HomeSort by relevance Sort by last modified time
    Searched defs:checkerId (Results 1 - 5 of 5) sorted by null

  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/validation/
ValidationResult.java 31 private String checkerId;
36 * @param checkerId The checkerId for the checker being validated. The value is null for global validations.
38 public ValidationResult(String checkerId, int limit)
40 this.setCheckerId(checkerId);
63 * @param checkerId The checkerId to set.
65 private void setCheckerId(String checkerId)
67 this.checkerId = checkerId;
    [all...]
GlobalInputParamsValidator.java 368 String checkerId = null;
373 //Do nothing, checkerId is already correct
376 checkerId = checkerCondition[0];
379 checkerId = checkerCondition[0];
389 if ((knownCheckers == null) || !knownCheckers.containsKey(checkerId))
402 knownCheckers.get(checkerId).getChecker().getConditions();
ValidationManager.java 293 * @param checkerId
296 public static CheckerExtension getCheckerExtension(String checkerId)
302 result = checkers.get(checkerId);
306 PreflightingLogger.debug("Unable to read checker extension " + checkerId);
398 String checkerId = param.getValue();
400 if (checkerId == null)
407 else if (!knownCheckers.keySet().contains(checkerId))
412 checkerId));
417 IChecker checker = knownCheckers.get(checkerId).getChecker();
460 new ValidationResult(checkerId, LimitedList.UNLIMITED);
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/verbose/
WarningLevelFilter.java 446 String checkerId = result.getCheckerId();
447 if (checkerId != null)
450 if (checkerIdsToAdjustWarningLevel.contains(checkerId)
451 || (conditionIdsMap.containsKey(checkerId)))
453 List<String> conditionsToAdjust = conditionIdsMap.get(checkerId);
460 if (!checkerIdsToAdjustWarningLevel.contains(checkerId)
467 List<String> conditionsToIgnore = exclusionMap.get(checkerId);
  /tools/motodev/src/plugins/preflighting.ui/src/com/motorolamobility/preflighting/ui/tabs/
CheckersTabComposite.java 147 String checkerId = checkerDescription.getId();
148 text = checkerParams.containsKey(checkerId) ? checkerParams.get(checkerId) : "";
518 * The model which keeps checker params, Key is checkerId and value is the Parameters String
523 * The model which keeps the custom warning levels, Key is checkerId and value is a Boolean that indicates:
533 * The model which keeps all conditions, Key is checkerId and value is a list of its conditions
538 * The model which keeps only the selected conditions, Key is checkerId and value is a list of its selected conditions
    [all...]

Completed in 118 milliseconds