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 : public final class FixReplacement { 18 : public final String path; 19 : public final Comment.Range range; 20 : public final String replacement; 21 : 22 5 : public FixReplacement(String path, Comment.Range range, String replacement) { 23 5 : this.path = path; 24 5 : this.range = range; 25 5 : this.replacement = replacement; 26 5 : } 27 : 28 : @Override 29 : public String toString() { 30 0 : return "FixReplacement{" 31 : + "path='" 32 : + path 33 : + '\'' 34 : + ", range=" 35 : + range 36 : + ", replacement='" 37 : + replacement 38 : + '\'' 39 : + '}'; 40 : } 41 : 42 : /** Returns this instance's approximate size in bytes for the purpose of applying size limits. */ 43 : int getApproximateSize() { 44 2 : return path.length() + replacement.length(); 45 : } 46 : }