Skip to content
Snippets Groups Projects
Commit a4d26fb0 authored by Eddie Groh's avatar Eddie Groh
Browse files

Refactored class names to be consistent with their function

Issue-Ref: 4310
Issue-Url: af3#4310



Signed-off-by: default avatarEddie Groh <groh@fortiss.org>
parent c4d52e97
No related branches found
No related tags found
1 merge request!210Setting up Metric extraction plugin for AF3 : Issue 4310
Showing
with 30 additions and 30 deletions
......@@ -11,7 +11,7 @@
<extension
point="org.eclipse.ui.views">
<view
class="org.fortiss.tooling.ext.quality.ui.view.fx.MetricsFXViewPart"
class="org.fortiss.tooling.ext.quality.ui.view.fx.ModelQualityFXViewPart"
icon="icons/library.png"
id="org.fortiss.tooling.ext.quality.ui.metricsView"
name="Metrics"
......
......@@ -62,7 +62,7 @@ public class ModelQualityExtractionMenu implements IContextMenuContributor {
/** Returns the icon that is visible in the context menu for this entry. */
protected ImageDescriptor getActionIcon() {
return QualityUIActivator.getImageDescriptor("icons/componentarchitecture.gif");
return ModelQualityUIActivator.getImageDescriptor("icons/componentarchitecture.gif");
}
/** Action for generating the set of . */
......
......@@ -10,13 +10,13 @@ import org.osgi.framework.BundleContext;
* @author blaschke
*
*/
public class QualityUIActivator extends Plugin {
public class ModelQualityUIActivator extends Plugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = QualityUIActivator.class.getPackage().getName(); // $NON-NLS-1$
public static final String PLUGIN_ID = ModelQualityUIActivator.class.getPackage().getName(); // $NON-NLS-1$
/** The shared instance. */
private static QualityUIActivator plugin;
private static ModelQualityUIActivator plugin;
/** {@inheritDoc} */
@Override
......@@ -37,7 +37,7 @@ public class QualityUIActivator extends Plugin {
*
* @return The shared instance of ToolingReuseActivator
*/
public static QualityUIActivator getDefault() {
public static ModelQualityUIActivator getDefault() {
return plugin;
}
......
......@@ -20,7 +20,7 @@ package org.fortiss.tooling.ext.quality.ui.view.fx;
*
* @author groh
*/
public interface IMetricsViewPart {
public interface IModelQualityViewPart {
/** View ID for reuse library views. */
// Keep in sync with plugin.xml
......
......@@ -69,7 +69,7 @@ import javafx.scene.layout.BorderPane;
*/
@SuppressWarnings("unchecked")
public class MetricsFXController extends CompositeFXControllerBase<SplitPane, Node>
public class ModelQualityFXController extends CompositeFXControllerBase<SplitPane, Node>
implements ISelectionListener {
/** The {@link IProjectRootElement} in which the selected element is contained in. */
......
......@@ -25,27 +25,27 @@ import javafx.scene.Scene;
*
* @author groh
*/
public class MetricsFXViewPart extends AF3FXViewPart implements IMetricsViewPart {
public class ModelQualityFXViewPart extends AF3FXViewPart implements IModelQualityViewPart {
/** The FX Controller for this view. */
private static final MetricsFXController VIEW_CONTROLLER = new MetricsFXController();
private static final ModelQualityFXController VIEW_CONTROLLER = new ModelQualityFXController();
/**
* Constructor.
*
* @throws Exception
*/
public MetricsFXViewPart() throws Exception {
public ModelQualityFXViewPart() throws Exception {
super(VIEW_CONTROLLER, null);
}
/**
* Returns the initialized {@link MetricsFXController} for the reuse
* Returns the initialized {@link ModelQualityFXController} for the reuse
* version of the {@link AF3FXViewPart}.
*
* @return The view controller for the metrics view
*/
public static MetricsFXController getMetricsFXController() {
public static ModelQualityFXController getMetricsFXController() {
return VIEW_CONTROLLER;
}
......
......@@ -29,13 +29,13 @@ import org.fortiss.tooling.kernel.model.INamedCommentedElement;
import org.fortiss.tooling.kernel.utils.EcoreUtils;
/**
* {@link IModelQualityProvider} to count the ratio of filled out comments of
* {@link IMetricProvider} to count the ratio of filled out comments of
* INamedCommentedElements.
*
* @author blaschke
* @author groh
*/
public class HierarchicElementProvider implements IModelQualityProvider<IHierarchicElement> {
public class HierarchicElementProvider implements IMetricProvider<IHierarchicElement> {
/**
* returns an array of integers or <String,Double> Map Number of children of the
* hierarchical Element (on this level) Number of ports on the hierarchical
......
......@@ -28,7 +28,7 @@ import org.fortiss.tooling.kernel.service.base.IEObjectAware;
*
* @author blaschke
*/
public interface IModelQualityProvider<C extends EObject> extends IEObjectAware<EObject> {
public interface IMetricProvider<C extends EObject> extends IEObjectAware<EObject> {
/** Applies the IMetricProvider to the given model element. */
void apply(MetricDataManager manager, MetricTreeNode node, C element);
......
......@@ -21,7 +21,7 @@ import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import org.fortiss.tooling.ext.quality.IModelQualityProvider;
import org.fortiss.tooling.ext.quality.IMetricProvider;
/**
* A general class for storing all kinds of metric data in a hierarchical tree structure.
......@@ -36,16 +36,16 @@ public class MetricTreeNode {
private List<MetricTreeNode> children;
/**
* This map stores a relationship between a {@link IModelQualityProvider} and
* This map stores a relationship between a {@link IMetricProvider} and
* {@link IMetricDataContainer}.
*
* This allows all {@linkplain IModelQualityProvider} to deposit data inside this structure, and
* This allows all {@linkplain IMetricProvider} to deposit data inside this structure, and
* quickly retrieve it for processing
*
* The stored data can then also be accessed by other methods, for displaying information,
* creating statistics, etc.
*/
private Map<Class<? extends IModelQualityProvider<?>>, IMetricDataContainer> dataContainers;
private Map<Class<? extends IMetricProvider<?>>, IMetricDataContainer> dataContainers;
/** Map containing all metrics which are a double */
private Map<MetricKey, Double> storedMetrics;
......@@ -74,7 +74,7 @@ public class MetricTreeNode {
*
* @return the map storing all DataContainers in this node
*/
public Map<Class<? extends IModelQualityProvider<?>>, IMetricDataContainer>
public Map<Class<? extends IMetricProvider<?>>, IMetricDataContainer>
getDataContainers() {
return dataContainers;
}
......
......@@ -15,7 +15,7 @@
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.ext.quality.service;
import org.fortiss.tooling.ext.quality.IModelQualityProvider;
import org.fortiss.tooling.ext.quality.IMetricProvider;
import org.fortiss.tooling.kernel.extension.data.ITopLevelElement;
/**
......@@ -30,7 +30,7 @@ public interface IModelQualityService {
}
/** Registers the metric provider with the service. */
void registerMetricProvider(IModelQualityProvider<?> provider, Class<?> modelElementClass);
void registerMetricProvider(IMetricProvider<?> provider, Class<?> modelElementClass);
/** analyses the metrics and processes them */
void performMetricAnalysis(ITopLevelElement top);
......
......@@ -40,7 +40,7 @@ import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.fortiss.tooling.base.model.element.IHierarchicElement;
import org.fortiss.tooling.ext.quality.HierarchicElementProvider;
import org.fortiss.tooling.ext.quality.IModelQualityProvider;
import org.fortiss.tooling.ext.quality.IMetricProvider;
import org.fortiss.tooling.ext.quality.data.MetricDataManager;
import org.fortiss.tooling.ext.quality.data.MetricKey;
import org.fortiss.tooling.ext.quality.data.MetricTreeNode;
......@@ -59,7 +59,7 @@ import org.fortiss.tooling.kernel.utils.EcoreUtils;
*
* @author blaschke
*/
public class ModelQualityService extends EObjectAwareServiceBase<IModelQualityProvider<?>>
public class ModelQualityService extends EObjectAwareServiceBase<IMetricProvider<?>>
implements IIntrospectiveKernelService, IModelQualityService {
/** The singleton instance. */
......@@ -91,7 +91,7 @@ public class ModelQualityService extends EObjectAwareServiceBase<IModelQualityPr
/** Registers the migration provider with the service. */
@Override
public void registerMetricProvider(IModelQualityProvider<?> provider,
public void registerMetricProvider(IMetricProvider<?> provider,
Class<?> modelElementClass) {
addHandler(modelElementClass, provider);
}
......@@ -106,10 +106,10 @@ public class ModelQualityService extends EObjectAwareServiceBase<IModelQualityPr
"\n\nThe service extension point is '" + EXTENSION_POINT_NAME + "'.";
}
/** Get all suitable {@link IModelQualityProvider} for the given input. */
protected List<IModelQualityProvider<?>> getAllMetricProviders(EObject input) {
List<IModelQualityProvider<?>> providers = new ArrayList<>();
for(Entry<Class<?>, List<IModelQualityProvider<?>>> migEntry : handlerMap.entrySet()) {
/** Get all suitable {@link IMetricProvider} for the given input. */
protected List<IMetricProvider<?>> getAllMetricProviders(EObject input) {
List<IMetricProvider<?>> providers = new ArrayList<>();
for(Entry<Class<?>, List<IMetricProvider<?>>> migEntry : handlerMap.entrySet()) {
if(getFirstChildWithType(input, migEntry.getKey()) != null) {
providers.addAll(migEntry.getValue());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment