Package gw.lang.reflect.module
Interface IClassPath
-
- All Known Implementing Classes:
ClassPath
public interface IClassPath
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
IClassPath.ClassPathFilter
-
Field Summary
Fields Modifier and Type Field Description static IClassPath.ClassPathFilter
ALLOW_ALL_FILTER
static IClassPath.ClassPathFilter
ALLOW_ALL_WITH_SUN_FILTER
static String
COM_SUN_CLASS_PREFIX
static String
GW_API_PREFIX
static String
GW_INTERNAL_PREFIX
static IClassPath.ClassPathFilter
ONLY_API_CLASSES
static String
PLACEHOLDER_FOR_PACKAGE
static String
SUN_CLASS_PREFIX
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getFilteredClassNames()
ArrayList<IDirectory>
getPaths()
Set<TypeName>
getTypeNames(String namespace)
-
-
-
Field Detail
-
GW_API_PREFIX
static final String GW_API_PREFIX
- See Also:
- Constant Field Values
-
GW_INTERNAL_PREFIX
static final String GW_INTERNAL_PREFIX
- See Also:
- Constant Field Values
-
SUN_CLASS_PREFIX
static final String SUN_CLASS_PREFIX
- See Also:
- Constant Field Values
-
COM_SUN_CLASS_PREFIX
static final String COM_SUN_CLASS_PREFIX
- See Also:
- Constant Field Values
-
PLACEHOLDER_FOR_PACKAGE
static final String PLACEHOLDER_FOR_PACKAGE
- See Also:
- Constant Field Values
-
ALLOW_ALL_FILTER
static final IClassPath.ClassPathFilter ALLOW_ALL_FILTER
-
ONLY_API_CLASSES
static final IClassPath.ClassPathFilter ONLY_API_CLASSES
-
ALLOW_ALL_WITH_SUN_FILTER
static final IClassPath.ClassPathFilter ALLOW_ALL_WITH_SUN_FILTER
-
-