1 /* 2 * Copyright (C) 2025 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.android.dependencymapper; 17 18 /** 19 * POJO representing the data collected from Java Source file analysis. 20 */ 21 public class JavaSourceData { 22 23 private final String mFilePath; 24 private final String mPackagePrependedFileName; 25 JavaSourceData(String filePath, String packagePrependedFileName)26 public JavaSourceData(String filePath, String packagePrependedFileName) { 27 mFilePath = filePath; 28 mPackagePrependedFileName = packagePrependedFileName; 29 } 30 getFilePath()31 public String getFilePath() { 32 return mFilePath; 33 } 34 getPackagePrependedFileName()35 public String getPackagePrependedFileName() { 36 return mPackagePrependedFileName; 37 } 38 } 39