Weird comment conflict

This commit is contained in:
Joe Bowser 2012-06-11 10:28:24 -07:00
commit 9ebdca66d9
2 changed files with 34 additions and 29 deletions

View File

@ -160,7 +160,7 @@ public class DroidGap extends Activity implements CordovaInterface {
protected IPlugin activityResultCallback = null; protected IPlugin activityResultCallback = null;
protected boolean activityResultKeepRunning; protected boolean activityResultKeepRunning;
// Default background color for activity // Default background color for activity
// (this is not the color for the webview, which is set in HTML) // (this is not the color for the webview, which is set in HTML)
private int backgroundColor = Color.BLACK; private int backgroundColor = Color.BLACK;
@ -187,7 +187,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Sets the authentication token. * Sets the authentication token.
* *
* @param authenticationToken * @param authenticationToken
* @param host * @param host
* @param realm * @param realm
@ -203,7 +203,7 @@ public class DroidGap extends Activity implements CordovaInterface {
* *
* @param host * @param host
* @param realm * @param realm
* *
* @return the authentication token or null if did not exist * @return the authentication token or null if did not exist
*/ */
public AuthenticationToken removeAuthenticationToken(String host, String realm) { public AuthenticationToken removeAuthenticationToken(String host, String realm) {
@ -224,7 +224,7 @@ public class DroidGap extends Activity implements CordovaInterface {
* *
* @param host * @param host
* @param realm * @param realm
* *
* @return the authentication token * @return the authentication token
*/ */
public AuthenticationToken getAuthenticationToken(String host, String realm) { public AuthenticationToken getAuthenticationToken(String host, String realm) {
@ -243,9 +243,9 @@ public class DroidGap extends Activity implements CordovaInterface {
} }
} }
/** /**
* Called when the activity is first created. * Called when the activity is first created.
* *
* @param savedInstanceState * @param savedInstanceState
*/ */
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
@ -277,7 +277,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Get the Android activity. * Get the Android activity.
* *
* @return * @return
*/ */
public Activity getActivity() { public Activity getActivity() {
@ -327,7 +327,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Load the url into the webview. * Load the url into the webview.
* *
* @param url * @param url
*/ */
public void loadUrl(String url) { public void loadUrl(String url) {
@ -775,7 +775,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Called when a key is released. (Key UP) * Called when a key is released. (Key UP)
* *
* @param keyCode * @param keyCode
* @param event * @param event
*/ */
@ -898,12 +898,12 @@ public class DroidGap extends Activity implements CordovaInterface {
} }
/** /**
* Report an error to the host application. These errors are unrecoverable (i.e. the main resource is unavailable). * Report an error to the host application. These errors are unrecoverable (i.e. the main resource is unavailable).
* The errorCode parameter corresponds to one of the ERROR_* constants. * The errorCode parameter corresponds to one of the ERROR_* constants.
* *
* @param errorCode The error code corresponding to an ERROR_* value. * @param errorCode The error code corresponding to an ERROR_* value.
* @param description A String describing the error. * @param description A String describing the error.
* @param failingUrl The url that failed to load. * @param failingUrl The url that failed to load.
*/ */
public void onReceivedError(final int errorCode, final String description, final String failingUrl) { public void onReceivedError(final int errorCode, final String description, final String failingUrl) {
final DroidGap me = this; final DroidGap me = this;
@ -939,7 +939,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Display an error dialog and optionally exit application. * Display an error dialog and optionally exit application.
* *
* @param title * @param title
* @param message * @param message
* @param button * @param button
@ -986,7 +986,7 @@ public class DroidGap extends Activity implements CordovaInterface {
return false; return false;
} }
/* /*
* Hook in DroidGap for menu plugins * Hook in DroidGap for menu plugins
* *
*/ */
@ -1010,7 +1010,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Get Activity context. * Get Activity context.
* *
* @return * @return
*/ */
public Context getContext() { public Context getContext() {
@ -1019,7 +1019,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Override the backbutton. * Override the backbutton.
* *
* @param override * @param override
*/ */
public void bindBackButton(boolean override) { public void bindBackButton(boolean override) {
@ -1028,7 +1028,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Determine of backbutton is overridden. * Determine of backbutton is overridden.
* *
* @return * @return
*/ */
public boolean isBackButtonBound() { public boolean isBackButtonBound() {
@ -1037,7 +1037,7 @@ public class DroidGap extends Activity implements CordovaInterface {
/** /**
* Load the specified URL in the Cordova webview or a new browser instance. * Load the specified URL in the Cordova webview or a new browser instance.
* *
* NOTE: If openExternal is false, only URLs listed in whitelist can be loaded. * NOTE: If openExternal is false, only URLs listed in whitelist can be loaded.
* *
* @param url The url to load. * @param url The url to load.
@ -1094,6 +1094,12 @@ public class DroidGap extends Activity implements CordovaInterface {
// Create and show the dialog // Create and show the dialog
splashDialog = new Dialog(this, android.R.style.Theme_Translucent_NoTitleBar); splashDialog = new Dialog(this, android.R.style.Theme_Translucent_NoTitleBar);
// check to see if the splash screen should be full screen
if ((getWindow().getAttributes().flags & WindowManager.LayoutParams.FLAG_FULLSCREEN)
== WindowManager.LayoutParams.FLAG_FULLSCREEN) {
splashDialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
splashDialog.setContentView(root); splashDialog.setContentView(root);
splashDialog.setCancelable(false); splashDialog.setCancelable(false);
splashDialog.show(); splashDialog.show();
@ -1108,8 +1114,8 @@ public class DroidGap extends Activity implements CordovaInterface {
} }
/** /**
* Called when a message is sent to plugin. * Called when a message is sent to plugin.
* *
* @param id The message id * @param id The message id
* @param data The message data * @param data The message data
* @return Object or null * @return Object or null

View File

@ -28,9 +28,9 @@ import android.content.Intent;
public interface CordovaInterface { public interface CordovaInterface {
/** /**
* Launch an activity for which you would like a result when it finished. When this activity exits, * Launch an activity for which you would like a result when it finished. When this activity exits,
* your onActivityResult() method will be called. * your onActivityResult() method will be called.
* *
* @param command The command object * @param command The command object
* @param intent The intent to start * @param intent The intent to start
* @param requestCode The request code that is passed to callback to identify the activity * @param requestCode The request code that is passed to callback to identify the activity
@ -39,28 +39,28 @@ public interface CordovaInterface {
/** /**
* Set the plugin to be called when a sub-activity exits. * Set the plugin to be called when a sub-activity exits.
* *
* @param plugin The plugin on which onActivityResult is to be called * @param plugin The plugin on which onActivityResult is to be called
*/ */
abstract public void setActivityResultCallback(IPlugin plugin); abstract public void setActivityResultCallback(IPlugin plugin);
/** /**
* Causes the Activity to override the back button behavior. * Causes the Activity to override the back button behavior.
* *
* @param override * @param override
*/ */
public abstract void bindBackButton(boolean override); public abstract void bindBackButton(boolean override);
/** /**
* A hook required to check if the Back Button is bound. * A hook required to check if the Back Button is bound.
* *
* @return * @return
*/ */
public abstract boolean isBackButtonBound(); public abstract boolean isBackButtonBound();
/** /**
* Get the Android activity. * Get the Android activity.
* *
* @return * @return
*/ */
public abstract Activity getActivity(); public abstract Activity getActivity();
@ -69,12 +69,11 @@ public interface CordovaInterface {
public abstract void cancelLoadUrl(); public abstract void cancelLoadUrl();
/** /**
* Called when a message is sent to plugin. * Called when a message is sent to plugin.
* *
* @param id The message id * @param id The message id
* @param data The message data * @param data The message data
* @return Object or null * @return Object or null
*/ */
public Object onMessage(String id, Object data); public Object onMessage(String id, Object data);
} }