Commit 74747d31 authored by Jeffrey I. Schiller's avatar Jeffrey I. Schiller

Fix comments so that javadoc properly builds. Ran "clean" macro on

FusiontablesControl.java.  Note: Two warnings are expected in
BluetoothReflection due to references to a newer version of the
Android SDK then we are normally linked with.

Change-Id: I60fef39d8f7215e593d9382a45e66db6cc15d429
parent 8c858269
......@@ -50,7 +50,8 @@ public class ShowProgressBarCommand extends ChainableCommand {
* Creates a new command for showing a barcode for the target of a project.
*
* @param target the build target
* @param waitForBuildResultCommand
* @param nextCommand
* @param serviceName
*/
public ShowProgressBarCommand(String target,ChainableCommand nextCommand, String serviceName) {
// Since we don't know when the barcode dialog is finished, we can't
......
......@@ -648,12 +648,6 @@ public final class YoungAndroidProjectService extends CommonProjectService {
* @param user the User that owns the {@code projectId}.
* @param projectId project id to be built
* @param target build target (optional, implementation dependent)
* @return an RpcResult reflecting the call to the Build Server. The following values may be in
* RpcResult.result:
* 0: Build is done and was successful
* 1: Build is done and was unsuccessful
* 2: Yail generation failed
* -1: Build is not yet done.
*/
public void updateCurrentProgress(User user, long projectId, String target) {
try {
......
......@@ -277,7 +277,7 @@ public class FeedbackReporter extends JOptionPane {
* the ip address. If the user selected the "Cancel" button, the
* dialog is dismissed and the polling terminates.
*
* @param msgText The code to show complete with explanation text.
* @param code The code to show complete with explanation text.
* @param qrcode The ImageIcon with the QR Code to display.
* @return JDialog The actual displayed dialog
*/
......
......@@ -78,7 +78,20 @@
<pathelement location="lib/objectify-3.0/objectify-3.0.jar" />
<pathelement location="lib/tablelayout/TableLayout-jdk1.5-2007-04-21.jar" />
<pathelement location="lib/twitter/twitter4j-core-android-2.2.6.jar" />
<pathelement location="lib/QRGenerator/core.jar" />
<pathelement location="lib/QRGenerator/javase.jar" />
<fileset dir="buildserver/lib" includes="**/*.jar"/>
<!-- oauth libs -->
<pathelement location="lib/oauth/google-api-client-1.10.3-beta.jar" />
<pathelement location="lib/oauth/google-api-client-android2-1.10.3-beta.jar" />
<pathelement location="lib/oauth/google-http-client-1.10.3-beta.jar" />
<pathelement location="lib/oauth/google-http-client-android2-1.10.3-beta.jar" />
<pathelement location="lib/oauth/google-http-client-android3-1.10.3-beta.jar" />
<pathelement location="lib/oauth/google-oauth-client-1.10.1-beta.jar" />
<!-- fusiontables libs -->
<pathelement location="lib/fusiontables/fusiontables.jar" />
<!-- bugsense -->
<pathelement location="lib/bugsense/bugsense3.0.8.jar" />
<!-- gwt libs -->
<pathelement location="lib/gwt/2.3.0/gwt-dev.jar"/>
<pathelement location="lib/gwt/2.3.0/gwt-user.jar"/>
......
......@@ -59,7 +59,7 @@ public abstract class AndroidViewComponent extends VisibleComponent {
/**
* Specifies whether the component should be visible on the screen. Value is true if the
* component is showing and false if hidden.
* @param visible desired state
* @param visibility desired state
*/
@DesignerProperty(editorType = PropertyTypeConstants.PROPERTY_TYPE_VISIBILITY,
defaultValue = "True")
......
......@@ -66,8 +66,7 @@ import java.util.List;
* To the user, the first three layers are all the background, in terms
* of the behavior of {@link #SetBackgroundPixelColor(int,int,int)} and
* {@link #GetBackgroundPixelColor(int,int)}. For historical reasons,
* changing the background color or image clears the drawing layer
* {@link #ClearDrawingLayer()}.
* changing the background color or image clears the drawing layer.
*/
@DesignerComponent(version = YaVersion.CANVAS_COMPONENT_VERSION,
description = "<p>A two-dimensional touch-sensitive rectangular panel on " +
......
......@@ -625,7 +625,8 @@ public abstract class Sprite extends VisibleComponent
/**
* Turns this sprite to point towards a given point.
*
* @param target the other sprite to point towards
* @param x parameter of the point to turn to
* @param y parameter of the point to turn to
*/
@SimpleFunction(
description = "<p>Turns the sprite to point towards the point " +
......
......@@ -507,7 +507,7 @@ public class Texting extends AndroidNonvisibleComponent
/**
* Called by SmsBroadcastReceiver
* @return
* @return isRunning if the app is running in the foreground.
*/
public static boolean isRunning() {
return isRunning;
......@@ -515,7 +515,7 @@ public class Texting extends AndroidNonvisibleComponent
/**
* Used to keep count in Notifications.
* @return
* @return message count
*/
public static int getCachedMsgCount() {
return messagesCached;
......
......@@ -72,7 +72,7 @@ public final class AnimationUtil {
* Applies a specific animation for transitioning to a new
* Screen.
*
* @param form - the form which is calling another screen
* @param activity - the form which is calling another screen
* @param animType - the animation type
*/
public static void ApplyOpenScreenAnimation(Activity activity, String animType) {
......@@ -112,7 +112,7 @@ public final class AnimationUtil {
/**
* Applies a specific animation for transitioning back a screen.
*
* @param form - the form which is closing
* @param activity - the form which is closing
* @param animType - the animation type
*/
public static void ApplyCloseScreenAnimation(Activity activity, String animType) {
......
......@@ -220,7 +220,7 @@ public class BluetoothReflection {
// version of the jar that doesn't yet have the method, which was added in API level 10.
/**
* Invokes the method
* {@link android.bluetooth.BluetoothDevice#createInsecureRfcommSocketToServiceRecord(UUID)}.
* {@link android.bluetooth.BluetoothDevice#createInsecureRfcommSocketToServiceRecord(Object, UUID)}.
*
* @param bluetoothDevice a {@link android.bluetooth.BluetoothDevice} object
* @param uuid the service record uuid
......
......@@ -392,7 +392,7 @@ public class FullScreenVideoUtil implements OnCompletionListener,
* {@link com.google.appinventor.components.runtime.util.FullScreenVideoUtil#VIDEOPLAYER_POSITION}
* value of the Bundle passed in the
* {@link FullScreenVideoUtil#performAction(int, VideoPlayer, Object)}
* or {@link FullScreenVideoUtil#createFullScreenVideoDialog(Bundle)}
* or {@link FullScreenVideoUtil#createFullScreenVideoDialog()}
* @return True if the video was successfully loaded. False otherwise.
*/
public boolean setSource(String source, boolean clearSeek) {
......
......@@ -219,7 +219,7 @@ public class OAuth2Helper {
/**
* Clients can retrieve error messages statically.
* @return
* @return errorMessage
*/
public static String getErrorMessage() {
Log.i(TAG, "getErrorMessage = " + errorMessage);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment