diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/ITutorialStep.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/ITutorialStep.java index 07beb2a6446e876f9096bdd9f0649b6def24da28..7b9062ff2e7f9f77b9f35485555911880b31baf8 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/ITutorialStep.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/ITutorialStep.java @@ -25,7 +25,7 @@ import org.fortiss.tooling.kernel.extension.data.TutorialCompositeStep; * @author hoelzl * @author $Author: hoelzl $ * @version $Rev: 18709 $ - * @ConQAT.Rating YELLOW Hash: EED866C8E201B17CA26607BE52E0C55F + * @ConQAT.Rating GREEN Hash: 3653D8AC69E4C7F9B60C94AB0B34FBC1 */ public interface ITutorialStep { /** Returns the title of this tutorial step. */ diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialBlacklistAllProvider.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialBlacklistAllProvider.java index 7b97207bcc7908244ae77af0d7f5fc5889d51a1f..25391200f1c2a33cfda92b6bcec8a0a335d2acb8 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialBlacklistAllProvider.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialBlacklistAllProvider.java @@ -26,7 +26,7 @@ import org.fortiss.tooling.kernel.extension.data.Prototype; * @author hoelzl * @author $Author: hoelzl $ * @version $Rev: 18709 $ - * @ConQAT.Rating YELLOW Hash: 8BFE9361BB1624D66EFB6AB3B1001ADB + * @ConQAT.Rating GREEN Hash: 048B5CCD85A5F4BAA7AA3BE3AADC7848 */ public class TutorialBlacklistAllProvider implements ITutorialWhitelistProvider { /** {@inheritDoc} */ diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialWhitelistAllProvider.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialWhitelistAllProvider.java index 4e4ae1294a5a82f01d810f5dcbb4c218c144c58d..61965bea872c55b0798ed4951e7da0e5222f559d 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialWhitelistAllProvider.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/base/TutorialWhitelistAllProvider.java @@ -26,7 +26,7 @@ import org.fortiss.tooling.kernel.extension.data.Prototype; * @author hoelzl * @author $Author: hoelzl $ * @version $Rev: 18709 $ - * @ConQAT.Rating YELLOW Hash: C5C59D1F876EB33BCEBF68BE41F58DA3 + * @ConQAT.Rating GREEN Hash: 5A13254EE00D0095DE0B039A7FF2001A */ public class TutorialWhitelistAllProvider implements ITutorialWhitelistProvider { /** {@inheritDoc} */ diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialAtomicStep.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialAtomicStep.java index 24f76083803dce2e71b996b042e572b88aa259ea..a634456fb62d92d09cd84d63bd2938ade14bdedd 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialAtomicStep.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialAtomicStep.java @@ -27,7 +27,7 @@ import org.eclipse.emf.ecore.EObject; * @author hoelzl * @author $Author: hoelzl $ * @version $Rev: 18709 $ - * @ConQAT.Rating YELLOW Hash: 98F4B2798A98DAB929676D6CC4C55FA7 + * @ConQAT.Rating GREEN Hash: 04948663B61F4F46D6878A8D3D23F7AA */ public abstract class TutorialAtomicStep extends TutorialStepBase { /** Constructor. */ diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialCompositeStep.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialCompositeStep.java index 37b956abdf236db1982d7a254a279f4c5dd8eeb1..1b13946afaf08ca5d648b156bf97897b9ed5e746 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialCompositeStep.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/extension/data/TutorialCompositeStep.java @@ -25,21 +25,20 @@ import java.util.List; /** * A composite tutorial step, i.e., a step which encapsulates other tutorial steps (at least one). * Composite steps have two intentions; firstly, the tutorial can be structured in a hierarchic - * manner - * and, secondly, the white- and blacklisting can be implemented more easily (i.e. all sub-steps - * share the same whitelist provider). + * manner and, secondly, the white- and blacklisting can be implemented more easily (i.e. all + * sub-steps share the same whitelist provider). * * @author hoelzl * @author $Author: hoelzl $ * @version $Rev: 18709 $ - * @ConQAT.Rating YELLOW Hash: 7F8E28411BA07831BB54999B061157B7 + * @ConQAT.Rating GREEN Hash: F6A5048CDC5BE2D434FB568FDE099732 */ public class TutorialCompositeStep extends TutorialStepBase { /** The list of contained steps. */ private final List<TutorialStepBase> steps = new LinkedList<TutorialStepBase>(); /** - * Constructor. Since a composite steps makes only sense if it has at least one sub-step + * Constructor. Since a composite step makes only sense if it has at least one sub-step * (otherwise it would be atomic), this constructor requires the first sub-step. */ public TutorialCompositeStep(String title, String url, TutorialStepBase firstStep) { diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/introspection/KernelIntrospectionSystemService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/introspection/KernelIntrospectionSystemService.java index d84fd065578af3f98515404a149006c624f8b4f1..d6cb75f28e752f3bbeffb6462eb7c58a922ad0d2 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/introspection/KernelIntrospectionSystemService.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/introspection/KernelIntrospectionSystemService.java @@ -30,7 +30,7 @@ import org.fortiss.tooling.kernel.service.IKernelIntrospectionSystemService; * @author hoelzl * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 947677F1E77A30A87FFD43271034BF84 + * @ConQAT.Rating GREEN Hash: CBB124DAFE32BF19245A9B9A35136322 */ public final class KernelIntrospectionSystemService implements IKernelIntrospectionSystemService, IIntrospectiveKernelService { diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAware2ServiceBase.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAware2ServiceBase.java index 6d26b3a6ae4a8d29946767a983945f082dc9bc00..b1c68bdae129be4dbdcc61b19ba0e07dcedfd958 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAware2ServiceBase.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAware2ServiceBase.java @@ -74,7 +74,7 @@ import org.osgi.framework.Bundle; * @author hoelzlf * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 733CAF34180BB00D5A81C2CCEFAA154F + * @ConQAT.Rating GREEN Hash: E619DB794E075BE7F04E6969C33BE3C3 */ public abstract class ObjectAware2ServiceBase<T extends IObjectAware2<? extends Object, ? extends Object>> implements IIntrospectiveKernelService { diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAwareServiceBase.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAwareServiceBase.java index cf842860f8cbf992ca8d929712a854cf4c7eb180..c4f5e5bfc5c1a929ec331e55db48aaaaf371fd06 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAwareServiceBase.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/base/ObjectAwareServiceBase.java @@ -74,7 +74,7 @@ import org.osgi.framework.Bundle; * @author hoelzlf * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 2089D3E626D599B91CDA5D676A7E090F + * @ConQAT.Rating GREEN Hash: ABCA781FD1A9A44EC3CC577D059C5B43 */ public abstract class ObjectAwareServiceBase<T extends IObjectAware<? extends Object>> implements IIntrospectiveKernelService { diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/listener/ITutorialServiceListener.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/listener/ITutorialServiceListener.java index 92e7e6db5aed4f0150f3068b1479f01b28f2473d..67be1ba9fa7e8f6b1dc91396b51ef64ca9a434d9 100644 --- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/listener/ITutorialServiceListener.java +++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/listener/ITutorialServiceListener.java @@ -28,7 +28,7 @@ import org.fortiss.tooling.kernel.service.ITutorialService; * @author hoelzl * @author $Author: hoelzl $ * @version $Rev: 18709 $ - * @ConQAT.Rating YELLOW Hash: 4BB0205651E431FDEABBC5CC75FE743D + * @ConQAT.Rating GREEN Hash: 340044EB6EAC34CA67DB133E0C836E7A */ public interface ITutorialServiceListener { /** Fired when the given tutorial is started. */