// Copyright 2012 Georg-August-Universität Göttingen, Germany // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package de.ugoe.cs.autoquest.usability.result; import java.util.Collections; import java.util.EnumMap; import java.util.Map; import com.google.common.base.Optional; import com.google.common.base.Predicate; import com.google.common.collect.BiMap; import com.google.common.collect.HashBiMap; import com.google.common.collect.Maps; /** *

* TODO comment *

* * @author Alexander Deicke */ public class UsabilityDefect { private UsabilityDefectSeverityLevel severityLevel = UsabilityDefectSeverityLevel.NONE; private String description; private final EnumMap severity; /** *

* TODO: comment *

* * @param description * @param severity */ public UsabilityDefect(String description, EnumMap severity) { this.description = description; this.severity = severity; } /** *

* TODO: comment *

* * @return */ public UsabilityDefectSeverityLevel getSeverityLevel() { return this.severityLevel; } /** *

* TODO: comment *

* * @param evaluationMetric * @return */ public Optional isPresent(float evaluationMetric) { Optional defect = Optional.absent(); Map matchingSeverityLevels = Maps.filterValues(this.severity, severityForMetric(evaluationMetric)); if(matchingSeverityLevels.isEmpty()) { return defect; } setDefectAttributes(matchingSeverityLevels, evaluationMetric); return Optional.of(this); } /** *

* TODO: comment *

* * @param matchingSeverityLevels * @param evaluationMetric */ private void setDefectAttributes(Map matchingSeverityLevels, float evaluationMetric) { BiMap inverse = HashBiMap.create(matchingSeverityLevels).inverse(); this.severityLevel = inverse.get(Collections.max(inverse.keySet())); this.description = String.format(this.description, evaluationMetric); } /** *

* TODO: comment *

* @param evaluationMetric * * @return */ private Predicate< Double> severityForMetric(final float evaluationMetric) { return new Predicate() { public boolean apply(Double severityThreshold) { return evaluationMetric == severityThreshold || evaluationMetric > severityThreshold; } }; } }