Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2013-2015 Erwin Müller
*
* This file is part of prefdialog-corefields.
*
* prefdialog-corefields 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-corefields 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-corefields. If not, see .
*/
package com.anrisoftware.prefdialog.fields.combobox;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.editor_null;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.editor_set;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.elements_null;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.elements_set;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.error_custom_model;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.error_custom_model_message;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.error_custom_renderer;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.error_custom_renderer_message;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.model_null;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.model_set;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.renderer_null;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.renderer_set;
import static com.anrisoftware.prefdialog.fields.combobox.AbstractComboBoxFieldLogger._.type_not_supported;
import static org.apache.commons.lang3.Validate.isTrue;
import static org.apache.commons.lang3.Validate.notNull;
import java.beans.PropertyVetoException;
import javax.swing.ComboBoxEditor;
import javax.swing.ComboBoxModel;
import javax.swing.ListCellRenderer;
import com.anrisoftware.globalpom.log.AbstractLogger;
import com.anrisoftware.globalpom.reflection.exceptions.ReflectionError;
/**
* Logging messages for {@link AbstractComboBoxField}.
*
* @author Erwin Mueller, [email protected]
* @since 3.0
*/
@SuppressWarnings("rawtypes")
class AbstractComboBoxFieldLogger extends AbstractLogger {
enum _ {
field("field"),
elements_set("Elements {} set for {}."),
type_not_supported("Type %s not supported for %s"),
elements_null("Elements cannot be null for %s."),
renderer_set("Renderer {} set for {}."),
renderer_null("Renderer cannot be null for %s."),
model_set("Model {} set for {}."),
model_null("Model cannot be null for %s."),
error_custom_renderer_message("Error set custom renderer for %s"),
error_custom_renderer("Error set custom renderer"),
error_custom_model_message("Error set custom model for %s"),
error_custom_model("Error set custom model"),
editor_set("Editor {} set for {}."),
editor_null("Editor cannot be null for %s.");
private String name;
private _(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
/**
* Creates logger for {@link AbstractComboBoxField}.
*/
AbstractComboBoxFieldLogger() {
super(AbstractComboBoxField.class);
}
void checkModel(AbstractComboBoxField field, ComboBoxModel model) {
notNull(model, model_null.toString(), field);
}
void modelSet(AbstractComboBoxField field, ComboBoxModel model) {
debug(model_set, model, field);
}
void unsupportedType(AbstractComboBoxField field, Object elements) {
isTrue(false, type_not_supported.toString(), elements.getClass(), field);
}
void checkElements(AbstractComboBoxField field, Object elements) {
notNull(elements, elements_null.toString(), field);
}
void elementsSet(AbstractComboBoxField field, Object elements) {
debug(elements_set, elements, field);
}
void checkRenderer(AbstractComboBoxField field, ListCellRenderer renderer) {
notNull(renderer, renderer_null.toString(), field);
}
void rendererSet(AbstractComboBoxField field, ListCellRenderer renderer) {
debug(renderer_set, renderer, field);
}
ReflectionError errorSetModel(AbstractComboBoxField field,
PropertyVetoException e) {
return logException(
new ReflectionError(error_custom_model, e).add(field, field),
error_custom_model_message, field.getName());
}
ReflectionError errorSetRenderer(AbstractComboBoxField field,
PropertyVetoException e) {
return logException(
new ReflectionError(error_custom_renderer, e).add(field, field),
error_custom_renderer_message, field.getName());
}
void checkEditor(AbstractComboBoxField field, ComboBoxEditor editor) {
notNull(editor, editor_null.toString(), field);
}
void editorSet(AbstractComboBoxField field, ComboBoxEditor editor) {
debug(editor_set, editor, field);
}
}