use of com.biglybt.pifimpl.local.ui.model.BasicPluginConfigModelImpl in project BiglyBT by BiglySoftware.
the class UIManagerImpl method createBasicPluginConfigModel.
@Override
public BasicPluginConfigModel createBasicPluginConfigModel(String parent_section, String section_name) {
final BasicPluginConfigModel model = new BasicPluginConfigModelImpl(this, parent_section, section_name);
try {
class_mon.enter();
configModels.add(model);
} finally {
class_mon.exit();
}
fireEvent(pi, UIManagerEvent.ET_PLUGIN_CONFIG_MODEL_CREATED, model);
return (model);
}
Aggregations