X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.diagram%2Fsrc%2Forg%2Fsimantics%2Fdiagram%2Fadapter%2FDisposableListener.java;fp=bundles%2Forg.simantics.diagram%2Fsrc%2Forg%2Fsimantics%2Fdiagram%2Fadapter%2FDisposableListener.java;h=67449beeae3047c3a0d46d307cbb19d6dc99a459;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hp=1405b173d302ae9b3193b6fe4d3a7169aca206c1;hpb=24e2b34260f219f0d1644ca7a138894980e25b14;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/DisposableListener.java b/bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/DisposableListener.java index 1405b173d..67449beea 100644 --- a/bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/DisposableListener.java +++ b/bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/DisposableListener.java @@ -1,48 +1,48 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management - * in Industry THTH ry. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.diagram.adapter; - -import org.simantics.db.common.procedure.adapter.ListenerSupport; -import org.simantics.db.procedure.Listener; - -/** - * @author Tuukka Lehtonen - * - * @param - */ -public abstract class DisposableListener implements Listener { - - private final ListenerSupport support; - private boolean disposed = false; - - public DisposableListener(ListenerSupport support) { - this.support = support; - } - - /** - * Forcefully and irreversibly dispose this listener. - */ - public void disposeListener() { - disposed = true; - } - - @Override - public void exception(Throwable t) { - support.exception(t); - } - - @Override - public boolean isDisposed() { - return disposed || support.isDisposed(); - } - +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.diagram.adapter; + +import org.simantics.db.common.procedure.adapter.ListenerSupport; +import org.simantics.db.procedure.Listener; + +/** + * @author Tuukka Lehtonen + * + * @param + */ +public abstract class DisposableListener implements Listener { + + private final ListenerSupport support; + private boolean disposed = false; + + public DisposableListener(ListenerSupport support) { + this.support = support; + } + + /** + * Forcefully and irreversibly dispose this listener. + */ + public void disposeListener() { + disposed = true; + } + + @Override + public void exception(Throwable t) { + support.exception(t); + } + + @Override + public boolean isDisposed() { + return disposed || support.isDisposed(); + } + } \ No newline at end of file