[Android] Tiny inline documentation cleanup.

This commit is contained in:
Lioncash 2013-09-26 23:32:41 -04:00
parent 8aba748735
commit f6a8733660
3 changed files with 9 additions and 10 deletions

View File

@ -36,8 +36,8 @@ public final class FolderBrowserItem implements Comparable<FolderBrowserItem>
/** /**
* Constructor. Initializes a FolderBrowserItem with an empty subtitle. * Constructor. Initializes a FolderBrowserItem with an empty subtitle.
* *
* @param name The name of the file/folder represented by this item. * @param name The name of the file/folder represented by this item.
* @param path The path of the file/folder represented by this item. * @param path The path of the file/folder represented by this item.
*/ */
public FolderBrowserItem(String name, String path) public FolderBrowserItem(String name, String path)
{ {

View File

@ -30,10 +30,10 @@ public final class GameListItem implements Comparable<GameListItem>
/** /**
* Constructor. * Constructor.
* *
* @param ctx The current {@link Context} * @param ctx The current {@link Context}
* @param name The name of this GameListItem. * @param name The name of this GameListItem.
* @param data The subtitle for this GameListItem * @param data The subtitle for this GameListItem
* @param path The file path for the game represented by this GameListItem. * @param path The file path for the game represented by this GameListItem.
*/ */
public GameListItem(Context ctx, String name, String data, String path) public GameListItem(Context ctx, String name, String data, String path)
{ {

View File

@ -25,10 +25,9 @@ import android.support.v4.view.ViewPager;
public final class PrefsActivity extends Activity implements ActionBar.TabListener public final class PrefsActivity extends Activity implements ActionBar.TabListener
{ {
/** /**
* The {@link android.support.v4.view.PagerAdapter} that will provide org.dolphinemu.dolphinemu.settings for each of the * The {@link FragmentPagerAdapter} that will provide settings
* sections. We use a {@link android.support.v4.app.FragmentPagerAdapter} derivative, which will * fragments for each of the sections. This will also keep every
* keep every loaded fragment in memory. If this becomes too memory intensive, it may be best to * loaded fragment in memory.
* switch to a {@link android.support.v4.app.FragmentStatePagerAdapter}.
*/ */
private SectionsPagerAdapter mSectionsPagerAdapter; private SectionsPagerAdapter mSectionsPagerAdapter;