Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ private void processComponent(IDSModel model, TypeDeclaration type, ITypeBinding
String modified = null;
IMethodBinding modifiedMethod = null;
Annotation modifiedAnnotation = null;



for (MethodDeclaration method : type.getMethods()) {
Expand Down Expand Up @@ -2215,7 +2215,7 @@ private IMethodBinding findLifeCycleMethod(ITypeBinding componentClass, String m

/**
* An injectable constructor is one annotated with <code>@Activate</code>
*
*
* @param type
* @param problemReporter2
* @return
Expand Down Expand Up @@ -2266,7 +2266,7 @@ private static boolean isComponentPropertyType(IAnnotationBinding binding) {
* Check if the given {@link ITypeBinding} is an <a href=
* "https://docs.osgi.org/specification/osgi.cmpn/7.0.0/service.component.html#service.component-activation.objects">Activation
* Object</a>
*
*
* @param param the binding to check
* @return <code>true</code> if this is an Activation Object, <code>false</code>
* otherwise
Expand All @@ -2283,7 +2283,7 @@ private static boolean isActivationObject(ITypeBinding param) {
* Check if the given {@link ITypeBinding} is a <a href=
* "https://docs.osgi.org/specification/osgi.cmpn/7.0.0/service.component.html#service.component-component.property.types">Component
* Property Type</a>
*
*
* @param param the binding to check
* @return <code>true</code> if this is a Component Property Type
* <code>false</code> otherwise
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public enum DSAnnotationVersion {
V1_2("1.2", "http://www.osgi.org/xmlns/scr/v1.2.0"), //$NON-NLS-1$

V1_3("1.3", "http://www.osgi.org/xmlns/scr/v1.3.0"), //$NON-NLS-1$

V1_4("1.4", "http://www.osgi.org/xmlns/scr/v1.4.0"), //$NON-NLS-1$

V1_5("1.5", "http://www.osgi.org/xmlns/scr/v1.5.0"); //$NON-NLS-1$
Expand Down Expand Up @@ -54,7 +54,7 @@ public DSAnnotationVersion max(DSAnnotationVersion other) {

/**
* Compares this version with another one
*
*
* @param other
* @return true if this version is higher or equal to this version
*/
Expand Down
Loading