summaryrefslogtreecommitdiff
path: root/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/PropertyEditorProvider.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/editor/PropertyEditorProvider.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/editor/PropertyEditorProvider.java')
-rw-r--r--propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/PropertyEditorProvider.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/PropertyEditorProvider.java b/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/PropertyEditorProvider.java
deleted file mode 100644
index 2d11cbc..0000000
--- a/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/PropertyEditorProvider.java
+++ /dev/null
@@ -1,44 +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.editor;
-
-import java.beans.PropertyDescriptor;
-
-/**
- * Provider for creating {@link PropertyEditor}'s.
- *
- * @author lobas_av
- * @coverage core.model.property.editor
- */
-public class PropertyEditorProvider {
- /**
- * @return the {@link PropertyEditor} for given property type or <code>null</code>.
- */
- public PropertyEditor getEditorForType(Class<?> propertyType) throws Exception {
- return null;
- }
-
- /**
- * @return the {@link PropertyEditor} for given {@link java.beans.PropertyEditor} editor type or
- * <code>null</code>.
- */
- public PropertyEditor getEditorForEditorType(Class<?> editorType) throws Exception {
- return null;
- }
-
- /**
- * @return the {@link PropertyEditor} for given {@link PropertyDescriptor} or <code>null</code>.
- */
- public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor)
- throws Exception {
- return null;
- }
-} \ No newline at end of file