> On Jul 30, 2015, at 6:08 PM, Michael Hall <[email protected]> wrote: > > jdeps -v -dotoutput ~/dotfiles > jrt:/java.desktop/com/apple/laf/AquaBorder.class > > or what would be a good way to determine the dependencies for a Swing L&F? > Running jdeps against the application jar for a Swing application shows no > look and feel dependencies.
OK, jdeps with plain class name works ok. Still sort of curious if the jrt version wouldn’t be a valid path? It is what is returned by the ClassLoader method getResource(). public URL getResource(String name) Finds the resource with the given name. Michael Hall
