
com.anrisoftware.prefdialog.simpledialog.SimplePropertiesDialogLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefdialog-dialog Show documentation
Show all versions of prefdialog-dialog Show documentation
Dialogs that are containing the annotated field components.
The newest version!
/*
* Copyright 2012-2016 Erwin Müller
*
* This file is part of prefdialog-dialog.
*
* prefdialog-dialog is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* prefdialog-dialog is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with prefdialog-dialog. If not, see .
*/
package com.anrisoftware.prefdialog.simpledialog;
import static com.anrisoftware.prefdialog.simpledialog.SimplePropertiesDialogLogger._.parent_null;
import static com.anrisoftware.prefdialog.simpledialog.SimplePropertiesDialogLogger._.service_found;
import static com.anrisoftware.prefdialog.simpledialog.SimplePropertiesDialogLogger._.service_found_message;
import static org.apache.commons.lang3.Validate.notNull;
import javax.inject.Singleton;
import com.anrisoftware.globalpom.log.AbstractLogger;
/**
* Logging messages for {@link SimplePropertiesDialog}.
*
* @author Erwin Mueller, [email protected]
* @since 3.0
*/
@Singleton
class SimplePropertiesDialogLogger extends AbstractLogger {
enum _ {
service_found_message(
"No preference panel service found '{}' for dialog {}."),
service_found("No preference panel service found"),
parent_null("Parent dependencies cannot be null");
private String name;
private _(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
/**
* Creates a logger for {@link SimplePropertiesDialog}.
*/
public SimplePropertiesDialogLogger() {
super(SimplePropertiesDialog.class);
}
IllegalStateException errorFindService(SimpleDialog dialog, String name) {
return logException(
new IllegalStateException(service_found.toString()),
service_found_message, name, dialog);
}
void checkParent(SimplePropertiesDialog dialog, Object parent) {
notNull(parent, parent_null.toString(), dialog);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy