Fix two unparsable Javadoc comments

This commit is contained in:
Sebastian Kürten 2017-02-06 08:16:04 +01:00
parent da2012be1d
commit fca9eaf113
2 changed files with 9 additions and 7 deletions

View file

@ -147,7 +147,7 @@ public class LockableDatabase {
* @param uUid
* Never <code>null</code>.
* @param schemaDefinition
* Never <code>null</code
* Never <code>null</code>.
*/
public LockableDatabase(final Context context, final String uUid, final SchemaDefinition schemaDefinition) {
this.context = context;

View file

@ -20,12 +20,14 @@ import android.widget.TextView;
/**
* Class representing a LinearLayout that can fold and hide it's content when
* pressed To use just add the following to your xml layout
* <com.fsck.k9.view.FoldableLinearLayout
* android:layout_width="wrap_content" android:layout_height="wrap_content"
* custom:foldedLabel="@string/TEXT_TO_DISPLAY_WHEN_FOLDED"
* custom:unFoldedLabel="@string/TEXT_TO_DISPLAY_WHEN_UNFOLDED">
* <include layout="@layout/ELEMENTS_TO_BE_FOLDED"/>
* </com.fsck.k9.view.FoldableLinearLayout>
* <pre>{@code
*<com.fsck.k9.view.FoldableLinearLayout
* android:layout_width="wrap_content" android:layout_height="wrap_content"
* custom:foldedLabel="@string/TEXT_TO_DISPLAY_WHEN_FOLDED"
* custom:unFoldedLabel="@string/TEXT_TO_DISPLAY_WHEN_UNFOLDED">
* <include layout="@layout/ELEMENTS_TO_BE_FOLDED"/>
*</com.fsck.k9.view.FoldableLinearLayout>}
* </pre>
*/
public class FoldableLinearLayout extends LinearLayout {