X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/ba6eafccb81f6761ae90c2e1f53833a02b119a2e..7101a04247be24d9eb3c1aa49b88ec2496c7d2d6:/src/com/owncloud/android/ui/fragment/FileFragment.java diff --git a/src/com/owncloud/android/ui/fragment/FileFragment.java b/src/com/owncloud/android/ui/fragment/FileFragment.java new file mode 100644 index 00000000..5537d62e --- /dev/null +++ b/src/com/owncloud/android/ui/fragment/FileFragment.java @@ -0,0 +1,39 @@ +/* ownCloud Android client application + * Copyright (C) 2012-2013 ownCloud Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package com.owncloud.android.ui.fragment; + +import android.support.v4.app.Fragment; + +import com.owncloud.android.datamodel.OCFile; + +/** + * Common methods for {@link Fragment}s containing {@link OCFile}s + * + * @author David A. Velasco + * + */ +public interface FileFragment { + + /** + * Getter for the hold {@link OCFile} + * + * @return The {@link OCFile} hold + */ + public OCFile getFile(); +}