Line data Source code
1 : // Copyright (C) 2016 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.entities; 16 : 17 : import java.util.List; 18 : 19 : public final class FixSuggestion { 20 : public final String fixId; 21 : public final String description; 22 : public final List<FixReplacement> replacements; 23 : 24 2 : public FixSuggestion(String fixId, String description, List<FixReplacement> replacements) { 25 2 : this.fixId = fixId; 26 2 : this.description = description; 27 2 : this.replacements = replacements; 28 2 : } 29 : 30 : @Override 31 : public String toString() { 32 0 : return "FixSuggestion{" 33 : + "fixId='" 34 : + fixId 35 : + '\'' 36 : + ", description='" 37 : + description 38 : + '\'' 39 : + ", replacements=" 40 : + replacements 41 : + '}'; 42 : } 43 : 44 : /** Returns this instance's approximate size in bytes for the purpose of applying size limits. */ 45 : int getApproximateSize() { 46 2 : return fixId.length() 47 2 : + description.length() 48 2 : + replacements.stream().mapToInt(FixReplacement::getApproximateSize).sum(); 49 : } 50 : }