org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
-org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
+org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert
org.eclipse.jdt.core.formatter.comment.line_length=80
org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true
org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true
eclipse.preferences.version=1
-formatter_profile=_eclipse [spaces-only]
+formatter_profile=_'eclipse [spaces-only]'
formatter_settings_version=12
* Can be used to get the currently selected ownCloud account in the\r
* preferences\r
* \r
- * @param context\r
- * The current appContext\r
+ * @param context The current appContext\r
* @return The current account or first available, if none is available,\r
* then null.\r
*/\r
\r
/**\r
* \r
- * @param version\r
- * version of owncloud\r
+ * @param version version of owncloud\r
* @return webdav path for given OC version, null if OC version unknown\r
*/\r
public static String getWebdavPath(OwnCloudVersion version) {\r
* terminates and throws an {@link ConnectTimeoutException}
* </p>
*
- * @param host
- * the host name/IP
- * @param port
- * the port on the host
- * @param clientHost
- * the local host name/IP to bind the socket to
- * @param clientPort
- * the port on the local machine
- * @param params
- * {@link HttpConnectionParams Http connection parameters}
+ * @param host the host name/IP
+ * @param port the port on the host
+ * @param clientHost the local host name/IP to bind the socket to
+ * @param clientPort the port on the local machine
+ * @param params {@link HttpConnectionParams Http connection parameters}
*
* @return Socket a new socket
*
- * @throws IOException
- * if an I/O error occurs while creating the socket
- * @throws UnknownHostException
- * if the IP address of the host cannot be determined
+ * @throws IOException if an I/O error occurs while creating the socket
+ * @throws UnknownHostException if the IP address of the host cannot be
+ * determined
*/
public Socket createSocket(final String host, final int port,
final InetAddress localAddress, final int localPort,
/**
* Create new {@link OCFile} with given path
*
- * @param path
- * The remote path of the file
+ * @param path The remote path of the file
*/
public OCFile(String path) {
resetData();
/**
* Reconstruct from parcel
*
- * @param source
- * The source parcel
+ * @param source The source parcel
*/
private OCFile(Parcel source) {
mId = source.readLong();
/**
* Can be used to set the path where the file is stored
*
- * @param storage_path
- * to set
+ * @param storage_path to set
*/
public void setStoragePath(String storage_path) {
mLocalPath = storage_path;
/**
* Set a UNIX timestamp of the time the file was created
*
- * @param creation_timestamp
- * to set
+ * @param creation_timestamp to set
*/
public void setCreationTimestamp(long creation_timestamp) {
mCreationTimestamp = creation_timestamp;
/**
* Set a UNIX timestamp of the time the time the file was modified.
*
- * @param modification_timestamp
- * to set
+ * @param modification_timestamp to set
*/
public void setModificationTimestamp(long modification_timestamp) {
mModifiedTimestamp = modification_timestamp;
* Adds a file to this directory. If this file is not a directory, an
* exception gets thrown.
*
- * @param file
- * to add
- * @throws IllegalStateException
- * if you try to add a something and this is not a directory
+ * @param file to add
+ * @throws IllegalStateException if you try to add a something and this is
+ * not a directory
*/
public void addFile(OCFile file) throws IllegalStateException {
if (isDirectory()) {
/**
* Sets the ID of the file
*
- * @param file_id
- * to set
+ * @param file_id to set
*/
public void setFileId(long file_id) {
mId = file_id;
/**
* Sets the Mime-Type of the
*
- * @param mimetype
- * to set
+ * @param mimetype to set
*/
public void setMimetype(String mimetype) {
mMimeType = mimetype;
/**
* Sets the ID of the parent folder
*
- * @param parent_id
- * to set
+ * @param parent_id to set
*/
public void setParentId(long parent_id) {
mParentId = parent_id;
/**
* Sets the file size in bytes
*
- * @param file_len
- * to set
+ * @param file_len to set
*/
public void setFileLength(long file_len) {
mLength = file_len;
/**
* Used internally. Starts or stops the device tracking service
*
- * @param trackDevice
- * true to start the service, false to stop it
+ * @param trackDevice true to start the service, false to stop it
*/
private void startOrStopDeviceTracking(Context context, boolean trackDevice) {
Intent deviceTrackingIntent = new Intent();
/**\r
* Constructor\r
* \r
- * @param anchor\r
- * {@link View} on where the popup window should be displayed\r
+ * @param anchor {@link View} on where the popup window should be displayed\r
*/\r
public QuickAction(View anchor) {\r
super(anchor);\r
/**\r
* Set animation style\r
* \r
- * @param animStyle\r
- * animation style, default is set to ANIM_AUTO\r
+ * @param animStyle animation style, default is set to ANIM_AUTO\r
*/\r
public void setAnimStyle(int animStyle) {\r
this.animStyle = animStyle;\r
/**\r
* Add action item\r
* \r
- * @param action\r
- * {@link ActionItem} object\r
+ * @param action {@link ActionItem} object\r
*/\r
public void addActionItem(ActionItem action) {\r
actionList.add(action);\r
/**\r
* Set animation style\r
* \r
- * @param screenWidth\r
- * screen width\r
- * @param requestedX\r
- * distance from left edge\r
- * @param onTop\r
- * flag to indicate where the popup should be displayed. Set TRUE\r
- * if displayed on top of anchor view and vice versa\r
+ * @param screenWidth screen width\r
+ * @param requestedX distance from left edge\r
+ * @param onTop flag to indicate where the popup should be displayed. Set\r
+ * TRUE if displayed on top of anchor view and vice versa\r
*/\r
private void setAnimationStyle(int screenWidth, int requestedX,\r
boolean onTop) {\r
/**\r
* Get action item {@link View}\r
* \r
- * @param title\r
- * action item title\r
- * @param icon\r
- * {@link Drawable} action item icon\r
- * @param listener\r
- * {@link View.OnClickListener} action item listener\r
+ * @param title action item title\r
+ * @param icon {@link Drawable} action item icon\r
+ * @param listener {@link View.OnClickListener} action item listener\r
* @return action item {@link View}\r
*/\r
private View getActionItem(String title, Drawable icon,\r
/**\r
* Show arrow\r
* \r
- * @param whichArrow\r
- * arrow type resource id\r
- * @param requestedX\r
- * distance from left screen\r
+ * @param whichArrow arrow type resource id\r
+ * @param requestedX distance from left screen\r
*/\r
private void showArrow(int whichArrow, int requestedX) {\r
final View showArrow = (whichArrow == R.id.arrow_up) ? mArrowUp\r
* to contain {@link FileDetailFragment#FILE} with an OCFile and also\r
* {@link FileDownloader#EXTRA_ACCOUNT} with the account.\r
* \r
- * @param nonEmptyFragment\r
- * True, to enable file detail rendering\r
+ * @param nonEmptyFragment True, to enable file detail rendering\r
*/\r
public FileDetailFragment(Intent intent) {\r
mLayout = R.layout.file_details_fragment;\r
/**\r
* Use this method to signal this Activity that it shall update its view.\r
* \r
- * @param intent\r
- * The {@link Intent} that contains extra information about this\r
- * file The intent needs to have these extras:\r
+ * @param intent The {@link Intent} that contains extra information about\r
+ * this file The intent needs to have these extras:\r
* <p>\r
* \r
* {@link FileDetailFragment#FILE}: An {@link OCFile}\r