diff --git a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/actions/CopyAction.java b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/actions/CopyAction.java index f89303ec4ed073130890bc1ce2fbc1a486f7a893..314226da1490d672b73e123f919cbe4f6f4db7a7 100644 --- a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/actions/CopyAction.java +++ b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/actions/CopyAction.java @@ -17,12 +17,13 @@ $Id$ +--------------------------------------------------------------------------*/ package org.fortiss.tooling.kernel.ui.internal.actions; +import static org.fortiss.tooling.kernel.ui.util.CopyPasteUtils.copyToClipboard; + import org.eclipse.emf.ecore.EObject; import org.eclipse.ui.ISharedImages; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.actions.ActionFactory; import org.fortiss.tooling.kernel.ui.extension.base.EObjectActionBase; -import org.fortiss.tooling.kernel.ui.util.CopyPasteUtils; /** * Action for copying the current selection. @@ -31,7 +32,7 @@ import org.fortiss.tooling.kernel.ui.util.CopyPasteUtils; * @author hoelzl * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: E9421A847EF8F574DD8932B83D1489B3 + * @ConQAT.Rating GREEN Hash: 69A8F1BDE380BB57E2F811EC4A75A83C */ public class CopyAction extends EObjectActionBase<EObject> { @@ -48,7 +49,7 @@ public class CopyAction extends EObjectActionBase<EObject> { if(getTarget() == null) { return; } - CopyPasteUtils.copyToClipboard(getTargets()); + copyToClipboard(getTargets()); } /** {@inheritDoc} */ diff --git a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/views/NavigatorTreeContentProvider.java b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/views/NavigatorTreeContentProvider.java index ec27316e8aae3c4eb34d917517c18d5142019bf9..8fdb6c9e136c58cb17cf71690df26256fd164724 100644 --- a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/views/NavigatorTreeContentProvider.java +++ b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/internal/views/NavigatorTreeContentProvider.java @@ -36,7 +36,7 @@ import org.fortiss.tooling.kernel.ui.service.IModelElementHandlerService; * @author hoelzlf * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 4C62E8002334FB55B477D649595D1F1B + * @ConQAT.Rating GREEN Hash: 2AB4D9198964E50F84FB09031949BFBA */ public class NavigatorTreeContentProvider extends TreeContentProviderBase { diff --git a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/presentation/ModelElementLabelProvider.java b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/presentation/ModelElementLabelProvider.java index ee86943bd2ad14e8516027ca17cba6bd7de99de5..b4c6254d52b9df83c36b4f8bb1aa44209a17397a 100644 --- a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/presentation/ModelElementLabelProvider.java +++ b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/presentation/ModelElementLabelProvider.java @@ -38,7 +38,7 @@ import org.fortiss.tooling.kernel.ui.service.IModelElementHandlerService; * @author mou * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 058CCF5E6F1A39D7B50B037A27485FA2 + * @ConQAT.Rating GREEN Hash: A7DB0900D1B6BC3C2705A4395A1D6193 */ public class ModelElementLabelProvider extends ColumnLabelProvider { /** {@inheritDoc} */ diff --git a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/util/CopyPasteUtils.java b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/util/CopyPasteUtils.java index b682029037d522fe23ff7db46c08cffecf347713..ee870c6aff5984c49716fed1d5bd3022974059d9 100644 --- a/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/util/CopyPasteUtils.java +++ b/org.fortiss.tooling.kernel.ui/trunk/src/org/fortiss/tooling/kernel/ui/util/CopyPasteUtils.java @@ -40,7 +40,7 @@ import org.fortiss.tooling.kernel.ui.dnd.CompositionServiceLocalCopyPasteTransfe * * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: BAE6EAD8847673A9B6B99648B90E7299 + * @ConQAT.Rating GREEN Hash: A40EF644FB2792BDE3DB675D3D7FA0C8 */ public class CopyPasteUtils {