< prev index next >

src/jdk.jlink/share/classes/jdk/tools/jlink/plugin/Plugin.java

Print this page

        

@@ -105,28 +105,10 @@
     public default Set<State> getState() {
         return EnumSet.of(State.FUNCTIONAL);
     }
 
     /**
-     * The set of plugin names that must be located, within the stack of plugins,
-     * before this plugin.
-     * @return The set of names. By default this set is empty.
-     */
-    public default Set<String> isBefore() {
-        return Collections.emptySet();
-    }
-
-    /**
-     * The set of plugin names that must be located, within the stack of plugins,
-     * after this plugin.
-     * @return The set of names. By default this set is empty.
-     */
-    public default Set<String> isAfter() {
-        return Collections.emptySet();
-    }
-
-    /**
      * The plugin name.
      * @return The name.
      */
     public default String getName() {
         return getClass().getName().replace('.', '-');
< prev index next >