/* * Copyright 2008-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.codehaus.griffon.runtime.core.artifact; import griffon.core.GriffonApplication; import griffon.core.artifact.GriffonModel; import griffon.core.artifact.GriffonModelClass; import javax.annotation.Nonnull; import javax.annotation.Nullable; import javax.inject.Inject; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.beans.PropertyChangeSupport; import java.beans.PropertyVetoException; import java.beans.VetoableChangeListener; import java.beans.VetoableChangeSupport; import static griffon.util.GriffonNameUtils.requireNonBlank; import static java.util.Objects.requireNonNull; /** * Base implementation of the GriffonModel interface. * * @author Andres Almiray * @since 2.0.0 */ public abstract class AbstractGriffonModel extends AbstractGriffonMvcArtifact implements GriffonModel { private static final String ERROR_EVENT_NULL = "Argument 'event' must not be null"; private static final String ERROR_PROPERTY_NAME_BLANK = "Argument 'propertyName' must not be blank"; protected final PropertyChangeSupport pcs; protected final VetoableChangeSupport vcs; public AbstractGriffonModel() { pcs = new PropertyChangeSupport(this); vcs = new VetoableChangeSupport(this); } /** * Creates a new instance of this class. * * @param application the GriffonApplication that holds this artifact. * @deprecated Griffon prefers field injection over constructor injector for artifacts as of 2.1.0 */ @Inject @Deprecated public AbstractGriffonModel(@Nonnull GriffonApplication application) { super(application); pcs = new PropertyChangeSupport(this); vcs = new VetoableChangeSupport(this); } @Nonnull @Override protected String getArtifactType() { return GriffonModelClass.TYPE; } @Override public void addVetoableChangeListener(@Nullable VetoableChangeListener listener) { vcs.addVetoableChangeListener(listener); } @Override public void addVetoableChangeListener(@Nullable String propertyName, @Nullable VetoableChangeListener listener) { vcs.addVetoableChangeListener(propertyName, listener); } @Override public void removeVetoableChangeListener(@Nullable VetoableChangeListener listener) { vcs.removeVetoableChangeListener(listener); } @Override public void removeVetoableChangeListener(@Nullable String propertyName, @Nullable VetoableChangeListener listener) { vcs.removeVetoableChangeListener(propertyName, listener); } @Nonnull @Override public VetoableChangeListener[] getVetoableChangeListeners() { return vcs.getVetoableChangeListeners(); } @Nonnull @Override public VetoableChangeListener[] getVetoableChangeListeners(@Nullable String propertyName) { return vcs.getVetoableChangeListeners(propertyName); } @Override public void addPropertyChangeListener(@Nullable PropertyChangeListener listener) { pcs.addPropertyChangeListener(listener); } @Override public void addPropertyChangeListener(@Nullable String propertyName, @Nullable PropertyChangeListener listener) { pcs.addPropertyChangeListener(propertyName, listener); } @Override public void removePropertyChangeListener(@Nullable PropertyChangeListener listener) { pcs.removePropertyChangeListener(listener); } @Override public void removePropertyChangeListener(@Nullable String propertyName, @Nullable PropertyChangeListener listener) { pcs.removePropertyChangeListener(propertyName, listener); } @Nonnull @Override public PropertyChangeListener[] getPropertyChangeListeners() { return pcs.getPropertyChangeListeners(); } @Nonnull @Override public PropertyChangeListener[] getPropertyChangeListeners(@Nullable String propertyName) { return pcs.getPropertyChangeListeners(propertyName); } protected void firePropertyChange(@Nonnull PropertyChangeEvent event) { pcs.firePropertyChange(requireNonNull(event, ERROR_EVENT_NULL)); } protected void firePropertyChange(@Nonnull String propertyName, @Nullable Object oldValue, @Nullable Object newValue) { pcs.firePropertyChange(requireNonBlank(propertyName, ERROR_PROPERTY_NAME_BLANK), oldValue, newValue); } protected void fireVetoableChange(@Nonnull PropertyChangeEvent event) throws PropertyVetoException { vcs.fireVetoableChange(requireNonNull(event, ERROR_EVENT_NULL)); } protected void fireVetoableChange(@Nonnull String propertyName, @Nullable Object oldValue, @Nullable Object newValue) throws PropertyVetoException { vcs.fireVetoableChange(requireNonBlank(propertyName, ERROR_PROPERTY_NAME_BLANK), oldValue, newValue); } }