com.anrisoftware.prefdialog.csvimportdialog.importpanel.VerticalPreferencesPanelFieldProviderLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefdialog-csvimportdialog Show documentation
Show all versions of prefdialog-csvimportdialog Show documentation
Dialog to import formatted text data in a comma separated format. The comma can also be a tab, space, semicolon or any other character.
The newest version!
/*
* Copyright 2013-2016 Erwin Müller
*
* This file is part of prefdialog-csvimportdialog.
*
* prefdialog-csvimportdialog 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-csvimportdialog 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-csvimportdialog. If not, see .
*/
package com.anrisoftware.prefdialog.csvimportdialog.importpanel;
import static com.anrisoftware.prefdialog.csvimportdialog.importpanel.VerticalPreferencesPanelFieldProviderLogger._.no_service;
import static java.lang.String.format;
import java.util.ArrayList;
import java.util.Collection;
import javax.inject.Singleton;
import com.anrisoftware.globalpom.log.AbstractLogger;
import com.google.inject.CreationException;
import com.google.inject.spi.Message;
/**
* Logging messages for {@link VerticalPreferencesPanelFieldProvider}.
*
* @author Erwin Mueller, [email protected]
* @since 1.0
*/
@Singleton
class VerticalPreferencesPanelFieldProviderLogger extends AbstractLogger {
enum _ {
no_service("No '%s' field service found");
private String name;
private _(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
/**
* Creates a logger for {@link VerticalPreferencesPanelFieldProvider}.
*/
public VerticalPreferencesPanelFieldProviderLogger() {
super(VerticalPreferencesPanelFieldProvider.class);
}
CreationException noService(Object source, String name) {
Collection messages = new ArrayList();
messages.add(new Message(source, format(no_service.toString(), name)));
return logException(new CreationException(messages), no_service, name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy