Remove exported everywhere.
[SquirrelJME.git] / modules / tool-classfile / src / main / java / net / multiphasicapps / classfile / HasAccessibleFlags.java
blobe4ac408990ea8f9a056447e6b94ea6479641fa34
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package net.multiphasicapps.classfile;
12 /**
13 * This interface represents anything that has accessible flags.
15 * @since 2018/09/09
17 public interface HasAccessibleFlags
19 /**
20 * Returns accessible flags.
22 * @return The accessible flags.
23 * @since 2018/09/09
25 AccessibleFlags flags();