Skip to content
Snippets Groups Projects
Commit 36800c80 authored by Simon Barner's avatar Simon Barner
Browse files

- Fix comments

parent 1144aaeb
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ import org.fortiss.tooling.kernel.utils.EcoreUtils; ...@@ -51,7 +51,7 @@ import org.fortiss.tooling.kernel.utils.EcoreUtils;
* @author barner * @author barner
* @author $Author$ * @author $Author$
* @version $Rev$ * @version $Rev$
* @ConQAT.Rating GREEN Hash: B91572CD4058C6916E2343554AAD2F8E * @ConQAT.Rating GREEN Hash: F406176F532AFCB05E651802C16E516B
*/ */
public class EditingSupportFactory { public class EditingSupportFactory {
...@@ -87,6 +87,8 @@ public class EditingSupportFactory { ...@@ -87,6 +87,8 @@ public class EditingSupportFactory {
* Annotation instance * Annotation instance
* @param instanceKey * @param instanceKey
* Key identifying annotation instance * Key identifying annotation instance
*
* @return {@link EditingSupport} for annotations that can be instantiated dynamically.
*/ */
private static private static
<T extends IAnnotatedSpecification, V extends DynamicInstanceAnnotationValueProviderBase<T>> <T extends IAnnotatedSpecification, V extends DynamicInstanceAnnotationValueProviderBase<T>>
...@@ -112,6 +114,9 @@ public class EditingSupportFactory { ...@@ -112,6 +114,9 @@ public class EditingSupportFactory {
* Annotation instance * Annotation instance
* @param instanceKey * @param instanceKey
* Key identifying annotation instance * Key identifying annotation instance
*
* @return {@link EditingSupport} that is directly based on
* {@link EStructuralFeatureValueProviderBase}.
*/ */
private static private static
<T extends IAnnotatedSpecification, V extends EStructuralFeatureValueProviderBase<T>> <T extends IAnnotatedSpecification, V extends EStructuralFeatureValueProviderBase<T>>
...@@ -123,11 +128,11 @@ public class EditingSupportFactory { ...@@ -123,11 +128,11 @@ public class EditingSupportFactory {
EStructuralFeature structuralFeature = EStructuralFeature structuralFeature =
valueProvider.getEStructuralFeature(specification, instanceKey); valueProvider.getEStructuralFeature(specification, instanceKey);
EClassifier eType = null; EClassifier eType;
try { try {
eType = structuralFeature.getEType(); eType = structuralFeature.getEType();
} catch(Exception e) { } catch(Exception e) {
// Ignore eType = null;
} }
if(structuralFeature.getUpperBound() == 0) { if(structuralFeature.getUpperBound() == 0) {
...@@ -227,6 +232,9 @@ public class EditingSupportFactory { ...@@ -227,6 +232,9 @@ public class EditingSupportFactory {
* Annotation instance * Annotation instance
* @param instanceKey * @param instanceKey
* Key identifying annotation instance * Key identifying annotation instance
*
* @return {@link EditingSupport} for value providers that are directly based on
* {@link ValueProviderBase}.
*/ */
private static <T extends IAnnotatedSpecification, V extends ValueProviderBase<T>> private static <T extends IAnnotatedSpecification, V extends ValueProviderBase<T>>
EditingSupport createEditingSupport4ValueProviderBase(V valueProvider, EditingSupport createEditingSupport4ValueProviderBase(V valueProvider,
...@@ -275,6 +283,8 @@ public class EditingSupportFactory { ...@@ -275,6 +283,8 @@ public class EditingSupportFactory {
* Annotation instance * Annotation instance
* @param instanceKey * @param instanceKey
* Key identifying annotation instance * Key identifying annotation instance
*
* @return {@link EditingSupport} for the given {@link IAnnotatedSpecification}.
*/ */
@SuppressWarnings({"rawtypes", "unchecked"}) @SuppressWarnings({"rawtypes", "unchecked"})
public static <T extends IAnnotatedSpecification> EditingSupport createEditingSupport( public static <T extends IAnnotatedSpecification> EditingSupport createEditingSupport(
...@@ -317,6 +327,8 @@ public class EditingSupportFactory { ...@@ -317,6 +327,8 @@ public class EditingSupportFactory {
* Annotation type * Annotation type
* @param specification * @param specification
* Annotation instance * Annotation instance
*
* @return {@link EditingSupport} without referring to the optional {@code instanceKey}.
*/ */
public static <T extends IAnnotatedSpecification> EditingSupport createEditingSupport( public static <T extends IAnnotatedSpecification> EditingSupport createEditingSupport(
IAnnotationValueProvider<T> valueProvider, ColumnViewer viewer, IAnnotationValueProvider<T> valueProvider, ColumnViewer viewer,
......
...@@ -35,7 +35,7 @@ import org.fortiss.tooling.base.ui.annotation.view.IAnnotationViewPart; ...@@ -35,7 +35,7 @@ import org.fortiss.tooling.base.ui.annotation.view.IAnnotationViewPart;
* @author diewald, barner * @author diewald, barner
* @author $Author$ * @author $Author$
* @version $Rev$ * @version $Rev$
* @ConQAT.Rating GREEN Hash: 38784CC83BF68AFCACF7E99385DEC1E9 * @ConQAT.Rating GREEN Hash: 30267710CF835FE32C75F8B08BFA6FCC
*/ */
public class AnnotationLabelProvider extends LabelProviderBase { public class AnnotationLabelProvider extends LabelProviderBase {
...@@ -68,6 +68,9 @@ public class AnnotationLabelProvider extends LabelProviderBase { ...@@ -68,6 +68,9 @@ public class AnnotationLabelProvider extends LabelProviderBase {
* view required to retrieve the selected elements * view required to retrieve the selected elements
* @param instanceKey * @param instanceKey
* Key identifying the annotation instance to be displayed. * Key identifying the annotation instance to be displayed.
* @param editingSupport
* {@link EditingSupport} of column for which the new {@link AnnotationLabelProvider}
* should provided the label.
*/ */
public AnnotationLabelProvider(Class<? extends IAnnotatedSpecification> clazz, public AnnotationLabelProvider(Class<? extends IAnnotatedSpecification> clazz,
IAnnotationViewPart viewPart, String instanceKey, EditingSupport editingSupport) { IAnnotationViewPart viewPart, String instanceKey, EditingSupport editingSupport) {
......
...@@ -32,7 +32,7 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.GenericAnnotationView ...@@ -32,7 +32,7 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.GenericAnnotationView
* @author barner * @author barner
* @author $Author$ * @author $Author$
* @version $Rev$ * @version $Rev$
* @ConQAT.Rating GREEN Hash: 1896D4425862EBAFB14A796212541104 * @ConQAT.Rating GREEN Hash: BA975FC0E3ECD78ED2D3FC42B64CB7BA
*/ */
public class LabelProviderFactory { public class LabelProviderFactory {
...@@ -53,6 +53,8 @@ public class LabelProviderFactory { ...@@ -53,6 +53,8 @@ public class LabelProviderFactory {
* Annotation instance * Annotation instance
* @param instanceKey * @param instanceKey
* Key identifying annotation instance * Key identifying annotation instance
*
* @return {@link ColumnLabelProvider} for the given {@link IAnnotatedSpecification}.
*/ */
public static <T extends IAnnotatedSpecification> ColumnLabelProvider createLabelProvider( public static <T extends IAnnotatedSpecification> ColumnLabelProvider createLabelProvider(
IAnnotationValueProvider<T> valueProvider, IAnnotationViewPart viewPart, IAnnotationValueProvider<T> valueProvider, IAnnotationViewPart viewPart,
...@@ -85,6 +87,8 @@ public class LabelProviderFactory { ...@@ -85,6 +87,8 @@ public class LabelProviderFactory {
* Annotation type * Annotation type
* @param specification * @param specification
* Annotation instance * Annotation instance
*
* @return {@link ColumnLabelProvider} for the given {@link IAnnotatedSpecification}.
*/ */
public static <T extends IAnnotatedSpecification> ColumnLabelProvider createLabelProvider( public static <T extends IAnnotatedSpecification> ColumnLabelProvider createLabelProvider(
IAnnotationValueProvider<T> valueProvider, IAnnotationViewPart viewPart, IAnnotationValueProvider<T> valueProvider, IAnnotationViewPart viewPart,
......
...@@ -223,6 +223,9 @@ public class AnnotationFilterWidget extends Composite { ...@@ -223,6 +223,9 @@ public class AnnotationFilterWidget extends Composite {
* {@link Composite} to which button should be added * {@link Composite} to which button should be added
* @param view * @param view
* {@link GenericAnnotationView} to be filtered. * {@link GenericAnnotationView} to be filtered.
*
* @return {@link Button} for setting the options for filtering the
* {@link GenericAnnotationView} for the currently selected model element type.
*/ */
private Button createModelElementTypeFilterOptionsCheckButton(Composite parent, private Button createModelElementTypeFilterOptionsCheckButton(Composite parent,
final GenericAnnotationView view) { final GenericAnnotationView view) {
......
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