/** * set the value of Auxiliary property, will be written to nb-configurations.xml file * * @param propertyName * @param shared * @param value */ public void setRawAuxiliaryProperty(String propertyName, String value, boolean shared) { auxiliaryProps.put(propertyName, value, shared); }
/** * get the value of Auxiliary property defined in the project, however take only the content in * nb-configurations.xml file into account, never consider values from pom.xml here. * * @param propertyName * @param shared * @return */ public String getRawAuxiliaryProperty(String propertyName, boolean shared) { return auxiliaryProps.get(propertyName, shared, false); }