summaryrefslogtreecommitdiff
path: root/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2012-03-22 14:04:46 -0700
committerTor Norbye <tnorbye@google.com>2012-03-22 14:04:46 -0700
commitc0ecc89c7fa48c6e5ab3c7635863a6e8d2b28137 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java
parent562c581f49027009d6e99ba7b0162c53a051b1c4 (diff)
downloadeclipse-windowbuilder-c0ecc89c7fa48c6e5ab3c7635863a6e8d2b28137.tar.gz
Revert "Add WindowBuilder propertysheet code. See README.txt for details."
This reverts commit 562c581f49027009d6e99ba7b0162c53a051b1c4.
Diffstat (limited to 'propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java')
-rw-r--r--propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java b/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java
deleted file mode 100644
index 879f699..0000000
--- a/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/IPropertyExceptionHandler.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Google, Inc.
- * 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:
- * Google, Inc. - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wb.internal.core.model.property.table;
-
-import org.eclipse.wb.internal.core.model.property.Property;
-import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
-
-/**
- * Handler for any {@link Exception} that happens in {@link PropertyTable}, i.e. exceptions during
- * {@link Property} modifications using {@link PropertyEditor}'s.
- *
- * @author scheglov_ke
- * @coverage core.model.property.table
- */
-public interface IPropertyExceptionHandler {
- void handle(Throwable e);
-}