Skip to content

Commit

Permalink
cmsdk: Clean up constant linking for javadoc.
Browse files Browse the repository at this point in the history
Change-Id: I52c724b3f7caf66d24401c7f50435c42f4692d5a
  • Loading branch information
Adnan Begovic committed Jul 16, 2015
1 parent 06fc449 commit c67a9eb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions src/java/cyanogenmod/profiles/ConnectionSettings.java
Expand Up @@ -58,55 +58,55 @@ public final class ConnectionSettings implements Parcelable {
private boolean mDirty;

/**
* The #PROFILE_CONNECTION_MOBILEDATA allows for enabling and disabling the mobile
* The {@link #PROFILE_CONNECTION_MOBILEDATA} allows for enabling and disabling the mobile
* data connection. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_MOBILEDATA = 0;

/**
* The #PROFILE_CONNECTION_WIFI allows for enabling and disabling the WiFi connection
* The {@link #PROFILE_CONNECTION_WIFI} allows for enabling and disabling the WiFi connection
* on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_WIFI = 1;

/**
* The #PROFILE_CONNECTION_WIFIAP allows for enabling and disabling the WiFi hotspot
* The {@link #PROFILE_CONNECTION_WIFIAP} allows for enabling and disabling the WiFi hotspot
* on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_WIFIAP = 2;

/**
* The #PROFILE_CONNECTION_WIMAX allows for enabling and disabling the WIMAX radio (if exists)
* The {@link #PROFILE_CONNECTION_WIMAX} allows for enabling and disabling the WIMAX radio (if exists)
* on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_WIMAX = 3;

/**
* The #PROFILE_CONNECTION_GPS allows for enabling and disabling the GPS radio (if exists)
* The {@link #PROFILE_CONNECTION_GPS} allows for enabling and disabling the GPS radio (if exists)
* on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_GPS = 4;

/**
* The #PROFILE_CONNECTION_SYNC allows for enabling and disabling the global sync state
* The {@link #PROFILE_CONNECTION_SYNC} allows for enabling and disabling the global sync state
* on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_SYNC = 5;

/**
* The #PROFILE_CONNECTION_BLUETOOTH allows for enabling and disabling the Bluetooth device
* The {@link #PROFILE_CONNECTION_BLUETOOTH} allows for enabling and disabling the Bluetooth device
* (if exists) on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_BLUETOOTH = 7;

/**
* The #PROFILE_CONNECTION_NFS allows for enabling and disabling the NFC device
* The {@link #PROFILE_CONNECTION_NFC} allows for enabling and disabling the NFC device
* (if exists) on the device. Boolean connection settings {@link BooleanState}
*/
public static final int PROFILE_CONNECTION_NFC = 8;

/**
* The #PROFILE_CONNECTION_2G3G4G allows for flipping between 2G/3G/4G (if exists)
* The {@link #PROFILE_CONNECTION_2G3G4G} allows for flipping between 2G/3G/4G (if exists)
* on the device.
*/
public static final int PROFILE_CONNECTION_2G3G4G = 9;
Expand Down
4 changes: 2 additions & 2 deletions src/java/cyanogenmod/profiles/RingModeSettings.java
Expand Up @@ -76,7 +76,7 @@ public RingModeSettings() {
/**
* Construct a {@link RingModeSettings} with a default value and whether or not it should
* override user settings.
* @param value ex: #RING_MODE_VIBRATE
* @param value ex: {@link #RING_MODE_VIBRATE}
* @param override whether or not the setting should override user settings
*/
public RingModeSettings(String value, boolean override) {
Expand All @@ -95,7 +95,7 @@ public String getValue() {

/**
* Set the default value for the {@link RingModeSettings}
* @param value ex: #RING_MODE_VIBRATE
* @param value ex: {@link #RING_MODE_VIBRATE}
*/
public void setValue(String value) {
mValue = value;
Expand Down

0 comments on commit c67a9eb

Please sign in to comment.