mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
c1c9d2111b
Rather than try to support mixing Avian's core classes with those of an external class library -- which necessitates adding a lot of stub methods which throw UnsupportedOperationExceptions, among other comprimises -- we're looking to support such external class libraries in their unmodified forms. The latter strategy has already proven successful with OpenJDK's class library. Thus, this commit removes the stub methods, etc., which not only cleans up the code but avoids misleading application developers as to what classes and methods Avian's built-in class library supports.
23 lines
580 B
Java
23 lines
580 B
Java
/* Copyright (c) 2008-2009, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
package java.lang.reflect;
|
|
|
|
public interface Member {
|
|
public static final int PUBLIC = 0;
|
|
public static final int DECLARED = 1;
|
|
|
|
public Class getDeclaringClass();
|
|
|
|
public int getModifiers();
|
|
|
|
public String getName();
|
|
}
|