1 19 20 package org.netbeans.spi.project; 21 22 import org.w3c.dom.Element ; 23 24 42 public interface AuxiliaryConfiguration { 43 44 57 Element getConfigurationFragment(String elementName, String namespace, boolean shared); 58 59 80 void putConfigurationFragment(Element fragment, boolean shared) throws IllegalArgumentException ; 81 82 94 boolean removeConfigurationFragment(String elementName, String namespace, boolean shared) throws IllegalArgumentException ; 95 96 } 97 | Popular Tags |