Bug 127152 API missing @since
diff --git a/bundles/org.eclipse.osgi/core/adaptor/org/eclipse/osgi/framework/log/FrameworkLogEntry.java b/bundles/org.eclipse.osgi/core/adaptor/org/eclipse/osgi/framework/log/FrameworkLogEntry.java
index 0113016..d3efbb3 100644
--- a/bundles/org.eclipse.osgi/core/adaptor/org/eclipse/osgi/framework/log/FrameworkLogEntry.java
+++ b/bundles/org.eclipse.osgi/core/adaptor/org/eclipse/osgi/framework/log/FrameworkLogEntry.java
@@ -19,35 +19,35 @@
 	/**
 	 * Severity constant (value 0) indicating this log entry represents the nominal case.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int OK = 0;
 
 	/** 
 	 * Severity constant (bit mask, value 1) indicating this log entry is informational only.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int INFO = 0x01;
 
 	/** 
 	 * Severity constant (bit mask, value 2) indicating this log entry represents a warning.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int WARNING = 0x02;
 
 	/** 
 	 * Severity constant (bit mask, value 4) indicating this log entry represents an error.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int ERROR = 0x04;
 
 	/**
 	 * Status type severity (bit mask, value 8) indicating this log entry represents a cancelation.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int CANCEL = 0x08;
 
@@ -155,7 +155,7 @@
 	 *
 	 * @return the severity: one of <code>OK</code>, <code>ERROR</code>, 
 	 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public int getSeverity() {
 		return severity;
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/log/FrameworkLogEntry.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/log/FrameworkLogEntry.java
index 0113016..d3efbb3 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/log/FrameworkLogEntry.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/log/FrameworkLogEntry.java
@@ -19,35 +19,35 @@
 	/**
 	 * Severity constant (value 0) indicating this log entry represents the nominal case.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int OK = 0;
 
 	/** 
 	 * Severity constant (bit mask, value 1) indicating this log entry is informational only.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int INFO = 0x01;
 
 	/** 
 	 * Severity constant (bit mask, value 2) indicating this log entry represents a warning.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int WARNING = 0x02;
 
 	/** 
 	 * Severity constant (bit mask, value 4) indicating this log entry represents an error.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int ERROR = 0x04;
 
 	/**
 	 * Status type severity (bit mask, value 8) indicating this log entry represents a cancelation.
 	 * @see #getSeverity()
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public static final int CANCEL = 0x08;
 
@@ -155,7 +155,7 @@
 	 *
 	 * @return the severity: one of <code>OK</code>, <code>ERROR</code>, 
 	 * <code>INFO</code>, <code>WARNING</code>,  or <code>CANCEL</code>
-	 * @sinse 3.2
+	 * @since 3.2
 	 */
 	public int getSeverity() {
 		return severity;
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/urlconversion/URLConverter.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/urlconversion/URLConverter.java
index d7d700e..f160544 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/urlconversion/URLConverter.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/urlconversion/URLConverter.java
@@ -36,6 +36,7 @@
 	 * @return the converted file URL or the original URL passed in if it is 
 	 * 	not recognized by this converter
 	 * @throws IOException if an error occurs during the conversion
+	 * @since 3.2
 	 */
 	public URL toFileURL(URL url) throws IOException;
 
@@ -55,6 +56,7 @@
 	 * @return the resolved URL or the original if the protocol is unknown to this converter
 	 * @exception IOException if unable to resolve URL
 	 * @throws IOException if an error occurs during the resolution
+	 * @since 3.2
 	 */
 	public URL resolve(URL url) throws IOException;
 }