1 /* 2 * Copyright (C) 2015, Christian Halstrick <christian.halstrick@sap.com> and others 3 * 4 * This program and the accompanying materials are made available under the 5 * terms of the Eclipse Distribution License v. 1.0 which is available at 6 * https://www.eclipse.org/org/documents/edl-v10.php. 7 * 8 * SPDX-License-Identifier: BSD-3-Clause 9 */ 10 package org.eclipse.jgit.attributes; 11 12 /** 13 * Interface for classes which provide git attributes 14 * 15 * @since 4.2 16 */ 17 public interface AttributesProvider { 18 /** 19 * Get attributes 20 * 21 * @return the currently active attributes 22 */ 23 Attributes getAttributes(); 24 }