Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/factory/FactoryKey.java')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/factory/FactoryKey.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/factory/FactoryKey.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/factory/FactoryKey.java
index 0504fce13c..bc380eafdc 100644
--- a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/factory/FactoryKey.java
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/factory/FactoryKey.java
@@ -35,6 +35,7 @@ public final class FactoryKey implements IFactoryKey, Serializable, Comparable<F
this.type = type;
}
+ @Override
public String getProductGroup()
{
return productGroup;
@@ -45,6 +46,7 @@ public final class FactoryKey implements IFactoryKey, Serializable, Comparable<F
this.productGroup = productGroup;
}
+ @Override
public String getType()
{
return type;
@@ -84,6 +86,7 @@ public final class FactoryKey implements IFactoryKey, Serializable, Comparable<F
return MessageFormat.format("{0}[{1}]", productGroup, type); //$NON-NLS-1$
}
+ @Override
public int compareTo(FactoryKey key)
{
int result = StringUtil.compare(productGroup, key.productGroup);

Back to the top