Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-04-11 18:25:56 +0000
committerBrian Vosburgh2013-04-16 20:08:08 +0000
commit4e222ee86c1af4af5f8e727df2d574701612becb (patch)
tree8d958fb3dbf84a48e498b08689ab8a9b59ed3fb6 /common/plugins/org.eclipse.jpt.common.ui
parent914293ab2a46228a93b0d450cc4d1ce10813afb6 (diff)
downloadwebtools.dali-4e222ee86c1af4af5f8e727df2d574701612becb.tar.gz
webtools.dali-4e222ee86c1af4af5f8e727df2d574701612becb.tar.xz
webtools.dali-4e222ee86c1af4af5f8e727df2d574701612becb.zip
move TableLayoutComposite
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.ui')
-rw-r--r--common/plugins/org.eclipse.jpt.common.ui/META-INF/MANIFEST.MF4
-rw-r--r--common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/internal/widgets/TableLayoutComposite.java (renamed from common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/internal/util/TableLayoutComposite.java)4
2 files changed, 2 insertions, 6 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.ui/META-INF/MANIFEST.MF b/common/plugins/org.eclipse.jpt.common.ui/META-INF/MANIFEST.MF
index 16874363e4..b1859b8188 100644
--- a/common/plugins/org.eclipse.jpt.common.ui/META-INF/MANIFEST.MF
+++ b/common/plugins/org.eclipse.jpt.common.ui/META-INF/MANIFEST.MF
@@ -69,10 +69,6 @@ Export-Package: org.eclipse.jpt.common.ui,
x-friends:="org.eclipse.jpt.jaxb.ui,
org.eclipse.jpt.jpa.db.ui,
org.eclipse.jpt.jpa.ui",
- org.eclipse.jpt.common.ui.internal.util;
- x-friends:="org.eclipse.jpt.jaxb.ui,
- org.eclipse.jpt.jpa.db.ui,
- org.eclipse.jpt.jpa.ui",
org.eclipse.jpt.common.ui.internal.utility;
x-friends:="org.eclipse.jpt.jaxb.ui,
org.eclipse.jpt.jpa.db.ui,
diff --git a/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/internal/util/TableLayoutComposite.java b/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/internal/widgets/TableLayoutComposite.java
index 9a8790c941..90fbb5342e 100644
--- a/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/internal/util/TableLayoutComposite.java
+++ b/common/plugins/org.eclipse.jpt.common.ui/src/org/eclipse/jpt/common/ui/internal/widgets/TableLayoutComposite.java
@@ -1,3 +1,4 @@
+// copied from org.eclipse.jdt.internal.ui.util.tablelayoutcomposite
/*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
@@ -8,8 +9,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
-// copied from org.eclipse.jdt.internal.ui.util.TableLayoutComposite
-package org.eclipse.jpt.common.ui.internal.util;
+package org.eclipse.jpt.common.ui.internal.widgets;
import java.util.ArrayList;
import java.util.List;

Back to the top