blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1827515a146f049d5f66668cde9c98c1437ef97e | 2f5304331511575d1ad347894f85683d871b6776 | /src/main/java/studio/baxia/fo/service/impl/FriendlinkServiceImpl.java | 0b2ceca477a4ea5089c6be2ce01d47bf2a8a7a62 | [] | no_license | laidigaga/jswang_blog | ba3bd39b040d6a9bb0acaf9d9c594aefdf224add | 02b98ece598d49b44abfdac00c32c8f2e3646a1c | refs/heads/master | 2021-01-25T01:14:46.626651 | 2017-06-19T08:00:27 | 2017-06-19T08:00:27 | 94,733,914 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,388 | java | package studio.baxia.fo.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import studio.baxia.fo.common.PageConfig;
import studio.baxia.fo.common.PageInfoResult;
import studio.baxia.fo.dao.IFriendDao;
import studio.baxia.fo.pojo.Friendlink;
import studio.baxia.fo.service.IFriendlinkService;
import studio.baxia.fo.util.ReturnUtil;
import java.util.Date;
import java.util.List;
/**
* Created by Pan on 2016/12/1.
*/
@Service("iFriendlinkService")
public class FriendlinkServiceImpl implements IFriendlinkService {
@Autowired
private IFriendDao iFriendDao;
/**
* 添加
*
* @param friendlink
* @return 操作结果
*/
@Override
public boolean add(Friendlink friendlink) {
if(friendlink==null){
return false;
}
friendlink.setAddTime(new Date());
friendlink.setHits(0);
int result = iFriendDao.insert(friendlink);
return ReturnUtil.returnResult(result);
}
/**
* 分页获取
*
* @param pageConfig
* @return 分页结果
*/
@Override
public PageInfoResult<Friendlink> pagingList(PageConfig pageConfig) {
List<Friendlink> list = iFriendDao.selectBy(pageConfig);
int count = iFriendDao.selectCountBy();
PageInfoResult<Friendlink> pageInfoResult = new PageInfoResult<>(list,pageConfig,count);
return pageInfoResult;
}
/**
* 获取所有
*
* @return 所有记录
*/
@Override
public List<Friendlink> list() {
List<Friendlink> list = iFriendDao.selectBy(null);
return list;
}
@Override
public Friendlink get(int fId) {
Friendlink friendlink = iFriendDao.selectById(fId);
return friendlink;
}
@Override
public boolean delete(int fId) {
int result = iFriendDao.deleteById(fId);
return ReturnUtil.returnResult(result);
}
@Override
public boolean update(Friendlink friendlink) {
int result = iFriendDao.update(friendlink);
return ReturnUtil.returnResult(result);
}
@Override
public boolean hits(int id) {
Friendlink friendlink = iFriendDao.selectById(id);
friendlink.setHits(friendlink.getHits()+1);
iFriendDao.updateHits(friendlink);
return true;
}
}
| [
"[email protected]"
] | |
f05fc6cada5738c650789b72c60ae90be097e839 | b8dec60a1146b175d300a3b06cb167e9e519222a | /src/main/java/vehicles/SimpleSteering.java | d08c2cfc72301518963f5539f0c95553d639dfd8 | [] | no_license | Jazriel/DisManSoft | 7d98ed375223452464926ede86120a297ae2f893 | d598bc94031d51a2b1cba1eea4475ed72244b18a | refs/heads/master | 2021-01-20T07:47:28.379753 | 2016-11-19T11:33:49 | 2016-11-19T11:33:49 | 69,379,125 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 503 | java | package main.java.vehicles;
import java.util.List;
public class SimpleSteering implements ISteering {
private List<IWheel> steeringWheels;
public SimpleSteering(List<IWheel> steeringWheels) {
this.steeringWheels = steeringWheels;
}
@Override
public void turnLeft(double degrees) {
for (IWheel wheel : steeringWheels) {
wheel.setAngle(-degrees);
}
}
@Override
public void turnRight(double degrees) {
for (IWheel wheel : steeringWheels) {
wheel.setAngle(degrees);
}
}
}
| [
"[email protected]"
] | |
59ec249c5b46b8775879ab03fe42d4e13fa774c0 | c01ce441a7218bc99fe874b125fb0f5fbd2998d6 | /app/src/main/java/com/example/sampleprocess/ReadFromModbus.java | 7d4b9f839fb9361074b1557854755f9eabd3970d | [] | no_license | RaimisSarka/SampleProcess | b9d416b251d3ab96a360bd7f03ca288bf3da1af5 | 18088fa36a32c2725b9fd48823b56f11989f7903 | refs/heads/master | 2020-09-20T22:49:24.433161 | 2019-11-28T08:55:48 | 2019-11-28T08:55:48 | 224,610,531 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,061 | java | package com.example.sampleprocess;
import android.os.AsyncTask;
import de.re.easymodbus.modbusclient.ModbusClient;
public class ReadFromModbus extends AsyncTask<String, Void, String> {
Exception e;
@Override
protected String doInBackground(String... params) {
ModbusClient mClient = new ModbusClient();
String res = "";
try {
mClient.Connect(params[0], Integer.valueOf(params[1]));
int[] input = mClient.ReadHoldingRegisters(Integer.valueOf(params[2]), Integer.valueOf(params[3]));
for (int i = 0; i < input.length; i++) {
if (input.length>1) {
res = res + String.valueOf(input[i]) + "\n";
} else {
res = res + String.valueOf(input[i]);
}
}
return res;
} catch (Exception e) {
this.e = e;
return null;
} finally {
}
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
}
}
| [
"[email protected]"
] | |
1982d60f6e777b0743cf9f5845ade31de3d0c0c3 | 2405f3ff1293fd39fae25f69cdc069ac71400de4 | /MovieSearchSolution/Droid/obj/Debug/android/android/support/v7/recyclerview/R.java | 63c8b619881acebd3e9e34e6296a73b4cfca9bdc | [] | no_license | oddurka/T-488-MAPP-Project1 | e88220338f1a0183136717915bdfad89bc90bbdc | d5151f6e11dc17b003bf271b42da47a41b25252c | refs/heads/master | 2021-08-24T07:34:22.892485 | 2017-12-08T17:08:05 | 2017-12-08T17:08:05 | 112,591,209 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 591,207 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.v7.recyclerview;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f050000;
public static final int abc_fade_out=0x7f050001;
public static final int abc_grow_fade_in_from_bottom=0x7f050002;
public static final int abc_popup_enter=0x7f050003;
public static final int abc_popup_exit=0x7f050004;
public static final int abc_shrink_fade_out_from_bottom=0x7f050005;
public static final int abc_slide_in_bottom=0x7f050006;
public static final int abc_slide_in_top=0x7f050007;
public static final int abc_slide_out_bottom=0x7f050008;
public static final int abc_slide_out_top=0x7f050009;
public static final int design_bottom_sheet_slide_in=0x7f05000a;
public static final int design_bottom_sheet_slide_out=0x7f05000b;
public static final int design_fab_in=0x7f05000c;
public static final int design_fab_out=0x7f05000d;
public static final int design_snackbar_in=0x7f05000e;
public static final int design_snackbar_out=0x7f05000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f060000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f010041;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f010046;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f010042;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f01003c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f01003e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f010044;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f010045;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010049;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f01004a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f01004d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f01004c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f010051;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f010054;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f01004e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f01004b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f010040;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f0100b6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f01008f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f010091;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100a4;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100a5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100ac;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f010010;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f010012;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f010011;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f0100e9;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f0100ea;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100ae;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f010114;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f01011d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=0x7f0100f0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_skipCollapsed=0x7f0100f2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f01010c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f010094;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f010063;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f010025;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f010098;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100a6;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f01009a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f010022;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100e0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100df;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f0100f9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f010086;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f01008d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f01008a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f010088;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f010089;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f010087;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f010084;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f010085;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f0100c6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f01001b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f01001c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f01001a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f01001e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f01008c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f010133;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f010134;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f010136;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f010135;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f010013;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f0100c0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f01005b;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010069;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f010068;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f01007b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f010070;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f01009b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f010020;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int errorEnabled=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f010132;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f010024;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f0100eb;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f0100f3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f0100f7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=0x7f0100f6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f0100f5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f0100f8;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f010110;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f01011b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010005;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010019;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f010137;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f010130;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f01012f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f01000d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f010016;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f010023;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f01011c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=0x7f010119;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010018;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f01011a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=0x7f010118;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f010104;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100bd;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f010107;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f010109;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f010106;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f010102;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f010103;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f01010b;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f01010a;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f010108;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f010026;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f01007c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f010076;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010078;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f010077;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010079;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f01000e;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f0100e3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100dd;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f010116;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f010027;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100e2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100e1;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010008;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100b9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100bb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f0100e7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100bc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f010082;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f010081;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f010139;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010138;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f01013b;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=0x7f01013c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f010021;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f01006e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f0100b7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f010111;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010017;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f010015;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f0100bf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f01009c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f01009d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f01009f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f01010f;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimVisibleHeightTrigger=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f010066;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f0100b3;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f0100b1;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f0100d4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010028;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100a1;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f0100d3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f01002b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100ba;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f0100ec;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=0x7f0100ed;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int statusBarBackground=0x7f010105;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=0x7f0100fb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100c9;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f01000a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100d6;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f010122;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f010121;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f010124;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f010126;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f010125;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f01012c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f01012a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f01012b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f010127;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010128;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f010031;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f010058;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010059;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f010092;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int textColorError=0x7f01010e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100af;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100cf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f0100ca;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f0100cb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f01002e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f01002f;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f010030;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tint=0x7f01002c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f01002d;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f010007;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f010101;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f0100d7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100db;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100d9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100d8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100d5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f0100e4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f0100cc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f0100cd;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f0100ce;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f010032;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f010034;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010035;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010039;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f010037;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f010036;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010038;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f01003a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f01003b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f010033;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0b0000;
public static final int abc_allow_stacked_button_bar=0x7f0b0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0b0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0b0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0b0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0c0048;
public static final int abc_background_cache_hint_selector_material_light=0x7f0c0049;
public static final int abc_btn_colored_borderless_text_material=0x7f0c004a;
public static final int abc_btn_colored_text_material=0x7f0c004b;
public static final int abc_color_highlight_material=0x7f0c004c;
public static final int abc_hint_foreground_material_dark=0x7f0c004d;
public static final int abc_hint_foreground_material_light=0x7f0c004e;
public static final int abc_input_method_navigation_guard=0x7f0c0001;
public static final int abc_primary_text_disable_only_material_dark=0x7f0c004f;
public static final int abc_primary_text_disable_only_material_light=0x7f0c0050;
public static final int abc_primary_text_material_dark=0x7f0c0051;
public static final int abc_primary_text_material_light=0x7f0c0052;
public static final int abc_search_url_text=0x7f0c0053;
public static final int abc_search_url_text_normal=0x7f0c0002;
public static final int abc_search_url_text_pressed=0x7f0c0003;
public static final int abc_search_url_text_selected=0x7f0c0004;
public static final int abc_secondary_text_material_dark=0x7f0c0054;
public static final int abc_secondary_text_material_light=0x7f0c0055;
public static final int abc_tint_btn_checkable=0x7f0c0056;
public static final int abc_tint_default=0x7f0c0057;
public static final int abc_tint_edittext=0x7f0c0058;
public static final int abc_tint_seek_thumb=0x7f0c0059;
public static final int abc_tint_spinner=0x7f0c005a;
public static final int abc_tint_switch_thumb=0x7f0c005b;
public static final int abc_tint_switch_track=0x7f0c005c;
public static final int accent_material_dark=0x7f0c0005;
public static final int accent_material_light=0x7f0c0006;
public static final int background_floating_material_dark=0x7f0c0007;
public static final int background_floating_material_light=0x7f0c0008;
public static final int background_material_dark=0x7f0c0009;
public static final int background_material_light=0x7f0c000a;
public static final int blue=0x7f0c0046;
public static final int bright_foreground_disabled_material_dark=0x7f0c000b;
public static final int bright_foreground_disabled_material_light=0x7f0c000c;
public static final int bright_foreground_inverse_material_dark=0x7f0c000d;
public static final int bright_foreground_inverse_material_light=0x7f0c000e;
public static final int bright_foreground_material_dark=0x7f0c000f;
public static final int bright_foreground_material_light=0x7f0c0010;
public static final int button_material_dark=0x7f0c0011;
public static final int button_material_light=0x7f0c0012;
public static final int design_bottom_navigation_shadow_color=0x7f0c003b;
public static final int design_error=0x7f0c005d;
public static final int design_fab_shadow_end_color=0x7f0c003c;
public static final int design_fab_shadow_mid_color=0x7f0c003d;
public static final int design_fab_shadow_start_color=0x7f0c003e;
public static final int design_fab_stroke_end_inner_color=0x7f0c003f;
public static final int design_fab_stroke_end_outer_color=0x7f0c0040;
public static final int design_fab_stroke_top_inner_color=0x7f0c0041;
public static final int design_fab_stroke_top_outer_color=0x7f0c0042;
public static final int design_snackbar_background_color=0x7f0c0043;
public static final int design_textinput_error_color_dark=0x7f0c0044;
public static final int design_textinput_error_color_light=0x7f0c0045;
public static final int design_tint_password_toggle=0x7f0c005e;
public static final int dim_foreground_disabled_material_dark=0x7f0c0013;
public static final int dim_foreground_disabled_material_light=0x7f0c0014;
public static final int dim_foreground_material_dark=0x7f0c0015;
public static final int dim_foreground_material_light=0x7f0c0016;
public static final int foreground_material_dark=0x7f0c0017;
public static final int foreground_material_light=0x7f0c0018;
public static final int green=0x7f0c0047;
public static final int highlighted_text_material_dark=0x7f0c0019;
public static final int highlighted_text_material_light=0x7f0c001a;
public static final int material_blue_grey_800=0x7f0c001b;
public static final int material_blue_grey_900=0x7f0c001c;
public static final int material_blue_grey_950=0x7f0c001d;
public static final int material_deep_teal_200=0x7f0c001e;
public static final int material_deep_teal_500=0x7f0c001f;
public static final int material_grey_100=0x7f0c0020;
public static final int material_grey_300=0x7f0c0021;
public static final int material_grey_50=0x7f0c0022;
public static final int material_grey_600=0x7f0c0023;
public static final int material_grey_800=0x7f0c0024;
public static final int material_grey_850=0x7f0c0025;
public static final int material_grey_900=0x7f0c0026;
public static final int notification_action_color_filter=0x7f0c0000;
public static final int notification_icon_bg_color=0x7f0c0027;
public static final int notification_material_background_media_default_color=0x7f0c0028;
public static final int primary_dark_material_dark=0x7f0c0029;
public static final int primary_dark_material_light=0x7f0c002a;
public static final int primary_material_dark=0x7f0c002b;
public static final int primary_material_light=0x7f0c002c;
public static final int primary_text_default_material_dark=0x7f0c002d;
public static final int primary_text_default_material_light=0x7f0c002e;
public static final int primary_text_disabled_material_dark=0x7f0c002f;
public static final int primary_text_disabled_material_light=0x7f0c0030;
public static final int ripple_material_dark=0x7f0c0031;
public static final int ripple_material_light=0x7f0c0032;
public static final int secondary_text_default_material_dark=0x7f0c0033;
public static final int secondary_text_default_material_light=0x7f0c0034;
public static final int secondary_text_disabled_material_dark=0x7f0c0035;
public static final int secondary_text_disabled_material_light=0x7f0c0036;
public static final int switch_thumb_disabled_material_dark=0x7f0c0037;
public static final int switch_thumb_disabled_material_light=0x7f0c0038;
public static final int switch_thumb_material_dark=0x7f0c005f;
public static final int switch_thumb_material_light=0x7f0c0060;
public static final int switch_thumb_normal_material_dark=0x7f0c0039;
public static final int switch_thumb_normal_material_light=0x7f0c003a;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f07000f;
public static final int abc_action_bar_content_inset_with_nav=0x7f070010;
public static final int abc_action_bar_default_height_material=0x7f070004;
public static final int abc_action_bar_default_padding_end_material=0x7f070011;
public static final int abc_action_bar_default_padding_start_material=0x7f070012;
public static final int abc_action_bar_elevation_material=0x7f070018;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070019;
public static final int abc_action_bar_overflow_padding_end_material=0x7f07001a;
public static final int abc_action_bar_overflow_padding_start_material=0x7f07001b;
public static final int abc_action_bar_progress_bar_size=0x7f070005;
public static final int abc_action_bar_stacked_max_height=0x7f07001c;
public static final int abc_action_bar_stacked_tab_max_width=0x7f07001d;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07001e;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f07001f;
public static final int abc_action_button_min_height_material=0x7f070020;
public static final int abc_action_button_min_width_material=0x7f070021;
public static final int abc_action_button_min_width_overflow_material=0x7f070022;
public static final int abc_alert_dialog_button_bar_height=0x7f070003;
public static final int abc_button_inset_horizontal_material=0x7f070023;
public static final int abc_button_inset_vertical_material=0x7f070024;
public static final int abc_button_padding_horizontal_material=0x7f070025;
public static final int abc_button_padding_vertical_material=0x7f070026;
public static final int abc_cascading_menus_min_smallest_width=0x7f070027;
public static final int abc_config_prefDialogWidth=0x7f070008;
public static final int abc_control_corner_material=0x7f070028;
public static final int abc_control_inset_material=0x7f070029;
public static final int abc_control_padding_material=0x7f07002a;
public static final int abc_dialog_fixed_height_major=0x7f070009;
public static final int abc_dialog_fixed_height_minor=0x7f07000a;
public static final int abc_dialog_fixed_width_major=0x7f07000b;
public static final int abc_dialog_fixed_width_minor=0x7f07000c;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f07002b;
public static final int abc_dialog_list_padding_top_no_title=0x7f07002c;
public static final int abc_dialog_min_width_major=0x7f07000d;
public static final int abc_dialog_min_width_minor=0x7f07000e;
public static final int abc_dialog_padding_material=0x7f07002d;
public static final int abc_dialog_padding_top_material=0x7f07002e;
public static final int abc_dialog_title_divider_material=0x7f07002f;
public static final int abc_disabled_alpha_material_dark=0x7f070030;
public static final int abc_disabled_alpha_material_light=0x7f070031;
public static final int abc_dropdownitem_icon_width=0x7f070032;
public static final int abc_dropdownitem_text_padding_left=0x7f070033;
public static final int abc_dropdownitem_text_padding_right=0x7f070034;
public static final int abc_edit_text_inset_bottom_material=0x7f070035;
public static final int abc_edit_text_inset_horizontal_material=0x7f070036;
public static final int abc_edit_text_inset_top_material=0x7f070037;
public static final int abc_floating_window_z=0x7f070038;
public static final int abc_list_item_padding_horizontal_material=0x7f070039;
public static final int abc_panel_menu_list_width=0x7f07003a;
public static final int abc_progress_bar_height_material=0x7f07003b;
public static final int abc_search_view_preferred_height=0x7f07003c;
public static final int abc_search_view_preferred_width=0x7f07003d;
public static final int abc_seekbar_track_background_height_material=0x7f07003e;
public static final int abc_seekbar_track_progress_height_material=0x7f07003f;
public static final int abc_select_dialog_padding_start_material=0x7f070040;
public static final int abc_switch_padding=0x7f070014;
public static final int abc_text_size_body_1_material=0x7f070041;
public static final int abc_text_size_body_2_material=0x7f070042;
public static final int abc_text_size_button_material=0x7f070043;
public static final int abc_text_size_caption_material=0x7f070044;
public static final int abc_text_size_display_1_material=0x7f070045;
public static final int abc_text_size_display_2_material=0x7f070046;
public static final int abc_text_size_display_3_material=0x7f070047;
public static final int abc_text_size_display_4_material=0x7f070048;
public static final int abc_text_size_headline_material=0x7f070049;
public static final int abc_text_size_large_material=0x7f07004a;
public static final int abc_text_size_medium_material=0x7f07004b;
public static final int abc_text_size_menu_header_material=0x7f07004c;
public static final int abc_text_size_menu_material=0x7f07004d;
public static final int abc_text_size_small_material=0x7f07004e;
public static final int abc_text_size_subhead_material=0x7f07004f;
public static final int abc_text_size_subtitle_material_toolbar=0x7f070006;
public static final int abc_text_size_title_material=0x7f070050;
public static final int abc_text_size_title_material_toolbar=0x7f070007;
public static final int design_appbar_elevation=0x7f07006d;
public static final int design_bottom_navigation_active_item_max_width=0x7f07006e;
public static final int design_bottom_navigation_active_text_size=0x7f07006f;
public static final int design_bottom_navigation_elevation=0x7f070070;
public static final int design_bottom_navigation_height=0x7f070071;
public static final int design_bottom_navigation_item_max_width=0x7f070072;
public static final int design_bottom_navigation_item_min_width=0x7f070073;
public static final int design_bottom_navigation_margin=0x7f070074;
public static final int design_bottom_navigation_shadow_height=0x7f070075;
public static final int design_bottom_navigation_text_size=0x7f070076;
public static final int design_bottom_sheet_modal_elevation=0x7f070077;
public static final int design_bottom_sheet_peek_height_min=0x7f070078;
public static final int design_fab_border_width=0x7f070079;
public static final int design_fab_elevation=0x7f07007a;
public static final int design_fab_image_size=0x7f07007b;
public static final int design_fab_size_mini=0x7f07007c;
public static final int design_fab_size_normal=0x7f07007d;
public static final int design_fab_translation_z_pressed=0x7f07007e;
public static final int design_navigation_elevation=0x7f07007f;
public static final int design_navigation_icon_padding=0x7f070080;
public static final int design_navigation_icon_size=0x7f070081;
public static final int design_navigation_max_width=0x7f070065;
public static final int design_navigation_padding_bottom=0x7f070082;
public static final int design_navigation_separator_vertical_padding=0x7f070083;
public static final int design_snackbar_action_inline_max_width=0x7f070066;
public static final int design_snackbar_background_corner_radius=0x7f070067;
public static final int design_snackbar_elevation=0x7f070084;
public static final int design_snackbar_extra_spacing_horizontal=0x7f070068;
public static final int design_snackbar_max_width=0x7f070069;
public static final int design_snackbar_min_width=0x7f07006a;
public static final int design_snackbar_padding_horizontal=0x7f070085;
public static final int design_snackbar_padding_vertical=0x7f070086;
public static final int design_snackbar_padding_vertical_2lines=0x7f07006b;
public static final int design_snackbar_text_size=0x7f070087;
public static final int design_tab_max_width=0x7f070088;
public static final int design_tab_scrollable_min_width=0x7f07006c;
public static final int design_tab_text_size=0x7f070089;
public static final int design_tab_text_size_2line=0x7f07008a;
public static final int disabled_alpha_material_dark=0x7f070051;
public static final int disabled_alpha_material_light=0x7f070052;
public static final int highlight_alpha_material_colored=0x7f070053;
public static final int highlight_alpha_material_dark=0x7f070054;
public static final int highlight_alpha_material_light=0x7f070055;
public static final int hint_alpha_material_dark=0x7f070056;
public static final int hint_alpha_material_light=0x7f070057;
public static final int hint_pressed_alpha_material_dark=0x7f070058;
public static final int hint_pressed_alpha_material_light=0x7f070059;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070000;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070001;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070002;
public static final int notification_action_icon_size=0x7f07005a;
public static final int notification_action_text_size=0x7f07005b;
public static final int notification_big_circle_margin=0x7f07005c;
public static final int notification_content_margin_start=0x7f070015;
public static final int notification_large_icon_height=0x7f07005d;
public static final int notification_large_icon_width=0x7f07005e;
public static final int notification_main_column_padding_top=0x7f070016;
public static final int notification_media_narrow_margin=0x7f070017;
public static final int notification_right_icon_size=0x7f07005f;
public static final int notification_right_side_padding_top=0x7f070013;
public static final int notification_small_icon_background_padding=0x7f070060;
public static final int notification_small_icon_size_as_large=0x7f070061;
public static final int notification_subtext_size=0x7f070062;
public static final int notification_top_pad=0x7f070063;
public static final int notification_top_pad_large_text=0x7f070064;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int avd_hide_password=0x7f020053;
public static final int avd_hide_password_1=0x7f020068;
public static final int avd_hide_password_2=0x7f020069;
public static final int avd_hide_password_3=0x7f02006a;
public static final int avd_show_password=0x7f020054;
public static final int avd_show_password_1=0x7f02006b;
public static final int avd_show_password_2=0x7f02006c;
public static final int avd_show_password_3=0x7f02006d;
public static final int design_bottom_navigation_item_background=0x7f020055;
public static final int design_fab_background=0x7f020056;
public static final int design_ic_visibility=0x7f020057;
public static final int design_ic_visibility_off=0x7f020058;
public static final int design_password_eye=0x7f020059;
public static final int design_snackbar_background=0x7f02005a;
public static final int navigation_empty_icon=0x7f02005b;
public static final int notification_action_background=0x7f02005c;
public static final int notification_bg=0x7f02005d;
public static final int notification_bg_low=0x7f02005e;
public static final int notification_bg_low_normal=0x7f02005f;
public static final int notification_bg_low_pressed=0x7f020060;
public static final int notification_bg_normal=0x7f020061;
public static final int notification_bg_normal_pressed=0x7f020062;
public static final int notification_icon_background=0x7f020063;
public static final int notification_template_icon_bg=0x7f020066;
public static final int notification_template_icon_low_bg=0x7f020067;
public static final int notification_tile_bg=0x7f020064;
public static final int notify_panel_notification_icon_bg=0x7f020065;
}
public static final class id {
public static final int action0=0x7f080090;
public static final int action_bar=0x7f080064;
public static final int action_bar_activity_content=0x7f080001;
public static final int action_bar_container=0x7f080063;
public static final int action_bar_root=0x7f08005f;
public static final int action_bar_spinner=0x7f080002;
public static final int action_bar_subtitle=0x7f080042;
public static final int action_bar_title=0x7f080041;
public static final int action_container=0x7f08008d;
public static final int action_context_bar=0x7f080065;
public static final int action_divider=0x7f080094;
public static final int action_image=0x7f08008e;
public static final int action_menu_divider=0x7f080003;
public static final int action_menu_presenter=0x7f080004;
public static final int action_mode_bar=0x7f080061;
public static final int action_mode_bar_stub=0x7f080060;
public static final int action_mode_close_button=0x7f080043;
public static final int action_text=0x7f08008f;
public static final int actions=0x7f08009d;
public static final int activity_chooser_view_content=0x7f080044;
public static final int actors=0x7f08008c;
public static final int add=0x7f08001e;
public static final int alertTitle=0x7f080058;
public static final int all=0x7f08003d;
public static final int always=0x7f080023;
public static final int auto=0x7f08002f;
public static final int beginning=0x7f080020;
public static final int bottom=0x7f080028;
public static final int buttonPanel=0x7f08004b;
public static final int cancel_action=0x7f080091;
public static final int center=0x7f080030;
public static final int center_horizontal=0x7f080031;
public static final int center_vertical=0x7f080032;
public static final int checkbox=0x7f08005b;
public static final int chronometer=0x7f080099;
public static final int clip_horizontal=0x7f080039;
public static final int clip_vertical=0x7f08003a;
public static final int collapseActionView=0x7f080024;
public static final int container=0x7f080075;
public static final int contentPanel=0x7f08004e;
public static final int coordinator=0x7f080076;
public static final int custom=0x7f080055;
public static final int customPanel=0x7f080054;
public static final int decor_content_parent=0x7f080062;
public static final int default_activity_button=0x7f080047;
public static final int description=0x7f080088;
public static final int design_bottom_sheet=0x7f080078;
public static final int design_menu_item_action_area=0x7f08007f;
public static final int design_menu_item_action_area_stub=0x7f08007e;
public static final int design_menu_item_text=0x7f08007d;
public static final int design_navigation_view=0x7f08007c;
public static final int disableHome=0x7f080012;
public static final int edit_query=0x7f080066;
public static final int end=0x7f080021;
public static final int end_padder=0x7f0800a3;
public static final int enterAlways=0x7f08002a;
public static final int enterAlwaysCollapsed=0x7f08002b;
public static final int exitUntilCollapsed=0x7f08002c;
public static final int expand_activities_button=0x7f080045;
public static final int expanded_menu=0x7f08005a;
public static final int fill=0x7f08003b;
public static final int fill_horizontal=0x7f08003c;
public static final int fill_vertical=0x7f080033;
public static final int fixed=0x7f08003f;
public static final int getMovieButton=0x7f0800a6;
public static final int home=0x7f080005;
public static final int homeAsUp=0x7f080013;
public static final int icon=0x7f080049;
public static final int icon_group=0x7f08009e;
public static final int ifRoom=0x7f080025;
public static final int image=0x7f080046;
public static final int info=0x7f08009a;
public static final int instructionTextView=0x7f0800a4;
public static final int item_touch_helper_previous_elevation=0x7f080000;
public static final int largeLabel=0x7f080074;
public static final int left=0x7f080034;
public static final int line1=0x7f08009f;
public static final int line3=0x7f0800a1;
public static final int listItem=0x7f08008b;
public static final int listMode=0x7f08000f;
public static final int list_item=0x7f080048;
public static final int main_content=0x7f080082;
public static final int masked=0x7f0800aa;
public static final int media_actions=0x7f080093;
public static final int middle=0x7f080022;
public static final int mini=0x7f08003e;
public static final int movie=0x7f080089;
public static final int movieDetails=0x7f080085;
public static final int movieInputEditText=0x7f0800a5;
public static final int movieListView=0x7f08008a;
public static final int multiply=0x7f080019;
public static final int navigation_header_container=0x7f08007b;
public static final int never=0x7f080026;
public static final int none=0x7f080014;
public static final int normal=0x7f080010;
public static final int notification_background=0x7f08009c;
public static final int notification_main_column=0x7f080096;
public static final int notification_main_column_container=0x7f080095;
public static final int parallax=0x7f080037;
public static final int parentPanel=0x7f08004d;
public static final int pin=0x7f080038;
public static final int posterPath=0x7f080086;
public static final int progressBar_cyclic=0x7f0800a7;
public static final int progress_circular=0x7f080006;
public static final int progress_horizontal=0x7f080007;
public static final int radio=0x7f08005d;
public static final int right=0x7f080035;
public static final int right_icon=0x7f08009b;
public static final int right_side=0x7f080097;
public static final int runtimeAndGenre=0x7f080087;
public static final int screen=0x7f08001a;
public static final int scroll=0x7f08002d;
public static final int scrollIndicatorDown=0x7f080053;
public static final int scrollIndicatorUp=0x7f08004f;
public static final int scrollView=0x7f080050;
public static final int scrollable=0x7f080040;
public static final int search_badge=0x7f080068;
public static final int search_bar=0x7f080067;
public static final int search_button=0x7f080069;
public static final int search_close_btn=0x7f08006e;
public static final int search_edit_frame=0x7f08006a;
public static final int search_go_btn=0x7f080070;
public static final int search_mag_icon=0x7f08006b;
public static final int search_plate=0x7f08006c;
public static final int search_src_text=0x7f08006d;
public static final int search_voice_btn=0x7f080071;
public static final int select_dialog_listview=0x7f080072;
public static final int shortcut=0x7f08005c;
public static final int showCustom=0x7f080015;
public static final int showHome=0x7f080016;
public static final int showTitle=0x7f080017;
public static final int sliding_tabs=0x7f080083;
public static final int smallLabel=0x7f080073;
public static final int snackbar_action=0x7f08007a;
public static final int snackbar_text=0x7f080079;
public static final int snap=0x7f08002e;
public static final int spacer=0x7f08004c;
public static final int split_action_bar=0x7f080008;
public static final int src_atop=0x7f08001b;
public static final int src_in=0x7f08001c;
public static final int src_over=0x7f08001d;
public static final int start=0x7f080036;
public static final int status_bar_latest_event_content=0x7f080092;
public static final int submenuarrow=0x7f08005e;
public static final int submit_area=0x7f08006f;
public static final int tabMode=0x7f080011;
public static final int text=0x7f0800a2;
public static final int text2=0x7f0800a0;
public static final int textSpacerNoButtons=0x7f080052;
public static final int textSpacerNoTitle=0x7f080051;
public static final int text_input_password_toggle=0x7f080080;
public static final int textinput_counter=0x7f08000c;
public static final int textinput_error=0x7f08000d;
public static final int time=0x7f080098;
public static final int title=0x7f08004a;
public static final int titleDividerNoCustom=0x7f080059;
public static final int title_template=0x7f080057;
public static final int toolbar=0x7f080081;
public static final int top=0x7f080029;
public static final int topPanel=0x7f080056;
public static final int topRatedListView=0x7f0800a8;
public static final int touch_outside=0x7f080077;
public static final int transition_current_scene=0x7f08000a;
public static final int transition_scene_layoutid_cache=0x7f08000b;
public static final int up=0x7f080009;
public static final int useLogo=0x7f080018;
public static final int view_offset_helper=0x7f08000e;
public static final int viewpager=0x7f080084;
public static final int visible=0x7f0800a9;
public static final int withText=0x7f080027;
public static final int wrap_content=0x7f08001f;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0d0000;
public static final int abc_config_activityShortDur=0x7f0d0001;
public static final int app_bar_elevation_anim_duration=0x7f0d0005;
public static final int bottom_sheet_slide_duration=0x7f0d0006;
public static final int cancel_button_image_alpha=0x7f0d0002;
public static final int design_snackbar_text_max_lines=0x7f0d0004;
public static final int hide_password_duration=0x7f0d0007;
public static final int show_password_duration=0x7f0d0008;
public static final int status_bar_notification_info_maxnum=0x7f0d0003;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f040000;
public static final int abc_action_bar_up_container=0x7f040001;
public static final int abc_action_bar_view_list_nav_layout=0x7f040002;
public static final int abc_action_menu_item_layout=0x7f040003;
public static final int abc_action_menu_layout=0x7f040004;
public static final int abc_action_mode_bar=0x7f040005;
public static final int abc_action_mode_close_item_material=0x7f040006;
public static final int abc_activity_chooser_view=0x7f040007;
public static final int abc_activity_chooser_view_list_item=0x7f040008;
public static final int abc_alert_dialog_button_bar_material=0x7f040009;
public static final int abc_alert_dialog_material=0x7f04000a;
public static final int abc_alert_dialog_title_material=0x7f04000b;
public static final int abc_dialog_title_material=0x7f04000c;
public static final int abc_expanded_menu_layout=0x7f04000d;
public static final int abc_list_menu_item_checkbox=0x7f04000e;
public static final int abc_list_menu_item_icon=0x7f04000f;
public static final int abc_list_menu_item_layout=0x7f040010;
public static final int abc_list_menu_item_radio=0x7f040011;
public static final int abc_popup_menu_header_item_layout=0x7f040012;
public static final int abc_popup_menu_item_layout=0x7f040013;
public static final int abc_screen_content_include=0x7f040014;
public static final int abc_screen_simple=0x7f040015;
public static final int abc_screen_simple_overlay_action_mode=0x7f040016;
public static final int abc_screen_toolbar=0x7f040017;
public static final int abc_search_dropdown_item_icons_2line=0x7f040018;
public static final int abc_search_view=0x7f040019;
public static final int abc_select_dialog_material=0x7f04001a;
public static final int design_bottom_navigation_item=0x7f04001b;
public static final int design_bottom_sheet_dialog=0x7f04001c;
public static final int design_layout_snackbar=0x7f04001d;
public static final int design_layout_snackbar_include=0x7f04001e;
public static final int design_layout_tab_icon=0x7f04001f;
public static final int design_layout_tab_text=0x7f040020;
public static final int design_menu_item_action_area=0x7f040021;
public static final int design_navigation_item=0x7f040022;
public static final int design_navigation_item_header=0x7f040023;
public static final int design_navigation_item_separator=0x7f040024;
public static final int design_navigation_item_subheader=0x7f040025;
public static final int design_navigation_menu=0x7f040026;
public static final int design_navigation_menu_item=0x7f040027;
public static final int design_text_input_password_icon=0x7f040028;
public static final int main=0x7f040029;
public static final int moviedetails=0x7f04002a;
public static final int movielist=0x7f04002b;
public static final int movielistitem=0x7f04002c;
public static final int notification_action=0x7f04002d;
public static final int notification_action_tombstone=0x7f04002e;
public static final int notification_media_action=0x7f04002f;
public static final int notification_media_cancel_action=0x7f040030;
public static final int notification_template_big_media=0x7f040031;
public static final int notification_template_big_media_custom=0x7f040032;
public static final int notification_template_big_media_narrow=0x7f040033;
public static final int notification_template_big_media_narrow_custom=0x7f040034;
public static final int notification_template_custom_big=0x7f040035;
public static final int notification_template_icon_group=0x7f040036;
public static final int notification_template_lines_media=0x7f040037;
public static final int notification_template_media=0x7f040038;
public static final int notification_template_media_custom=0x7f040039;
public static final int notification_template_part_chronometer=0x7f04003a;
public static final int notification_template_part_time=0x7f04003b;
public static final int searchinput=0x7f04003c;
public static final int select_dialog_item_material=0x7f04003d;
public static final int select_dialog_multichoice_material=0x7f04003e;
public static final int select_dialog_singlechoice_material=0x7f04003f;
public static final int support_simple_spinner_dropdown_item=0x7f040040;
public static final int toolbar=0x7f040041;
public static final int toprated=0x7f040042;
}
public static final class mipmap {
public static final int icon=0x7f030000;
public static final int newicon=0x7f030001;
public static final int placeholder=0x7f030002;
public static final int shawshank=0x7f030003;
public static final int splash=0x7f030004;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f090000;
public static final int abc_action_bar_home_description_format=0x7f090001;
public static final int abc_action_bar_home_subtitle_description_format=0x7f090002;
public static final int abc_action_bar_up_description=0x7f090003;
public static final int abc_action_menu_overflow_description=0x7f090004;
public static final int abc_action_mode_done=0x7f090005;
public static final int abc_activity_chooser_view_see_all=0x7f090006;
public static final int abc_activitychooserview_choose_application=0x7f090007;
public static final int abc_capital_off=0x7f090008;
public static final int abc_capital_on=0x7f090009;
public static final int abc_font_family_body_1_material=0x7f090015;
public static final int abc_font_family_body_2_material=0x7f090016;
public static final int abc_font_family_button_material=0x7f090017;
public static final int abc_font_family_caption_material=0x7f090018;
public static final int abc_font_family_display_1_material=0x7f090019;
public static final int abc_font_family_display_2_material=0x7f09001a;
public static final int abc_font_family_display_3_material=0x7f09001b;
public static final int abc_font_family_display_4_material=0x7f09001c;
public static final int abc_font_family_headline_material=0x7f09001d;
public static final int abc_font_family_menu_material=0x7f09001e;
public static final int abc_font_family_subhead_material=0x7f09001f;
public static final int abc_font_family_title_material=0x7f090020;
public static final int abc_search_hint=0x7f09000a;
public static final int abc_searchview_description_clear=0x7f09000b;
public static final int abc_searchview_description_query=0x7f09000c;
public static final int abc_searchview_description_search=0x7f09000d;
public static final int abc_searchview_description_submit=0x7f09000e;
public static final int abc_searchview_description_voice=0x7f09000f;
public static final int abc_shareactionprovider_share_with=0x7f090010;
public static final int abc_shareactionprovider_share_with_application=0x7f090011;
public static final int abc_toolbar_collapse_description=0x7f090012;
public static final int app_name=0x7f09002a;
public static final int appbar_scrolling_view_behavior=0x7f090021;
public static final int bottom_sheet_behavior=0x7f090022;
public static final int character_counter_pattern=0x7f090023;
public static final int hello=0x7f090029;
public static final int password_toggle_content_description=0x7f090024;
public static final int path_password_eye=0x7f090025;
public static final int path_password_eye_mask_strike_through=0x7f090026;
public static final int path_password_eye_mask_visible=0x7f090027;
public static final int path_password_strike_through=0x7f090028;
public static final int search_menu_title=0x7f090013;
public static final int status_bar_notification_info_overflow=0x7f090014;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0a009f;
public static final int AlertDialog_AppCompat_Light=0x7f0a00a0;
public static final int Animation_AppCompat_Dialog=0x7f0a00a1;
public static final int Animation_AppCompat_DropDownUp=0x7f0a00a2;
public static final int Animation_Design_BottomSheetDialog=0x7f0a0161;
public static final int Base_AlertDialog_AppCompat=0x7f0a00a3;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0a00a4;
public static final int Base_Animation_AppCompat_Dialog=0x7f0a00a5;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0a00a6;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0a00a7;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00a8;
public static final int Base_TextAppearance_AppCompat=0x7f0a003f;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0a0040;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0a0041;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0a0027;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0a0042;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0a0043;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0a0044;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0a0045;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0a0046;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0a0047;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0a000b;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0a0048;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0049;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a004a;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0a004b;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000d;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0a004c;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00a9;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a004d;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a004e;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0a004f;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000e;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0a0050;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a000f;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0a0051;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0010;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0094;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a0052;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a0053;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a0054;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a0055;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0056;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0057;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0058;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a009b;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a009c;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0095;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00aa;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a0059;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a005a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a005b;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a005c;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a005d;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ab;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a005e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a005f;
public static final int Base_Theme_AppCompat=0x7f0a0060;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0a00ac;
public static final int Base_Theme_AppCompat_Dialog=0x7f0a0011;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0012;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00ad;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0013;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0001;
public static final int Base_Theme_AppCompat_Light=0x7f0a0061;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00ae;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0a0014;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0015;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00af;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0016;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0002;
public static final int Base_ThemeOverlay_AppCompat=0x7f0a00b0;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00b1;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00b2;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00b3;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0a0017;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0018;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0a00b4;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0a0019;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a001a;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0a001b;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0023;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0a0024;
public static final int Base_V21_Theme_AppCompat=0x7f0a0062;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0a0063;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0a0064;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a0065;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0a0066;
public static final int Base_V22_Theme_AppCompat=0x7f0a0092;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0a0093;
public static final int Base_V23_Theme_AppCompat=0x7f0a0096;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0a0097;
public static final int Base_V7_Theme_AppCompat=0x7f0a00b5;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0a00b6;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0a00b7;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00b8;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0a00b9;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00ba;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0a00bb;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0a00bc;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00bd;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00be;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0067;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0068;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0a0069;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a006a;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a006b;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0a00bf;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00c0;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0025;
public static final int Base_Widget_AppCompat_Button=0x7f0a006c;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0a006d;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a006e;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00c1;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0a0098;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0a006f;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0a0070;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00c2;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0071;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0072;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00c3;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00c4;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a0073;
public static final int Base_Widget_AppCompat_EditText=0x7f0a0026;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0a0074;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00c5;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00c6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00c7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0075;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0076;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0077;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0078;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0079;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0a00c8;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0a007a;
public static final int Base_Widget_AppCompat_ListView=0x7f0a007b;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0a007c;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0a007d;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0a007e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a007f;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0a00c9;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0a001c;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a001d;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0a0080;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a0099;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0a009a;
public static final int Base_Widget_AppCompat_SearchView=0x7f0a00ca;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00cb;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0a0081;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0a00cc;
public static final int Base_Widget_AppCompat_Spinner=0x7f0a0082;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0003;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a0083;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0a00cd;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0084;
public static final int Base_Widget_Design_AppBarLayout=0x7f0a0162;
public static final int Base_Widget_Design_TabLayout=0x7f0a0163;
public static final int MyTheme=0x7f0a017a;
public static final int MyTheme_Splash=0x7f0a017b;
public static final int Platform_AppCompat=0x7f0a001e;
public static final int Platform_AppCompat_Light=0x7f0a001f;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0a0085;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0086;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0087;
public static final int Platform_V11_AppCompat=0x7f0a0020;
public static final int Platform_V11_AppCompat_Light=0x7f0a0021;
public static final int Platform_V14_AppCompat=0x7f0a0028;
public static final int Platform_V14_AppCompat_Light=0x7f0a0029;
public static final int Platform_V21_AppCompat=0x7f0a0088;
public static final int Platform_V21_AppCompat_Light=0x7f0a0089;
public static final int Platform_V25_AppCompat=0x7f0a009d;
public static final int Platform_V25_AppCompat_Light=0x7f0a009e;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0a0022;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0031;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a0032;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a0033;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a0034;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a0035;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0036;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0037;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0038;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0039;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a003a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a003b;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a003c;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a003d;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a003e;
public static final int TextAppearance_AppCompat=0x7f0a00ce;
public static final int TextAppearance_AppCompat_Body1=0x7f0a00cf;
public static final int TextAppearance_AppCompat_Body2=0x7f0a00d0;
public static final int TextAppearance_AppCompat_Button=0x7f0a00d1;
public static final int TextAppearance_AppCompat_Caption=0x7f0a00d2;
public static final int TextAppearance_AppCompat_Display1=0x7f0a00d3;
public static final int TextAppearance_AppCompat_Display2=0x7f0a00d4;
public static final int TextAppearance_AppCompat_Display3=0x7f0a00d5;
public static final int TextAppearance_AppCompat_Display4=0x7f0a00d6;
public static final int TextAppearance_AppCompat_Headline=0x7f0a00d7;
public static final int TextAppearance_AppCompat_Inverse=0x7f0a00d8;
public static final int TextAppearance_AppCompat_Large=0x7f0a00d9;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0a00da;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00db;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00dc;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00dd;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00de;
public static final int TextAppearance_AppCompat_Medium=0x7f0a00df;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00e0;
public static final int TextAppearance_AppCompat_Menu=0x7f0a00e1;
public static final int TextAppearance_AppCompat_Notification=0x7f0a002a;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0a008a;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0a008b;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0a00e2;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0a00e3;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0a008c;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0a008d;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0a008e;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0a002b;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0a008f;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00e4;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00e5;
public static final int TextAppearance_AppCompat_Small=0x7f0a00e6;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0a00e7;
public static final int TextAppearance_AppCompat_Subhead=0x7f0a00e8;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00e9;
public static final int TextAppearance_AppCompat_Title=0x7f0a00ea;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0a00eb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00ec;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00ed;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00ee;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00ef;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00f0;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00f1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00f2;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00f3;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00f4;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0a00f5;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a00f6;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a00f7;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00f8;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f9;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a00fa;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00fb;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00fc;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0a00fd;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00fe;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a0164;
public static final int TextAppearance_Design_Counter=0x7f0a0165;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0a0166;
public static final int TextAppearance_Design_Error=0x7f0a0167;
public static final int TextAppearance_Design_Hint=0x7f0a0168;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0a0169;
public static final int TextAppearance_Design_Tab=0x7f0a016a;
public static final int TextAppearance_StatusBar_EventContent=0x7f0a002c;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0a002d;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0a002e;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0a002f;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0a0030;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ff;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0100;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0101;
public static final int Theme_AppCompat=0x7f0a0102;
public static final int Theme_AppCompat_CompactMenu=0x7f0a0103;
public static final int Theme_AppCompat_DayNight=0x7f0a0004;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0005;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0a0006;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0007;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0008;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0009;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000a;
public static final int Theme_AppCompat_Dialog=0x7f0a0104;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0a0105;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0a0106;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0a0107;
public static final int Theme_AppCompat_Light=0x7f0a0108;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0a0109;
public static final int Theme_AppCompat_Light_Dialog=0x7f0a010a;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0a010b;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a010c;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a010d;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0a010e;
public static final int Theme_AppCompat_NoActionBar=0x7f0a010f;
public static final int Theme_Design=0x7f0a016b;
public static final int Theme_Design_BottomSheetDialog=0x7f0a016c;
public static final int Theme_Design_Light=0x7f0a016d;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0a016e;
public static final int Theme_Design_Light_NoActionBar=0x7f0a016f;
public static final int Theme_Design_NoActionBar=0x7f0a0170;
public static final int ThemeOverlay_AppCompat=0x7f0a0110;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0a0111;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0a0112;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0113;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0a0114;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0115;
public static final int ThemeOverlay_AppCompat_Light=0x7f0a0116;
public static final int Widget_AppCompat_ActionBar=0x7f0a0117;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0a0118;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0a0119;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0a011a;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0a011b;
public static final int Widget_AppCompat_ActionButton=0x7f0a011c;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0a011d;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0a011e;
public static final int Widget_AppCompat_ActionMode=0x7f0a011f;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0a0120;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0a0121;
public static final int Widget_AppCompat_Button=0x7f0a0122;
public static final int Widget_AppCompat_Button_Borderless=0x7f0a0123;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0124;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0125;
public static final int Widget_AppCompat_Button_Colored=0x7f0a0126;
public static final int Widget_AppCompat_Button_Small=0x7f0a0127;
public static final int Widget_AppCompat_ButtonBar=0x7f0a0128;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0129;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a012a;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a012b;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0a012c;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0a012d;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012e;
public static final int Widget_AppCompat_EditText=0x7f0a012f;
public static final int Widget_AppCompat_ImageButton=0x7f0a0130;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0a0131;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0132;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a0133;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0134;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0135;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0136;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0137;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0138;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0139;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0a013a;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a013b;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a013c;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a013d;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013e;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013f;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a0140;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0a0141;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0142;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0a0143;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0144;
public static final int Widget_AppCompat_Light_SearchView=0x7f0a0145;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0146;
public static final int Widget_AppCompat_ListMenuView=0x7f0a0147;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0a0148;
public static final int Widget_AppCompat_ListView=0x7f0a0149;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0a014a;
public static final int Widget_AppCompat_ListView_Menu=0x7f0a014b;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f0a0090;
public static final int Widget_AppCompat_NotificationActionText=0x7f0a0091;
public static final int Widget_AppCompat_PopupMenu=0x7f0a014c;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0a014d;
public static final int Widget_AppCompat_PopupWindow=0x7f0a014e;
public static final int Widget_AppCompat_ProgressBar=0x7f0a014f;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0150;
public static final int Widget_AppCompat_RatingBar=0x7f0a0151;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0a0152;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0a0153;
public static final int Widget_AppCompat_SearchView=0x7f0a0154;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0a0155;
public static final int Widget_AppCompat_SeekBar=0x7f0a0156;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0a0157;
public static final int Widget_AppCompat_Spinner=0x7f0a0158;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0a0159;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a015a;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0a015b;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0a015c;
public static final int Widget_AppCompat_Toolbar=0x7f0a015d;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a015e;
public static final int Widget_Design_AppBarLayout=0x7f0a0160;
public static final int Widget_Design_BottomNavigationView=0x7f0a0171;
public static final int Widget_Design_BottomSheet_Modal=0x7f0a0172;
public static final int Widget_Design_CollapsingToolbar=0x7f0a0173;
public static final int Widget_Design_CoordinatorLayout=0x7f0a0174;
public static final int Widget_Design_FloatingActionButton=0x7f0a0175;
public static final int Widget_Design_NavigationView=0x7f0a0176;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0a0177;
public static final int Widget_Design_Snackbar=0x7f0a0178;
public static final int Widget_Design_TabLayout=0x7f0a015f;
public static final int Widget_Design_TextInputLayout=0x7f0a0179;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background is.ru.mapp.MovieSearch:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit is.ru.mapp.MovieSearch:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked is.ru.mapp.MovieSearch:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd is.ru.mapp.MovieSearch:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions is.ru.mapp.MovieSearch:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft is.ru.mapp.MovieSearch:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight is.ru.mapp.MovieSearch:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart is.ru.mapp.MovieSearch:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation is.ru.mapp.MovieSearch:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout is.ru.mapp.MovieSearch:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions is.ru.mapp.MovieSearch:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider is.ru.mapp.MovieSearch:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height is.ru.mapp.MovieSearch:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll is.ru.mapp.MovieSearch:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator is.ru.mapp.MovieSearch:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout is.ru.mapp.MovieSearch:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon is.ru.mapp.MovieSearch:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle is.ru.mapp.MovieSearch:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding is.ru.mapp.MovieSearch:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo is.ru.mapp.MovieSearch:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode is.ru.mapp.MovieSearch:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme is.ru.mapp.MovieSearch:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding is.ru.mapp.MovieSearch:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle is.ru.mapp.MovieSearch:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle is.ru.mapp.MovieSearch:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle is.ru.mapp.MovieSearch:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title is.ru.mapp.MovieSearch:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle is.ru.mapp.MovieSearch:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010005, 0x7f010007, 0x7f010008, 0x7f010009,
0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d,
0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010061
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background is.ru.mapp.MovieSearch:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit is.ru.mapp.MovieSearch:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout is.ru.mapp.MovieSearch:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height is.ru.mapp.MovieSearch:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle is.ru.mapp.MovieSearch:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle is.ru.mapp.MovieSearch:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010005, 0x7f01000b, 0x7f01000c, 0x7f010010,
0x7f010012, 0x7f010022
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable is.ru.mapp.MovieSearch:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount is.ru.mapp.MovieSearch:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010023, 0x7f010024
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout is.ru.mapp.MovieSearch:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout is.ru.mapp.MovieSearch:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout is.ru.mapp.MovieSearch:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout is.ru.mapp.MovieSearch:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle is.ru.mapp.MovieSearch:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout is.ru.mapp.MovieSearch:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010025, 0x7f010026, 0x7f010027,
0x7f010028, 0x7f010029, 0x7f01002a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded is.ru.mapp.MovieSearch:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010020, 0x7f0100eb
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed is.ru.mapp.MovieSearch:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible is.ru.mapp.MovieSearch:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f0100ec, 0x7f0100ed
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags is.ru.mapp.MovieSearch:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator is.ru.mapp.MovieSearch:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f0100ee, 0x7f0100ef
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat is.ru.mapp.MovieSearch:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint is.ru.mapp.MovieSearch:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode is.ru.mapp.MovieSearch:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f01002b, 0x7f01002c, 0x7f01002d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:tintMode
*/
public static final int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark is.ru.mapp.MovieSearch:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint is.ru.mapp.MovieSearch:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode is.ru.mapp.MovieSearch:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f01002e, 0x7f01002f, 0x7f010030
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps is.ru.mapp.MovieSearch:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010031
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name is.ru.mapp.MovieSearch:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider is.ru.mapp.MovieSearch:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground is.ru.mapp.MovieSearch:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme is.ru.mapp.MovieSearch:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize is.ru.mapp.MovieSearch:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle is.ru.mapp.MovieSearch:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle is.ru.mapp.MovieSearch:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle is.ru.mapp.MovieSearch:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle is.ru.mapp.MovieSearch:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle is.ru.mapp.MovieSearch:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme is.ru.mapp.MovieSearch:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme is.ru.mapp.MovieSearch:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle is.ru.mapp.MovieSearch:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle is.ru.mapp.MovieSearch:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance is.ru.mapp.MovieSearch:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor is.ru.mapp.MovieSearch:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground is.ru.mapp.MovieSearch:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle is.ru.mapp.MovieSearch:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable is.ru.mapp.MovieSearch:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable is.ru.mapp.MovieSearch:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable is.ru.mapp.MovieSearch:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable is.ru.mapp.MovieSearch:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable is.ru.mapp.MovieSearch:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle is.ru.mapp.MovieSearch:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable is.ru.mapp.MovieSearch:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable is.ru.mapp.MovieSearch:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground is.ru.mapp.MovieSearch:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle is.ru.mapp.MovieSearch:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable is.ru.mapp.MovieSearch:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle is.ru.mapp.MovieSearch:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle is.ru.mapp.MovieSearch:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle is.ru.mapp.MovieSearch:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle is.ru.mapp.MovieSearch:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons is.ru.mapp.MovieSearch:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle is.ru.mapp.MovieSearch:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme is.ru.mapp.MovieSearch:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle is.ru.mapp.MovieSearch:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle is.ru.mapp.MovieSearch:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle is.ru.mapp.MovieSearch:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle is.ru.mapp.MovieSearch:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle is.ru.mapp.MovieSearch:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle is.ru.mapp.MovieSearch:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle is.ru.mapp.MovieSearch:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle is.ru.mapp.MovieSearch:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall is.ru.mapp.MovieSearch:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle is.ru.mapp.MovieSearch:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle is.ru.mapp.MovieSearch:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent is.ru.mapp.MovieSearch:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating is.ru.mapp.MovieSearch:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal is.ru.mapp.MovieSearch:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated is.ru.mapp.MovieSearch:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight is.ru.mapp.MovieSearch:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal is.ru.mapp.MovieSearch:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary is.ru.mapp.MovieSearch:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark is.ru.mapp.MovieSearch:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal is.ru.mapp.MovieSearch:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground is.ru.mapp.MovieSearch:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding is.ru.mapp.MovieSearch:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme is.ru.mapp.MovieSearch:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal is.ru.mapp.MovieSearch:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical is.ru.mapp.MovieSearch:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle is.ru.mapp.MovieSearch:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight is.ru.mapp.MovieSearch:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground is.ru.mapp.MovieSearch:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor is.ru.mapp.MovieSearch:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle is.ru.mapp.MovieSearch:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator is.ru.mapp.MovieSearch:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle is.ru.mapp.MovieSearch:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator is.ru.mapp.MovieSearch:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog is.ru.mapp.MovieSearch:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle is.ru.mapp.MovieSearch:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle is.ru.mapp.MovieSearch:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight is.ru.mapp.MovieSearch:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge is.ru.mapp.MovieSearch:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall is.ru.mapp.MovieSearch:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft is.ru.mapp.MovieSearch:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight is.ru.mapp.MovieSearch:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground is.ru.mapp.MovieSearch:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme is.ru.mapp.MovieSearch:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth is.ru.mapp.MovieSearch:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle is.ru.mapp.MovieSearch:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle is.ru.mapp.MovieSearch:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle is.ru.mapp.MovieSearch:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle is.ru.mapp.MovieSearch:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator is.ru.mapp.MovieSearch:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall is.ru.mapp.MovieSearch:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle is.ru.mapp.MovieSearch:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle is.ru.mapp.MovieSearch:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground is.ru.mapp.MovieSearch:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless is.ru.mapp.MovieSearch:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle is.ru.mapp.MovieSearch:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle is.ru.mapp.MovieSearch:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle is.ru.mapp.MovieSearch:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu is.ru.mapp.MovieSearch:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem is.ru.mapp.MovieSearch:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary is.ru.mapp.MovieSearch:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall is.ru.mapp.MovieSearch:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader is.ru.mapp.MovieSearch:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle is.ru.mapp.MovieSearch:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle is.ru.mapp.MovieSearch:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu is.ru.mapp.MovieSearch:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem is.ru.mapp.MovieSearch:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl is.ru.mapp.MovieSearch:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle is.ru.mapp.MovieSearch:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle is.ru.mapp.MovieSearch:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar is.ru.mapp.MovieSearch:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay is.ru.mapp.MovieSearch:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay is.ru.mapp.MovieSearch:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor is.ru.mapp.MovieSearch:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor is.ru.mapp.MovieSearch:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor is.ru.mapp.MovieSearch:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor is.ru.mapp.MovieSearch:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor is.ru.mapp.MovieSearch:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor is.ru.mapp.MovieSearch:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle is.ru.mapp.MovieSearch:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043,
0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047,
0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground is.ru.mapp.MovieSearch:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint is.ru.mapp.MovieSearch:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor is.ru.mapp.MovieSearch:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu is.ru.mapp.MovieSearch:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f010020, 0x7f010116, 0x7f010117, 0x7f010118,
0x7f010119
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:menu
*/
public static final int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable is.ru.mapp.MovieSearch:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight is.ru.mapp.MovieSearch:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed is.ru.mapp.MovieSearch:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f0100f0, 0x7f0100f1, 0x7f0100f2
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking is.ru.mapp.MovieSearch:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100a4
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity is.ru.mapp.MovieSearch:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance is.ru.mapp.MovieSearch:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim is.ru.mapp.MovieSearch:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity is.ru.mapp.MovieSearch:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin is.ru.mapp.MovieSearch:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom is.ru.mapp.MovieSearch:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd is.ru.mapp.MovieSearch:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart is.ru.mapp.MovieSearch:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop is.ru.mapp.MovieSearch:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance is.ru.mapp.MovieSearch:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration is.ru.mapp.MovieSearch:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger is.ru.mapp.MovieSearch:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim is.ru.mapp.MovieSearch:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title is.ru.mapp.MovieSearch:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled is.ru.mapp.MovieSearch:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId is.ru.mapp.MovieSearch:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010007, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9,
0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd,
0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode is.ru.mapp.MovieSearch:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier is.ru.mapp.MovieSearch:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f010102, 0x7f010103
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha is.ru.mapp.MovieSearch:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100a5
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint is.ru.mapp.MovieSearch:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode is.ru.mapp.MovieSearch:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100a6, 0x7f0100a7
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines is.ru.mapp.MovieSearch:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground is.ru.mapp.MovieSearch:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010104, 0x7f010105
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor is.ru.mapp.MovieSearch:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity is.ru.mapp.MovieSearch:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior is.ru.mapp.MovieSearch:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges is.ru.mapp.MovieSearch:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge is.ru.mapp.MovieSearch:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline is.ru.mapp.MovieSearch:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010106, 0x7f010107, 0x7f010108,
0x7f010109, 0x7f01010a, 0x7f01010b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme is.ru.mapp.MovieSearch:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle is.ru.mapp.MovieSearch:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError is.ru.mapp.MovieSearch:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f01010c, 0x7f01010d, 0x7f01010e
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength is.ru.mapp.MovieSearch:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength is.ru.mapp.MovieSearch:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength is.ru.mapp.MovieSearch:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color is.ru.mapp.MovieSearch:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize is.ru.mapp.MovieSearch:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars is.ru.mapp.MovieSearch:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars is.ru.mapp.MovieSearch:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness is.ru.mapp.MovieSearch:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint is.ru.mapp.MovieSearch:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode is.ru.mapp.MovieSearch:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth is.ru.mapp.MovieSearch:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize is.ru.mapp.MovieSearch:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ is.ru.mapp.MovieSearch:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor is.ru.mapp.MovieSearch:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding is.ru.mapp.MovieSearch:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010020, 0x7f0100e9, 0x7f0100ea, 0x7f01010f,
0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide is.ru.mapp.MovieSearch:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010114
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding is.ru.mapp.MovieSearch:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider is.ru.mapp.MovieSearch:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding is.ru.mapp.MovieSearch:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild is.ru.mapp.MovieSearch:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers is.ru.mapp.MovieSearch:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01000f, 0x7f0100b0, 0x7f0100b1,
0x7f0100b2
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout is.ru.mapp.MovieSearch:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass is.ru.mapp.MovieSearch:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass is.ru.mapp.MovieSearch:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction is.ru.mapp.MovieSearch:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5,
0x7f0100b6
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing is.ru.mapp.MovieSearch:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow is.ru.mapp.MovieSearch:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100b7,
0x7f0100b8
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout is.ru.mapp.MovieSearch:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground is.ru.mapp.MovieSearch:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint is.ru.mapp.MovieSearch:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance is.ru.mapp.MovieSearch:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor is.ru.mapp.MovieSearch:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu is.ru.mapp.MovieSearch:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f010020,
0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119,
0x7f01011a, 0x7f01011b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor is.ru.mapp.MovieSearch:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100b9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor is.ru.mapp.MovieSearch:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100ba
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons is.ru.mapp.MovieSearch:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle is.ru.mapp.MovieSearch:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100bb, 0x7f0100bc
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager is.ru.mapp.MovieSearch:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout is.ru.mapp.MovieSearch:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount is.ru.mapp.MovieSearch:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd is.ru.mapp.MovieSearch:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground is.ru.mapp.MovieSearch:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f01011c
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name is.ru.mapp.MovieSearch:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop is.ru.mapp.MovieSearch:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01011d
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon is.ru.mapp.MovieSearch:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon is.ru.mapp.MovieSearch:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint is.ru.mapp.MovieSearch:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon is.ru.mapp.MovieSearch:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault is.ru.mapp.MovieSearch:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout is.ru.mapp.MovieSearch:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground is.ru.mapp.MovieSearch:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint is.ru.mapp.MovieSearch:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon is.ru.mapp.MovieSearch:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon is.ru.mapp.MovieSearch:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground is.ru.mapp.MovieSearch:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout is.ru.mapp.MovieSearch:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon is.ru.mapp.MovieSearch:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0,
0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4,
0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8,
0x7f0100c9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth is.ru.mapp.MovieSearch:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010020, 0x7f01011e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme is.ru.mapp.MovieSearch:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText is.ru.mapp.MovieSearch:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack is.ru.mapp.MovieSearch:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth is.ru.mapp.MovieSearch:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding is.ru.mapp.MovieSearch:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance is.ru.mapp.MovieSearch:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding is.ru.mapp.MovieSearch:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint is.ru.mapp.MovieSearch:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode is.ru.mapp.MovieSearch:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track is.ru.mapp.MovieSearch:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint is.ru.mapp.MovieSearch:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode is.ru.mapp.MovieSearch:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100ca,
0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce,
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground is.ru.mapp.MovieSearch:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart is.ru.mapp.MovieSearch:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity is.ru.mapp.MovieSearch:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor is.ru.mapp.MovieSearch:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight is.ru.mapp.MovieSearch:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth is.ru.mapp.MovieSearch:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth is.ru.mapp.MovieSearch:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode is.ru.mapp.MovieSearch:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding is.ru.mapp.MovieSearch:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom is.ru.mapp.MovieSearch:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd is.ru.mapp.MovieSearch:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart is.ru.mapp.MovieSearch:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop is.ru.mapp.MovieSearch:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor is.ru.mapp.MovieSearch:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance is.ru.mapp.MovieSearch:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor is.ru.mapp.MovieSearch:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01011f, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps is.ru.mapp.MovieSearch:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f010031
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name is.ru.mapp.MovieSearch:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled is.ru.mapp.MovieSearch:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength is.ru.mapp.MovieSearch:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance is.ru.mapp.MovieSearch:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance is.ru.mapp.MovieSearch:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled is.ru.mapp.MovieSearch:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance is.ru.mapp.MovieSearch:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled is.ru.mapp.MovieSearch:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled is.ru.mapp.MovieSearch:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance is.ru.mapp.MovieSearch:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription is.ru.mapp.MovieSearch:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable is.ru.mapp.MovieSearch:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled is.ru.mapp.MovieSearch:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint is.ru.mapp.MovieSearch:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode is.ru.mapp.MovieSearch:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01012f, 0x7f010130,
0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134,
0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138,
0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity is.ru.mapp.MovieSearch:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription is.ru.mapp.MovieSearch:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon is.ru.mapp.MovieSearch:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd is.ru.mapp.MovieSearch:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions is.ru.mapp.MovieSearch:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft is.ru.mapp.MovieSearch:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight is.ru.mapp.MovieSearch:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart is.ru.mapp.MovieSearch:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation is.ru.mapp.MovieSearch:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo is.ru.mapp.MovieSearch:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription is.ru.mapp.MovieSearch:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight is.ru.mapp.MovieSearch:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription is.ru.mapp.MovieSearch:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon is.ru.mapp.MovieSearch:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme is.ru.mapp.MovieSearch:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle is.ru.mapp.MovieSearch:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance is.ru.mapp.MovieSearch:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor is.ru.mapp.MovieSearch:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title is.ru.mapp.MovieSearch:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin is.ru.mapp.MovieSearch:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom is.ru.mapp.MovieSearch:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd is.ru.mapp.MovieSearch:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart is.ru.mapp.MovieSearch:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop is.ru.mapp.MovieSearch:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins is.ru.mapp.MovieSearch:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance is.ru.mapp.MovieSearch:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor is.ru.mapp.MovieSearch:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010007, 0x7f01000a,
0x7f01000e, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010021,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4,
0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd is.ru.mapp.MovieSearch:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart is.ru.mapp.MovieSearch:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme is.ru.mapp.MovieSearch:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f0100e6, 0x7f0100e7,
0x7f0100e8
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name is.ru.mapp.MovieSearch:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint is.ru.mapp.MovieSearch:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode is.ru.mapp.MovieSearch:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f0100e9, 0x7f0100ea
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name is.ru.mapp.MovieSearch:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name is.ru.mapp.MovieSearch:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
] | |
7ce92e173dce47b9b5f11364198a769b0ecc2500 | ae917a1b476322e614d4865c79c57152acf2115f | /src/main/java/common/model/Event.java | 1684385b850419c87cbf44008cf3d30eb90b1613 | [] | no_license | Phornrawin/calendar | 98f979e919bb1a1b0c600354ce7001ce0fa9fe2f | 001addb963956adad925b05b1b42420087adadad | refs/heads/master | 2021-01-20T09:49:46.316588 | 2017-11-02T08:44:02 | 2017-11-02T08:44:02 | 101,608,891 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,336 | java | package common.model;
import java.io.Serializable;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
/**
* Created by Phornrawin on 27/8/2560.
*/
public class Event implements Serializable{
private String topic, detail;
private Date date;
private SimpleDateFormat format;
private String type;
public String getType() {
return type;
}
public Event(String topic, String detail, Date date, String type) {
this.topic = topic;
this.detail = detail;
this.date = date;
this.format = new SimpleDateFormat("E dd MMM yyyy HH:mm", Locale.ENGLISH);
this.type = type;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getDetail() {
return detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public String getDateToString(){
return format.format(date);
}
public String toString(){
return String.format("Date: %s\n" + "Topic: %s\n" + "Detail: %s\n" + "Type: %s\n", format.format(date), topic, detail, type);
}
}
| [
"[email protected]"
] | |
d5f6dba0cd49be8c6801d3117fa3817ffe479c27 | f5da190caa872091c18e68c82eae5ad887892bc9 | /src/main/java/com/ats/test/web/rest/vm/LoginVM.java | adef3270b8becc97e1c3934e861803ef81090f0e | [] | no_license | koyaja/jhipsterTest | de89f13ff8d224db9e024d334d62526201a7e112 | cf1456d66cd9f0e3958a2dca7efb64b6d5e7f5a8 | refs/heads/master | 2020-03-14T03:39:34.457397 | 2018-04-28T16:12:00 | 2018-04-28T16:12:00 | 131,424,644 | 0 | 0 | null | 2018-04-28T19:44:21 | 2018-04-28T16:11:58 | Java | UTF-8 | Java | false | false | 1,111 | java | package com.ats.test.web.rest.vm;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
/**
* View Model object for storing a user's credentials.
*/
public class LoginVM {
@NotNull
@Size(min = 1, max = 50)
private String username;
@NotNull
@Size(min = ManagedUserVM.PASSWORD_MIN_LENGTH, max = ManagedUserVM.PASSWORD_MAX_LENGTH)
private String password;
private Boolean rememberMe;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Boolean isRememberMe() {
return rememberMe;
}
public void setRememberMe(Boolean rememberMe) {
this.rememberMe = rememberMe;
}
@Override
public String toString() {
return "LoginVM{" +
"username='" + username + '\'' +
", rememberMe=" + rememberMe +
'}';
}
}
| [
"[email protected]"
] | |
2f23345939f7b57cb33d04117978ac6e63e8b048 | 382a9cd5f069bafbcd97f61960fc51cdd6c00b19 | /java/com/example/smartid/RecyclerAdapterAttendance.java | 6da03aa7e14648c4a0e2f21f130d65b3bf566f50 | [
"MIT"
] | permissive | sayam56/UIU_Smart_Card | d92d5704b33a20755e226d3abec49589ae7c3329 | 9d75c1656bf5a590832ffe397a5b1e5c313be0f3 | refs/heads/master | 2023-01-19T08:27:54.380792 | 2020-11-20T05:57:06 | 2020-11-20T05:57:06 | 267,816,557 | 1 | 0 | MIT | 2020-05-31T06:27:55 | 2020-05-29T09:19:02 | Java | UTF-8 | Java | false | false | 2,093 | java | package com.example.smartid;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import org.w3c.dom.Text;
import java.util.List;
public class RecyclerAdapterAttendance extends RecyclerView.Adapter<RecyclerAdapterAttendance.ViewHolderAtt>{
List<Attendance> attList;
private Context attCtx;
public static int pos = 0;
public RecyclerAdapterAttendance(List<Attendance> attList, Context attCtx) {
this.attList = attList;
this.attCtx = attCtx;
}
@NonNull
@Override
public ViewHolderAtt onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
View view = layoutInflater.inflate(R.layout.row_att, parent, false);
ViewHolderAtt viewHolderAtt = new ViewHolderAtt(view);
return viewHolderAtt;
}
@Override
public void onBindViewHolder(@NonNull ViewHolderAtt holder, int position) {
Attendance attendance = attList.get(position);
pos=position;
holder.datetv.setText(attendance.getDate());
holder.presentTv.setText("Present");
}
@Override
public int getItemCount() {
return attList.size();
}
class ViewHolderAtt extends RecyclerView.ViewHolder implements View.OnClickListener{
ImageView def;
TextView datetv,presentTv;
public ViewHolderAtt(@NonNull View itemView) {
super(itemView);
def = itemView.findViewById(R.id.defImage);
datetv = itemView.findViewById(R.id.dateTv);
presentTv = itemView.findViewById(R.id.presentTv);
itemView.setOnClickListener(this);
}
@Override
public void onClick(View view) {
//
}
}
}
| [
"[email protected]"
] | |
c31e103290a3e388e0ea81dbd1c1de76fde06e7b | 500b104bc8ed57d5daead3df2b20738059b7ef9a | /android/src/com/android/tools/idea/lint/AndroidLintAnimatorKeepInspection.java | 1d70ff3a221209e9e7d1e9cfc1c1b95df41fbdfe | [] | no_license | RepoForks/android-2 | a9eb30effe202ef0b1ae7ff44d1b24ffde863aff | a69a3102b8bde36f434d72bb30bfe7e7628cf4ef | refs/heads/master | 2021-09-01T05:40:37.325999 | 2017-12-21T16:54:18 | 2017-12-21T16:54:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,587 | java | /*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tools.idea.lint;
import com.android.tools.lint.checks.ObjectAnimatorDetector;
import com.android.tools.lint.detector.api.TextFormat;
import com.intellij.codeInsight.AnnotationUtil;
import com.intellij.codeInsight.FileModificationService;
import com.intellij.codeInsight.intention.AddAnnotationFix;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiAnnotation;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiModifierList;
import com.intellij.psi.PsiModifierListOwner;
import com.intellij.psi.util.PsiTreeUtil;
import org.jetbrains.android.inspections.lint.AndroidLintInspectionBase;
import org.jetbrains.android.inspections.lint.AndroidLintQuickFix;
import org.jetbrains.android.inspections.lint.AndroidQuickfixContexts;
import org.jetbrains.android.util.AndroidBundle;
import org.jetbrains.annotations.NotNull;
import static com.android.tools.lint.checks.ObjectAnimatorDetector.KEEP_ANNOTATION;
public class AndroidLintAnimatorKeepInspection extends AndroidLintInspectionBase {
public AndroidLintAnimatorKeepInspection() {
super(AndroidBundle.message("android.lint.inspections.animator.keep"), ObjectAnimatorDetector.MISSING_KEEP);
}
@NotNull
@Override
public AndroidLintQuickFix[] getQuickFixes(@NotNull PsiElement startElement, @NotNull PsiElement endElement, @NotNull String message) {
return new AndroidLintQuickFix[]{
new AndroidLintQuickFix() {
@Override
public void apply(@NotNull PsiElement startElement,
@NotNull PsiElement endElement,
@NotNull AndroidQuickfixContexts.Context context) {
if (!ObjectAnimatorDetector.isAddKeepErrorMessage(message, TextFormat.RAW)) {
return;
}
PsiModifierListOwner container = PsiTreeUtil.getParentOfType(startElement, PsiModifierListOwner.class);
if (container == null) {
return;
}
if (!FileModificationService.getInstance().preparePsiElementForWrite(container)) {
return;
}
final PsiModifierList modifierList = container.getModifierList();
if (modifierList != null) {
PsiAnnotation annotation = AnnotationUtil.findAnnotation(container, KEEP_ANNOTATION);
if (annotation == null) {
Project project = startElement.getProject();
new AddAnnotationFix(KEEP_ANNOTATION, container).invoke(project, null, container.getContainingFile());
}
}
}
@Override
public boolean isApplicable(@NotNull PsiElement startElement,
@NotNull PsiElement endElement,
@NotNull AndroidQuickfixContexts.ContextType contextType) {
return true;
}
@NotNull
@Override
public String getName() {
return "Annotate with @Keep";
}
}
};
}
}
| [
"[email protected]"
] | |
038cfa2d7d141de8e7f0fe78a13030a1404ad6d8 | 1007184b040bd69e37bb0998a379500c1fda7bad | /RequerimientoBPM/src/main/java/com/cajasullana/bpmprojects/requerimientobpm/Requerimiento.java | fd24b621f6f3b26c6e1572201d038098bc901656 | [] | no_license | earauco/jbpmRequerimientoCajaSullana | 6a0973361e16929d1bdb9cd762054904eb92bfac | 53997e96fbf42de7873cb36a1fa3094bfa3f4c13 | refs/heads/master | 2021-01-02T22:30:22.850961 | 2015-10-07T20:27:50 | 2015-10-07T20:27:50 | 42,281,991 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,150 | java | package com.cajasullana.bpmprojects.requerimientobpm;
/**
* This class was automatically generated by the data modeler tool.
*/
public class Requerimiento implements java.io.Serializable
{
static final long serialVersionUID = 1L;
@org.kie.api.definition.type.Label("Fecha")
private java.util.Date fecha;
@org.kie.api.definition.type.Label("Cliente")
private com.cajasullana.bpmprojects.requerimientobpm.Cliente cliente;
@org.kie.api.definition.type.Label("Detalle")
private java.lang.String detalle;
@org.kie.api.definition.type.Label("Canal de Respuesta")
private java.lang.String canalRpta;
@org.kie.api.definition.type.Label("Plazo M\u00E1ximo de Atenci\u00F3n")
private java.lang.String plazoAtencion;
public Requerimiento()
{
}
public java.util.Date getFecha()
{
return this.fecha;
}
public void setFecha(java.util.Date fecha)
{
this.fecha = fecha;
}
public com.cajasullana.bpmprojects.requerimientobpm.Cliente getCliente()
{
return this.cliente;
}
public void setCliente(
com.cajasullana.bpmprojects.requerimientobpm.Cliente cliente)
{
this.cliente = cliente;
}
public java.lang.String getDetalle()
{
return this.detalle;
}
public void setDetalle(java.lang.String detalle)
{
this.detalle = detalle;
}
public java.lang.String getCanalRpta()
{
return this.canalRpta;
}
public void setCanalRpta(java.lang.String canalRpta)
{
this.canalRpta = canalRpta;
}
public java.lang.String getPlazoAtencion()
{
return this.plazoAtencion;
}
public void setPlazoAtencion(java.lang.String plazoAtencion)
{
this.plazoAtencion = plazoAtencion;
}
public Requerimiento(java.util.Date fecha,
com.cajasullana.bpmprojects.requerimientobpm.Cliente cliente,
java.lang.String detalle, java.lang.String canalRpta,
java.lang.String plazoAtencion)
{
this.fecha = fecha;
this.cliente = cliente;
this.detalle = detalle;
this.canalRpta = canalRpta;
this.plazoAtencion = plazoAtencion;
}
} | [
""
] | |
b0944a337df2c96bcd6b6a284c61cd42fc485660 | 5a5e195e0b420a6e218cb44ef916fab167192260 | /src/main/java/com/example/controller/MainController.java | 1f3d666e8e9c755a17b1f430d1bc18cba7855600 | [] | no_license | KrzysztofS20/employee-administration | 64b59481a6398c557f3132c596bf0161627b7459 | 4d97ba45990422ba72fdf8148d9e307c666692d4 | refs/heads/master | 2023-07-14T15:16:34.705528 | 2021-08-19T18:08:02 | 2021-08-19T18:08:02 | 398,033,465 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 272 | java | package com.example.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class MainController {
@GetMapping("/index")
public String index() {
return "index";
}
}
| [
"[email protected]"
] | |
9b1681047dc1f443d12c813cc6763af50023637b | afc46c6c1ea4514b32c202f154ea729fee0840a5 | /Exercism/java/diamond/src/main/java/DiamondPrinter.java | 186cc3f66265d5a8856d93e5ba6bbb16ef52da86 | [] | no_license | Kaustubh2526/Diamond | d7419db8bc23cd5f48f575b5d8dc9dcef6135d52 | 2e78fa624d0d4a039fdc66740082e8449bce7dc4 | refs/heads/master | 2020-12-12T22:10:20.466718 | 2020-01-16T05:28:55 | 2020-01-16T05:28:55 | 234,242,117 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,335 | java | import java.util.ArrayList;
import java.util.List;
class diamPrinter {
List<String> printToList(char a) {
List<String> diam = new ArrayList<>();
if(a=='A'){
diam.add("A");
return diam;
}
else{
int length = a-'A'+1;
System.out.println("hello");
String[] storage = new String[length];
String temp="";
for(int i=0;i<length-1;i++){
temp=temp+" ";
}
temp=temp+"A";
for(int i=0;i<length-1;i++){
temp=temp+" ";
}
storage[0] = temp;
temp="";
for(int i=1;i<length;i++){
for(int j=0;j<2*length-1;j++){
int point = length-i-1;
if(j==point||j==(2*length-1)-point-1){
temp=temp+((char)('A'+i));
}
else{
temp = temp+" ";
}
}
storage[i] = temp;
temp = "";
}
for(int i=0;i<length;i++){
diam.add(storage[i]);
}
for(int i=length-2;i>=0;i--){
diam.add(storage[i]);
}
return diam;
}
}
}
| [
"[email protected]"
] | |
0f366b3fd510e20584ade0eafd21ad22c4e97762 | 50406919a471b52e081dcb916e3be62a4eb139bd | /src/main/java/edu/clemson/cs/rsrg/statushandling/exception/SourceErrorException.java | 5beccf7b6a8697857240931e6061acaf2c1f94d9 | [
"BSD-3-Clause"
] | permissive | sp2020jarvan/RESOLVE | db01d179c19a2e5e988d1f36849bddf1c46c085e | 0ce6b918f4ce62c124237a0e2e3eb5b4edf0709f | refs/heads/master | 2023-02-26T23:14:27.600142 | 2021-02-10T20:04:31 | 2021-02-10T20:04:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,963 | java | /*
* SourceErrorException.java
* ---------------------------------
* Copyright (c) 2020
* RESOLVE Software Research Group
* School of Computing
* Clemson University
* All rights reserved.
* ---------------------------------
* This file is subject to the terms and conditions defined in
* file 'LICENSE.txt', which is part of this source code package.
*/
package edu.clemson.cs.rsrg.statushandling.exception;
import edu.clemson.cs.rsrg.parsing.data.Location;
import edu.clemson.cs.rsrg.parsing.data.PosSymbol;
/**
* <p>
* The default source error exception for the compiler.
* </p>
*
* @author Yu-Shan Sun
* @version 2.0
*/
public class SourceErrorException extends CompilerException {
// ===========================================================
// Member Fields
// ===========================================================
/**
* <p>
* Serial version for Serializable objects
* </p>
*/
private static final long serialVersionUID = 1L;
// ==========================================================
// Constructors
// ==========================================================
/**
* <p>
* This constructor takes in a throwable cause and a message for the symbol
* that caused an source
* exception to be thrown.
* </p>
*
* @param message Message to be displayed when the exception is thrown.
* @param symbol Offending symbol
* @param cause Cause of the exception.
*/
public SourceErrorException(String message, PosSymbol symbol,
Throwable cause) {
super(message, symbol, cause);
}
/**
* <p>
* This constructor takes in a message for the symbol that caused an source
* exception to be
* thrown.
* </p>
*
* @param message Message to be displayed when the exception is thrown.
* @param symbol Offending symbol
*/
public SourceErrorException(String message, PosSymbol symbol) {
super(message, symbol, null);
}
/**
* <p>
* This constructor takes in a message for the location that caused an
* source exception to be
* thrown.
* </p>
*
* @param message Message to be displayed when the exception is thrown.
* @param location Location where the error occurred.
*/
public SourceErrorException(String message, Location location) {
super(message, location, null);
}
/**
* <p>
* This constructor takes in a throwable cause and a message for the
* location that caused an
* source exception to be thrown.
* </p>
*
* @param message Message to be displayed when the exception is thrown.
* @param location Location where the error occurred.
* @param cause Cause of the exception.
*/
public SourceErrorException(String message, Location location,
Throwable cause) {
super(message, location, cause);
}
}
| [
"[email protected]"
] | |
b1c98fc0132c776e0c138e1099d08449e18175d6 | 6fa701cdaa0d83caa0d3cbffe39b40e54bf3d386 | /google/apps/drive/activity/v2/google-apps-drive-activity-v2-java/proto-google-apps-drive-activity-v2-java/src/main/java/com/google/apps/drive/activity/v2/QueryDriveActivityResponse.java | f91269e45ca6d90c0939597b833627d5af47af5d | [
"Apache-2.0"
] | permissive | oltoco/googleapis-gen | bf40cfad61b4217aca07068bd4922a86e3bbd2d5 | 00ca50bdde80906d6f62314ef4f7630b8cdb6e15 | refs/heads/master | 2023-07-17T22:11:47.848185 | 2021-08-29T20:39:47 | 2021-08-29T20:39:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | true | 35,913 | java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/apps/drive/activity/v2/query_drive_activity_response.proto
package com.google.apps.drive.activity.v2;
/**
* <pre>
* Response message for querying Drive activity.
* </pre>
*
* Protobuf type {@code google.apps.drive.activity.v2.QueryDriveActivityResponse}
*/
public final class QueryDriveActivityResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.apps.drive.activity.v2.QueryDriveActivityResponse)
QueryDriveActivityResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use QueryDriveActivityResponse.newBuilder() to construct.
private QueryDriveActivityResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private QueryDriveActivityResponse() {
activities_ = java.util.Collections.emptyList();
nextPageToken_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new QueryDriveActivityResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private QueryDriveActivityResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
activities_ = new java.util.ArrayList<com.google.apps.drive.activity.v2.DriveActivity>();
mutable_bitField0_ |= 0x00000001;
}
activities_.add(
input.readMessage(com.google.apps.drive.activity.v2.DriveActivity.parser(), extensionRegistry));
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
nextPageToken_ = s;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
activities_ = java.util.Collections.unmodifiableList(activities_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.apps.drive.activity.v2.QueryDriveActivityResponseProto.internal_static_google_apps_drive_activity_v2_QueryDriveActivityResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.apps.drive.activity.v2.QueryDriveActivityResponseProto.internal_static_google_apps_drive_activity_v2_QueryDriveActivityResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.apps.drive.activity.v2.QueryDriveActivityResponse.class, com.google.apps.drive.activity.v2.QueryDriveActivityResponse.Builder.class);
}
public static final int ACTIVITIES_FIELD_NUMBER = 1;
private java.util.List<com.google.apps.drive.activity.v2.DriveActivity> activities_;
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
@java.lang.Override
public java.util.List<com.google.apps.drive.activity.v2.DriveActivity> getActivitiesList() {
return activities_;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
@java.lang.Override
public java.util.List<? extends com.google.apps.drive.activity.v2.DriveActivityOrBuilder>
getActivitiesOrBuilderList() {
return activities_;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
@java.lang.Override
public int getActivitiesCount() {
return activities_.size();
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
@java.lang.Override
public com.google.apps.drive.activity.v2.DriveActivity getActivities(int index) {
return activities_.get(index);
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
@java.lang.Override
public com.google.apps.drive.activity.v2.DriveActivityOrBuilder getActivitiesOrBuilder(
int index) {
return activities_.get(index);
}
public static final int NEXT_PAGE_TOKEN_FIELD_NUMBER = 2;
private volatile java.lang.Object nextPageToken_;
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @return The nextPageToken.
*/
@java.lang.Override
public java.lang.String getNextPageToken() {
java.lang.Object ref = nextPageToken_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
nextPageToken_ = s;
return s;
}
}
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @return The bytes for nextPageToken.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNextPageTokenBytes() {
java.lang.Object ref = nextPageToken_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nextPageToken_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < activities_.size(); i++) {
output.writeMessage(1, activities_.get(i));
}
if (!getNextPageTokenBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nextPageToken_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < activities_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, activities_.get(i));
}
if (!getNextPageTokenBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nextPageToken_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.apps.drive.activity.v2.QueryDriveActivityResponse)) {
return super.equals(obj);
}
com.google.apps.drive.activity.v2.QueryDriveActivityResponse other = (com.google.apps.drive.activity.v2.QueryDriveActivityResponse) obj;
if (!getActivitiesList()
.equals(other.getActivitiesList())) return false;
if (!getNextPageToken()
.equals(other.getNextPageToken())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getActivitiesCount() > 0) {
hash = (37 * hash) + ACTIVITIES_FIELD_NUMBER;
hash = (53 * hash) + getActivitiesList().hashCode();
}
hash = (37 * hash) + NEXT_PAGE_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getNextPageToken().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.apps.drive.activity.v2.QueryDriveActivityResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* <pre>
* Response message for querying Drive activity.
* </pre>
*
* Protobuf type {@code google.apps.drive.activity.v2.QueryDriveActivityResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:google.apps.drive.activity.v2.QueryDriveActivityResponse)
com.google.apps.drive.activity.v2.QueryDriveActivityResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.apps.drive.activity.v2.QueryDriveActivityResponseProto.internal_static_google_apps_drive_activity_v2_QueryDriveActivityResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.apps.drive.activity.v2.QueryDriveActivityResponseProto.internal_static_google_apps_drive_activity_v2_QueryDriveActivityResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.apps.drive.activity.v2.QueryDriveActivityResponse.class, com.google.apps.drive.activity.v2.QueryDriveActivityResponse.Builder.class);
}
// Construct using com.google.apps.drive.activity.v2.QueryDriveActivityResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getActivitiesFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (activitiesBuilder_ == null) {
activities_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
activitiesBuilder_.clear();
}
nextPageToken_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.apps.drive.activity.v2.QueryDriveActivityResponseProto.internal_static_google_apps_drive_activity_v2_QueryDriveActivityResponse_descriptor;
}
@java.lang.Override
public com.google.apps.drive.activity.v2.QueryDriveActivityResponse getDefaultInstanceForType() {
return com.google.apps.drive.activity.v2.QueryDriveActivityResponse.getDefaultInstance();
}
@java.lang.Override
public com.google.apps.drive.activity.v2.QueryDriveActivityResponse build() {
com.google.apps.drive.activity.v2.QueryDriveActivityResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.apps.drive.activity.v2.QueryDriveActivityResponse buildPartial() {
com.google.apps.drive.activity.v2.QueryDriveActivityResponse result = new com.google.apps.drive.activity.v2.QueryDriveActivityResponse(this);
int from_bitField0_ = bitField0_;
if (activitiesBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
activities_ = java.util.Collections.unmodifiableList(activities_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.activities_ = activities_;
} else {
result.activities_ = activitiesBuilder_.build();
}
result.nextPageToken_ = nextPageToken_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.apps.drive.activity.v2.QueryDriveActivityResponse) {
return mergeFrom((com.google.apps.drive.activity.v2.QueryDriveActivityResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.apps.drive.activity.v2.QueryDriveActivityResponse other) {
if (other == com.google.apps.drive.activity.v2.QueryDriveActivityResponse.getDefaultInstance()) return this;
if (activitiesBuilder_ == null) {
if (!other.activities_.isEmpty()) {
if (activities_.isEmpty()) {
activities_ = other.activities_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureActivitiesIsMutable();
activities_.addAll(other.activities_);
}
onChanged();
}
} else {
if (!other.activities_.isEmpty()) {
if (activitiesBuilder_.isEmpty()) {
activitiesBuilder_.dispose();
activitiesBuilder_ = null;
activities_ = other.activities_;
bitField0_ = (bitField0_ & ~0x00000001);
activitiesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getActivitiesFieldBuilder() : null;
} else {
activitiesBuilder_.addAllMessages(other.activities_);
}
}
}
if (!other.getNextPageToken().isEmpty()) {
nextPageToken_ = other.nextPageToken_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.apps.drive.activity.v2.QueryDriveActivityResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.apps.drive.activity.v2.QueryDriveActivityResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List<com.google.apps.drive.activity.v2.DriveActivity> activities_ =
java.util.Collections.emptyList();
private void ensureActivitiesIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
activities_ = new java.util.ArrayList<com.google.apps.drive.activity.v2.DriveActivity>(activities_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.apps.drive.activity.v2.DriveActivity, com.google.apps.drive.activity.v2.DriveActivity.Builder, com.google.apps.drive.activity.v2.DriveActivityOrBuilder> activitiesBuilder_;
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public java.util.List<com.google.apps.drive.activity.v2.DriveActivity> getActivitiesList() {
if (activitiesBuilder_ == null) {
return java.util.Collections.unmodifiableList(activities_);
} else {
return activitiesBuilder_.getMessageList();
}
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public int getActivitiesCount() {
if (activitiesBuilder_ == null) {
return activities_.size();
} else {
return activitiesBuilder_.getCount();
}
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public com.google.apps.drive.activity.v2.DriveActivity getActivities(int index) {
if (activitiesBuilder_ == null) {
return activities_.get(index);
} else {
return activitiesBuilder_.getMessage(index);
}
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder setActivities(
int index, com.google.apps.drive.activity.v2.DriveActivity value) {
if (activitiesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureActivitiesIsMutable();
activities_.set(index, value);
onChanged();
} else {
activitiesBuilder_.setMessage(index, value);
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder setActivities(
int index, com.google.apps.drive.activity.v2.DriveActivity.Builder builderForValue) {
if (activitiesBuilder_ == null) {
ensureActivitiesIsMutable();
activities_.set(index, builderForValue.build());
onChanged();
} else {
activitiesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder addActivities(com.google.apps.drive.activity.v2.DriveActivity value) {
if (activitiesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureActivitiesIsMutable();
activities_.add(value);
onChanged();
} else {
activitiesBuilder_.addMessage(value);
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder addActivities(
int index, com.google.apps.drive.activity.v2.DriveActivity value) {
if (activitiesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureActivitiesIsMutable();
activities_.add(index, value);
onChanged();
} else {
activitiesBuilder_.addMessage(index, value);
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder addActivities(
com.google.apps.drive.activity.v2.DriveActivity.Builder builderForValue) {
if (activitiesBuilder_ == null) {
ensureActivitiesIsMutable();
activities_.add(builderForValue.build());
onChanged();
} else {
activitiesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder addActivities(
int index, com.google.apps.drive.activity.v2.DriveActivity.Builder builderForValue) {
if (activitiesBuilder_ == null) {
ensureActivitiesIsMutable();
activities_.add(index, builderForValue.build());
onChanged();
} else {
activitiesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder addAllActivities(
java.lang.Iterable<? extends com.google.apps.drive.activity.v2.DriveActivity> values) {
if (activitiesBuilder_ == null) {
ensureActivitiesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, activities_);
onChanged();
} else {
activitiesBuilder_.addAllMessages(values);
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder clearActivities() {
if (activitiesBuilder_ == null) {
activities_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
activitiesBuilder_.clear();
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public Builder removeActivities(int index) {
if (activitiesBuilder_ == null) {
ensureActivitiesIsMutable();
activities_.remove(index);
onChanged();
} else {
activitiesBuilder_.remove(index);
}
return this;
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public com.google.apps.drive.activity.v2.DriveActivity.Builder getActivitiesBuilder(
int index) {
return getActivitiesFieldBuilder().getBuilder(index);
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public com.google.apps.drive.activity.v2.DriveActivityOrBuilder getActivitiesOrBuilder(
int index) {
if (activitiesBuilder_ == null) {
return activities_.get(index); } else {
return activitiesBuilder_.getMessageOrBuilder(index);
}
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public java.util.List<? extends com.google.apps.drive.activity.v2.DriveActivityOrBuilder>
getActivitiesOrBuilderList() {
if (activitiesBuilder_ != null) {
return activitiesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(activities_);
}
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public com.google.apps.drive.activity.v2.DriveActivity.Builder addActivitiesBuilder() {
return getActivitiesFieldBuilder().addBuilder(
com.google.apps.drive.activity.v2.DriveActivity.getDefaultInstance());
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public com.google.apps.drive.activity.v2.DriveActivity.Builder addActivitiesBuilder(
int index) {
return getActivitiesFieldBuilder().addBuilder(
index, com.google.apps.drive.activity.v2.DriveActivity.getDefaultInstance());
}
/**
* <pre>
* List of activity requested.
* </pre>
*
* <code>repeated .google.apps.drive.activity.v2.DriveActivity activities = 1;</code>
*/
public java.util.List<com.google.apps.drive.activity.v2.DriveActivity.Builder>
getActivitiesBuilderList() {
return getActivitiesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.apps.drive.activity.v2.DriveActivity, com.google.apps.drive.activity.v2.DriveActivity.Builder, com.google.apps.drive.activity.v2.DriveActivityOrBuilder>
getActivitiesFieldBuilder() {
if (activitiesBuilder_ == null) {
activitiesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.apps.drive.activity.v2.DriveActivity, com.google.apps.drive.activity.v2.DriveActivity.Builder, com.google.apps.drive.activity.v2.DriveActivityOrBuilder>(
activities_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
activities_ = null;
}
return activitiesBuilder_;
}
private java.lang.Object nextPageToken_ = "";
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @return The nextPageToken.
*/
public java.lang.String getNextPageToken() {
java.lang.Object ref = nextPageToken_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
nextPageToken_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @return The bytes for nextPageToken.
*/
public com.google.protobuf.ByteString
getNextPageTokenBytes() {
java.lang.Object ref = nextPageToken_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nextPageToken_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @param value The nextPageToken to set.
* @return This builder for chaining.
*/
public Builder setNextPageToken(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
nextPageToken_ = value;
onChanged();
return this;
}
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @return This builder for chaining.
*/
public Builder clearNextPageToken() {
nextPageToken_ = getDefaultInstance().getNextPageToken();
onChanged();
return this;
}
/**
* <pre>
* Token to retrieve the next page of results, or
* empty if there are no more results in the list.
* </pre>
*
* <code>string next_page_token = 2;</code>
* @param value The bytes for nextPageToken to set.
* @return This builder for chaining.
*/
public Builder setNextPageTokenBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
nextPageToken_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.apps.drive.activity.v2.QueryDriveActivityResponse)
}
// @@protoc_insertion_point(class_scope:google.apps.drive.activity.v2.QueryDriveActivityResponse)
private static final com.google.apps.drive.activity.v2.QueryDriveActivityResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.apps.drive.activity.v2.QueryDriveActivityResponse();
}
public static com.google.apps.drive.activity.v2.QueryDriveActivityResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<QueryDriveActivityResponse>
PARSER = new com.google.protobuf.AbstractParser<QueryDriveActivityResponse>() {
@java.lang.Override
public QueryDriveActivityResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new QueryDriveActivityResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<QueryDriveActivityResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<QueryDriveActivityResponse> getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.apps.drive.activity.v2.QueryDriveActivityResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
| [
"bazel-bot-development[bot]@users.noreply.github.com"
] | bazel-bot-development[bot]@users.noreply.github.com |
bc6a0e94e8f95a8107e21d1981ca30b9ea27dee2 | ae0d4f528c889cbaba046197ac1a58fb774d38fe | /optaplanner-persistence/optaplanner-persistence-jackson/src/test/java/org/optaplanner/persistence/jackson/api/score/buildin/simplelong/SimpleLongScoreJacksonJsonSerializerAndDeserializerTest.java | 4494d6304cd1368af77f17d213185d6d8c269bc9 | [
"Apache-2.0"
] | permissive | guotechfin/optaplanner | 9ee4771bd55c7511c8a4f9753a3105f3dd511c9d | f66b33b580af92ec4b55f9ec2ac926a27dab3b1c | refs/heads/master | 2021-01-25T11:39:20.868655 | 2018-02-28T18:08:34 | 2018-02-28T18:08:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,337 | java | /*
* Copyright 2016 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.optaplanner.persistence.jackson.api.score.buildin.simplelong;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.junit.Test;
import org.optaplanner.core.api.score.buildin.simplelong.SimpleLongScore;
import org.optaplanner.persistence.jackson.api.score.AbstractScoreJacksonJsonSerializerAndDeserializerTest;
import org.optaplanner.persistence.jackson.api.score.ScoreJacksonJsonSerializer;
public class SimpleLongScoreJacksonJsonSerializerAndDeserializerTest extends AbstractScoreJacksonJsonSerializerAndDeserializerTest {
@Test
public void serializeAndDeserialize() {
assertSerializeAndDeserialize(null, new TestSimpleLongScoreWrapper(null));
SimpleLongScore score = SimpleLongScore.valueOf(1234L);
assertSerializeAndDeserialize(score, new TestSimpleLongScoreWrapper(score));
score = SimpleLongScore.valueOfUninitialized(-7, 1234L);
assertSerializeAndDeserialize(score, new TestSimpleLongScoreWrapper(score));
}
public static class TestSimpleLongScoreWrapper extends AbstractScoreJacksonJsonSerializerAndDeserializerTest.TestScoreWrapper<SimpleLongScore> {
@JsonSerialize(using = ScoreJacksonJsonSerializer.class)
@JsonDeserialize(using = SimpleLongScoreJacksonJsonDeserializer.class)
private SimpleLongScore score;
@SuppressWarnings("unused")
private TestSimpleLongScoreWrapper() {
}
public TestSimpleLongScoreWrapper(SimpleLongScore score) {
this.score = score;
}
@Override
public SimpleLongScore getScore() {
return score;
}
}
}
| [
"[email protected]"
] | |
150d52c6bf7ca6c13f0e221b929c3c895fa1742f | 6b89b2be6f2fa709d6697cbcded07d7548761420 | /src/com/ipartek/Principal.java | a10b18c5c23487fa7bc7e8214e3808b1c42bbe1f | [] | no_license | fpm92/Java-UF2404 | 3ee7f434e193b8d7c14b7489fd4acc7d0e714419 | ec95bab1a8c66bdbf0fb239cd4100d674286a401 | refs/heads/master | 2022-04-09T20:35:23.070296 | 2020-01-30T12:02:22 | 2020-01-30T12:02:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 99 | java | package com.ipartek;
public class Principal {
public static void main(String[] args) {
}
}
| [
"[email protected]"
] | |
919fd3c2337c38fc9d49de7da4adfe424a0feb61 | e9affefd4e89b3c7e2064fee8833d7838c0e0abc | /aws-java-sdk-connect/src/main/java/com/amazonaws/services/connect/model/transform/EvaluationFormQuestionTypePropertiesMarshaller.java | 178249ea8c6bd69915e023d3c839a96bc31a8608 | [
"Apache-2.0"
] | permissive | aws/aws-sdk-java | 2c6199b12b47345b5d3c50e425dabba56e279190 | bab987ab604575f41a76864f755f49386e3264b4 | refs/heads/master | 2023-08-29T10:49:07.379135 | 2023-08-28T21:05:55 | 2023-08-28T21:05:55 | 574,877 | 3,695 | 3,092 | Apache-2.0 | 2023-09-13T23:35:28 | 2010-03-22T23:34:58 | null | UTF-8 | Java | false | false | 2,502 | java | /*
* Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.connect.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.connect.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* EvaluationFormQuestionTypePropertiesMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class EvaluationFormQuestionTypePropertiesMarshaller {
private static final MarshallingInfo<StructuredPojo> NUMERIC_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("Numeric").build();
private static final MarshallingInfo<StructuredPojo> SINGLESELECT_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("SingleSelect").build();
private static final EvaluationFormQuestionTypePropertiesMarshaller instance = new EvaluationFormQuestionTypePropertiesMarshaller();
public static EvaluationFormQuestionTypePropertiesMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(EvaluationFormQuestionTypeProperties evaluationFormQuestionTypeProperties, ProtocolMarshaller protocolMarshaller) {
if (evaluationFormQuestionTypeProperties == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(evaluationFormQuestionTypeProperties.getNumeric(), NUMERIC_BINDING);
protocolMarshaller.marshall(evaluationFormQuestionTypeProperties.getSingleSelect(), SINGLESELECT_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}
| [
""
] | |
7b5b8cbed0c2233860408176aeaedfbdcac2a756 | 113edda5086e4c18c1b840a36a5bf28716e157b3 | /propagators/gcp/src/test/java/com/google/cloud/opentelemetry/propagators/PropagatorTest.java | 8db615b82f6f14cebaabbd1f774a6b18efefd1e0 | [
"Apache-2.0"
] | permissive | GoogleCloudPlatform/opentelemetry-operations-java | bcd39a8dccc59a2afa5531bdb18378ec0f2bb014 | 4ecc4f470819d1edd7b7d109397a4ffa9259fe7c | refs/heads/main | 2023-08-18T11:22:21.832910 | 2023-08-15T13:32:28 | 2023-08-15T13:32:28 | 244,484,601 | 40 | 37 | Apache-2.0 | 2023-08-15T13:32:30 | 2020-03-02T22:00:19 | Java | UTF-8 | Java | false | false | 5,815 | java | /*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.opentelemetry.propagators;
import io.opentelemetry.api.trace.Span;
import io.opentelemetry.api.trace.SpanContext;
import io.opentelemetry.api.trace.TraceFlags;
import io.opentelemetry.api.trace.TraceState;
import io.opentelemetry.context.Context;
import io.opentelemetry.context.propagation.TextMapGetter;
import io.opentelemetry.context.propagation.TextMapPropagator;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class PropagatorTest {
private static TextMapGetter<Map<String, String>> GETTER =
new TextMapGetter<Map<String, String>>() {
@Override
public Iterable<String> keys(Map<String, String> carrier) {
return carrier.keySet();
}
@Override
public String get(Map<String, String> carrier, String key) {
return carrier.get(key);
}
};
@Test
public void testExtractSampled() {
Context context = Context.root();
Map<String, String> carrier = new HashMap<>();
carrier.put("x-cloud-trace-context", "00000000000000000000000000000010/15;o=1");
TextMapPropagator propagator = new XCloudTraceContextPropagator(false);
// Now try to extract the value.
Context updated = propagator.extract(context, carrier, GETTER);
Span span = Span.fromContext(updated);
Assert.assertNotNull(span);
Assert.assertEquals("00000000000000000000000000000010", span.getSpanContext().getTraceId());
Assert.assertEquals("000000000000000f", span.getSpanContext().getSpanId());
Assert.assertEquals(true, span.getSpanContext().getTraceFlags().isSampled());
}
@Test
public void testExtractOneway() {
Context context = Context.root();
Map<String, String> carrier = new HashMap<>();
carrier.put("x-cloud-trace-context", "00000000000000000000000000000010/15;o=1");
TextMapPropagator propagator = new XCloudTraceContextPropagator(true);
// Now try to extract the value.
Context updated = propagator.extract(context, carrier, GETTER);
Span span = Span.fromContext(updated);
Assert.assertNotNull(span);
Assert.assertEquals("00000000000000000000000000000010", span.getSpanContext().getTraceId());
Assert.assertEquals("000000000000000f", span.getSpanContext().getSpanId());
Assert.assertEquals(true, span.getSpanContext().getTraceFlags().isSampled());
}
@Test
public void testExtractNotSampled() {
Context context = Context.root();
Map<String, String> carrier = new HashMap<>();
carrier.put("x-cloud-trace-context", "00000000000000000000000000000011/31;o=0");
TextMapPropagator propagator = new XCloudTraceContextPropagator(false);
// Now try to extract the value.
Context updated = propagator.extract(context, carrier, GETTER);
Span span = Span.fromContext(updated);
Assert.assertNotNull(span);
Assert.assertEquals("00000000000000000000000000000011", span.getSpanContext().getTraceId());
Assert.assertEquals("000000000000001f", span.getSpanContext().getSpanId());
Assert.assertEquals(false, span.getSpanContext().getTraceFlags().isSampled());
}
@Test
public void testNotInjectOneway() {
Span span =
Span.wrap(
SpanContext.create(
"00000000000000000000000000000001",
"0000000000000002",
TraceFlags.getSampled(),
TraceState.getDefault()));
Context context = Context.root().with(span);
Map<String, String> carrier = new HashMap<>();
TextMapPropagator propagator = new XCloudTraceContextPropagator(true);
// Now try to inject the value.
propagator.inject(context, carrier, Map::put);
Assert.assertNull(carrier.get("x-cloud-trace-context"));
}
@Test
public void testInjectSampled() {
Span span =
Span.wrap(
SpanContext.create(
"00000000000000000000000000000001",
"0000000000000002",
TraceFlags.getSampled(),
TraceState.getDefault()));
Context context = Context.root().with(span);
Map<String, String> carrier = new HashMap<>();
TextMapPropagator propagator = new XCloudTraceContextPropagator(false);
// Now try to inject the value.
propagator.inject(context, carrier, Map::put);
Assert.assertEquals(
"00000000000000000000000000000001/2;o=1", carrier.get("x-cloud-trace-context"));
}
@Test
public void testInjectNotSampled() {
Span span =
Span.wrap(
SpanContext.create(
"00000000000000000000000000000002",
"0000000000000013",
TraceFlags.getDefault(),
TraceState.getDefault()));
Context context = Context.root().with(span);
Map<String, String> carrier = new HashMap<>();
TextMapPropagator propagator = new XCloudTraceContextPropagator(false);
// Now try to inject the value.
propagator.inject(context, carrier, Map::put);
// Note - SpanID is hex (otel) -> decimal (gcp)
Assert.assertEquals(
"00000000000000000000000000000002/19;o=0", carrier.get("x-cloud-trace-context"));
}
}
| [
"[email protected]"
] | |
81a701fc3de3aff5c956a6df8353bf075198460a | 24f66774802ee019595b10c39a9c1dd17db0f622 | /src/replQuestions/Question111.java | 51198c82895e3bb15208678401349860a69c4d5a | [] | no_license | OmarSeker123/untitled2 | 00586010ae940db851b054096d0243dfbc1614f6 | 9795e3c75753186e4a859d90baeec00aba9812d9 | refs/heads/master | 2021-01-14T04:20:25.169440 | 2020-03-26T00:58:37 | 2020-03-26T00:58:37 | 242,597,185 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 280 | java | package replQuestions;
public class Question111 {
public static void main(String[] args) {
int k=1;
int total=0;
do {
total = total + (k * k);
k++;
}while (k<=50);
System.out.println(total);
}
}
| [
"[email protected]"
] | |
a0ba306d92b888217e60249414feec112d060043 | 696426a0680beea292e2f1f59c4a3115d95cdd73 | /test2/src/main/java/com/bw/test2/view/AView.java | 351636e2e50d12b83f9c2820b8c85f04531324ce | [] | no_license | Zzq1335267141/zzq0507monthtest | 9ebad3c0ea456676c5eeb432b47fcd31e671c0bf | 438f10a004d2802f520311534fcd89d93da5cb0f | refs/heads/master | 2020-05-22T07:05:28.251344 | 2019-05-12T13:22:20 | 2019-05-12T13:22:20 | 186,257,809 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 181 | java | package com.bw.test2.view;
/**
* Created by Android Studio.
* User: 张泽强
* Date: 2019/5/12
* Time: 14:03
*/
public interface AView {
void getResponse(String data);
}
| [
"[email protected]"
] | |
7cf97f57e588d751f99857e80b420f73c3553950 | d599a5e012b74eac02b97003f8923f64a210510a | /src/main/java/cn/nnnight/util/JsonDateTimeSerializer.java | 5f53e7d26255947a1c51226a523cdde01b79ccde | [] | no_license | fbicewind/nnnight | c66ca512bafc2e0ceffcabfc7110bf72459e105c | 732c5013f2f015f3bba823e2ef2c57d64a893c82 | refs/heads/master | 2021-01-09T23:41:42.756654 | 2018-01-31T03:54:08 | 2018-01-31T03:54:08 | 101,277,976 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 692 | java | package cn.nnnight.util;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import org.springframework.stereotype.Component;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component
public class JsonDateTimeSerializer extends JsonSerializer<Date> {
@Override
public void serialize(Date date, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws
IOException {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
jsonGenerator.writeString(sdf.format(date));
}
}
| [
"[email protected]"
] | |
cfc21801b8b5aeb5ad0bce23f7f8a145b2162cab | 2ff64b921f884cb59ad26848b3991ca2e2b8967f | /movieCatalog/src/main/java/in/charan/movieCatalog/model/response/MovieRating.java | 49cfff3c9a69bfd9fd682b9a3fbb699464d025f5 | [] | no_license | charankumarbr/MovieCatalog | 6b2a6a829be6c1c1c6e313a0232e30c7922a096e | 5d29bab23ccc42b0a8355d5d7867acbaf3e97088 | refs/heads/master | 2022-12-21T20:19:50.946192 | 2020-10-04T18:08:08 | 2020-10-04T18:08:08 | 297,319,655 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,276 | java | package in.charan.movieCatalog.model.response;
public class MovieRating {
private String movieId;
private String title;
private String desc;
private String releaseDate;
private int userRating;
public MovieRating() {
}
public MovieRating(String movieId, String title, String desc, String releaseDate, int userRating) {
this.movieId = movieId;
this.title = title;
this.desc = desc;
this.releaseDate = releaseDate;
this.userRating = userRating;
}
public String getMovieId() {
return movieId;
}
public void setMovieId(String movieId) {
this.movieId = movieId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public String getReleaseDate() {
return releaseDate;
}
public void setReleaseDate(String releaseDate) {
this.releaseDate = releaseDate;
}
public int getUserRating() {
return userRating;
}
public void setUserRating(int userRating) {
this.userRating = userRating;
}
}
| [
"[email protected]"
] | |
33173dbd7028e1422f12663c55f8d38ca3b00ec6 | dda81b93a12e0695dc1c85a6a8ca3785f2e36e23 | /spigot/work/decompile-93a89a75/net/minecraft/server/LootItemConditionBlockStateProperty.java | be01f43e71c06972a3bfc9d33b3e20fa43793378 | [] | no_license | skychwang/MindCraft | a4a8a337738b884af6ecc65c133b314418757a7d | 48923ed1c2b9fbc807a61619cc17001312082b83 | refs/heads/master | 2023-07-20T14:36:48.872240 | 2021-09-07T20:00:04 | 2021-09-07T20:00:04 | 336,148,107 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,657 | java | package net.minecraft.server;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonSerializationContext;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import java.util.function.Predicate;
public class LootItemConditionBlockStateProperty implements LootItemCondition {
private final Block a;
private final Map<IBlockState<?>, Object> b;
private final Predicate<IBlockData> c;
private LootItemConditionBlockStateProperty(Block block, Map<IBlockState<?>, Object> map) {
this.a = block;
this.b = ImmutableMap.copyOf(map);
this.c = a(block, map);
}
private static Predicate<IBlockData> a(Block block, Map<IBlockState<?>, Object> map) {
int i = map.size();
if (i == 0) {
return (iblockdata) -> {
return iblockdata.getBlock() == block;
};
} else if (i == 1) {
Entry<IBlockState<?>, Object> entry = (Entry) map.entrySet().iterator().next();
IBlockState<?> iblockstate = (IBlockState) entry.getKey();
Object object = entry.getValue();
return (iblockdata) -> {
return iblockdata.getBlock() == block && object.equals(iblockdata.get(iblockstate));
};
} else {
Predicate<IBlockData> predicate = (iblockdata) -> {
return iblockdata.getBlock() == block;
};
IBlockState iblockstate1;
Object object1;
for (Iterator iterator = map.entrySet().iterator(); iterator.hasNext();predicate = predicate.and((iblockdata) -> {
return object1.equals(iblockdata.get(iblockstate1));
})) {
Entry<IBlockState<?>, Object> entry1 = (Entry) iterator.next();
iblockstate1 = (IBlockState) entry1.getKey();
object1 = entry1.getValue();
}
return predicate;
}
}
@Override
public Set<LootContextParameter<?>> a() {
return ImmutableSet.of(LootContextParameters.BLOCK_STATE);
}
public boolean test(LootTableInfo loottableinfo) {
IBlockData iblockdata = (IBlockData) loottableinfo.getContextParameter(LootContextParameters.BLOCK_STATE);
return iblockdata != null && this.c.test(iblockdata);
}
public static LootItemConditionBlockStateProperty.a a(Block block) {
return new LootItemConditionBlockStateProperty.a(block);
}
public static class b extends LootItemCondition.b<LootItemConditionBlockStateProperty> {
private static <T extends Comparable<T>> String a(IBlockState<T> iblockstate, Object object) {
return iblockstate.a((Comparable) object);
}
protected b() {
super(new MinecraftKey("block_state_property"), LootItemConditionBlockStateProperty.class);
}
public void a(JsonObject jsonobject, LootItemConditionBlockStateProperty lootitemconditionblockstateproperty, JsonSerializationContext jsonserializationcontext) {
jsonobject.addProperty("block", IRegistry.BLOCK.getKey(lootitemconditionblockstateproperty.a).toString());
JsonObject jsonobject1 = new JsonObject();
lootitemconditionblockstateproperty.b.forEach((iblockstate, object) -> {
jsonobject1.addProperty(iblockstate.a(), a(iblockstate, object));
});
jsonobject.add("properties", jsonobject1);
}
@Override
public LootItemConditionBlockStateProperty b(JsonObject jsonobject, JsonDeserializationContext jsondeserializationcontext) {
MinecraftKey minecraftkey = new MinecraftKey(ChatDeserializer.h(jsonobject, "block"));
Block block = (Block) IRegistry.BLOCK.getOptional(minecraftkey).orElseThrow(() -> {
return new IllegalArgumentException("Can't find block " + minecraftkey);
});
BlockStateList<Block, IBlockData> blockstatelist = block.getStates();
Map<IBlockState<?>, Object> map = Maps.newHashMap();
if (jsonobject.has("properties")) {
JsonObject jsonobject1 = ChatDeserializer.t(jsonobject, "properties");
jsonobject1.entrySet().forEach((entry) -> {
String s = (String) entry.getKey();
IBlockState<?> iblockstate = blockstatelist.a(s);
if (iblockstate == null) {
throw new IllegalArgumentException("Block " + IRegistry.BLOCK.getKey(block) + " does not have property '" + s + "'");
} else {
String s1 = ChatDeserializer.a((JsonElement) entry.getValue(), "value");
Object object = iblockstate.b(s1).orElseThrow(() -> {
return new IllegalArgumentException("Block " + IRegistry.BLOCK.getKey(block) + " property '" + s + "' does not have value '" + s1 + "'");
});
map.put(iblockstate, object);
}
});
}
return new LootItemConditionBlockStateProperty(block, map);
}
}
public static class a implements LootItemCondition.a {
private final Block a;
private final Set<IBlockState<?>> b;
private final Map<IBlockState<?>, Object> c = Maps.newHashMap();
public a(Block block) {
this.a = block;
this.b = Sets.newIdentityHashSet();
this.b.addAll(block.getStates().d());
}
public <T extends Comparable<T>> LootItemConditionBlockStateProperty.a a(IBlockState<T> iblockstate, T t0) {
if (!this.b.contains(iblockstate)) {
throw new IllegalArgumentException("Block " + IRegistry.BLOCK.getKey(this.a) + " does not have property '" + iblockstate + "'");
} else if (!iblockstate.getValues().contains(t0)) {
throw new IllegalArgumentException("Block " + IRegistry.BLOCK.getKey(this.a) + " property '" + iblockstate + "' does not have value '" + t0 + "'");
} else {
this.c.put(iblockstate, t0);
return this;
}
}
@Override
public LootItemCondition build() {
return new LootItemConditionBlockStateProperty(this.a, this.c);
}
}
}
| [
"[email protected]"
] | |
e61ba7b7b2bb915c8b1ad66fad915535bad137bf | 95460aa445bb62eca02485b17b3465a9efb609a0 | /hw8/HW8.java | 37190667b92498d1b94b8ad72135dc64a5fad6f3 | [] | no_license | caoxantb/developh_hw23 | 0bfbe0a5720136b103ec34f3c3762b121a34a90e | e095a9a68a7c90478da498488d0fa89681fe266a | refs/heads/main | 2023-06-24T03:42:20.318100 | 2021-07-22T05:32:54 | 2021-07-22T05:32:54 | 388,321,182 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 853 | java | package hw8;
public final class HW8 {
private HW8() {
//
}
public static boolean isMultipleBasePalindrome(int num) {
int biNum = intToBi(num);
return isPalindrome(num) && isPalindrome(biNum);
}
public static boolean isPalindrome(int num) {
int tempNum = num;
int reversedNum = 0;
while (tempNum != 0) {
int lastDigit = tempNum % 10;
reversedNum = reversedNum * 10 + lastDigit;
tempNum /= 10;
}
return reversedNum == num;
}
public static Integer intToBi(int num) {
int count = 0;
int biNum = 0;
while (num != 0) {
int re = num % 2;
if (re == 1) biNum += Math.pow(10, count);
count += 1;
num /= 2;
}
return biNum;
}
}
| [
"[email protected]"
] | |
a79e9c3ef7be549ec23b75eebf79bf8156d72b4a | b6229db276ac9c351c6bb8a9bdca88f4e666e466 | /src/main/java/com/shipping/config/WebSecurityConfig.java | 1e9535d61b4d5c3b3c3dcf7525df94fbc338d260 | [] | no_license | david-enli/shipping-service | 4decb178374b1851b0f0724a75855701668e806b | e099f7934164b9c114b46f65789ba211c8342987 | refs/heads/master | 2022-06-26T16:28:24.493361 | 2020-03-01T22:23:08 | 2020-03-01T22:23:08 | 244,233,061 | 0 | 0 | null | 2020-10-13T19:58:52 | 2020-03-01T22:22:26 | Java | UTF-8 | Java | false | false | 576 | java | package com.shipping.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@EnableWebSecurity
@Configuration
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
}
} | [
"[email protected]"
] | |
80db40a1360a84a4588d5ef9f2047c66bee011de | aed7582be39933466b9568838189cc0147c51e0f | /src/main/java/com/company/service/impl/UserServiceImpl.java | f8853129cd097258fe33cdbe7f7d76b6a3e71fda | [] | no_license | xllxing/sso | ef3b42de3dabf4456080f561b71a7a682b6ca933 | 9793757b8161a28c09502ca7bd58be4b06480018 | refs/heads/master | 2022-07-04T12:58:59.035812 | 2019-11-28T11:45:22 | 2019-11-28T11:45:22 | 224,640,743 | 0 | 0 | null | 2022-06-21T02:20:10 | 2019-11-28T11:42:25 | Java | UTF-8 | Java | false | false | 964 | java | package com.company.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.company.bean.User;
import com.company.dao.IUserDao;
import com.company.service.IUserService;
/**
* @author xll
* @category 用户业务实现类
*/
@Service
public class UserServiceImpl implements IUserService {
@Autowired
IUserDao userDao;
@Override
public User login(String username, String userpass) {
return userDao.login(username, userpass);
}
@Override
public List<User> findlist() {
return userDao.findlist();
}
@Override
public boolean updateUser(User user) {
return userDao.updateUser(user)>0;
}
@Override
public boolean deleteUserByName(String username) {
return userDao.deleteUserByName(username)>0;
}
@Override
public boolean addUser(User user) {
return userDao.addUser(user)>0;
}
}
| [
"[email protected]"
] | |
fbbcb1a590bfcc9372da67f58a5e30b25e0a75cc | 70daf318d027f371ada3abeaaa31dd47651640d7 | /src/jdo/sta/bean/ABDSType.java | 1bcbc868147aa17c490e649d2a23ae815b142ae4 | [] | no_license | wangqing123654/web | 00613f6db653562e2e8edc14327649dc18b2aae6 | bd447877400291d3f35715ca9c7c7b1e79653531 | refs/heads/master | 2023-04-07T15:23:34.705954 | 2020-11-02T10:10:57 | 2020-11-02T10:10:57 | 309,329,277 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 2,110 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.06.30 at 10:28:02 ÉÏÎç CST
//
package jdo.sta.bean;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ABDSType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ABDSType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ABD" type="{}ABDType" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ABDSType", propOrder = {
"abd"
})
public class ABDSType {
@XmlElement(name = "ABD", required = true, nillable = true)
protected List<ABDType> abd;
/**
* Gets the value of the abd property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the abd property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getABD().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ABDType }
*
*
*/
public List<ABDType> getABD() {
if (abd == null) {
abd = new ArrayList<ABDType>();
}
return this.abd;
}
}
| [
"[email protected]"
] | |
05c13c7f570d165fa2a25fc34d8c38d88c5400b3 | 56ed12faef5df49ba73e7f83e1e8adaa79448985 | /src/main/java/steps/TravelSteps.java | 08c4d0d0aba15282494b24dfd148c7d6c7ebbf65 | [] | no_license | risen777/thirdtest | 316b79420fcd8cc899101729843734e7e342e066 | 7d989366276302b01676ff50f1549532e5e0f836 | refs/heads/master | 2021-05-08T16:54:19.329589 | 2018-02-05T20:32:57 | 2018-02-05T20:32:57 | 120,176,576 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 362 | java | package steps;
import ru.yandex.qatools.allure.annotations.Step;
import pages.TravelPage;
/**
* Created by Sergey
*/
public class TravelSteps extends BaseSteps {
@Step("выполнено нажатие на кнопку отправить заявку")
public void stepSendAppButton(){
new TravelPage(driver).sendButton.click();
}
}
| [
"[email protected]"
] | |
cbd1c6ac23d9c7b0523ad6a015ac4bfa145896e8 | 1e3001d4b2c020f3044b65b50bb6d37e7a9b1232 | /src/main/java/com/umesh/learning/multipleJPA/controller/LoginController.java | 768d6fb25ddedafbbe0204113398f0246af23da4 | [] | no_license | umesh936/multipleJPA | 7b315a23525f324f57807f269c4173253ce154fd | 33cc38c9bff33d168a1a13c09cf8b2d86cbf5a21 | refs/heads/master | 2021-01-10T02:01:46.676123 | 2016-04-12T06:11:01 | 2016-04-12T06:11:01 | 52,787,974 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,072 | java | package com.umesh.learning.multipleJPA.controller;
import javax.annotation.Resource;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.umesh.learning.multipleJPA.model.user.User;
import com.umesh.learning.multipleJPA.services.LoginService;
@RestController
@RequestMapping("/user")
public class LoginController {
@Resource
LoginService loginservice;
@Resource
ObjectMapper objectMap;
@RequestMapping(value = { "/" }, method = RequestMethod.POST)
public Object saveUser(User user) {
user = loginservice.saveUser(user);
return user;
}
@RequestMapping(value = { "/login" }, method = RequestMethod.GET)
public Object getLoginPage(@RequestParam("email") String email,
@RequestParam("password") String password) {
User user = loginservice.loginAllowed(email, password);
return user;
}
}
| [
"[email protected]"
] | |
4e1e81fade72c070231eaa37d077e352bd51e6e6 | a80600955f65bae7876d79a04952503d4c404157 | /src/main/java/org/morrah77/amazon_score/service/ScoreService.java | 04aef62c75972215cd4a1aa79d0e01faab8535dc | [] | no_license | morrah77/amazon_score | d52b70e08c8927ee496447ceb7e044a2bd96f95d | b5dc715c43eb2f536a5a1f9b52846c8671446a31 | refs/heads/master | 2023-07-14T07:29:42.276973 | 2021-08-08T20:19:37 | 2021-08-08T20:19:37 | 394,062,895 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,998 | java | package org.morrah77.amazon_score.service;
import org.morrah77.amazon_score.domain.AmazonResponseEntity;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Locale;
@Service
public class ScoreService implements IScoreService {
static final int MAX_REQUESTS_NUMBER = 10;
@Autowired
@Qualifier("AmazonDataService")
IDataService service;
@Override
public int getScore(String keyword) {
int result = 0;
String searchKeyword = keyword.toLowerCase(Locale.ROOT).replaceAll("\\s+", "+");
ResponseEntity<AmazonResponseEntity> data = service.getData(searchKeyword);
if ((data.hasBody()) && (data.getBody().getEntry().size() > 1)) {
if (!searchKeyword.replaceAll("\\+", " ").equals((String) (data.getBody().getEntry().get(0)))) {
return result;
}
List<Object> matches = (List<Object>)(data.getBody().getEntry().get(1));
result = calculateScore((String) (data.getBody().getEntry().get(0)), matches);
}
return result;
}
int calculateScore(String keyword, List<Object> matches) {
int reslut = 0;
double intermediateResult = 0;
double coefficient = getCoefficient(matches);
for (Object o : matches) {
if (((String)o).equals(keyword)) {
return 100;
}
if (((String)o).startsWith(keyword)) {
intermediateResult += coefficient / matches.size();
}
}
reslut = (int)(intermediateResult * 100);
return reslut;
}
double getCoefficient(List<Object> matches) {
if (matches.size() >= MAX_REQUESTS_NUMBER) {
return 0.4;
}
return 0.4 / (1 + MAX_REQUESTS_NUMBER - matches.size());
}
}
| [
"[email protected]"
] | |
2cccb0fa30b7ada4d0f457757b37fcb5f8f481b9 | 8b2bbc086035b71e0e0e1afc2dacdd7926ef0af8 | /src/main/java/de/sybig/uniprotFetcher/Isoforms.java | 94d58af6a31cd2cd0aa68564a750937f3992d47d | [] | no_license | BioinformatikGoettingen/uniprotService | 34842c39870cd4af16df96d3c80982464e43e8c8 | 06d30b0c8033e0a61544d301113c3c12b5f388a1 | refs/heads/master | 2021-01-19T15:21:26.913575 | 2018-09-03T16:12:10 | 2018-09-03T16:12:10 | 100,964,395 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 23,275 | java | package de.sybig.uniprotFetcher;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.attribute.BasicFileAttributes;
import java.nio.file.attribute.FileTime;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.ws.rs.GET;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathExpressionException;
import javax.xml.xpath.XPathFactory;
import org.apache.commons.io.FileUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
/**
*
* @author [email protected]
*/
@javax.ws.rs.Path("/")
@Produces(MediaType.APPLICATION_JSON)
public class Isoforms {
private static final Logger logger = LoggerFactory.getLogger(Isoforms.class);
private final UniProtConfiguration configuration;
private static final int SVG_LINE_HEIGHT = 25;
// private Document document;
Isoforms(UniProtConfiguration configuration) {
this.configuration = configuration;
}
@GET
@javax.ws.rs.Path("/isoforms/{uniprotID}")
public List<Isoform> getIsoforms(@PathParam(value = "uniprotID") String uniprotID) throws IOException, ParserConfigurationException, SAXException, XPathExpressionException {
Document doc = getDocument(uniprotID);
List<Isoform> isoforms = new LinkedList<>();
isoforms.add(getCanonicalSequence(doc));
isoforms.addAll(getModifiedSequences(doc));
logger.trace("Got {} isoforms for {}", isoforms.size(), uniprotID);
return isoforms;
}
@GET
@javax.ws.rs.Path("/isoforms/alignmentPos/{uniprotID}")
public List<AlignedSequence> getAlignmentPos(@PathParam(value = "uniprotID") String uniprotID) throws IOException, ParserConfigurationException, SAXException, XPathExpressionException {
List<Isoform> isoforms = getIsoforms(uniprotID);
ArrayList<AlignedSequence> sequences = new ArrayList<>();
// Init all sequence objects with the sequence as single feature
for (Isoform isoform : isoforms) {
sequences.add(new AlignedSequence(isoform.getSequence(), isoform));
}
for (Isoform isoform : isoforms) {
if (isoform.getModifications() == null) {
continue;
}
for (Modification m : isoform.getModifications()) {
for (AlignedSequence as : sequences) {
logger.trace("Applying modification '{}' to sequence {}", m, as.getId());
as.applyModification(m, isoform, sequences); // the current modification and the parent isoform
}
// break;
}
}
return sequences;
}
@GET
@javax.ws.rs.Path("/isoforms/svg/{uniprotID}/{sequence}")
@Produces("image/svg+xml")
public String getSVGWithSequence(
@PathParam(value = "uniprotID") String uniprotID,
@PathParam(value = "sequence") String sequence,
@QueryParam("color") String color)
throws IOException, ParserConfigurationException, SAXException, XPathExpressionException {
int width = 1000;
List<AlignedSequence> alignment = getAlignmentPos(uniprotID);
StringBuilder svg = new StringBuilder();
svg = addSVGStart(svg, width, alignment.size());
addDBD(svg, sequence, alignment, width, validateColor("#" + color));
svg = addAlignmentsToSVG(svg, alignment, width);
svg = addSVGEnd(svg);
return svg.toString();
}
private String validateColor(String color) {
if (color == null) {
color = "#AAAAAA";
}
Pattern pattern = Pattern.compile("^#[0-9A-Fa-f]{6}$");
Matcher matcher = pattern.matcher(color);
if (!matcher.find()) {
color = "#AAAAAA";
}
return color;
}
@GET
@javax.ws.rs.Path("/isoforms/svg/{uniprotID}")
@Produces("image/svg+xml")
public String getSVG(@PathParam(value = "uniprotID") String uniprotID) throws IOException, ParserConfigurationException, SAXException, XPathExpressionException {
int width = 1000;
List<AlignedSequence> alignment = getAlignmentPos(uniprotID);
// System.out.println("aa size " + aaSize);
StringBuilder svg = new StringBuilder();
svg = addSVGStart(svg, width, alignment.size());
svg = addAlignmentsToSVG(svg, alignment, width);
svg = addSVGEnd(svg);
return svg.toString();
}
@GET
@javax.ws.rs.Path("/best/{uniprotIDs}")
@Produces(MediaType.TEXT_PLAIN)
public String selectBest(@PathParam(value = "uniprotIDs") String uniprotIDs) throws IOException, SAXException, ParserConfigurationException, XPathExpressionException {
List<UniProtQuality> items = new LinkedList<>();
XPathFactory xPathfactory = XPathFactory.newInstance();
for (String id : uniprotIDs.split(",")) {
UniProtQuality prot = new UniProtQuality();
prot.setId(id);
Document doc = getDocument(id);
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description/reviewed");
Node reviewedNode = (Node) expr.evaluate(doc, XPathConstants.NODE);
if (reviewedNode == null || reviewedNode.getTextContent().equals("false")) {
prot.setReviewed(false);
} else {
prot.setReviewed(true);
}
xpath = xPathfactory.newXPath();
expr = xpath.compile("/RDF/Description/obsolete");
Node obsoleteNode = (Node) expr.evaluate(doc, XPathConstants.NODE);
if (obsoleteNode == null || reviewedNode.getTextContent().equals("false")) {
prot.setObsolete(false);
} else {
prot.setObsolete(true);
}
xpath = xPathfactory.newXPath();
expr = xpath.compile("/RDF/Description/existence");
Node evidenceNode = (Node) expr.evaluate(doc, XPathConstants.NODE);
if (evidenceNode != null) {
// System.out.println("node " + evidenceNode);
// System.out.println("atts " + evidenceNode.getAttributes());
// System.out.println("res " + evidenceNode.getAttributes().getNamedItem("rdf:resource"));
prot.setLevel(evidenceNode.getAttributes().getNamedItem("rdf:resource").getNodeValue());
}
items.add(prot);
}
items.sort(new UniprotQualityComparator());
System.out.println("sorted list " + items);
return items.get(0).getId();
}
private StringBuilder addSVGStart(StringBuilder svg, int width, int lines) {
svg.append(String.format("<svg width=\"%d\" height=\"%d\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" onload=\"init(evt)\">\n", width, (lines * SVG_LINE_HEIGHT +30) ));
svg.append("<script type=\"text/ecmascript\">\n"
+ "<![CDATA[\n"
+ " function init(evt)\n"
+ " {\n"
+ " if ( window.svgDocument == null )\n"
+ " {\n"
+ " svgDocument = evt.target.ownerDocument;\n"
+ " }\n"
+ " tooltip = svgDocument.getElementById('tooltip');\n"
+ " }\n"
+ "function ShowTooltip(evt, mouseovertext)\n"
+ "{\n"
+ " tooltip.setAttributeNS(null,\"x\",11);\n"
+ " tooltip.setAttributeNS(null,\"y\",evt.clientY+27);\n"
+ " tooltip.firstChild.data = mouseovertext;\n"
+ " tooltip.setAttributeNS(null,\"visibility\",\"visible\");\n"
+ "}\n"
+ "\n"
+ "function HideTooltip()\n"
+ "{\n"
+ " tooltip.setAttributeNS(null,\"visibility\",\"hidden\");\n"
+ "}"
+ "]]></script>");
return svg;
}
private StringBuilder addAlignmentsToSVG(StringBuilder svg, List<AlignedSequence> alignment, int width) {
int ypos = 10;
double aaSize = ((double) width) / (getMaxSequenceLength(alignment));
for (AlignedSequence sequence : alignment) {
svg.append(String.format("<g>\n"
+ " <rect x = \"5\" y = \"%d\" width = \"%d\" height = \"20\" stroke = \"none\" fill = \"#FFCC62\"/>\n",
ypos, (int) (aaSize * sequence.getSequence().length())
));
for (SequenceFeature feature : sequence.getFeatures()) {
String color = null;
if ("gap".equals(feature.getType())) {
color = "EEEEEE";
} else if ("mismatch".equals(feature.getType())) {
color = "FFAAAA";
} else if ("gapD".equals(feature.getType())) {
color = "EEEEEE";
} else if ("gapI".equals(feature.getType())) {
color = "EEEEEE";
}
if (color == null) {
continue;
}
String tooltip = String.format("%s: %d - %d (%d)", feature.getType(), feature.getStart()-feature.getMovedStart(),
feature.getEnd() - feature.getMovedStart(), feature.getLength());
svg.append(String.format(" <rect x = \"%d\" y = \"%d\" width = \"%d\" height = \"18\" "
+ "stroke = \"none\" fill = \"#%s\" "
+ "onmousemove=\"ShowTooltip(evt, '%s')\"\n"
+ " onmouseout=\"HideTooltip()\" /> \n",
(int) (feature.getStart() * aaSize + 5),
ypos + 1, (int) (aaSize * (feature.getLength())), color,
tooltip));
}
svg.append(String.format(" <text x=\"%d\" y=\"%d\" font-family=\"Verdana\" font-size=\"10\" fill=\"blue\">%s</text>\n</g>\n\n",
width - 60, ypos + 15, sequence.getId()));
ypos += SVG_LINE_HEIGHT;
}
return svg;
}
private StringBuilder addDBD(StringBuilder svg, String sequence, List<AlignedSequence> alignment, int width, String color) {
String canonicalSequence = alignment.get(0).getSequence();
String origSequence = canonicalSequence.replace("-", "");
double aaSize = ((double) width) / (getMaxSequenceLength(alignment));
int start = origSequence.indexOf(sequence);
if (start < 0) {
logger.error("Could not find DBD for {}", alignment.get(0).getId());
return svg;
}
for (int pos = 0; pos < start; pos++) {
if ("-".equals(canonicalSequence.charAt(pos))) {
start++;
}
}
int end = start + sequence.length();
//System.out.println("moved start " + start + " " + end);
for (int pos = start; pos < end; pos++) {
if ("-".equals(canonicalSequence.charAt(pos))) {
end++;
}
}
int height = 25 * alignment.size() + 20;
svg.append(String.format(" <rect x = \"%d\" y = \"%d\" width = \"%d\" height = \"%d\" stroke = \"none\" fill = \"%s\"/>\n",
(int) (aaSize * start), 0, (int) (aaSize * end - start), height, color));
logger.debug(" found at " + start + " --- " + end);
return svg;
}
private StringBuilder addSVGEnd(StringBuilder svg) {
svg.append("<text class=\"tooltip\" id=\"tooltip\"\n"
+ " x=\"0\" y=\"0\" visibility=\"hidden\">Tooltip</text>\n");
svg.append("</svg>");
return svg;
}
private int getMaxSequenceLength(List<AlignedSequence> alignment) {
int maxLength = 0;
for (AlignedSequence sequence : alignment) {
maxLength = sequence.getSequence().length() > maxLength ? sequence.getSequence().length() : maxLength;
}
return maxLength;
}
private Document getDocument(String uniprotID) throws IOException, SAXException, ParserConfigurationException, XPathExpressionException {
Path rdfFile = getRDFfile(uniprotID);
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(rdfFile.toFile());
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description/replacedBy");
Node replaceNode = (Node) expr.evaluate(document, XPathConstants.NODE);
if (replaceNode != null) {
String newID = replaceNode.getAttributes().getNamedItem("rdf:resource").getNodeValue();
newID = newID.substring(newID.lastIndexOf("/") + 1);
System.out.println(uniprotID + " replaced by " + newID);
return getDocument(newID);
}
return document;
}
private Isoform getCanonicalSequence(Document doc) throws XPathExpressionException, IOException, SAXException, ParserConfigurationException {
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description/type[@resource='http://purl.uniprot.org/core/Simple_Sequence']/parent::Description");
NodeList result = (NodeList) expr.evaluate(doc, XPathConstants.NODESET);
Isoform isoform = new Isoform();
if (result.getLength() > 0) {
Node descpriptionNode = result.item(0);
isoform = processSequenceNode(descpriptionNode, doc);
}
return isoform;
}
private List<Isoform> getModifiedSequences(Document doc) throws XPathExpressionException, IOException, SAXException, ParserConfigurationException {
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description/type[@resource='http://purl.uniprot.org/core/Modified_Sequence']/parent::Description");
NodeList modifiedSequences = (NodeList) expr.evaluate(doc, XPathConstants.NODESET);
List<Isoform> isoforms = new LinkedList<>();
for (int i = 0; i < modifiedSequences.getLength(); i++) {
Node isoformNode = modifiedSequences.item(i);
isoforms.add(processSequenceNode(isoformNode, doc));
}
return isoforms;
}
private Isoform processSequenceNode(Node descpriptionNode, Document doc) throws XPathExpressionException {
Isoform isoform = new Isoform();
String url = descpriptionNode.getAttributes().getNamedItem("rdf:about").getTextContent();
isoform.setUrl(url);
isoform.setId(url.substring(url.lastIndexOf("/") + 1));
NodeList children = descpriptionNode.getChildNodes();
for (int i = 0; i < children.getLength(); i++) {
Node child = children.item(i);
String name = child.getNodeName();
if ("rdf:value".equals(name)) {
isoform.setSequence(child.getTextContent());
} else if ("basedOn".equals(name)){
isoform.setBasedOn(child.getAttributes().getNamedItem("rdf:resource").getNodeValue().replace("http://purl.uniprot.org/isoforms/", ""));
}
else if ("name".equals(name)) {
isoform.addName(child.getTextContent());
} else if ("modification".equals(name)) {
isoform.addModification(getModificationNode(child.getAttributes().getNamedItem("rdf:resource").getNodeValue(), doc));
}
}
return isoform;
}
private Modification getModificationNode(String uri, Document doc) throws XPathExpressionException {
Modification modification = new Modification();
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description[@about='" + uri + "']");
Node node = (Node) expr.evaluate(doc, XPathConstants.NODE);
NodeList children = node.getChildNodes();
modification.setId(uri.substring(uri.lastIndexOf("/") + 1));
for (int i = 0; i < children.getLength(); i++) {
Node child = children.item(i);
if ("substitution".equals(child.getNodeName())) {
modification.setSubstitution(child.getTextContent());
} else if ("range".equals(child.getNodeName())) {
modification = getRange(modification, child.getAttributes().getNamedItem("rdf:resource").getNodeValue(), doc);
}
}
return modification;
}
private Modification getRange(Modification modification, String uri, Document doc) throws XPathExpressionException {
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description[@about='" + uri + "']");
Node node = (Node) expr.evaluate(doc, XPathConstants.NODE);
if (node == null) {
System.out.println("no range found for " + uri);
}
NodeList children = node.getChildNodes();
for (int i = 0; i < children.getLength(); i++) {
Node child = children.item(i);
if ("faldo:begin".equals(child.getNodeName())) {
modification.setBegin(getPos(child.getAttributes().getNamedItem("rdf:resource").getNodeValue(), doc));
}
if ("faldo:end".equals(child.getNodeName())) {
modification.setEnd(getPos(child.getAttributes().getNamedItem("rdf:resource").getNodeValue(), doc));
}
}
return modification;
}
private int getPos(String uri, Document doc) throws XPathExpressionException {
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/RDF/Description[@about='" + uri + "']/position");
Node node = (Node) expr.evaluate(doc, XPathConstants.NODE);
if (node == null) {
return 0;
}
return Integer.parseInt(node.getTextContent());
}
private Path getRDFfile(String id) throws MalformedURLException, IOException {
Path localFile = getLocalFile(id);
if (!Files.isReadable(localFile)) {
logger.debug("getting from uniprot {}", id);
FileUtils.copyURLToFile(new URL("http://www.uniprot.org/uniprot/" + id + ".rdf"),
getLocalFile(id).toFile(), 10 * 1000, 10 * 1000); // 10 seconds connectionTimeout and 10 seconds readTimeout
return localFile;
}
FileTime validTime = FileTime.fromMillis(System.currentTimeMillis() - (1000 * 60 * 60 * 24 * new Long(90)));
if (Files.readAttributes(localFile, BasicFileAttributes.class).lastModifiedTime().compareTo(validTime) < 1) {
logger.info("File {} is to old, will be refetched from uniprot.", localFile);
try {
FileUtils.copyURLToFile(new URL("https://www.uniprot.org/uniprot/" + id + ".rdf"),
getLocalFile(id).toFile(), 1500, 10 * 1000); // 1.5 seconds connectionTimeout and 10 seconds readTimeout
} catch (java.net.SocketTimeoutException ex) {
logger.warn("Could not re-fetch {} from Uniprot in max 1.5 secs, using old file.");
}
return localFile;
}
return localFile;
}
private Path getLocalFile(String id) {
Path file = Paths.get(configuration.getDataDir(), id + ".rdf");
return file;
}
class UniProtQuality {
private String id;
private boolean obsolete = false;
private boolean reviewed = false;
private int level = 0;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public boolean isObsolete() {
return obsolete;
}
public void setObsolete(boolean obsolete) {
this.obsolete = obsolete;
}
public boolean isReviewed() {
return reviewed;
}
public void setReviewed(boolean reviewed) {
this.reviewed = reviewed;
}
public int getLevel() {
return level;
}
public void setLevel(int level) {
this.level = level;
}
public void setLevel(String level) {
if ("http://purl.uniprot.org/core/Evidence_at_Protein_Level_Existence".equals(level)) {
this.level = 1;
} else if ("http://purl.uniprot.org/core/Evidence_at_Transcript_Level_Existence".equals(level)) {
this.level = 2;
} else if ("http://purl.uniprot.org/core/Inferred_from_Homology_Existence".equals(level)) {
this.level = 3;
} else if ("http://purl.uniprot.org/core/Predicted_Existence".equals(level)) {
this.level = 4;
} else {
System.out.println("level not found " + level);
}
}
public String toString() {
return String.format("%s {%b %d}", id, reviewed, level);
}
//1. Experimental evidence at protein level <existence rdf:resource="http://purl.uniprot.org/core/Evidence_at_Protein_Level_Existence"/>
//2. Experimental evidence at transcript level <existence rdf:resource="http://purl.uniprot.org/core/Evidence_at_Transcript_Level_Existence"/>
//3. Protein inferred from homology http://purl.uniprot.org/core/Inferred_from_Homology_Existence
//4. Protein predicted http://purl.uniprot.org/core/Predicted_Existence
//5. Protein uncertain
}
class UniprotQualityComparator implements Comparator<UniProtQuality> {
@Override
public int compare(UniProtQuality o1, UniProtQuality o2) {
if (o1.isObsolete() && !o2.isObsolete()) {
return 1;
}
if (!o1.isObsolete() && o2.isObsolete()) {
return -1;
}
if (o1.isReviewed() && !o2.isReviewed()) {
return -1;
}
if (!o1.isReviewed() && o2.isReviewed()) {
return 1;
}
return (((Integer) o1.getLevel()).compareTo((Integer) o2.getLevel()));
}
}
}
| [
"[email protected]"
] | |
9dbd20ccb4df4ae03e4d3a440dda39021b8542df | b480209490e05f56d14df9822041d4dcb42df178 | /src/exercise/abstractclasses/ListItem.java | 7ed40a656b4f334eefd449648edaaa024fc749fd | [] | no_license | AadityaA1/LearningExercise | 19f70b9bfd15f4b436a5b44b138814b3bf73ad80 | cc837bb854e1d0fe98739fefdd57f4e4d26bdd4c | refs/heads/main | 2023-03-17T23:59:26.092007 | 2021-03-10T14:56:30 | 2021-03-10T14:56:30 | 325,303,539 | 0 | 0 | null | 2021-01-01T06:11:29 | 2020-12-29T14:10:06 | Java | UTF-8 | Java | false | false | 601 | java | package exercise.abstractclasses;
public abstract class ListItem {
protected ListItem rightLink;
protected ListItem leftLink;
protected Object value;
public ListItem(Object value) {
this.value = value;
}
protected abstract ListItem next();
protected abstract ListItem setNext(ListItem item);
protected abstract ListItem previous();
protected abstract ListItem setPrevious(ListItem item);
protected abstract int compareTo(ListItem item);
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}
| [
"[email protected]"
] | |
30c34eade6756f438bbe2d53d6a6ead5d650e093 | 3a826d69928064593b069b8c6fec0279c6ab8a85 | /coffeeclient/src/main/java/com/ggomez1973/coffeeclient/CoffeeOrder.java | 7159ff8e7ad44fb323f2e4bfdcbb9535bd2cf56e | [] | no_license | ggomez1973/all-things-reactive | 42c072bfa8e31f34f743ff4e042ef7001c5ac81d | 84966e3129c81557d9f00b9b9590485d71029a4f | refs/heads/master | 2020-04-29T03:52:46.840078 | 2019-04-01T13:37:12 | 2019-04-01T13:37:12 | 175,826,897 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 617 | java | package com.ggomez1973.coffeeclient;
import java.time.Instant;
class CoffeeOrder {
private String coffeeId;
private Instant dateOrdered;
public String getCoffeeId() {
return coffeeId;
}
public Instant getDateOrdered() {
return dateOrdered;
}
public CoffeeOrder() {
}
private CoffeeOrder(String coffeeId, Instant dateOrdered) {
this.coffeeId = coffeeId;
this.dateOrdered = dateOrdered;
}
public static CoffeeOrder createCoffeeOrder(String coffeeId, Instant dateOrdered) {
return new CoffeeOrder(coffeeId, dateOrdered);
}
}
| [
"[email protected]"
] | |
3d6e1da717614aa51fca72dacdd465bb1fb8e84e | 729fba4cf817b85975167f6bc068d96d7cc93556 | /pro07/src/sec02/ex01/MemberVO.java | 6f14904278830dd5f6e36d9e1254eed2df7b6b94 | [] | no_license | boyunjjang1/JSPStudy | 2e030180cdae03e8f03ea55ef5f6bac0a4a25277 | f59841da0ff6b0d008871378aff4248021da37ee | refs/heads/master | 2020-07-10T00:38:20.642505 | 2019-09-03T03:11:25 | 2019-09-03T03:11:25 | 204,121,920 | 1 | 0 | null | null | null | null | UHC | Java | false | false | 847 | java | package sec02.ex01;
import java.sql.Date;
public class MemberVO {
private String id;
private String pwd;
private String name;
private String email;
private Date joinDate;
public MemberVO() {
System.out.println("MemberVO 생성자 호출");
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Date getJoinDate() {
return joinDate;
}
public void setJoinDate(Date joinDate) {
this.joinDate = joinDate;
}
}
| [
"[email protected]"
] | |
01cc22f59a1cd85de6e201758d8a7aabeedc8017 | deba1b4ed0bb5243729d0dff253da16396b444e5 | /Queue.java | 8f423023baea23c61acddfd98bb3d97d9a8190da | [] | no_license | Sharon-Sam/Java_LabCycle2 | cd67593ea0084d61f6daf8cb32e595b1d08d059f | 56e8ac0e64a45b8b22456440204ee249468cc77b | refs/heads/main | 2023-03-04T00:19:16.593388 | 2021-02-13T05:11:20 | 2021-02-13T05:11:20 | 338,501,655 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,403 | java | //Qn2) Queue datastructure implementation using java
public class Queue
{
int size = 5;
int q[]=new int[size];
int front ,rear;
Queue()
{
front =-1;
rear =-1;
}
boolean isFull()
{
if (front==0&&rear==size-1)
{
return true;
}
return false;
}
boolean isEmpty()
{
if(front==-1)
{
return true;
}
else
{
return false;
}
}
Queue(int a)
{
this.Dequeue();
for(int i =0;i<a;i++)
{
this.Enqueue(i);
}
this.Display();
this.Dequeue();
this.Display();
}
void Enqueue(int element)
{
if(isFull())
{
System.out.println("Queue is full");
}
else
{
if(front==-1)
{
front=0;
}
rear++;
q[rear]=element;
System.out.println("Insert"+element);
}
}
int Dequeue()
{
int element;
if (isEmpty())
{
System.out.println("Queue is Empty");
return(-1);
}
else{
element=q[front];
if(front>=rear)
{
front=-1;
rear=-1;
}
else{
front++;
}
System.out.println(element+"Deleted");
return (element);
}
}
void Display()
{
int i;
if(isEmpty())
{
System.out.println("Empty Queue");
}
else{
System.out.println("\nFront Index ="+front);
System.out.println("Elements:");
for(i=front;i<=rear;i++)
System.out.println(q[i] + " ");
System.out.println("\nrear index "+rear);
}
}
public static void main(String args[])
{
Queue Q =new Queue();
Queue U =new Queue(6);
}
}
/*OUTPUT
0Deleted
Insert0
Insert1
Insert2
Insert3
Insert4
Queue is full
Front Index =0
Elements:
0
1
2
3
4
rear index 4
0Deleted
Front Index =1
Elements:
1
2
3
4
rear index 4*/
| [
"[email protected]"
] | |
dcc68ed7ff9f248e5e6d9538935951c3e4ee4673 | 10186b7d128e5e61f6baf491e0947db76b0dadbc | /org/apache/batik/css/engine/Messages.java | c61e1dc9c39f4df179526ed8838d5a7c196f7e0f | [
"SMLNJ",
"Apache-1.1",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | MewX/contendo-viewer-v1.6.3 | 7aa1021e8290378315a480ede6640fd1ef5fdfd7 | 69fba3cea4f9a43e48f43148774cfa61b388e7de | refs/heads/main | 2022-07-30T04:51:40.637912 | 2021-03-28T05:06:26 | 2021-03-28T05:06:26 | 351,630,911 | 2 | 0 | Apache-2.0 | 2021-10-12T22:24:53 | 2021-03-26T01:53:24 | Java | UTF-8 | Java | false | false | 1,662 | java | /* */ package org.apache.batik.css.engine;
/* */
/* */ import java.util.Locale;
/* */ import java.util.MissingResourceException;
/* */ import org.apache.batik.i18n.LocalizableSupport;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class Messages
/* */ {
/* */ protected static final String RESOURCES = "org.apache.batik.css.engine.resources.Messages";
/* 49 */ protected static LocalizableSupport localizableSupport = new LocalizableSupport("org.apache.batik.css.engine.resources.Messages", Messages.class.getClassLoader());
/* */
/* */
/* */
/* */
/* */
/* */ public static void setLocale(Locale l) {
/* 56 */ localizableSupport.setLocale(l);
/* */ }
/* */
/* */
/* */
/* */
/* */ public static Locale getLocale() {
/* 63 */ return localizableSupport.getLocale();
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static String formatMessage(String key, Object[] args) throws MissingResourceException {
/* 72 */ return localizableSupport.formatMessage(key, args);
/* */ }
/* */ }
/* Location: /mnt/r/ConTenDoViewer.jar!/org/apache/batik/css/engine/Messages.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 1.1.3
*/ | [
"[email protected]"
] | |
fc0f3d41378b2b9a112a7d0c8594c2fae12ef722 | 8768673b08d6222b077a9e00ffaf4da8a5617ac9 | /app/src/main/java/com/tgithubc/kumao/observer/IKuMaoObserver.java | cbab601a41dfe12357b01f092b49bf84f9623135 | [
"Apache-2.0"
] | permissive | tgithubc/KuMao | 29e1540009323306c94f00523b59dd1aacb6b628 | 92590c54b5340f7e01c8cfb9ee62a0805c0016a8 | refs/heads/master | 2020-03-07T22:32:14.191344 | 2018-09-20T03:13:37 | 2018-09-20T03:13:37 | 127,756,610 | 5 | 0 | null | null | null | null | UTF-8 | Java | false | false | 637 | java | package com.tgithubc.kumao.observer;
import com.tgithubc.kumao.message.IObserver;
/**
* 聚合观察者
* Created by tc :)
*/
public interface IKuMaoObserver extends IObserver {
interface IFragmentSwipeBackObserver extends IKuMaoObserver {
void onMainViewPagerVisible(boolean isVisible);
}
interface IChangeStatusBarObserver extends IKuMaoObserver {
void onChangeStatusBar(boolean isDark);
}
interface IPlayObserver extends IKuMaoObserver {
void onPlayRealStart();
void onPause();
void onContinuePlay();
void onWaveFormDataCapture(byte[] waveform);
}
}
| [
"[email protected]"
] | |
7eeab95a8b9d20b50149a8779a11912f82f179c8 | f321e57973319afc58a10698d7eaac9160bf645e | /Assignment2/Swimmer.java | 8ad51333fdfacb54a33885b5de0829f6b3532a4f | [] | no_license | Diem-Vu/SJSU-CS151-S2021 | 60a8107176b6b6e57ede6e6be2d653de43b2f02d | 0d0cd9ed190ce71c483a4e3241daa527d4260654 | refs/heads/main | 2023-04-25T15:41:08.201004 | 2021-05-16T06:39:31 | 2021-05-16T06:39:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 204 | java |
/**
*
* @author Diem.Vu
* Some of the classes are swimmers, which adds functionality swim().
*/
public interface Swimmer {
/**
* method to define an action
*/
void Swim();
}
| [
"[email protected]"
] | |
18b0cf448e5c0a86ac089afe4e42e66c299aa837 | a5b8cb340079260b783d5a3313d9a19e27450788 | /mail/EditServlet.java | dfc12c8ec52c13de0a8176e634e72726a4d2aa54 | [] | no_license | suganyashanker/Contacts | 0e60c094e2cac8b2c56b120f8e22b1255a942976 | f555b3061a6d22ddfa0b6f8bfc604b563f9e03d1 | refs/heads/master | 2021-01-11T12:27:26.687778 | 2017-02-21T06:29:06 | 2017-02-21T06:29:06 | 76,647,588 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,873 | java | package mail;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.google.appengine.api.datastore.DatastoreService;
import com.google.appengine.api.datastore.DatastoreServiceFactory;
import com.google.appengine.api.datastore.Entity;
import com.google.appengine.api.datastore.EntityNotFoundException;
import com.google.appengine.api.datastore.Key;
import com.google.appengine.api.datastore.KeyFactory;
import com.google.appengine.api.datastore.PreparedQuery;
import com.google.appengine.api.datastore.Query;
import com.google.appengine.api.datastore.Query.Filter;
import com.google.appengine.api.datastore.Query.FilterPredicate;
import com.google.appengine.api.datastore.Query.FilterOperator;
import com.google.appengine.api.datastore.Query.SortDirection;
import com.google.appengine.repackaged.com.google.gson.Gson;
public class EditServlet extends HttpServlet {
public void doPut(HttpServletRequest req, HttpServletResponse resp) throws IOException {
DatastoreService ds = DatastoreServiceFactory.getDatastoreService();
String name = req.getParameter("name");
System.out.println(name);
Filter propertyFilter =
new FilterPredicate("Name", FilterOperator.EQUAL, name);
System.out.println(propertyFilter);
Query q = new Query("contacts").setFilter(propertyFilter);
System.out.println(q);
PreparedQuery pq = ds.prepare(q);
System.out.println(pq);
Map<String, String> contact_info_map = new TreeMap<String, String>();
for (Entity categorylist : pq.asIterable()) {
String contact_name = (String) categorylist.getProperty("Name");
String job = (String) categorylist.getProperty("Job");
String company = (String) categorylist.getProperty("company");
String email = (String) categorylist.getProperty("EMail-ID");
String worknum = (String) categorylist.getProperty("Work_Number");
String mobnum = (String) categorylist.getProperty("Mobile_Number");
String address = (String) categorylist.getProperty("Address");
contact_info_map.put("name",contact_name );
contact_info_map.put("job",job );
contact_info_map.put("company",company );
contact_info_map.put("email",email );
contact_info_map.put("worknum",worknum );
contact_info_map.put("mobnum",mobnum );
contact_info_map.put("address",address );
}
Gson gson = new Gson();
String json = gson.toJson(contact_info_map);
System.out.printf("JSON: %s", json.toString());
resp.setContentType("application/json");
resp.getWriter().println(json);
}
}
| [
"[email protected]"
] | |
6abe529441bc54c7c5b428b8d53d15499e060a57 | 4461445ea6b5eda91b5896df1d6b5ecbf200372c | /src/main/java/com/expertzlab/spring/core/postprocess/InitHelloWorld.java | 994cd647a81b0670dc426fcff0b59704f4f768aa | [] | no_license | expertzlab/spring-core-training | b0f27db10fc499a3fc37ea20d494e445d9523c5d | 0928ce5f5864154f48e8f7ef844988b226a201e5 | refs/heads/master | 2020-12-31T07:42:59.980875 | 2018-03-21T18:08:45 | 2018-03-21T18:08:45 | 86,576,911 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 923 | java | package com.expertzlab.spring.core.postprocess;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
/**
* Created by gireeshbabu on 04/04/17.
*/
public class InitHelloWorld implements BeanPostProcessor {
public Object postProcessBeforeInitialization(Object bean,
String beanName) throws BeansException {
System.out.println("BeforeInitialization : " + beanName);
return bean; // you can return any other object as well
}
public Object postProcessAfterInitialization(Object bean,
String beanName) throws BeansException {
System.out.println("AfterInitialization : " + beanName);
if("helloBean".equals(beanName)) {
return new DanyHello();
} else {
return bean;
}
}
}
| [
"[email protected]"
] | |
b432541e04666bef7d3147048005aa55ba5a7fc4 | ba7cab056c31fded038d49ccee0c1c9c54a6f3d4 | /dist/gameserver/data/scripts/quests/_033_MakeAPairOfDressShoes.java | 167e55f9ceecb4953a692f7e147556e74f05aea5 | [] | no_license | MaicoSautner/l2script-teste | 48052f6408be26038e692f48b38f1582a3eded06 | 196979a27575fd3ff48c28d416f2d820ba02059e | refs/heads/master | 2022-07-26T09:08:00.639245 | 2020-05-22T02:12:02 | 2020-05-22T02:16:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,731 | java | package quests;
import l2s.gameserver.model.instances.NpcInstance;
import l2s.gameserver.model.quest.Quest;
import l2s.gameserver.model.quest.QuestState;
public class _033_MakeAPairOfDressShoes extends Quest
{
int LEATHER = 36516;
int GEM_FOR_ACC = 36556;
int DRESS_SHOES_BOX = 7113;
public _033_MakeAPairOfDressShoes()
{
super(PARTY_NONE, REPEATABLE);
addStartNpc(30838);
addTalkId(30838);
addTalkId(30838);
addTalkId(30164);
addTalkId(31520);
addLevelCheck("30838-00.htm", 60);
}
@Override
public String onEvent(String event, QuestState st, NpcInstance npc)
{
String htmltext = event;
if(event.equals("30838-1.htm"))
{
st.setCond(1);
}
else if(event.equals("31520-1.htm"))
st.setCond(2);
else if(event.equals("30838-3.htm"))
st.setCond(3);
else if(event.equals("30838-5.htm"))
{
if(st.getQuestItemsCount(LEATHER) >= 360 && st.getQuestItemsCount(GEM_FOR_ACC) >= 90 && st.getQuestItemsCount(ADENA_ID) >= 500000)
{
st.takeItems(LEATHER, 360);
st.takeItems(GEM_FOR_ACC, 90);
st.takeItems(ADENA_ID, 500000);
st.setCond(4);
}
else
htmltext = "You don't have enough materials";
}
else if(event.equals("30164-1.htm"))
{
if(st.getQuestItemsCount(ADENA_ID) >= 300000)
{
st.takeItems(ADENA_ID, 300000);
st.setCond(5);
}
else
htmltext = "30164-havent.htm";
}
else if(event.equals("30838-7.htm"))
{
st.giveItems(DRESS_SHOES_BOX, 1);
st.finishQuest();
}
return htmltext;
}
@Override
public String onTalk(NpcInstance npc, QuestState st)
{
String htmltext = NO_QUEST_DIALOG;
int npcId = npc.getNpcId();
int cond = st.getCond();
if(npcId == 30838)
{
QuestState fwear = st.getPlayer().getQuestState(37);
if(cond == 0 && st.getQuestItemsCount(DRESS_SHOES_BOX) == 0 && fwear != null && fwear.isStarted())
htmltext = "30838-0.htm";
else if(cond == 1)
htmltext = "30838-1.htm";
else if(cond == 2)
htmltext = "30838-2.htm";
else if(cond == 3 && st.getQuestItemsCount(LEATHER) >= 360 && st.getQuestItemsCount(GEM_FOR_ACC) >= 90 && st.getQuestItemsCount(ADENA_ID) >= 500000)
htmltext = "30838-4.htm";
else if(cond == 3 && (st.getQuestItemsCount(LEATHER) < 360 || st.getQuestItemsCount(GEM_FOR_ACC) < 90 || st.getQuestItemsCount(ADENA_ID) < 500000))
htmltext = "30838-4r.htm";
else if(cond == 4)
htmltext = "30838-5r.htm";
else if(cond == 5)
htmltext = "30838-6.htm";
}
else if(npcId == 31520)
{
if(cond == 1)
htmltext = "31520-0.htm";
else if(cond == 2)
htmltext = "31520-1r.htm";
}
else if(npcId == 30164)
if(cond == 4)
htmltext = "30164-0.htm";
else if(cond == 5)
htmltext = "30164-2.htm";
return htmltext;
}
} | [
"As69839314"
] | As69839314 |
e679772ebe84705732a548b03a8ee3a70504b658 | 7150ea06214ca3f801501ffa8c90a3e81be11c86 | /pengrui/src/practice/threadPractice.java | 136acfeb87fab2ddca94dcc4c43479f2a29b8b63 | [] | no_license | prprprpr/school | 19a1a7ef7e36bb527d7740ff45ad6322d5aad899 | 436d65ffa2d0d64e6f4ddf34590f82d1feede3fd | refs/heads/master | 2020-04-09T07:40:06.382682 | 2018-12-03T09:48:06 | 2018-12-03T09:48:06 | 160,163,606 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 394 | java | package practice;
interface Source{void method();}
public class threadPractice implements Source{
private Source source;
public void decorate(){
System.out.println("decorate");
}
@Override
public void method() {
// TODO Auto-generated method stub
decorate();
source.method();
}
public static void main(String args[]){
threadPractice a=new threadPractice();
a.method();
}
}
| [
"[email protected]"
] | |
eaec568ed45d07e2397b00c89255aef956396087 | 6cfab0fcbfdf8b36d6ea01003867163b17579f4a | /collector/JH-Collector/src/main/java/com/jh/collector/mapping/CalibrationInfoMapper.java | e201f565b79255104a953323e3c1a4a5f08dcdef | [] | no_license | Fairy008/JiaHeDC | ac5ed60ae3db608d8656957ce0b0364c2253e51b | bf31ffe8f452f33d2554dd587770467cecd994ee | refs/heads/master | 2020-12-27T13:42:30.153810 | 2020-02-02T10:28:31 | 2020-02-02T10:28:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 976 | java | package com.jh.collector.mapping;
import com.jh.collector.entity.CalibrationInfo;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
import java.util.List;
@Mapper
@Component
public interface CalibrationInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table is_calibration_info
*
* @mbggenerated
*/
int insert(CalibrationInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table is_calibration_info
*
* @mbggenerated
*/
int insertSelective(CalibrationInfo record);
void updateInfoById(CalibrationInfo calibrationInfo);
/**
* 根据条件返回多个地块信息
* @param calibrationInfo
* xzg 2019/7/31 14:27
* @return
*/
List<CalibrationInfo> selectCalibrationInfoList(CalibrationInfo calibrationInfo);
} | [
"[email protected]"
] | |
dd0b0e5f3f5ac2b03a785139ef0baea98f6e6634 | e178adc0b8902862d7f6b2a4937f157629a515ed | /app/src/main/java/com/liuzhuni/lzn/core/comment/ui/CommentDialog.java | cf991c1deff677a512db46f100400a83deb09ca6 | [] | no_license | jieooo7/miao | 84c723d174f0dab1b2589f4a4764b5a34c4cf912 | b56342e0b186ab5b1ba90ae84bd3ea3b55f15d06 | refs/heads/master | 2020-12-24T14:44:51.440589 | 2016-12-09T05:32:33 | 2016-12-09T05:32:33 | 39,495,156 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,137 | java | package com.liuzhuni.lzn.core.comment.ui;
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.util.DisplayMetrics;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
import com.liuzhuni.lzn.R;
/**
* Created by Andrew Lee on 2015/7/25.
* E-mail:[email protected]
* Date: 2015-07-25
* Time: 16:54
*/
public class CommentDialog {
public TextView mTitle;
public ImageView mCloseBtn;
public EditText mEdit;
public TextView mSubmit;
private Activity mContext;
private InputMethodManager imm;
private Dialog mDialog;
public CommentDialog(Activity context) {
mContext=context;
View view = LayoutInflater.from(context).inflate(R.layout.comment_dialog, null);
mDialog = new Dialog(context, R.style.MyDialog);
mDialog.setContentView(view);
DisplayMetrics dm = new DisplayMetrics();
context.getWindowManager().getDefaultDisplay().getMetrics(dm);
Window dialogWindow = mDialog.getWindow();
WindowManager.LayoutParams lp = dialogWindow.getAttributes();
lp.width = (int) dm.widthPixels;
lp.height=WindowManager.LayoutParams.WRAP_CONTENT;
dialogWindow.setAttributes(lp);
mDialog.setCanceledOnTouchOutside(true);
mDialog.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey(DialogInterface dialog, int keyCode,
KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
dismiss();
return true;
}
return false;
}
});
mTitle = (TextView) view.findViewById(R.id.title);
mCloseBtn = (ImageView) view.findViewById(R.id.close_btn);
mEdit = (EditText) view.findViewById(R.id.et_dialog);
mSubmit = (TextView) view.findViewById(R.id.comment_dia_sumit);
mCloseBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dismiss();
}
});
// mEdit.setFocusable(true);
// mEdit.setFocusableInTouchMode(true);
// mEdit.requestFocus();
// InputMethodManager imm = (InputMethodManager)
// context.getSystemService(context.INPUT_METHOD_SERVICE);
// imm.showSoftInput(mEdit, InputMethodManager.RESULT_SHOWN); //显示软键盘
// imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_NOT_ALWAYS);//显示软键盘
}
public void show() {
mDialog.show();
showKeyboard(mEdit);//在view渲染完成前requestFocus没有效果,需要延迟一定的时间主动调用键盘弹出
// mContext.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
// imm = (InputMethodManager)
// mContext.getSystemService(mContext.INPUT_METHOD_SERVICE);
// imm.showSoftInput(mEdit, InputMethodManager.RESULT_SHOWN);
// imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_NOT_ALWAYS);//显示软键盘
}
public void dismiss() {
if (mDialog.isShowing()) {
mDialog.dismiss();
// imm.hideSoftInputFromWindow(mContext.getCurrentFocus().getWindowToken(), 0);
}
}
private void showKeyboard(final EditText editText) {
final InputMethodManager manager = (InputMethodManager)editText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
editText.postDelayed(new Runnable() {
@Override
public void run() {
editText.requestFocus();
manager.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
}
}, 300);
}
}
| [
"[email protected]"
] | |
a52bde3803ed5d9667ff84f13a5893673dab6702 | b067adfab9bf61e9e0db1198c6667276d5ec7c9a | /src/main/java/test_heroku/repository/CategoryRepository.java | dd5c4e1d988f5bc064b4d6e73f3d2dfd33f422d0 | [] | no_license | nguyenha2651988/nguyenha2651988 | 85e48b72c9d1f6f46f39a2ab65dc92132e7a5e96 | c092360e4f496f0bb16cb21ced327f77c7e12e9b | refs/heads/master | 2021-04-04T09:09:17.327810 | 2020-03-19T09:03:07 | 2020-03-19T09:03:07 | 248,443,818 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 271 | java | package test_heroku.repository;
import test_heroku.model.Category;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface CategoryRepository extends JpaRepository<Category, Long> {
}
| [
"[email protected]"
] | |
ffada42a66517df1606f142a4a9c596b685295b3 | 28e356d56e3682cdaa53a14f2ef22a2dbb9799c0 | /2.3.04-Exercise-AddDebugPlatforms/core/src/com/udacity/gamedev/gigagal/entities/Platform.java | 3b8559968fec2e5b5391ce7a134adb8642fac8c6 | [
"MIT"
] | permissive | udacity/ud406 | 31fb5e8ef02f6f78e500ad8998bae38bf4296494 | 191d46352271cc74f4232a3f75db3563c200b1c9 | refs/heads/master | 2023-03-28T21:01:07.283156 | 2021-10-21T13:33:06 | 2021-10-21T13:33:06 | 45,005,805 | 60 | 134 | MIT | 2023-05-08T19:41:40 | 2015-10-27T00:05:43 | Java | UTF-8 | Java | false | false | 679 | java | package com.udacity.gamedev.gigagal.entities;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.udacity.gamedev.gigagal.util.Assets;
public class Platform {
float top;
float bottom;
float left;
float right;
public Platform(float left, float top, float width, float height) {
this.top = top;
this.bottom = top - height;
this.left = left;
this.right = left + width;
}
public void render(SpriteBatch batch) {
float width = right - left;
float height = top - bottom;
Assets.instance.platformAssets.platformNinePatch.draw(batch, left - 1, bottom - 1, width + 2, height + 2);
}
}
| [
"[email protected]"
] | |
9f46e5539ca573a0bf85652c0d2bfe8a69dde5d0 | 3bbbdbc9c03b78ab5eee1d6e0721c786dcafe026 | /src/main/java/edu/isu/cs/cs3308/ClassificationTree.java | b4218b3d74f35036f1eb4b17ced1fbfb0573d522 | [] | no_license | baumetha/campaign03 | 5a6f65d313bcafe072ad6c880a921ca717645da1 | a1455747f2a3974af766be0ead34f39981e60689 | refs/heads/master | 2020-04-24T00:32:34.191722 | 2019-03-06T04:05:00 | 2019-03-06T04:05:00 | 171,569,636 | 0 | 0 | null | 2019-02-20T00:00:13 | 2019-02-20T00:00:12 | null | UTF-8 | Java | false | false | 1,909 | java | package edu.isu.cs.cs3308;
import edu.isu.cs.cs3308.structures.BinaryTree;
import edu.isu.cs.cs3308.structures.Node;
import edu.isu.cs.cs3308.structures.impl.LinkedBinaryTree;
import edu.isu.cs.cs3308.traversals.BreadthFirstTraversal;
import edu.isu.cs.cs3308.traversals.InOrderTraversal;
import edu.isu.cs.cs3308.traversals.PreOrderTraversal;
import edu.isu.cs.cs3308.traversals.TreeTraversal;
import edu.isu.cs.cs3308.traversals.commands.EnumeratedSaveCommand;
import edu.isu.cs.cs3308.traversals.commands.EnumerationCommand;
import java.io.IOException;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Scanner;
/**
* A very simple classification tree example using a BinaryTree and console
* input.
*
* @author Isaac Griffith
*/
public class ClassificationTree {
private LinkedBinaryTree<Datum> tree;
/**
* Constructs a new Animal tree class which manages an underlying animal
* tree
*/
public ClassificationTree() {
tree = new LinkedBinaryTree<>();
load();
}
/**
* Main method which controls the identification and tree management loop.
*/
public void identify() {
throw new UnsupportedOperationException("Not yet implemented");
}
/**
* Saves a tree to a file.
*/
public void save() {
throw new UnsupportedOperationException("Not yet implemented");
}
/**
* Loads a tree from the given file, if an exception occurs during file
* operations, a hardcoded basic tree will be loaded instead.
*/
public void load() {
throw new UnsupportedOperationException("Not yet implemented");
}
}
| [
"[email protected]"
] | |
c18040df65e56609c09fe5be50580ac2e4a7920a | d0bfc9d12bf822bb2f93e5e1ec38fffe69353253 | /benefits/benefits-moudle/benefits-bean/src/main/java/com/lx/benefits/bean/bo/order/SellerOrderReverseOverviewBO.java | f4036d82adb140d1659f95632547c0bd0974874b | [] | no_license | wuyizhong/SpringFramework.wangmeng.definition | 11f3f2958079baad8e4f39a7b6953a87c29fde5f | dd346624d89150836f4a26f1be21192602376b13 | refs/heads/master | 2020-07-23T23:15:23.948727 | 2019-09-09T02:51:36 | 2019-09-09T02:51:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 240 | java | package com.lx.benefits.bean.bo.order;
import lombok.Data;
@Data
public class SellerOrderReverseOverviewBO {
/**全部订单*/
private int allCount;
/**退款成功订单(逆向状态2,4)*/
private int overCount;
}
| [
"[email protected]"
] | |
c994802b34784ce4fdf4ea8d807fc0d5f0f1ad1d | 44e79b691b58614f3a9c9e51fb6266afeb7ee4b0 | /app/src/main/java/lrmaldo/platzigram/api/PostResponseTypeAdapter.java | 458447ebc39acf7c83eab7dcd8b7a290b3d5655f | [] | no_license | lrmaldo/platzigram-curso | 013a18223694f1cbd6ae59c7eeea5c034b6c0cea | 23785dce6bfc1c1bfce710f8dccbf47091210628 | refs/heads/master | 2021-01-13T14:21:16.808804 | 2017-02-13T00:06:08 | 2017-02-13T00:06:08 | 79,049,410 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,726 | java | package lrmaldo.platzigram.api;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.ArrayList;
import lrmaldo.platzigram.model.Post;
/**
* Created by Leo on 09/02/2017.
*/
public class PostResponseTypeAdapter extends TypeAdapter {
@Override
public void write(JsonWriter out, Object value) throws IOException {
}
@Override
public PostResponse read(JsonReader in) throws IOException {
final PostResponse response = new PostResponse();
ArrayList<Post> postList = new ArrayList<Post>();
in.beginObject();
while (in.hasNext()){
Post post = null;
try {
post = readPost(in);
} catch (Exception e) {
e.printStackTrace();
}
postList.add(post);
}
in.endObject();
response.setPostArrayList(postList);
return response;
}
public Post readPost(JsonReader reader)throws Exception{
Post post = new Post();
reader.nextName();
reader.beginObject();
while(reader.hasNext()){
String next = reader.nextName();
switch (next){
case "author":
post.setAuthor(reader.nextString());
break;
case "imageUrl":
post.setImageUrl(reader.nextString());
break;
case "timestampCreated":
post.setTimestampCreated(reader.nextDouble());
break;
}
}
reader.endObject();
return post;
}
}
| [
"[email protected]"
] | |
28c774a0b04046ae5419fd02fdc814e75d6b23b8 | 52db46cda46618dbd3028e5f54df0864c8ff65b8 | /src/main/java/com/intellij/uiDesigner/impl/actions/GroupButtonsAction.java | f32a81c581f381eb06cb55c110eabb1833b1f4df | [
"Apache-2.0"
] | permissive | consulo/consulo-ui-designer | 73279cdcce6b7006200a08aba56493ae1bd46ac9 | 1a7872cd107c90d8775d3c0e433b4a14bbae418f | refs/heads/master | 2023-08-31T00:23:34.185990 | 2023-05-07T11:01:58 | 2023-05-07T11:01:58 | 13,801,786 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,145 | java | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.uiDesigner.impl.actions;
import consulo.ui.ex.awt.Messages;
import com.intellij.uiDesigner.impl.radComponents.RadButtonGroup;
import com.intellij.uiDesigner.impl.radComponents.RadComponent;
import com.intellij.uiDesigner.impl.radComponents.RadRootContainer;
import com.intellij.uiDesigner.impl.designSurface.GuiEditor;
import com.intellij.uiDesigner.impl.propertyInspector.properties.IdentifierValidator;
import com.intellij.uiDesigner.impl.UIDesignerBundle;
import consulo.ui.ex.action.AnActionEvent;
import javax.annotation.Nonnull;
import javax.swing.*;
import java.util.ArrayList;
import java.util.List;
/**
* @author yole
*/
public class GroupButtonsAction extends AbstractGuiEditorAction {
protected void actionPerformed(final GuiEditor editor, final List<RadComponent> selection, final AnActionEvent e) {
groupButtons(editor, selection);
}
public static void groupButtons(final GuiEditor editor, final List<RadComponent> selectedComponents) {
if (!editor.ensureEditable()) return;
String groupName = Messages.showInputDialog(editor.getProject(),
UIDesignerBundle.message("group.buttons.name.prompt"),
UIDesignerBundle.message("group.buttons.title"),
Messages.getQuestionIcon(),
editor.getRootContainer().suggestGroupName(),
new IdentifierValidator(editor.getProject()));
if (groupName == null) return;
RadRootContainer rootContainer = editor.getRootContainer();
RadButtonGroup group = rootContainer.createGroup(groupName);
for(RadComponent component: selectedComponents) {
rootContainer.setGroupForComponent(component, group);
}
editor.refreshAndSave(true);
}
protected void update(@Nonnull GuiEditor editor, final ArrayList<RadComponent> selection, final AnActionEvent e) {
e.getPresentation().setVisible(allButtons(selection));
e.getPresentation().setEnabled(allButtons(selection) && selection.size() >= 2 &&
!UngroupButtonsAction.isSameGroup(editor, selection));
}
public static boolean allButtons(final ArrayList<RadComponent> selection) {
for(RadComponent component: selection) {
if (!(component.getDelegee() instanceof AbstractButton) ||
component.getDelegee() instanceof JButton) {
return false;
}
}
return true;
}
}
| [
"[email protected]"
] | |
36b72060c86cc7162d199dd54644960297207719 | 0a3a773d5d65c07a3e05ff5ac1e56492c4557645 | /yuki-hiroshi-design-patterns/src/main/java/com/pearl/genius/command/Main.java | 8ca0ec5081a37da7c58a477c6e2aadd8f2e28977 | [] | no_license | hgs-study/enjoy-design-pattern | d0db4d20f9da85af3b92a3f5874f20fe2d4eeaaf | fe93dce07bcfc025c42347b17adc0307d668dc01 | refs/heads/master | 2023-01-24T21:55:49.326016 | 2020-12-08T09:39:19 | 2020-12-08T09:39:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,514 | java | package com.pearl.genius.command;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Main extends JFrame implements ActionListener, MouseMotionListener, WindowListener {
private MacroCommand history = new MacroCommand();
private DrawCanvas canvas = new DrawCanvas(400, 400, history);
private JButton clearButton = new JButton("clear");
private JButton undoButton = new JButton("undo");
private JButton redButton = new JButton("red");
private JButton greenButton = new JButton("green");
private JButton blueButton = new JButton("blue");
public static void main(String[] args) {
new Main("Hellow");
}
public Main(String title) {
super(title);
this.addWindowListener(this);
canvas.addMouseMotionListener(this);
clearButton.addActionListener(this);
undoButton.addActionListener(this);
redButton.addActionListener(this);
greenButton.addActionListener(this);
blueButton.addActionListener(this);
Box buttonBox = new Box(BoxLayout.X_AXIS);
buttonBox.add(clearButton);
buttonBox.add(undoButton);
buttonBox.add(redButton);
buttonBox.add(greenButton);
buttonBox.add(blueButton);
Box mainBox = new Box(BoxLayout.Y_AXIS);
mainBox.add(buttonBox);
mainBox.add(canvas);
getContentPane().add(mainBox);
pack();
show();
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == clearButton) {
history.clear();
canvas.init();
canvas.repaint();
} else if (e.getSource() == undoButton) {
history.undo();
canvas.repaint();
} else if (e.getSource() == redButton) {
Command cmd = new ColorCommand(canvas, Color.RED);
history.append(cmd);
cmd.execute();
} else if (e.getSource() == greenButton) {
Command cmd = new ColorCommand(canvas, Color.GREEN);
history.append(cmd);
cmd.execute();
} else if (e.getSource() == blueButton) {
Command cmd = new ColorCommand(canvas, Color.BLUE);
history.append(cmd);
cmd.execute();
}
}
public void mouseDragged(MouseEvent e) {
Command cmd = new DrawCommand(canvas, e.getPoint());
history.append(cmd);
cmd.execute();
}
public void mouseMoved(MouseEvent e) {
}
@Override
public void windowClosing(WindowEvent e) {
System.exit(0);
}
public void windowOpened(WindowEvent e) {
}
public void windowClosed(WindowEvent e) {
}
public void windowIconified(WindowEvent e) {
}
public void windowDeiconified(WindowEvent e) {
}
public void windowActivated(WindowEvent e) {
}
public void windowDeactivated(WindowEvent e) {
}
}
| [
"[email protected]"
] | |
4e5cbdc5f82ff35b72cd678e81ec71427aa42c50 | 975d92fa474ad1a5ef43049f6ba9b348571957e7 | /app/src/main/java/com/example/mirmhrakib/mydemoapplication/CozListReportActivity.java | 5acb475b65fc532af72b2bcc4b41b8b7864778b5 | [] | no_license | MehnazNipa/myDemoVumiApp | f85b42528faa3f2a957c7865322958c54b91f8cb | ff4250fe888e082370dc923f4d0968eb3c8bab5c | refs/heads/master | 2021-01-18T22:21:55.312758 | 2016-10-31T18:45:36 | 2016-10-31T18:45:36 | 72,464,560 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,695 | java | package com.example.mirmhrakib.mydemoapplication;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.Locale;
import appadapter.CozListReportItem;
import appdatabase.CozListReportDataSource;
import appmodel.CozListReportModel;
public class CozListReportActivity extends AppCompatActivity {
List<CozListReportModel> cozReportArrayList;
ListView mCozList = null;
CozListReportItem mCozListItem = null;
CozListReportDataSource mCozListReportDataSource;
CozListReportModel mCozListReportModel;
static EditText fromDateET;
static EditText toDateET;
String fromDate = "";
String toDate = "";
Calendar myCalendar = Calendar.getInstance();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_coz_list_report);
fromDateET = (EditText) findViewById(R.id.fromDate);
toDateET = (EditText) findViewById(R.id.toDate);
cozReportArrayList = new ArrayList<CozListReportModel>();
mCozList = (ListView) findViewById(R.id.cozList);
mCozListReportDataSource = new CozListReportDataSource(this);
mCozListReportModel = new CozListReportModel();
String [] caseNo = new String[]{"৪-১৮/২০১৫ রিভিশন, চট্টগ্রাম","৩-১১৬/২০১৫-নামজারী-আপীল-নারায়ণগঞ্জ","৩-১৩৯/২০১৫-নামজারী-আপীল-ঢাকা","৪-৪৬/২০১৬-নামজারী-আপীল-বাগেরহাট","৩-২০/২০১৬-নামজারী-আপীল-নারায়ণগঞ্জ","৩-৭৬/১৫ (নাম) আপীল, নারায়ণগঞ্জ","৩-১১২/২০১৫-নামজারী-আপীল-গাজীপুর","৩-৩৮/২০১৬-রেকর্ড সংশোধন-বিবিধ-ঢাকা","৩-১৪৪/২০১৫-নামজারী-আপীল-নারায়ণগঞ্জ","৪-০৯/২০১৪ আপীল,কক্সাবাজার"};
String [] dateOfFiling = new String[]{"18/02/2015","01/07/2015","26/08/2015","12/04/2016","19/04/2016","09/04/2015","25/06/2015","25/10/2016","31/10/2016","31/10/2016"};
String [] nextSetDate = new String[]{"25/10/2016","25/10/2016","25/10/2016","25/10/2016","25/10/2016","25/10/2016","25/10/2016","25/12/2016","08/01/2017","03/03/2017"};
String [] currentCaseStatus = new String[]{"নথির জন্য","নথির জন্য","নথির জন্য","নথির জন্য","নথির জন্য","শুনানীর জন্য","শুনানীর জন্য","শুনানীর জন্য","শুনানীর জন্য","শুনানীর জন্য"};
String [] caseType = new String[]{"নামজারী","নামজারী","নামজারী","নামজারী","নামজারী","নামজারী","নামজারী","রেকর্ড সংশোধন","নামজারী","নামজারী"};
String [] caseClass = new String[]{"রিভিশন","আপীল","আপীল","আপীল","আপীল","আপীল","আপীল","বিবিধ","আপীল","আপীল"};
String [] courtName = new String[]{"সদস্য-১ মহোদয়","চেয়ারম্যান","চেয়ারম্যান","সদস্য-১ মহোদয়","চেয়ারম্যান","চেয়ারম্যান","চেয়ারম্যান","চেয়ারম্যান","চেয়ারম্যান","সদস্য-১ মহোদয়"};
String [] branchNo = new String[]{"৪","৩","৩","৪","৩","৩","৩","৩","৩","৪"};
String [] division = new String[]{"চট্টগ্রাম","ঢাকা","খুলনা","ঢাকা","ঢাকা","ঢাকা","ঢাকা","ঢাকা","ঢাকা","চট্টগ্রাম"};
if (mCozListReportDataSource.isEmpty() == true) {
for (int i = 0; i < caseNo.length; i++) {
String caseNoString = caseNo[i];
String dateOfFilingString = dateOfFiling[i];
String nextSetDateString = nextSetDate[i];
String currentCaseStatusString = currentCaseStatus[i];
String caseTypeString = caseType[i];
String caseClassString = caseClass[i];
String courtNameString = courtName[i];
String branchNoString = branchNo[i];
String divisionString = division[i];
mCozListReportModel = new CozListReportModel(caseNoString, dateOfFilingString, nextSetDateString, currentCaseStatusString, caseTypeString, caseClassString, courtNameString, branchNoString, divisionString);
if (mCozListReportDataSource.insert(mCozListReportModel)) {
Toast.makeText(getApplicationContext(), "Data Saved Successfully", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(getApplicationContext(), "Data Not Saved.", Toast.LENGTH_SHORT).show();
}
}
}
cozReportArrayList = mCozListReportDataSource.getCurrentDateCozList();
//cozReportArrayList = mCozListReportDataSource.getCozList();
mCozListItem = new CozListReportItem(cozReportArrayList,this);
mCozList.setAdapter(mCozListItem);
fromDateET.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment newFragment = new DatePickerFragment1();
newFragment.show(getFragmentManager(), "datePicker");
}
});
toDateET.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment newFragment = new DatePickerFragment2();
newFragment.show(getFragmentManager(), "datePicker");
}
});
}
public void searchCozlist(View v){
cozReportArrayList.clear();
cozReportArrayList = new ArrayList<CozListReportModel>();
Toast.makeText(this, "clicked", Toast.LENGTH_LONG).show();
fromDate = fromDateET.getText().toString();
toDate = toDateET.getText().toString();
cozReportArrayList = mCozListReportDataSource.getDateRangeCozList(fromDate,toDate);
//cozReportArrayList = mCozListReportDataSource.getCozList();
mCozListItem = new CozListReportItem(cozReportArrayList,this);
mCozList.setAdapter(mCozListItem);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_coz_list_report, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public static class DatePickerFragment1 extends DialogFragment
implements DatePickerDialog.OnDateSetListener {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// Use the current date as the default date in the picker
final Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int day = c.get(Calendar.DAY_OF_MONTH);
// Create a new instance of DatePickerDialog and return it
return new DatePickerDialog(getActivity(), this, year, month, day);
}
public void onDateSet(DatePicker view, int year, int month, int day) {
// Do something with the date chosen by the user
String newDay ="";
String newMonth ="";
String newDate ="";
if(day<10){
newDay = '0'+String.valueOf(day);
}else {
newDay = String.valueOf(day);
}
if(month<9){
newMonth = '0'+ String.valueOf(month + 1);
}else {
newMonth = String.valueOf(month + 1);
}
newDate = newDay+ " / " + newMonth+ " / " + String.valueOf(year);
fromDateET.setText(newDate);
}
}
public static class DatePickerFragment2 extends DialogFragment
implements DatePickerDialog.OnDateSetListener {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// Use the current date as the default date in the picker
final Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int day = c.get(Calendar.DAY_OF_MONTH);
// Create a new instance of DatePickerDialog and return it
return new DatePickerDialog(getActivity(), this, year, month, day);
}
public void onDateSet(DatePicker view, int year, int month, int day) {
// Do something with the date chosen by the user
String newDay ="";
String newMonth ="";
String newDate ="";
if(day<10){
newDay = '0'+String.valueOf(day);
}else {
newDay = String.valueOf(day);
}
if(month<9){
newMonth = '0'+ String.valueOf(month + 1);
}else {
newMonth = String.valueOf(month + 1);
}
newDate = newDay+ " / " + newMonth+ " / " + String.valueOf(year);
toDateET.setText(newDate);
}
}
}
| [
"[email protected]"
] | |
eb57e606b0f878112828d4d4c99ef822bd4b2d90 | 5af6d6bd4936f639f9d383ae142fe93708505b66 | /core/infinit.e.api.server/WEB-INF/src/com/ikanow/infinit/e/api/knowledge/federated/SimpleFederatedQueryEngine.java | 9a06de0727776ba9589d443e39643d1bf4a6438e | [] | no_license | amadu80/Infinit.e | d4ef2c6e53d83f8cb811c5a14b7e0cb8da95f4cf | a33540980ff8d3065c33e0ebf85b7582dfc365b2 | refs/heads/master | 2020-07-11T11:46:10.602644 | 2015-03-03T00:23:04 | 2015-03-03T00:23:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 70,494 | java | /*******************************************************************************
* Copyright 2012, The Infinit.e Open Source Project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
package com.ikanow.infinit.e.api.knowledge.federated;
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Date;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Future;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import net.minidev.json.JSONArray;
import org.bson.types.ObjectId;
import com.google.common.collect.Iterators;
import com.google.common.collect.PeekingIterator;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonParser;
import com.ikanow.infinit.e.api.knowledge.QueryHandler.ISimpleFederatedQueryEngine;
import com.ikanow.infinit.e.api.knowledge.processing.ScoringUtils;
import com.ikanow.infinit.e.data_model.api.ResponsePojo;
import com.ikanow.infinit.e.data_model.api.knowledge.AdvancedQueryPojo;
import com.ikanow.infinit.e.data_model.interfaces.query.IQueryExtension;
import com.ikanow.infinit.e.data_model.store.DbManager;
import com.ikanow.infinit.e.data_model.store.MongoDbManager;
import com.ikanow.infinit.e.data_model.store.MongoDbUtil;
import com.ikanow.infinit.e.data_model.store.config.source.SimpleFederatedCache;
import com.ikanow.infinit.e.data_model.store.config.source.SourceFederatedQueryConfigPojo;
import com.ikanow.infinit.e.data_model.store.config.source.SourcePojo;
import com.ikanow.infinit.e.data_model.store.document.AssociationPojo;
import com.ikanow.infinit.e.data_model.store.document.DocumentPojo;
import com.ikanow.infinit.e.data_model.store.document.EntityPojo;
import com.ikanow.infinit.e.data_model.utils.IkanowSecurityManager;
import com.ikanow.infinit.e.harvest.HarvestController;
import com.ikanow.infinit.e.harvest.HarvestControllerPipeline;
import com.ikanow.infinit.e.harvest.extraction.text.externalscript.TextExtractorExternalScript;
import com.jayway.jsonpath.JsonPath;
import com.mongodb.BasicDBList;
import com.mongodb.BasicDBObject;
import com.mongodb.DBCollection;
import com.mongodb.DBCursor;
import com.mongodb.DBObject;
import com.ning.http.client.AsyncHttpClient;
import com.ning.http.client.AsyncHttpClient.BoundRequestBuilder;
import com.ning.http.client.Response;
import org.apache.commons.io.IOUtils;
import org.apache.log4j.Logger;
public class SimpleFederatedQueryEngine implements IQueryExtension, ISimpleFederatedQueryEngine {
//DEBUG
static private boolean _DEBUG = false;
//static private boolean _DEBUG = true;
static Logger _logger = Logger.getLogger(SimpleFederatedQueryEngine.class);
private ScoringUtils _scoreStats = null;
public void registerScoringEngine(ScoringUtils scoreStats) {
_scoreStats = scoreStats;
}
private boolean _cacheMode = true;
private boolean _testMode = false;
public void setTestMode(boolean testMode) {
_testMode = testMode;
_cacheMode = !_testMode; // (don't cache in some places if in test mode)
}
public static class FederatedRequest {
// Endpoint version
public SourceFederatedQueryConfigPojo.FederatedQueryEndpointUrl subRequest;
public Future<Response> responseFuture;
public AsyncHttpClient asyncClient;
public String mergeKey;
// Script import version
public FederatedHarvest importThread;
public AdvancedQueryPojo fullQuery;
public Throwable errorMessage;
public BasicDBObject scriptResult = null;
public List<DocumentPojo> complexSourceProcResults = null;
// Joint
public SourceFederatedQueryConfigPojo endpointInfo;
public BasicDBObject cachedResult = null;
public BasicDBObject cachedDoc = null;
public BasicDBObject cachedDoc_expired = null;
public String requestParameter;
public String[] communityIdStrs;
public String queryIndex;
}
public void addEndpoint(SourceFederatedQueryConfigPojo newEndpoint) {
if (null == _endpoints) {
_endpoints = new LinkedList<SourceFederatedQueryConfigPojo>();
}
_endpoints.add(newEndpoint);
}
LinkedList<FederatedRequest> _asyncRequestsPerQuery = null;
LinkedList<SourceFederatedQueryConfigPojo> _endpoints = null;
IkanowSecurityManager _scriptingSecurityManager = new IkanowSecurityManager();
private ScriptEngine _pyEngine = null;
@Override
public void preQueryActivities(ObjectId queryId, AdvancedQueryPojo query, String[] communityIdStrs) {
_scoreStats = null;
_asyncRequestsPerQuery = null;
// 1] Check whether this makes sense to query, get the (sole) entity if so
String entityType = null;
String entityValue = null;
String entityIndex = null;
String textToTest = null;
if ((null != query.qt) && (query.qt.size() > 0) && (query.qt.size() < 4)) {
String logic = query.logic;
if (null != logic) {
logic = logic.toLowerCase();
}
if ((null != logic) && (logic.contains("or") || logic.contains("not"))) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA1: Logic too complex: " + query.logic);
if (_testMode) {
throw new RuntimeException("Bad testQueryJson: Logic too complex: " + query.logic);
}
return; // logic too complex
}//TESTED (1.3)
for (AdvancedQueryPojo.QueryTermPojo qt: query.qt) {
if ((null != qt.entity) || ((null != qt.entityType) && (null != qt.entityValue))) {
if (null == entityType) { // we now have == 1 entity
if (null != qt.entityValue) {
entityValue = qt.entityValue;
entityType = qt.entityType;
entityIndex = entityValue.toLowerCase() + "/" + entityType.toLowerCase();
}//TESTED (1.5)
else {
entityIndex = qt.entity.toLowerCase();
int index = qt.entity.lastIndexOf('/');
if (index > 0) {
entityValue = qt.entity.substring(0, index);
entityType = qt.entity.substring(index + 1).toLowerCase();
}
}//TESTED (1.6)
}
else { // >1 entity, not supported
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA2a: >1 entity: " + qt.entity + " / " + entityType + " / " + query.toApi());
if (_testMode) {
throw new RuntimeException("Bad testQueryJson: >1 entity: " + qt.entity + " / " + entityType + " / " + query.toApi());
}
return;
}//TESTED (1.4)
}//TESTED
else if ((null != qt.etext) && (qt.etext.equals("*"))) {
//this is fine provided it's only ANDed together (eg above logic case)
}
else if (null != qt.etext) { // Only work if it matches one of the regexes
if (null == entityType) {
textToTest = qt.etext;
entityType = "etext";
}
else { // >1 entity, not supported
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA2b: >1 entity: " + qt.entity + " / " + entityType + " / " + query.toApi());
if (_testMode) {
throw new RuntimeException("Bad testQueryJson: >1 entity: " + qt.entity + " / " + entityType + " / " + query.toApi());
}
return;
}//TESTED (1.4)
}
else if (null == qt.time) { // temporal
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA3: non-entity/date " + query.toApi());
if (_testMode) {
throw new RuntimeException("Bad testQueryJson: non-entity/date " + query.toApi());
}
return;
}//TESTED (1.1)
}//(end loop over query terms)
}//TESTED (1.*)
if (null == entityType) { // Query too complex
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA4: query missing entity " + query.toApi());
if (_testMode) {
throw new RuntimeException("Bad testQueryJson: query missing entity " + query.toApi());
}
return;
}//TESTED (1.2)
entityType = entityType.toLowerCase();
// 2] If so, query across all the end
for (SourceFederatedQueryConfigPojo endpoint: _endpoints) {
// Endpoint validation:
if (null == endpoint.entityTypes) {
if (_testMode) {
throw new RuntimeException("No entity types specified");
}
else {
continue;
}
}
if (null != textToTest) { // This is text, see if you can convert to an entity
entityValue = null; //(reset for different endpoints - used in the check to decide whether to continue)
for (String entityTypeRegex: endpoint.entityTypes) {
if (entityTypeRegex.startsWith("/")) {
int regexIndex = entityTypeRegex.lastIndexOf('/'); // (guaranteed to be >= 0)
try {
Pattern regex = Pattern.compile(entityTypeRegex.substring(1, regexIndex));
if (regex.matcher(textToTest).matches()) {
entityType = entityTypeRegex.substring(1+regexIndex);
if (entityType.length() > 0) {
entityValue = textToTest;
entityIndex = entityValue.toLowerCase() + "/" + entityType.toLowerCase();
}
}
}
catch (Exception e) { // if not in test mode, carry on
if (_testMode) {
throw new RuntimeException(e);
}
}
}
}//(end loop over entity regexes)
}//TESTED
if (null == entityValue) { // None of the regexes matched
if (_testMode) {
throw new RuntimeException("Text specified, does not match any of the regexes: " + Arrays.toString(endpoint.entityTypes.toArray()) + " ... text = " + textToTest);
}
continue;
}
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA5: ENDPOINT: " + Arrays.toString(endpoint.entityTypes.toArray()) + " / " + entityType);
if ((null != endpoint.importScript) && !endpoint.importScript.isEmpty()) {
if (null == endpoint.scriptlang) {
endpoint.scriptlang = "python"; // python ==default
}
if (endpoint.scriptlang.equalsIgnoreCase("python")) {
_pyEngine = new ScriptEngineManager().getEngineByName("python");
if (null == _pyEngine) {
_logger.error("Python not installed - copy jython 2.5+ into /opt/infinite-home/lib/unbundled");
if (_testMode) {
throw new RuntimeException("Python not installed - copy jython 2.5+ into /opt/infinite-home/lib/unbundled");
}
}//TESTED (by hand, importScript != null and scriptlang: "python", jython not on classpath)
}
else if (endpoint.scriptlang.equalsIgnoreCase("external")) {
//nothing to do here, just carry on, will handle the external bit later on
}
else {
_logger.error("Python/External is currently the only supported scriptlang");
if (_testMode) {
throw new RuntimeException("Python is currently the only supported scriptlang");
}
}//TESTED (by hand, importScript != null and scriptlang: "none")
}//TESTED
if ((null != endpoint.bypassSimpleQueryParsing) && endpoint.bypassSimpleQueryParsing) {
throw new RuntimeException("Currently only simple query parsing is supported");
}
if ((null != endpoint.entityTypes) && endpoint.entityTypes.contains(entityType)) {
// If not using the full source pipeline processing capability (ie always generating 0/1
BasicDBObject cachedDoc = null;
String cachedDocUrl = buildScriptUrl(endpoint.parentSource.getKey(), entityIndex);
BasicDBObject cachedDoc_expired = null;
if (!isComplexSource(endpoint.parentSource)) {
// Check if the *doc* (not *API response*) generated from this endpoint/entity has been cached, check expiry if so
if (_cacheMode && ((null == endpoint.cacheTime_days) || (endpoint.cacheTime_days >= 0))) {
if (_DEBUG) _logger.debug("DEB: preQA6ya: Search Doc Cache: " + cachedDocUrl + " , " + endpoint.cacheTime_days);
BasicDBObject cachedDocQuery = new BasicDBObject(DocumentPojo.url_, cachedDocUrl);
cachedDocQuery.put(DocumentPojo.sourceKey_, endpoint.parentSource.getKey());
cachedDoc = (BasicDBObject) DbManager.getDocument().getMetadata().findOne(cachedDocQuery);
if (null != cachedDoc) {
// (quick check if we have a complex source in here)
String sourceUrl = cachedDoc.getString(DocumentPojo.sourceUrl_);
if (null != sourceUrl) { // switching from complex to simple source - delete the cached docs
if (_DEBUG) _logger.debug("DEB: preQA6yb: Clear Search Doc Cache: " + cachedDocUrl + " , " + sourceUrl);
cachedDocQuery.remove(DocumentPojo.url_);
cachedDocQuery.put(DocumentPojo.sourceUrl_, sourceUrl);
DbManager.getDocument().getMetadata().remove(cachedDocQuery);
cachedDoc = null;
}//TESTED (by hand)
else if (checkDocCache_isExpired(cachedDoc, endpoint)) {
cachedDoc_expired = cachedDoc;
cachedDoc = null;
}
}
}//TESTED (by hand)
}
if (null == _asyncRequestsPerQuery) {
// If we've got this far create a list to store the async requests
_asyncRequestsPerQuery = new LinkedList<FederatedRequest>();
}
if (null != cachedDoc) { // (simple sources only, by construction)
// Common params:
FederatedRequest requestOverview = new FederatedRequest();
requestOverview.endpointInfo = endpoint;
requestOverview.communityIdStrs = communityIdStrs;
requestOverview.requestParameter = entityValue;
requestOverview.queryIndex = entityIndex;
requestOverview.mergeKey = endpoint.parentSource.getKey();
if (_DEBUG) _logger.debug("DEB: preQA6z: Doc Cache: " + cachedDocUrl + " , " + cachedDoc);
requestOverview.cachedDoc = cachedDoc;
_asyncRequestsPerQuery.add(requestOverview);
}//TESTED (by hand)
else if (null != endpoint.importScript) {
BasicDBObject cachedVal = null;
if (_cacheMode) { // (source key not static, plus not sure it's desirable, so for simplicity just don't cache requests in test mode)
cachedVal = this.getCache(cachedDocUrl, endpoint);
}
// Common params:
FederatedRequest requestOverview = new FederatedRequest();
requestOverview.endpointInfo = endpoint;
requestOverview.communityIdStrs = communityIdStrs;
requestOverview.requestParameter = entityValue;
requestOverview.queryIndex = entityIndex;
requestOverview.mergeKey = endpoint.parentSource.getKey();
requestOverview.cachedDoc_expired = cachedDoc_expired;
if (null != cachedVal) {
if (checkIfNeedToClearCache(cachedVal, endpoint.parentSource)) {
if (_DEBUG) _logger.debug("DEB: preQA6aa: Clear cache: " + cachedDocUrl + " , " + cachedVal);
cachedVal = null;
}
}
requestOverview.cachedResult = cachedVal; // will often be null
if ((null == cachedVal) || isComplexSource(endpoint.parentSource)) {
if (null != cachedVal) {
if (_DEBUG) _logger.debug("DEB: preQA6ab: Complex Src Cache: " + cachedDocUrl + " , " + cachedVal);
}
if (endpoint.scriptlang.equalsIgnoreCase("external")) {
requestOverview.importThread = new FederatedScriptHarvest();
}
else {
requestOverview.importThread = new FederatedJythonHarvest();
}
requestOverview.importThread.queryEngine = this;
requestOverview.importThread.request = requestOverview;
requestOverview.importThread.start();
}
else {
if (_DEBUG) _logger.debug("DEB: preQA6a: Cache: " + cachedDocUrl + " , " + cachedVal);
}
// Launch thread
_asyncRequestsPerQuery.add(requestOverview);
}//TESTED (by hand)
else {
if (isComplexSource(endpoint.parentSource)) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA6ba: Build complex source, num requests = " + endpoint.requests.size());
FederatedRequest requestOverview = new FederatedRequest();
requestOverview.endpointInfo = endpoint;
requestOverview.communityIdStrs = communityIdStrs;
requestOverview.requestParameter = entityValue;
requestOverview.queryIndex = entityIndex;
requestOverview.mergeKey = endpoint.parentSource.getKey();
requestOverview.cachedDoc_expired = cachedDoc_expired;
requestOverview.importThread = new FederatedSimpleHarvest();
requestOverview.importThread.queryEngine = this;
requestOverview.importThread.request = requestOverview;
requestOverview.importThread.start();
// Launch thread
_asyncRequestsPerQuery.add(requestOverview);
}
else { // simple source
try {
for (SourceFederatedQueryConfigPojo.FederatedQueryEndpointUrl request: endpoint.requests) {
FederatedRequest requestOverview = createSimpleHttpEndpoint_includingCache(
entityValue, entityIndex, communityIdStrs,
endpoint, request, cachedDoc_expired);
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA6bb: Build request: " + request.endPointUrl);
_asyncRequestsPerQuery.add(requestOverview);
}//(end loop over multiple requests
}
catch (Exception e) {
_logger.error("Unknown error creating federated query for " + endpoint.titlePrefix + ": " + e.getMessage());
if (_testMode) {
throw new RuntimeException("Unknown error creating federated query for " + endpoint.titlePrefix + ": " + e.getMessage(), e);
}
}
}//(end if simple not complex)
}//(end cached doc vs script vs request mode for queries)
}//(end if this request is for this entity type)
else { // no entity matches - if in test mode then bomb out with useful error
if (_testMode) {
throw new RuntimeException("Specified entity: " + entityIndex + " not in set: " + Arrays.toString(endpoint.entityTypes.toArray()));
}
}
}//(end loop over endpoints)
}
@Override
public void postQueryActivities(ObjectId queryId, List<BasicDBObject> docs, ResponsePojo response)
{
boolean grabbedScores = false;
double aggregateSignif = 100.0;
double queryRelevance = 100.0;
double score = 100.0;
if (null != _asyncRequestsPerQuery) {
int added = 0;
BasicDBList bsonArray = new BasicDBList();
PeekingIterator<FederatedRequest> it = Iterators.peekingIterator(_asyncRequestsPerQuery.iterator());
while (it.hasNext()) {
// loop state:
BasicDBObject[] docOrDocs = new BasicDBObject[1];
docOrDocs[0] = null;
FederatedRequest request = it.next();
boolean isComplexSource = isComplexSource(request.endpointInfo.parentSource);
if (null == request.cachedDoc) { // no cached doc, simple source processing (OR ANY COMPLEX CASE BY CONSTRUCTION)
try {
if ((null == request.cachedResult) || isComplexSource) { // no cached api response, or complex
if (null != request.importThread) {
// 1) wait for the thread to finish
if (null == request.endpointInfo.queryTimeout_secs) {
request.endpointInfo.queryTimeout_secs = 300;
}
for (int timer = 0; timer < request.endpointInfo.queryTimeout_secs; timer++) {
try {
request.importThread.join(1000L);
if (!request.importThread.isAlive()) {
break;
}
}//TESTED (by hand)
catch (Exception e) {
//(carry on)
}
}
if (request.importThread.isAlive()) {
request.errorMessage = new RuntimeException("Script timed out");
}//TESTED (by hand)
// 2) Get the results
if (null != request.errorMessage) {
if (_testMode) {
throw new RuntimeException(request.errorMessage);
}
}
else if (isComplexSource) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: postQA0: " + request.complexSourceProcResults.size());
handleComplexDocCaching(request, _cacheMode, _scoreStats);
// Get a list of docs
docOrDocs = ((BasicDBList)DocumentPojo.listToDb(request.complexSourceProcResults, DocumentPojo.listType())).toArray(new BasicDBObject[0]);
// (_API_ caching is exactly the same between cache and non-cache cases)
// (note that if null != complexSourceProcResults then follows that null != scriptResult)
String url = buildScriptUrl(request.mergeKey, request.queryIndex);
if (!(request.importThread instanceof FederatedSimpleHarvest) && _cacheMode) { // (don't cache python federated queries in test mode)
// (simple harvest caching is done separately)
this.cacheApiResponse(url, request.scriptResult, request.endpointInfo);
}
}//TESTED (by hand - single and multiple doc mode)
else if (null == request.scriptResult) {
if (_testMode) {
throw new RuntimeException("Script mode: no cached result found from: " + request.requestParameter);
}
}
else {
// (_API_ caching is exactly the same between cache and non-cache cases)
String url = buildScriptUrl(request.mergeKey, request.queryIndex);
if (_cacheMode) { // (don't cache python federated queries in test mode)
this.cacheApiResponse(url, request.scriptResult, request.endpointInfo);
}
bsonArray.add(request.scriptResult);
}
} // end script mode
else { // HTTP mode (also: must be simple source builder)
Response endpointResponse = request.responseFuture.get();
request.asyncClient.close();
request.asyncClient = null;
String jsonStr = endpointResponse.getResponseBody();
String url = endpointResponse.getUri().toURL().toString();
Object bsonUnknownType = com.mongodb.util.JSON.parse(jsonStr);
BasicDBObject bson = null;
if (bsonUnknownType instanceof BasicDBObject) {
bson = (BasicDBObject) bsonUnknownType;
}
else if (bsonUnknownType instanceof BasicDBList) {
bson = new BasicDBObject(SimpleFederatedCache.array_, bsonUnknownType);
}
else if (bsonUnknownType instanceof String) {
bson = new BasicDBObject(SimpleFederatedCache.value_, bsonUnknownType);
}
//DEBUG
if (_DEBUG) _logger.debug("DEB: postQA1: " + url + ": " + jsonStr);
if (null != bson) {
MongoDbUtil.enforceTypeNamingPolicy(bson, 0);
this.cacheApiResponse(url, bson, request.endpointInfo);
bsonArray.add(bson);
}
}//(end script vs request method)
}//TESTED (3.1, 4.2)
else { // (just used cached value)
//DEBUG
if (_DEBUG) _logger.debug("DEB: postQA2: " + request.cachedResult.toString());
bsonArray.add((BasicDBObject)request.cachedResult.get(SimpleFederatedCache.cachedJson_));
}//TESTED (4.1, 4.3)
}
catch (Exception e) {
//DEBUG
if (null == request.subRequest) {
_logger.error("Error with script: " + e.getMessage());
if (_testMode) {
throw new RuntimeException("Error with script: " + e.getMessage(), e);
}
}
else {
_logger.error("Error with " + request.subRequest.endPointUrl + ": " + e.getMessage());
if (_testMode) {
throw new RuntimeException("Error with " + request.subRequest.endPointUrl + ": " + e.getMessage(), e);
}
}
}
if (null == docOrDocs[0]) {
// (this next bit of logic can only occur in simple source cases by construction, phew)
if (!it.hasNext() || (request.mergeKey != it.peek().mergeKey)) { // deliberate ptr arithmetic
String url = buildScriptUrl(request.mergeKey, request.queryIndex);
//DEBUG
if (_DEBUG) _logger.debug("DEB: postQA3: " + url + ": " + bsonArray);
docOrDocs[0] = createDocFromJson(bsonArray, url, request, request.endpointInfo);
}
}
} // (end if no cached doc)
else { // cached doc, bypass lots of processing because no merging and doc already built (simple source processing)
docOrDocs[0] = request.cachedDoc;
}//TESTED (by hand)
if (null != docOrDocs[0]) for (BasicDBObject doc: docOrDocs) {
// Cache the document unless already cached (or caching disabled)
if ((null == request.cachedDoc) && _cacheMode && !isComplexSource &&
((null == request.endpointInfo.cacheTime_days) || (request.endpointInfo.cacheTime_days >= 0)))
{
simpleDocCache(request, doc);
}//TESTED (by hand, 3 cases: cached not expired, cached expired first time, cached expired multiple times)
if (!grabbedScores) {
if (!docs.isEmpty()) {
BasicDBObject topDoc = docs.get(0);
aggregateSignif = topDoc.getDouble(DocumentPojo.aggregateSignif_, aggregateSignif);
queryRelevance = topDoc.getDouble(DocumentPojo.queryRelevance_, queryRelevance);
score = topDoc.getDouble(DocumentPojo.score_, score);
grabbedScores = true;
// OK would also like to grab the original matching entity, if it exists
if (!isComplexSource) {
BasicDBList ents = (BasicDBList) topDoc.get(DocumentPojo.entities_);
if (null != ents) {
for (Object entObj: ents) {
BasicDBObject ent = (BasicDBObject)entObj;
String entIndex = ent.getString(EntityPojo.index_, "");
if (entIndex.equals(request.queryIndex)) {
ents = (BasicDBList) doc.get(DocumentPojo.entities_);
if (null != ents) {
ents.add(ent);
}
break;
}
}
}//TESTED (by hand)
}
}
}
doc.put(DocumentPojo.aggregateSignif_, aggregateSignif);
doc.put(DocumentPojo.queryRelevance_, queryRelevance);
doc.put(DocumentPojo.score_, score);
// Swap id and updateId, everything's been cached now:
// Handle update ids vs normal ids:
ObjectId updateId = (ObjectId) doc.get(DocumentPojo.updateId_);
if (null != updateId) { // swap the 2...
doc.put(DocumentPojo.updateId_, doc.get(DocumentPojo._id_));
doc.put(DocumentPojo._id_, updateId);
}//TESTED (by hand)
// If we're returning to a query then we'll adjust the doc format (some of the atomic fields become arrays)
if (!_testMode) {
convertDocToQueryFormat(doc, request.communityIdStrs);
}//TESTED (by hand)
docs.add(0, doc);
added++;
//(doc auto reset at top of loop)
//(end if built a doc from the last request/set of requests)
}//TESTED (3.1)
}//(end loop over federated requests)
if (null != response.getStats()) {
response.getStats().found += added;
}//TESTED (by hand)
}
}
/////////////////////////////////////////////////
// UTILITY
public FederatedRequest createSimpleHttpEndpoint_includingCache(
String entityValue, String entityIndex, String[] communityIdStrs,
SourceFederatedQueryConfigPojo endpoint,
SourceFederatedQueryConfigPojo.FederatedQueryEndpointUrl request,
BasicDBObject cachedDoc_expired) throws IOException
{
AsyncHttpClient asyncHttpClient = new AsyncHttpClient();
BoundRequestBuilder asyncRequest = null;
String postContent = null;
if (null != request.httpFields) {
postContent = request.httpFields.get("Content");
if (null == postContent)
postContent = request.httpFields.get("content");
}//TESTED (by hand, "http://httpbin.org/post", "httpFields": { "Content": "test" }
if (null == postContent) {
asyncRequest = asyncHttpClient.prepareGet(request.endPointUrl.replace("$1", entityValue));
}
else {
asyncRequest = asyncHttpClient.preparePost(request.endPointUrl.replace("$1", entityValue));
}//TESTED (by hand, "http://httpbin.org/post", "httpFields": { "Content": "test" }
if (null != request.urlParams) {
for (Map.Entry<String, String> keyValue: request.urlParams.entrySet()) {
asyncRequest = asyncRequest.addQueryParameter(keyValue.getKey(), keyValue.getValue().replace("$1", entityValue));
}
}//TESTED (1.5, 1.6, 3.*, 4.*)
if (null != request.httpFields) {
for (Map.Entry<String, String> keyValue: request.httpFields.entrySet()) {
if (!keyValue.getKey().equalsIgnoreCase("content")) {
asyncRequest = asyncRequest.addHeader(keyValue.getKey(), keyValue.getValue().replace("$1", entityValue));
}
}
}//TESTED (by hand, "http://httpbin.org/cookies", "httpFields": { "Cookie": "mycookie=test" }
if (null != postContent) {
asyncRequest = asyncRequest.setBody(postContent.replace("$1", entityValue));
}//TESTED (by hand, "http://httpbin.org/post", "httpFields": { "Content": "$1" }
// Common params:
FederatedRequest requestOverview = new FederatedRequest();
requestOverview.endpointInfo = endpoint;
requestOverview.communityIdStrs = communityIdStrs;
requestOverview.requestParameter = entityValue;
requestOverview.asyncClient = asyncHttpClient;
requestOverview.queryIndex = entityIndex;
requestOverview.mergeKey = endpoint.parentSource.getKey();
requestOverview.subRequest = request;
// Now check out the cache:
URI rawUri = asyncRequest.build().getRawURI();
String url = rawUri.toString();
if ((null == endpoint.parentSource.getOwnedByAdmin()) || !endpoint.parentSource.getOwnedByAdmin())
{
int port = rawUri.getPort();
if ((80 != port) && (443 != port) && (-1 != port)) {
_logger.error("Only admin can make requests on non-standard ports: " + url + ": " + port);
if (_testMode) {
asyncHttpClient.close();
throw new RuntimeException("Only admin can make requests on non-standard ports: " + url + ": " + port);
}
}
}//TESTED (by hand)
BasicDBObject cachedVal = this.getCache(url, endpoint);
if (null != cachedVal) {
if (checkIfNeedToClearCache(cachedVal, endpoint.parentSource)) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: pre:CSHEb: Clear cache: " + url + " , " + cachedVal);
cachedVal = null;
}
}
requestOverview.cachedResult = cachedVal;
requestOverview.cachedDoc_expired = cachedDoc_expired;
if (null == cachedVal) {
requestOverview.responseFuture = asyncRequest.execute();
}
else {
//DEBUG
if (_DEBUG) _logger.debug("DEB: pre:CSHEb: Cache: " + url + " , " + cachedVal);
requestOverview.responseFuture = null;
asyncHttpClient.close();
}
return requestOverview;
}
public BasicDBObject createDocFromJson(BasicDBList jsonList, String url, FederatedRequest request, SourceFederatedQueryConfigPojo endpointInfo) {
BasicDBObject doc = null; // (don't create unless needed)
BasicDBList ents = null;
StringBuffer entVals = null;
HashSet<String> entDedup = null;
if (_testMode) { // In test mode, need to return the JSON even if no entities are specified
doc = new BasicDBObject();
}
if (null != endpointInfo.docConversionMap) {
for (Map.Entry<String, String> docInfo: endpointInfo.docConversionMap.entrySet()) {
for (Object jsonObj: jsonList) {
BasicDBObject json = (BasicDBObject)jsonObj;
try {
String key = docInfo.getKey();
// (allow user to not prepend array: if they don't want to)
if ((1 == json.size()) && json.containsKey((Object)"array")) {
if (!key.startsWith("array:") &&
!key.startsWith(":array") && !key.startsWith("$:array") &&
!key.startsWith("::") && !key.startsWith("$::"))
{
if (key.startsWith(":")) { // jpath
key = ":array" + key;
}
else if (key.startsWith("$:")) { // jpath
key = "$:array" + key.substring(1);
}
else {
key = "array:" + key;
}
}
}//TESTED (by hand)
if (key.startsWith(":")) { // jpath
key = "$" + key;
}
// NOTE: *not* org.json.JSONArray
JSONArray candidateEntities = null;
if (key.startsWith("$")) {
JSONArray candidateEntities_tmp = JsonPath.read(json.toString(), key.replace(':', '.'));
if (null != candidateEntities_tmp) {
candidateEntities = new JSONArray();
for (Object o: candidateEntities_tmp) {
if (o instanceof String) {
candidateEntities.add(o);
}
else if (o instanceof JSONArray) {
candidateEntities.addAll((JSONArray)o);
}
}//TESTED (displayUrl vs entities, 3.2)
}
//DEBUG
//System.out.println(candidateEntities);
}//(TESTED (permutations above by hand))
else {
String s = (String) MongoDbUtil.getProperty(json, key.replace(':', '.'));
if (null != s) {
candidateEntities = new JSONArray();
candidateEntities.add(s);
}
}//TESTED (3.1)
if (null != candidateEntities) for (int i = 0; i < candidateEntities.size(); ++i) {
Object o = candidateEntities.get(i);
if (!(o instanceof String)) {
continue;
}
String s = o.toString();
if (null == doc) {
doc = new BasicDBObject();
//(various fields added below)
}
if (docInfo.getValue().equalsIgnoreCase(DocumentPojo.displayUrl_)) {
doc.put(DocumentPojo.displayUrl_, s);
}//TESTED (3.1, 4.*)
else { // Entities!
if (null == ents) {
ents = new BasicDBList();
}
String index = s.toLowerCase() + "/" + docInfo.getValue().toLowerCase();
if (null == entDedup) {
entDedup = new HashSet<String>();
}
else if (entDedup.contains(index)) { // Entity deduplication
continue;
}//TESTED (3.2)
entDedup.add(index);
if (null == entVals) {
entVals = new StringBuffer(": ");
}
else {
entVals.append(", ");
}
entVals.append(s);
String dimension = null;
if (null != endpointInfo.typeToDimensionMap) {
try {
dimension = EntityPojo.Dimension.valueOf(endpointInfo.typeToDimensionMap.get(docInfo.getValue())).toString();
}
catch (Exception e) {}
}
if (null == dimension) {
dimension = EntityPojo.Dimension.What.toString();
}//TESTED (by hand)
// (alternative to "made up" values would be to go looking in the existing docs/ents?)
// (we'll try to avoid that for now...)
BasicDBObject ent = new BasicDBObject();
ent.put(EntityPojo.disambiguated_name_, s);
ent.put(EntityPojo.type_, docInfo.getValue());
ent.put(EntityPojo.dimension_, dimension);
ent.put(EntityPojo.relevance_, 1.0);
ent.put(EntityPojo.doccount_, 1L); // (ie relative to this query)
ent.put(EntityPojo.averageFreq_, 1.0);
ent.put(EntityPojo.datasetSignificance_, 10.0); // (ie relative to this query)
ent.put(EntityPojo.significance_, 10.0); // (ie relative to this query)
ent.put(EntityPojo.frequency_, 1.0);
ent.put(EntityPojo.index_, index);
ent.put(EntityPojo.queryCoverage_, 100.0); // (ie relative to this query)
ent.put(EntityPojo.totalfrequency_, 1.0); // (ie relative to this query)
ents.add(ent);
}//TESTED (3.1, 4.*)
}
}
catch (Exception e) {
//(do nothing? null or the wrong type)
//e.printStackTrace();
}
}//end loop over various JSON objects retrieved
}//(End loop over doc conversion elements)
}//TESTED (3.*, 4.*)
if ((null == ents) && !_testMode) { // don't return unless there are any entities
return null;
}
else if (null != doc) {
// Insert mandatory fields:
// (Note the query format is a little bit different, the following fields are converted to arrays:
// sourceKey, source, communityId, mediaType)
doc.put(DocumentPojo._id_, new ObjectId());
doc.put(DocumentPojo.url_, url);
doc.put(DocumentPojo.created_, new Date());
doc.put(DocumentPojo.modified_, new Date());
doc.put(DocumentPojo.publishedDate_, new Date());
doc.put(DocumentPojo.sourceKey_, endpointInfo.parentSource.getKey());
doc.put(DocumentPojo.source_, endpointInfo.parentSource.getTitle());
doc.put(DocumentPojo.communityId_, new ObjectId(request.communityIdStrs[0]));
doc.put(DocumentPojo.mediaType_, endpointInfo.parentSource.getMediaType());
doc.put(DocumentPojo.metadata_, new BasicDBObject("json", jsonList.toArray()));
if ((null != entVals) && (entVals.length() > 165)) { // (arbitrary length)
entVals.setLength(165);
entVals.append("...");
}
doc.put(DocumentPojo.title_, new StringBuffer(endpointInfo.titlePrefix).append(": ").append(request.requestParameter).append(entVals).toString());
doc.put(DocumentPojo.entities_, ents);
Gson gson = new GsonBuilder().setPrettyPrinting().create();
JsonParser jp = new JsonParser();
JsonElement je = jp.parse(jsonList.toString());
doc.put(DocumentPojo.description_, gson.toJson(je)); // (prettified JSON)
}//TESTED (3.*, 4.*)
return doc;
}
// Convert some of the doc fields to
private static BasicDBObject convertDocToQueryFormat(BasicDBObject doc, String[] communityIdStrs) {
doc.put(DocumentPojo.sourceKey_, Arrays.asList(doc.get(DocumentPojo.sourceKey_))); // (don't need to remove #N/#NN - fed queries can't have them)
doc.put(DocumentPojo.source_, Arrays.asList(doc.get(DocumentPojo.source_)));
doc.put(DocumentPojo.mediaType_, Arrays.asList(doc.get(DocumentPojo.mediaType_)));
doc.put(DocumentPojo.communityId_, communityIdStrs);
return doc;
}//TESTED (by hand)
private static String buildScriptUrl(String mergeKey, String entityIndex) {
String url = new StringBuilder().append("inf://federated/").append(mergeKey).append("/").append(entityIndex).toString();
return url;
}//TESTED (by hand)
/////////////////////////////////////////////////
// CACHE UTILITIES
public static boolean TEST_MODE_ONLY = false;
public static DBCollection getCacheCollection() {
if (TEST_MODE_ONLY) {
return MongoDbManager.getCollection("test", "fed_query_cache");
}
else {
return MongoDbManager.getIngest().getFederatedCache();
}
}
private static boolean _staticInitializer = false;
private static long _lastChecked = -1L;
private BasicDBObject getCache(String url, SourceFederatedQueryConfigPojo endpoint) {
if ((null != endpoint.cacheTime_days) && (endpoint.cacheTime_days <= 0)) { // cache disabled
return null;
}
DBCollection endpointCacheCollection = getCacheCollection();
if (!_staticInitializer) {
_staticInitializer = true;
endpointCacheCollection.ensureIndex(new BasicDBObject(SimpleFederatedCache.expiryDate_, 1));
}
BasicDBObject cacheObj = (BasicDBObject) endpointCacheCollection.findOne(new BasicDBObject(SimpleFederatedCache._id_, url));
if (null == cacheObj) {
return null;
}
// else found something, means there's stuff in the DB
// so check it's not too big:
Date now = new Date();
if ((-1 == _lastChecked) || (now.getTime() > (_lastChecked + (600L*1000L)))) { // (only check every 10 minutes)
if (endpointCacheCollection.count() > SimpleFederatedCache.QUERY_FEDERATION_CACHE_CLEANSE_SIZE) {
_lastChecked = now.getTime();
// Remove everything with expiry date older than now
endpointCacheCollection.remove(new BasicDBObject(SimpleFederatedCache.expiryDate_, new BasicDBObject(DbManager.lt_, new Date())));
}
}//TESTED (4.3)
Date expiryDate = cacheObj.getDate(SimpleFederatedCache.expiryDate_, now);
if (now.getTime() < expiryDate.getTime()) {
return cacheObj;
}
else {
return null;
}//TESTED (4.2)
}//TESTED (4.*)
private static final int DEFAULT_CACHE_TIME_DAYS = 5;
private void cacheApiResponse(String url, BasicDBObject toCacheJson, SourceFederatedQueryConfigPojo endpoint) {
int cacheTime_days = DEFAULT_CACHE_TIME_DAYS;
if (null != endpoint.cacheTime_days) {
cacheTime_days = endpoint.cacheTime_days;
}
if (cacheTime_days <= 0) { // Disable _request_ cache (to disable all caching include doc caching use -1)
return;
}
DBCollection endpointCacheCollection = getCacheCollection();
BasicDBObject toCacheObj = new BasicDBObject(SimpleFederatedCache._id_, url);
toCacheObj.put(SimpleFederatedCache.cachedJson_, toCacheJson);
toCacheObj.put(SimpleFederatedCache.expiryDate_, new Date(new Date().getTime() + cacheTime_days*3600L*24L*1000L));
toCacheObj.put(SimpleFederatedCache.created_, new Date());
endpointCacheCollection.save(toCacheObj);
}//TESTED (3.1, 4.*)
// Document level caching, although it effectively serves as a mostly redundant request cache,
// It's actually used to allow users to save federated query documents in their buckets
public static void simpleDocCache(FederatedRequest request, BasicDBObject doc) {
if (null != request.cachedDoc_expired) {
ObjectId updateId = request.cachedDoc_expired.getObjectId(DocumentPojo.updateId_);
if (null != updateId) {
doc.put(DocumentPojo.updateId_, updateId);
}
else {
doc.put(DocumentPojo.updateId_, request.cachedDoc_expired.getObjectId(DocumentPojo._id_));
}
BasicDBObject docUpdate = new BasicDBObject(DocumentPojo.url_, doc.getString(DocumentPojo.url_));
docUpdate.put(DocumentPojo.sourceKey_, doc.getString(DocumentPojo.sourceKey_));
DbManager.getDocument().getMetadata().remove(docUpdate);
//DEBUG
if (_DEBUG) _logger.debug("DEB: postQA4a: re-cached ... " + docUpdate.toString() + ": " + doc.getObjectId(DocumentPojo.updateId_));
}
else if (null == request.cachedDoc) { // if no currently cached doc, simply save what we have
//DEBUG
if (_DEBUG) _logger.debug("DEB: postQA4b: cached ... " + doc);
DbManager.getDocument().getMetadata().save(doc);
}
// (else already have a valid cached doc so nothing to do)
}
public static boolean checkDocCache_isExpired(BasicDBObject cachedDoc, SourceFederatedQueryConfigPojo endpoint) {
if (null == endpoint.cacheTime_days)
endpoint.cacheTime_days = DEFAULT_CACHE_TIME_DAYS;
Date now = new Date();
long cacheThreshold = cachedDoc.getDate(DocumentPojo.created_, now).getTime() + endpoint.cacheTime_days*3600L*24L*1000L;
if (cacheThreshold < now.getTime()) // (ie doc-creation-time + cache is earlier than now => time to decache)
{
//DEBUG
if (_DEBUG) _logger.debug("DEB: preQA6zz: Cache expired: " + cachedDoc.getString(DocumentPojo.url_) + ": " + new Date(cacheThreshold) + " vs " + now);
return true;
}
else
return false;
}//TESTED
private static BasicDBObject getCachedApiResponse(String scriptResult) {
Object parsedScriptResult;
BasicDBObject outResult;
try {
parsedScriptResult = com.mongodb.util.JSON.parse(scriptResult);
}
catch (Exception e) {
throw new RuntimeException("Error deserializing " + scriptResult + ": " + e.getMessage(), e);
}
if (parsedScriptResult instanceof BasicDBObject) {
outResult = (BasicDBObject) parsedScriptResult;
}
else if (parsedScriptResult instanceof BasicDBList) {
outResult = new BasicDBObject(SimpleFederatedCache.array_, parsedScriptResult);
}
else if (parsedScriptResult instanceof String) {
outResult = new BasicDBObject(SimpleFederatedCache.value_, parsedScriptResult);
}
else {
throw new RuntimeException("Error deserializing " + scriptResult + ": " + parsedScriptResult);
}
try {
MongoDbUtil.enforceTypeNamingPolicy(outResult, 0);
}
catch (Exception ee) {
throw new RuntimeException("Error deserializing " + scriptResult + ": " + ee.getMessage(), ee);
}
return outResult;
}//TESTED (c/p from tested code though I deleted the test cases)
private static boolean isComplexSource(SourcePojo src) {
return (null != src.getProcessingPipeline()) && (src.getProcessingPipeline().size() > 1);
}
private static boolean checkIfNeedToClearCache(BasicDBObject cachedVal, SourcePojo src)
{
BasicDBObject cachedJson = (BasicDBObject) cachedVal.get(SimpleFederatedCache.cachedJson_);
if (null == cachedJson) {
return true; // (corrupt cache)
}
boolean isComplexSrc = isComplexSource(src);
if (isComplexSrc) { // check API response
Date createdDate = (Date) cachedVal.get(SimpleFederatedCache.created_);
if (null == createdDate) {
return true; // (needs date for doc caching code so just remove from cache and re-create)
}
}
if ((1 == cachedJson.size()) && (cachedJson.get(SimpleFederatedCache.__infinite__value_) instanceof String)) {
// ie if complex source, return false - no need to clear cache
return !isComplexSrc;
}
else { // opposite
return isComplexSrc;
}
}//TESTED (by hand - all 4 combos)
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// (my own threading)
public abstract class FederatedHarvest extends Thread {
public FederatedRequest request;
public SimpleFederatedQueryEngine queryEngine;
}
public class FederatedJythonHarvest extends FederatedHarvest {
public void run() {
String scriptResult = null;
LinkedList<String> debugLog = queryEngine._testMode ? new LinkedList<String>() : null;
try {
if (null != request.cachedResult) { // we have a cached value but are in complex mode so can't immediately
BasicDBObject cachedJson = (BasicDBObject) request.cachedResult.get(SimpleFederatedCache.cachedJson_);
scriptResult = (String) cachedJson.get(SimpleFederatedCache.__infinite__value_);
}
else {
scriptResult = queryEngine.performImportPythonScript(request.endpointInfo.importScript, request.requestParameter, request.fullQuery, request.endpointInfo.parentSource.getOwnedByAdmin(), debugLog);
}
}
catch (Exception e) {
request.errorMessage = e;
return;
}
try {
if (isComplexSource(request.endpointInfo.parentSource)) {
DocumentPojo doc = new DocumentPojo();
// Fields that are specific to the federated query type:
doc.setFullText(scriptResult);
doc.setUrl(buildScriptUrl(request.mergeKey, request.queryIndex));
// (always cache complex source pipeline results like this)
request.scriptResult = new BasicDBObject(SimpleFederatedCache.__infinite__value_, scriptResult);
if ((null != debugLog) && !debugLog.isEmpty()) {
request.scriptResult.put("$logs", debugLog);
}
handleComplexDocProcessing(doc, request, _cacheMode);
}
else { // simple case:
// In this simple case, the output has to be JSON
request.scriptResult = getCachedApiResponse(scriptResult);
if ((null != debugLog) && !debugLog.isEmpty()) {
request.scriptResult.put("$logs", debugLog);
}
}//(END simple vs complex post processing case)
}
catch (Exception e) {
request.errorMessage = e;
return;
}
}
}//TESTED (by hand)
public class FederatedSimpleHarvest extends FederatedHarvest {
public void run() {
// 1) Kick off all the requests asynchronously
BasicDBList bsonArray = new BasicDBList();
StringBuffer sb = new StringBuffer();
try {
LinkedList<FederatedRequest> asyncRequestsPerQuery = new LinkedList<FederatedRequest>();
for (SourceFederatedQueryConfigPojo.FederatedQueryEndpointUrl httpRequest: request.endpointInfo.requests) {
FederatedRequest requestOverview = createSimpleHttpEndpoint_includingCache(
request.requestParameter, request.queryIndex, request.communityIdStrs,
request.endpointInfo, httpRequest, null);
if (_DEBUG) _logger.debug("DEB: FederatedSimpleHarvest: Build request: " + httpRequest.endPointUrl);
asyncRequestsPerQuery.add(requestOverview);
}//(end loop over multiple requests
//TESTED (by hand)
// 2) Combine the results (waiting asyncronously for the results) - see the mergeKey code equivalent for simple queries
while (!asyncRequestsPerQuery.isEmpty()) {
Iterator<FederatedRequest> it = asyncRequestsPerQuery.iterator();
while (it.hasNext()) {
FederatedRequest requestOverview = it.next();
if (null != requestOverview.cachedResult) { // cached result, note must be in format cachedJson.__infinite__value (else will have been discarded)
BasicDBObject jsonCache = (BasicDBObject) requestOverview.cachedResult.get(SimpleFederatedCache.cachedJson_);
if (null != jsonCache) {
String s = (String) jsonCache.get(SimpleFederatedCache.__infinite__value_);
if (null != s) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: FederatedSimpleHarvest: found cached element: " + requestOverview.cachedResult);
bsonArray.add(s);
sb.append(s).append("\n\n");
it.remove();
continue;
}
}
}//TESTED (by hand)
//IF HERE THEN CACHE DIDN'T EXIST OR FAILED (see continue above)
if (requestOverview.responseFuture.isDone()) {
it.remove();
Response endpointResponse = requestOverview.responseFuture.get();
requestOverview.asyncClient.close();
requestOverview.asyncClient = null;
String jsonStr = endpointResponse.getResponseBody();
String url = endpointResponse.getUri().toURL().toString();
//DEBUG
if (_DEBUG) _logger.debug("DEB: FederatedSimpleHarvest: found new element: " + url + " = " + jsonStr);
BasicDBObject bson = new BasicDBObject(SimpleFederatedCache.__infinite__value_, jsonStr);
cacheApiResponse(url, bson, request.endpointInfo);
bsonArray.add(jsonStr);
sb.append(jsonStr).append("\n\n");
}//TESTED (by hand)
}
if (!asyncRequestsPerQuery.isEmpty()) { // wait 100ms to stop thrashing
try { Thread.sleep(100); } catch (Exception e) {}
}
} //TESTED (by hand)
}
catch (Exception e) {
request.errorMessage = e;
return;
}
// 3) Run the document processing
DocumentPojo doc = new DocumentPojo();
// Fields that are specific to the federated query type:
doc.setFullText(sb.toString());
if (bsonArray.size() > 1) {
doc.addToMetadata("__FEDERATED_REPLIES__", bsonArray.toArray());
}
doc.setUrl(buildScriptUrl(request.mergeKey, request.queryIndex));
// (always cache complex source pipeline results like this)
handleComplexDocProcessing(doc, request, _cacheMode);
}
}
public class FederatedScriptHarvest extends FederatedHarvest {
public void run() {
String scriptResult = null;
try {
if (null != request.cachedResult) { // we have a cached value but are in complex mode so can't immediately
BasicDBObject cachedJson = (BasicDBObject) request.cachedResult.get(SimpleFederatedCache.cachedJson_);
scriptResult = (String) cachedJson.get(SimpleFederatedCache.__infinite__value_);
}
else { // Use the TextExtractorExternalScript function:
TextExtractorExternalScript extractor = new TextExtractorExternalScript();
LinkedHashMap<String, String> dummyExtractorOptions = new LinkedHashMap<String, String>();
String[] args = request.endpointInfo.importScript.split("\\s+");
int i = 0;
for (String arg: args) {
arg = arg.replace("$1", request.requestParameter);
if (0 == i) {
dummyExtractorOptions.put("script", arg);
}
else {
dummyExtractorOptions.put("arg" + i, arg);
}
i++;
}
if (null != request.endpointInfo.queryTimeout_secs) {
dummyExtractorOptions.put("timeout", Long.toString(request.endpointInfo.queryTimeout_secs.longValue()*1000L));
//(convert to ms then to string)
}
SourcePojo dummySrc = new SourcePojo();
dummySrc.setOwnerId(request.endpointInfo.parentSource.getOwnerId());
dummySrc.setExtractorOptions(dummyExtractorOptions);
dummySrc.setCommunityIds(request.endpointInfo.parentSource.getCommunityIds());
DocumentPojo dummyDoc = new DocumentPojo();
dummyDoc.setTempSource(dummySrc);
extractor.extractText(dummyDoc);
scriptResult = dummyDoc.getFullText();
if (null == scriptResult) {
request.errorMessage = new RuntimeException("Unknown problem, script didn't return text: " + dummyExtractorOptions.toString());
return;
}
}
}
catch (Exception e) {
request.errorMessage = e;
return;
}
try {
if (isComplexSource(request.endpointInfo.parentSource)) {
DocumentPojo doc = new DocumentPojo();
// Fields that are specific to the federated query type:
doc.setFullText(scriptResult);
doc.setUrl(buildScriptUrl(request.mergeKey, request.queryIndex));
// (always cache complex source pipeline results like this)
request.scriptResult = new BasicDBObject(SimpleFederatedCache.__infinite__value_, scriptResult);
handleComplexDocProcessing(doc, request, _cacheMode);
}
else { // simple case:
// In this simple case, the output has to be JSON
request.scriptResult = getCachedApiResponse(scriptResult);
}//(END simple vs complex post processing case)
}
catch (Exception e) {
request.errorMessage = e;
return;
}
}
}
///////////////////////////////////////////////////////////////////////////////
private String performImportPythonScript(String importScript, String entityValue, AdvancedQueryPojo query, Boolean isSrcAdmin, LinkedList<String> debugLog) {
String modCode = importScript;
try {
// Create a return value
String fnName = "var" + new ObjectId();
// Pull all the imports, evaluate them outside the security manager
Pattern importRegex = Pattern.compile("^\\s*(?:import|from)\\s[^\n]+", Pattern.MULTILINE);
Matcher m = importRegex.matcher(importScript);
StringBuffer sbImports = new StringBuffer();
while (m.find()) {
sbImports.append(m.group()).append('\n');
}
if (null != query) {
_pyEngine.put("_query", query.toApi()); // full query
}
if (null != entityValue) {
_pyEngine.put("_entityValue", entityValue); // allow either entityValue
}
_pyEngine.eval(sbImports.toString());
// Logging function
if (null != debugLog) {
String logName = "log" + new ObjectId();
_pyEngine.put(logName, debugLog);
_pyEngine.eval("def ikanow_log(logmsg):\n " + logName + ".add(logmsg)\n\n");
}
else {
_pyEngine.eval("def ikanow_log(logmsg):\n pass\n\n");
}
// Enable SSL everywhere (https://wiki.python.org/jython/NewSocketModule#SSLSupport)
//http://tech.pedersen-live.com/2010/10/trusting-all-certificates-in-jython/
//didn't work: http://jython.xhaus.com/installing-an-all-trusting-security-provider-on-java-and-jython/
_pyEngine.eval(IOUtils.toString(SimpleFederatedQueryEngine.class.getResourceAsStream("JythonTrustManager.py")));
// Now run the script
modCode = m.replaceAll("");
modCode = modCode.replaceAll("\n([^\n]+)$", "\n" + fnName + " = " + "$1");
if ((null == isSrcAdmin) || !isSrcAdmin) {
_scriptingSecurityManager.eval(_pyEngine, modCode);
}
else {
_pyEngine.eval(modCode);
}
// Get return value
Object result = _pyEngine.get(fnName.toString());
//DEBUG
if (_DEBUG) _logger.debug("DEB: T1: Return val from script: " + result);
if (null == result) {
throw new RuntimeException("Null return from script - final line needs to evaluate expression to return, eg 'response.read()' or 'varname'");
}//TESTED (by hand)
return result.toString();
} catch (Exception e) {
throw new RuntimeException(e);
}
catch (Error ee) {
throw new RuntimeException(ee);
}
}//TESTED
///////////////////////////////////////////////////////////////////////////////
public static void handleComplexDocProcessing(DocumentPojo doc, FederatedRequest request, boolean cacheMode) {
List<DocumentPojo> docWrapper = null;
if (null != request.cachedResult) { // API result was cached, so docs might be
Date createdDate = request.cachedResult.getDate(SimpleFederatedCache.created_);
if ((null != request.endpointInfo.parentSource.getModified()) && (request.endpointInfo.parentSource.getModified().getTime() > createdDate.getTime())) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDP0: cache out of date, src=" + request.endpointInfo.parentSource.getModified() + " cache=" + createdDate);
request.cachedResult = null; // (clear cache)
}
if (null != request.cachedResult) { // see if we can get the docs from the DB instead of from the harvester
BasicDBObject query = new BasicDBObject(DocumentPojo.sourceKey_, request.endpointInfo.parentSource.getKey());
query.put(DocumentPojo.sourceUrl_, doc.getUrl());
DBCursor dbc = DbManager.getDocument().getMetadata().find(query);
if (dbc.hasNext()) {
docWrapper = DocumentPojo.listFromDb(dbc, DocumentPojo.listType());
if (null == docWrapper) { // (shouldn't ever happen)
request.cachedResult = null;
}
else {
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDP2: cache, found docs=" + docWrapper.size());
}
}
else { // last chance to clear cache
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDP3: empty cache from " + query);
request.cachedResult = null;
}
}
}//TESTED (by hand)
// Need to set this 1) to avoid the harvest controller from deduplicating and 2) so i can retrieve those docs
if (null == docWrapper) { // Go ahead and harvest these docs
doc.setSourceUrl(doc.getUrl());
doc.setId(new ObjectId());
doc.setSourceKey(request.endpointInfo.parentSource.getKey());
doc.setSource(request.endpointInfo.parentSource.getTitle());
doc.setMediaType(request.endpointInfo.parentSource.getMediaType());
doc.setTitle(request.endpointInfo.titlePrefix);
Date d = new Date();
doc.setCreated(d);
doc.setModified(d);
docWrapper = new ArrayList<DocumentPojo>(1);
ArrayList<DocumentPojo> dummyDocs = new ArrayList<DocumentPojo>(0);
docWrapper.add(doc);
try {
HarvestController hc = new HarvestController();
HarvestControllerPipeline hcp = new HarvestControllerPipeline();
hcp.extractSource_preProcessingPipeline(request.endpointInfo.parentSource, hc);
hcp.enrichSource_processingPipeline(request.endpointInfo.parentSource, docWrapper, dummyDocs, dummyDocs);
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDP4: created " + docWrapper.size() + " doc(s)");
}
catch (IOException e) {
throw new RuntimeException("Complex source processing", e);
}
}
request.complexSourceProcResults = docWrapper;
}
public static void handleComplexDocCaching(FederatedRequest request, boolean cacheMode, ScoringUtils scoreStats) {
List<DocumentPojo> docWrapper = request.complexSourceProcResults;
//In non-test mode .. Go through the list of docs and work out what the deal is with caching, ie remove docs + add update ids
//Also go through and set default scores for any entities that haven't been scored based on existing docs
BasicDBObject query = new BasicDBObject(DocumentPojo.sourceKey_, request.endpointInfo.parentSource.getKey());
BasicDBObject fields = new BasicDBObject(DocumentPojo.updateId_, 1); // (ie _id and updateId only)
String srcUrl = null;
for (DocumentPojo outDoc: docWrapper) {
if (null == srcUrl) {
srcUrl = outDoc.getSourceUrl();
}
// Always make the text non-transient, so gets stored
outDoc.makeFullTextNonTransient();
if (null == outDoc.getId()) {
outDoc.setId(new ObjectId());
}
if (cacheMode && (null == request.cachedResult)) { // (if result not previously cached)
// Step 1: deduplication
query.put(DocumentPojo.url_, outDoc.getUrl());
BasicDBObject outVal = (BasicDBObject) DbManager.getDocument().getMetadata().findOne(query, fields);
if (null != outVal) {
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDC1: update cache from : " + outVal + " for " + outDoc.getUrl());
// Use updateId if it exists, otherwise _id
ObjectId updateId = outVal.getObjectId(DocumentPojo.updateId_);
if (null == updateId) {
updateId = outVal.getObjectId(DocumentPojo._id_);
}
outDoc.setUpdateId(updateId);
}
}//TESTED (by hand - single and multiple docs mode)
// Step 2: add fake scores to all the entities that didn't get scores from the aggregation manager
if (null != outDoc.getEntities()) for (EntityPojo ent: outDoc.getEntities()) {
boolean fakeStats = true;
if (null != scoreStats) {
if (scoreStats.fillInEntityStatistics(ent)) {
fakeStats = false;
}
}
if (fakeStats) {
ent.setDoccount(1L);
ent.setTotalfrequency(1L);
ent.setDatasetSignificance(10.0);
ent.setSignificance(10.0);
ent.setQueryCoverage(100.0);
}
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDC2: entity: " + ent.getIndex() + " , sig=" + ent.getDatasetSignificance());
}//TESTED
if (null != outDoc.getAssociations()) for (AssociationPojo assoc: outDoc.getAssociations()) {
assoc.setAssoc_sig(10.0);
assoc.setDoccount(1L);
}
}//TESTED (by hand - overlapping and non-overlapping case)
if (cacheMode && (null == request.cachedResult)) { // (if result not previously cached)
//Remove old docs now we have new ones
DbManager.getDocument().getMetadata().remove(query); // remove everything with this specific URL (ie simple source)
query.remove(DocumentPojo.url_);
query.put(DocumentPojo.sourceUrl_, srcUrl);
DbManager.getDocument().getMetadata().remove(query); // remove everything with this specific _source_ URL (ie docs generated from this URL)
// Now cache all the existing docs:
@SuppressWarnings("unchecked")
ArrayList<Object> tmpDocList = (ArrayList<Object>) DocumentPojo.listToDb(docWrapper, DocumentPojo.listType());
DbManager.getDocument().getMetadata().insert(tmpDocList.toArray(new BasicDBObject[0]));
//DEBUG
if (_DEBUG) _logger.debug("DEB: HCDC3: remove/insert cache: " + query.toString());
}//TESTED (by hand - single and multiple docs)
}//TESTED
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// TEST UTILITIES
// Check 1.x test results
public void test_CheckIfQueryLaunched(String testName, boolean shouldWork) {
FederatedRequest request = null;
if (null != this._asyncRequestsPerQuery) {
if (!this._asyncRequestsPerQuery.isEmpty()) {
request = this._asyncRequestsPerQuery.peek();
if (this._asyncRequestsPerQuery.size() > 1) {
System.out.println("*** " + testName + ": + too many async requests");
System.exit(-1);
}
}
}
if (shouldWork) {
if (null == request) {
System.out.println("*** " + testName + ": Expected request, got none");
System.exit(-1);
}
}
else {
if (null != request) {
if (null != request.responseFuture) {
System.out.println("*** " + testName + ": incorrectly added " + request.requestParameter);
System.exit(-1);
}
else if ((null == request.cachedResult) && (null == request.cachedDoc)) {
System.out.println("*** " + testName + ": no request, not cached " + request.cachedResult);
System.exit(-1);
}
}
}
}//TESTED (by hand - who tests the tester?!)
public void test_CheckIfDocAdded(String testName, List<BasicDBObject> docs) {
// 1) Did a doc get added?
if (2 != docs.size()) {
System.out.println("*** " + testName + ": didn't add doc? " + docs.size());
System.exit(-1);
}
// 2) Was it the right doc?
BasicDBObject doc = docs.get(0);
doc.remove(DocumentPojo._id_);
doc.remove(DocumentPojo.created_);
doc.remove(DocumentPojo.modified_);
doc.remove(DocumentPojo.publishedDate_);
String docToCheck =
"{ \"displayUrl\" : \"http://test3_1\" , \"url\" : \"inf://federated/fakeendpoint.123/test3_1/testentityin\" , \"sourceKey\" : [ \"fakeendpoint.123\"] , \"source\" : [ \"fakeendpoint\"] , \"communityId\" : [ \"4c927585d591d31d7b37097a\"] , \"mediaType\" : [ \"Report\"] , \"metadata\" : { \"json\" : [ { \"test\" : { \"field\" : [ \"test3_1\" , \"test3_1\"] , \"field2\" : \"http://test3_1\"}}]} , \"title\" : \"fake endpoint: : test3_1: test3_1\" , \"entities\" : [ { \"disambiguated_name\" : \"test3_1\" , \"type\" : \"TestEntityOut\" , \"dimension\" : \"What\" , \"relevance\" : 1.0 , \"doccount\" : 1 , \"averageFreq\" : 1.0 , \"datasetSignificance\" : 10.0 , \"significance\" : 10.0 , \"frequency\" : 1.0 , \"index\" : \"test3_1/testentityout\" , \"queryCoverage\" : 100.0 , \"totalfrequency\" : 1.0}] , \"description\" : \"[\\n {\\n \\\"test\\\": {\\n \\\"field\\\": [\\n \\\"test3_1\\\",\\n \\\"test3_1\\\"\\n ],\\n \\\"field2\\\": \\\"http://test3_1\\\"\\n }\\n }\\n]\" , \"aggregateSignif\" : 115.0 , \"queryRelevance\" : 105.0 , \"score\" : 110.0}";
if (!docToCheck.equals(doc.toString())) {
System.out.println("*** " + testName + ": document incorrect:\n" + docToCheck + "\nVS\n" + doc.toString());
System.exit(-1);
}
// 3) Did the doc get cached?
DBCollection endpointCacheCollection = getCacheCollection();
String hardwiredCacheId = "http://localhost:8186/test/test3_1/?param1=test3_1";
BasicDBObject cachedVal = (BasicDBObject) endpointCacheCollection.findOne(new BasicDBObject(SimpleFederatedCache._id_, hardwiredCacheId));
if (null == cachedVal) {
System.out.println("*** " + testName + ": no cache for: " + doc.get(DocumentPojo.url_) + " / " + hardwiredCacheId);
System.exit(-1);
}
else {
Date expiryDate = cachedVal.getDate(SimpleFederatedCache.expiryDate_, null);
if ((null == expiryDate) || ((new Date().getTime() - expiryDate.getTime()) > 10*1000L)) {
System.out.println("*** " + testName + ": expiry date for: " + doc.get(DocumentPojo.url_) + ": " + expiryDate + " vs now= " + new Date());
System.exit(-1);
}
BasicDBObject cachedJson = (BasicDBObject) cachedVal.get(SimpleFederatedCache.cachedJson_);
Object docVal = null;
try {
Object[] docVals = (Object[] ) ((BasicDBObject)doc.get(DocumentPojo.metadata_)).get("json");
docVal = docVals[0];
}
catch (Exception e) {
@SuppressWarnings("rawtypes")
Collection docVals = (Collection) ((BasicDBObject)doc.get(DocumentPojo.metadata_)).get("json");
docVal = docVals.iterator().next();
}
if ((null == cachedJson) || !cachedJson.equals(docVal)) {
System.out.println("*** " + testName + ": cache: " + doc.get(DocumentPojo.url_) + ": cached val incorrect:\n" + docVal + "\nVS\n" + cachedJson);
System.exit(-1);
}
}
}//TESTED (by hand)
///////////////////////////////////////////////////////////////////////////////
// (general test utils)
// Reset state ready for next test
public void test_queryClear(boolean clearCacheAlso) {
if (null != this._asyncRequestsPerQuery) {
for (FederatedRequest req: this._asyncRequestsPerQuery) {
try {
req.responseFuture.get();
if (null != req.asyncClient) {
req.asyncClient.close();
}
}
catch (Exception e) {}
}
this._asyncRequestsPerQuery.clear();
}
if (clearCacheAlso) {
DBCollection endpointCacheCollection = getCacheCollection();
endpointCacheCollection.remove(new BasicDBObject());
}
}//TESTED (by hand - who tests the tester?!)
public void test_cacheExpire() {
DBCollection endpointCacheCollection = getCacheCollection();
DBCursor dbc = endpointCacheCollection.find();
for (DBObject cacheEntryObj: dbc) {
BasicDBObject cacheEntry = (BasicDBObject) cacheEntryObj;
cacheEntry.put(SimpleFederatedCache.expiryDate_, new Date(new Date().getTime() - 3600L*1000L)); // (ie expired an hour ago)
endpointCacheCollection.save(cacheEntry);
}
}
public void test_cacheClear(boolean clearApiCache, boolean clearDocCache, String key) {
// (DO NOT COMMENT THIS OUT)
SimpleFederatedQueryEngine.TEST_MODE_ONLY = true;
// Clear doc_metadata table before running
if (clearDocCache) {
MongoDbManager.getDocument().getMetadata().remove(new BasicDBObject(DocumentPojo.sourceKey_, key));
}
if (clearApiCache) {
// (note: this only deletes the test collection because of TEST_MODE_ONLY code)
SimpleFederatedQueryEngine.getCacheCollection().remove(new BasicDBObject()); // (clear test collection for testing)
}
}
public void test_cacheFill(String testName, boolean fill, boolean shouldBeFull) {
DBCollection endpointCacheCollection = getCacheCollection();
if (fill) {
for (long i = 0; i < (1 + SimpleFederatedCache.QUERY_FEDERATION_CACHE_CLEANSE_SIZE); ++i) {
SimpleFederatedCache fakeCacheElement = new SimpleFederatedCache();
fakeCacheElement.expiryDate = new Date(new Date().getTime() - 3600L*1000L); // (ie expired an hour ago)
fakeCacheElement._id = testName + "_" + i;
fakeCacheElement.cachedJson = new BasicDBObject();
endpointCacheCollection.save(fakeCacheElement.toDb());
}
_lastChecked = new Date(new Date().getTime() - 602L*1000L).getTime();
}
long count = endpointCacheCollection.count();
if (shouldBeFull) {
if (count < SimpleFederatedCache.QUERY_FEDERATION_CACHE_CLEANSE_SIZE) {
System.out.println("*** " + testName + ": cache should just contain many elements, not: " + count);
System.exit(-1);
}
}
else {
if (1 != count) {
System.out.println("*** " + testName + ": cache should just contain one element, not: " + count);
System.exit(-1);
}
}
}
}
| [
"[email protected]"
] | |
8dc3827f8ad41f35c2d598fe5418218302f6b496 | a2dc645307ae1a949d2ba2d6f32ccdf2514f6d39 | /src/main/java/com/kmwllc/brigade/stage/DivideValues.java | 8a32a28924e05a3b0ccd10a10c7fa93d512a5b1b | [
"Apache-2.0"
] | permissive | nraphael/brigade | 74a447f0a4e37749a437fc33aaca5fe6dce3c248 | ecb509cd4538f6aed62b751c4435fdae2c3e0208 | refs/heads/master | 2022-08-06T00:49:59.134427 | 2022-07-27T17:25:12 | 2022-07-27T17:25:12 | 234,803,816 | 0 | 0 | Apache-2.0 | 2020-01-18T22:02:50 | 2020-01-18T22:02:49 | null | UTF-8 | Java | false | false | 3,065 | java | package com.kmwllc.brigade.stage;
import org.slf4j.Logger;
import com.kmwllc.brigade.config.StageConfig;
import com.kmwllc.brigade.document.Document;
import com.kmwllc.brigade.logging.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
/**
* This stage will divide the values of two fields a put the resulting quotient in the quotentField.
* Use the "MathValues" stage instead that's based on exp4j.
*
* @author kwatters
*
*/
@Deprecated
public class DivideValues extends AbstractStage {
// TODO: remove this .. maybe we should depricate?
public final static Logger log = LoggerFactory.getLogger(DivideValues.class.getCanonicalName());
private String dividendField = null;
private String divisorField = null;
private String quotentField = null;
@Override
public void startStage(StageConfig config) {
if (config != null) {
dividendField = config.getProperty("dividendField");
divisorField = config.getProperty("divisorField");
quotentField = config.getProperty("quotentField");
}
}
@Override
public List<Document> processDocument(Document doc) {
// divide the double values in 2 fields, store the result in the quotent
// field.
if (!(doc.hasField(dividendField) && doc.hasField(divisorField))) {
return null;
}
if (doc.getField(dividendField).size() != doc.getField(divisorField).size()) {
log.warn("Dividend and Divisor fields of unequal length.");
return null;
}
ArrayList<Double> results = new ArrayList<Double>();
int size = doc.getField(dividendField).size();
for (int i = 0; i < size; i++) {
try {
// log.info("Compute {} divided by {}",
// doc.getField(dividendField).get(i),
// doc.getField(divisorField).get(i));
Double divisor = convertToDouble(doc.getField(divisorField).get(i));
Double dividend = convertToDouble(doc.getField(dividendField).get(i));
if (divisor == 0.0) {
continue;
}
Double quotient = dividend / divisor;
results.add(quotient);
} catch (ClassCastException e) {
log.warn("Division Error DocID: ", doc.getId());
e.printStackTrace();
}
}
if (dividendField.equals(quotentField)) {
doc.removeField(quotentField);
}
for (Double v : results) {
doc.addToField(quotentField, v);
}
return null;
}
private Double convertToDouble(Object obj) throws ClassCastException {
Double doubleVal = null;
if (obj instanceof Integer) {
doubleVal = new Double(((Integer) obj).intValue());
} else if (obj instanceof Double) {
doubleVal = (Double) obj;
} else {
throw new ClassCastException("Cannot convert " + obj.getClass().getName() + " to Double.");
}
return doubleVal;
}
@Override
public void stopStage() {
// no op for this stage
}
@Override
public void flush() {
// no-op for this stage
}
}
| [
"[email protected]"
] | |
435a8c7662feb8a9755fd9fcf1826cb257095bfc | 6a9c89983114480bffca3fc55601080060fc58f6 | /MyService/app/src/main/java/com/ramusthastudio/myservice/DicodingIntentService.java | 939e106f949bdeb761693428a5a3fdcd6664149b | [
"Apache-2.0"
] | permissive | gibranalfarabi/DicodingAcademy | c3d66a957b76d06f8804e81aba82149d920d61ed | 0f7b805da83b6d9ecdc340e52c97335a6dc522bb | refs/heads/master | 2023-08-19T22:30:36.108894 | 2019-04-16T02:59:14 | 2019-04-16T02:59:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 982 | java | package com.ramusthastudio.myservice;
import android.app.IntentService;
import android.content.Intent;
import android.util.Log;
/**
* An {@link IntentService} subclass for handling asynchronous task requests in
* a service on a separate handler thread.
* <p>
*/
public class DicodingIntentService extends IntentService {
public static String EXTRA_DURATION = "extra_duration";
public static final String TAG = "DicodingIntentService";
public DicodingIntentService() {
super("DicodingIntentService");
}
@Override
protected void onHandleIntent(Intent intent) {
Log.d(TAG, "onHandleIntent()");
if (intent != null) {
int duration = intent.getIntExtra(EXTRA_DURATION, 0);
try {
Thread.sleep(duration);
} catch (InterruptedException e) {
e.printStackTrace();
Thread.currentThread().interrupt();
}
}
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d(TAG, "onDestroy()");
}
}
| [
"[email protected]"
] | |
569078c0006bb6a590f8d8682a6837ca25f03dc7 | db8755f38898dac6df92e82ebdd6145cea00f675 | /app/src/main/java/com/example/cliff/customlisttest/utils/StaticUtils.java | ed8e5e91b149e28d1027b6584aa605bc80949e73 | [] | no_license | Xliff/CustomListTest | 0a528b667eea6d00891beee0616cefe89718ed85 | 6ab6692a424d9a59285b5bbba8667efe6457be69 | refs/heads/master | 2021-01-10T20:07:44.311428 | 2015-10-04T06:00:49 | 2015-10-04T06:00:49 | 40,452,233 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,478 | java | package com.example.cliff.customlisttest.utils;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.drawable.BitmapDrawable;
import android.util.Pair;
import android.view.View;
import android.view.ViewGroup;
/**
* Created by Cliff on 8/11/2015.
*/
public class StaticUtils {
private static final int LINE_THICKNESS = 2;
// Should be moved to a utilities JAR when appropriate.
// TODO: -- cw: Pick a use case and drop the other.
// region Use case 1
public static Bitmap loadBitmapFromView(View v) {
return loadBitmapFromView(v, null);
}
public static Bitmap loadBitmapFromView(View v, Integer line_weight) {
Bitmap b = Bitmap.createBitmap(v.getLayoutParams().width, v.getLayoutParams().height, Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b);
Rect rect = new Rect(0, 0, b.getWidth(), b.getHeight());
Paint p = new Paint();
p.setStyle(Paint.Style.STROKE);
if (line_weight != null) {
p.setStrokeWidth(line_weight);
}
p.setColor(Color.BLACK);
v.layout(v.getLeft(), v.getTop(), v.getRight(), v.getBottom());
v.draw(c);
c.drawBitmap(b, 0, 0, null);
c.drawRect(rect, p);
return b;
}
// endregion
public static Pair<Integer,Integer> measureView(View v) {
ViewGroup.LayoutParams lp = v.getLayoutParams();
int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec(lp.width, View.MeasureSpec.EXACTLY);
int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(lp.height, View.MeasureSpec.EXACTLY);
v.measure(widthMeasureSpec, heightMeasureSpec);
int h = v.getMeasuredHeight();
int w = v.getMeasuredWidth();
ViewGroup p;
ViewGroup.MarginLayoutParams mlp;
// cw: I hate using literals, but that's what I'm left with.
if (h == 0x00ffffff) {
p = (ViewGroup)v.getParent();
mlp = (ViewGroup.MarginLayoutParams)p.getLayoutParams();
h = p.getHeight()
- mlp.topMargin
- mlp.bottomMargin
- p.getPaddingTop()
- p.getPaddingBottom();
}
if (w == 0x00ffffff) {
p = (ViewGroup)v.getParent();
mlp = (ViewGroup.MarginLayoutParams)p.getLayoutParams();
w = p.getWidth()
- mlp.leftMargin
- mlp.rightMargin
- p.getPaddingLeft()
- p.getPaddingRight();
}
return new Pair<>(w, h);
}
// region Use case 2
public static Bitmap getBitmapWithBorder(View v) {
int w = v.getWidth();
int h = v.getHeight();
// cw: Hail mary special case to obtain width and height
if (w==0 && h==0) {
Pair wh = measureView(v);
w = (Integer)wh.first;
h = (Integer)wh.second;
}
return getBitmapWithBorder(v, w, h, LINE_THICKNESS);
}
public static Bitmap getBitmapWithBorder(View v, int width, int height) {
return getBitmapWithBorder(v, width, height, LINE_THICKNESS);
}
/** Draws a black border over the screenshot of the view passed in. */
public static Bitmap getBitmapWithBorder(View v, Integer width, Integer height, int thickness) {
if (width == null || height == null || width == 0 || height == 0) {
throw new IllegalArgumentException(
"Width and Height must be non-null AND non-zero in call to getBitmapWithBorder()"
);
}
Bitmap bitmap = getBitmapFromView(v, width, height);
Canvas can = new Canvas(bitmap);
Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
Paint paint = new Paint();
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(thickness);
paint.setColor(Color.BLACK);
can.drawBitmap(bitmap, 0, 0, null);
can.drawRect(rect, paint);
return bitmap;
}
/** Returns a bitmap showing a screenshot of the view passed in. */
public static Bitmap getBitmapFromView(View v, int width, int height) {
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas (bitmap);
v.draw(canvas);
return bitmap;
}
// endregion
}
| [
"[email protected]"
] | |
1ab283b17fdad97c24287fe5be0ff1fe133d3d13 | f6e4bf69622066b7c5d977d7ed7b4e01218132dd | /LAMLkNN.java | 5374e33faa4dcf0115ec2ffde947aa5204f282a7 | [] | no_license | dengbaowang/LAMLKNN | d71eabdcc33183a5a0d55981ec9951e262b00e69 | 133ebb39c2c950694dbb8b3d813a7b3353f87cd1 | refs/heads/master | 2022-02-21T12:35:23.422954 | 2019-10-18T11:09:32 | 2019-10-18T11:09:32 | 121,838,898 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 12,134 | java | /* This program is implenment as a extension of Mulan package, which can be download in Mulan website.
* This implement is based on ML-kNN algorithm
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package mulan.classifier.lazy;
import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.Random;
import java.util.logging.Level;
import java.util.logging.Logger;
import mulan.classifier.MultiLabelOutput;
import mulan.data.MultiLabelInstances;
import mulan.transformations.RemoveAllLabels;
import weka.core.DistanceFunction;
import weka.core.EuclideanDistance;
import weka.core.Instance;
import weka.core.Instances;
import weka.core.NormalizableDistance;
import weka.core.TechnicalInformation;
import weka.core.TechnicalInformation.Field;
import weka.core.TechnicalInformation.Type;
import weka.core.Utils;
import weka.clusterers.Clusterer;
import weka.clusterers.SimpleKMeans;
/**
<!-- globalinfo-start -->
* Class implementing the LAML-kNN (Multi-Label k Nearest Neighbours) algorithm.<br>
* <br>
* For more information, see<br>
*
*/
@SuppressWarnings("serial")
public class LAMLkNN extends MultiLabelKNN {
/**
* Smoothing parameter controlling the strength of uniform prior <br>
* (Default value is set to 1 which yields the Laplace smoothing).
*/
protected double smooth;
/**
* A table holding the prior probability for an instance to belong in each
* class
*/
protected DistanceFunction dfunc = new EuclideanDistance();
private Clusterer clusterer;
protected int numOfClusters;
private double[] CentersK;
private double[] PriorK;
private double[][] PriorProbabilities;
/**
* A table holding the prior probability for an instance not to belong in
* each class
*/
private double[][] PriorNProbabilities;
/**
* A table holding the probability for an instance to belong in each
* class<br> given that i:0..k of its neighbors belong to that class
*/
private double[][][] CondProbabilities;
/**
* A table holding the probability for an instance not to belong in each
* class<br> given that i:0..k of its neighbors belong to that class
*/
private double[][][] CondNProbabilities;
/**
* @param numOfNeighbors : the number of neighbors
* @param smooth : the smoothing factor
*/
public LAMLkNN(int numOfNeighbors,int numOfClusters,double smooth) {
super(numOfNeighbors);
this.numOfClusters = numOfClusters;
this.smooth = smooth;
SimpleKMeans kmeans = new SimpleKMeans();
try {
kmeans.setNumClusters(numOfClusters);
((NormalizableDistance) dfunc).setDontNormalize(false);
kmeans.setDistanceFunction(dfunc);
kmeans.setPreserveInstancesOrder(true);
clusterer = kmeans;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* The default constructor
*/
public LAMLkNN() {
super();
this.smooth = 1.0;
}
public String globalInfo() {
return "Class implementing the ML-kNN (Multi-Label k Nearest Neighbours) algorithm." + "\n\n" + "For more information, see\n\n" + getTechnicalInformation().toString();
}
@Override
public TechnicalInformation getTechnicalInformation() {
TechnicalInformation result;
result = new TechnicalInformation(Type.ARTICLE);
result.setValue(Field.AUTHOR, "Deng-Bao Wang");
result.setValue(Field.TITLE, "A locally adaptive k Nearest Neighbour algorithm");
result.setValue(Field.JOURNAL, "Pattern Recogn.");
result.setValue(Field.VOLUME, "");
result.setValue(Field.NUMBER, "");
result.setValue(Field.YEAR, "2018");
result.setValue(Field.ISSN, "");
result.setValue(Field.PAGES, "");
result.setValue(Field.PUBLISHER, "");
result.setValue(Field.ADDRESS, "");
return result;
}
@Override
protected void buildInternal(MultiLabelInstances train) throws Exception {
super.buildInternal(train);
CentersK = new double[numOfClusters];
PriorK = new double[numOfClusters];
PriorProbabilities = new double[numLabels][numOfClusters];
PriorNProbabilities = new double[numLabels][numOfClusters];
CondProbabilities = new double[numLabels][numOfNeighbors + 1][numOfClusters];
CondNProbabilities = new double[numLabels][numOfNeighbors + 1][numOfClusters];
Instances removedInstances = RemoveAllLabels.transformInstances(train);
clusterer.buildClusterer(removedInstances);
ComputePriorK();
ComputePrior();
ComputeCond();
if (getDebug()) {
System.out.println("Computed Prior Probabilities");
for (int i = 0; i < numLabels; i++) {
System.out.println("Label " + (i + 1) + ": " + PriorProbabilities[i]);
}
System.out.println("Computed Posterior Probabilities");
for (int i = 0; i < numLabels; i++) {
System.out.println("Label " + (i + 1));
for (int j = 0; j < numOfNeighbors + 1; j++) {
System.out.println(j + " neighbours: " + CondProbabilities[i][j]);
System.out.println(j + " neighbours: " + CondNProbabilities[i][j]);
}
}
}
}
/**
* Computing Prior and PriorN Probabilities for each class of the training
* set
* @throws Exception
*/
//private void ComputeCentersK() {
//CentersK=
//}
private void ComputePriorK() {
//System.out.println(Arrays.toString(((SimpleKMeans) clusterer).getClusterSizes()));
//System.out.println(train.numInstances());
for(int c=0;c<numOfClusters;c++) {
//System.out.println(c);
PriorK[c]=(double)((SimpleKMeans) clusterer).getClusterSizes()[c]/train.numInstances();
//System.out.println(PriorK[c]);
}
}
private void ComputePrior() throws Exception {
int[] whichK=((SimpleKMeans) clusterer).getAssignments();
for (int c = 0; c < numOfClusters; c++) {
for (int i = 0; i < numLabels; i++) {
int temp_Ci = 0;
for (int j = 0; j < train.numInstances(); j++) {
if (whichK[j]==c) {
double value = Double.parseDouble(train.attribute(labelIndices[i]).value(
(int) train.instance(j).value(labelIndices[i])));
if (Utils.eq(value, 1.0)) {
temp_Ci++;
}
}
}
PriorProbabilities[i][c] = (smooth + temp_Ci) / (smooth * 2 + ((SimpleKMeans) clusterer).getClusterSizes()[c]);
//System.out.print(PriorProbabilities[i][c]+" ");
PriorNProbabilities[i][c] = 1 - PriorProbabilities[i][c];
}
//System.out.println();
}
}
/**
* Computing Cond and CondN Probabilities for each class of the training set
*
* @throws Exception Potential exception thrown. To be handled in an upper level.
*/
private void ComputeCond() throws Exception {
int[] whichK=((SimpleKMeans) clusterer).getAssignments();
for (int c=0; c < numOfClusters; c++) {
int[][] temp_Ci = new int[numLabels][numOfNeighbors + 1];
int[][] temp_NCi = new int[numLabels][numOfNeighbors + 1];
//System.out.println(temp_Ci[0][0]+"ffdfdfd");
for (int i = 0; i < train.numInstances(); i++) {
if (whichK[i]==c) {
Instances knn = new Instances(lnn.kNearestNeighbours(train.instance(i), numOfNeighbors));
// now compute values of temp_Ci and temp_NCi for every class label
for (int j = 0; j < numLabels; j++) {
int aces = 0; // num of aces in Knn for j
for (int k = 0; k < numOfNeighbors; k++) {
double value = Double.parseDouble(train.attribute(labelIndices[j]).value(
(int) knn.instance(k).value(labelIndices[j])));
if (Utils.eq(value, 1.0)) {
aces++;
}
}
// raise the counter of temp_Ci[j][aces] and temp_NCi[j][aces] by 1
if (Utils.eq(Double.parseDouble(train.attribute(labelIndices[j]).value(
(int) train.instance(i).value(labelIndices[j]))), 1.0)) {
temp_Ci[j][aces]++;
} else {
temp_NCi[j][aces]++;
}
}
}
}
// compute CondProbabilities[i][..] for labels based on temp_Ci[]
for (int i = 0; i < numLabels; i++) {
int temp1 = 0;
int temp2 = 0;
for (int j = 0; j < numOfNeighbors + 1; j++) {
temp1 += temp_Ci[i][j];
temp2 += temp_NCi[i][j];
}
for (int j = 0; j < numOfNeighbors + 1; j++) {
CondProbabilities[i][j][c] = (smooth + temp_Ci[i][j]) / (smooth * (numOfNeighbors + 1) + temp1);
CondNProbabilities[i][j][c] = (smooth + temp_NCi[i][j]) / (smooth * (numOfNeighbors + 1) + temp2);
}
}
}
}
protected MultiLabelOutput makePredictionInternal(Instance instance) throws Exception {
double[] confidences = new double[numLabels];
boolean[] predictions = new boolean[numLabels];
Instance newInstance = RemoveAllLabels.transformInstance(instance, labelIndices);
int cluster = clusterer.clusterInstance(newInstance);
Instances knn = null;
try {
knn = new Instances(lnn.kNearestNeighbours(instance, numOfNeighbors));
} catch (Exception ex) {
Logger.getLogger(MLkNN.class.getName()).log(Level.SEVERE, null, ex);
}
for (int i = 0; i < numLabels; i++) {
// compute sum of aces in KNN
int aces = 0; // num of aces in Knn for i
for (int k = 0; k < numOfNeighbors; k++) {
double value = Double.parseDouble(train.attribute(labelIndices[i]).value(
(int) knn.instance(k).value(labelIndices[i])));
if (Utils.eq(value, 1.0)) {
aces++;
}
}
double Prob_in =PriorK[cluster] * PriorProbabilities[i][cluster] * CondProbabilities[i][aces][cluster];
double Prob_out =PriorK[cluster] * PriorNProbabilities[i][cluster] * CondNProbabilities[i][aces][cluster];
if (Prob_in > Prob_out) {
predictions[i] = true;
} else if (Prob_in < Prob_out) {
predictions[i] = false;
} else {
Random rnd = new Random();
predictions[i] = (rnd.nextInt(2) == 1) ? true : false;
}
// ranking function
confidences[i] = Prob_in / (Prob_in + Prob_out);
}
MultiLabelOutput mlo = new MultiLabelOutput(predictions, confidences);
return mlo;
}
}
| [
"[email protected]"
] | |
639658cd9f170a94db1783c12ba792efa40771e7 | 0b6b87e5f4d4b1aa9f485c58fc926cc6e7b80b11 | /src/test/java/com/nashtech/toaitran/service/OrderServiceTest.java | 869b333631bd02be6be7a77c80d2e929aca837e5 | [] | no_license | trantoai1/nashtech-task1 | 8328a8d5abcf4fffbd7118e43f63548bbe80f9f3 | 52943492276164d26e241fd506ac080027e5a122 | refs/heads/main | 2023-07-09T04:56:20.052905 | 2021-08-15T09:00:23 | 2021-08-15T09:00:23 | 381,220,785 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,912 | java | package com.nashtech.toaitran.service;
import com.nashtech.toaitran.exception.NotFoundException;
import com.nashtech.toaitran.model.dto.OrderDTO;
import com.nashtech.toaitran.model.entity.Order;
import com.nashtech.toaitran.repository.IOrderRepository;
import com.nashtech.toaitran.service.impl.OrderServiceImpl;
import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.modelmapper.ModelMapper;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Optional;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.when;
@SpringBootTest
public class OrderServiceTest {
public static final long ID = 1;
public static final String ENTITYNAME = "CateTest";
public static final String HAS_ID_NOT_FOUND = "Order has id=" + ID + " not found!";
public static final String DTONAME = "DTONAME";
@Mock
IOrderRepository repository;
@Mock
ModelMapper modelMapper;
@InjectMocks
OrderServiceImpl service;
@NotNull
private Order newEntity() {
Order entity = new Order();
entity.setOrderid(ID);
entity.setAddress(ENTITYNAME);
return entity;
}
@NotNull
private OrderDTO newDTO() {
OrderDTO dto = new OrderDTO();
dto.setOrderId(ID);
dto.setAddress(DTONAME);
return dto;
}
@Test
public void findAll() {
assertNotNull(service);
List<Order> list = new ArrayList<>();
Order entity = new Order();
Order entity2 = new Order();
list.add(entity);
list.add(entity2);
when(repository.findAll()).thenReturn(list);
Collection<OrderDTO> result = service.findAll();
assertEquals(2, result.size());
}
@Test
public void findById() {
Order entity = newEntity();
//OrderDTO dto = newDTO();
Optional<Order> optional = Optional.of(entity);
assertNotNull(optional);
when(repository.findById(ID)).thenReturn(optional);
when(modelMapper.map(optional.get(), OrderDTO.class)).thenReturn(newDTO());
OrderDTO dto2 = service.findById(ID);
assertEquals(dto2.getAddress(), DTONAME);
}
@Test
public void findById_Null() {
when(repository.findById(ID)).thenThrow(new NotFoundException(Order.class, ID));
NotFoundException exception = assertThrows(NotFoundException.class, () -> service.findById(ID));
assertEquals(HAS_ID_NOT_FOUND, exception.getMessage());
}
@Test
public void update() {
Order entity = newEntity();
OrderDTO dto = newDTO();
Optional<Order> optional = Optional.of(entity);
assertNotNull(optional);
when(repository.findById(ID)).thenReturn(optional);
when(modelMapper.map(optional.get(), OrderDTO.class)).thenReturn(newDTO());
when(repository.save(optional.get())).thenReturn(entity);
OrderDTO dto2 = service.update(ID, dto);
assertEquals(dto2.getAddress(), DTONAME);
}
@Test
public void save() {
Order entity = newEntity();
OrderDTO dto = newDTO();
when(modelMapper.map(dto, Order.class)).thenReturn(entity);
when(repository.save(entity)).thenReturn(entity);
when(modelMapper.map(entity, OrderDTO.class)).thenReturn(newDTO());
OrderDTO dto2 = service.save(dto);
assertEquals(dto2.getAddress(), DTONAME);
}
@Test
public void delete() {
Order entity = newEntity();
//OrderDTO dto = newDTO();
Optional<Order> optional = Optional.of(entity);
assertNotNull(optional);
when(repository.findById(ID)).thenReturn(optional);
when(modelMapper.map(optional.get(), OrderDTO.class)).thenReturn(newDTO());
OrderDTO dto2 = service.delete(ID);
assertEquals(dto2.getAddress(), DTONAME);
}
@Test
public void updateEntity() {
Order entity = newEntity();
OrderDTO dto = newDTO();
service.updateEntity(entity, dto);
assertEquals(entity.getAddress(), dto.getAddress());
}
@Test
public void createFromE() {
Order entity = newEntity();
OrderDTO dto = newDTO();
when(modelMapper.map(entity, OrderDTO.class)).thenReturn(newDTO());
OrderDTO test = service.createFromE(entity);
assertNotNull(test);
assertEquals(test.getAddress(), dto.getAddress());
}
@Test
public void createFromD() {
Order entity = newEntity();
OrderDTO dto = newDTO();
when(modelMapper.map(dto, Order.class)).thenReturn(newEntity());
Order test = service.createFromD(dto);
assertNotNull(test);
assertEquals(test.getAddress(), entity.getAddress());
}
}
| [
"[email protected]"
] | |
6c6bce428462bafc7932fcb11caa88edd0779070 | 63d3700f93e742c3c76f8e079ef3d7121b74735c | /build/app/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/dev/flutter/e2e/R.java | d5a258866cdd4283f65298094303fa51d7f57c63 | [
"MIT"
] | permissive | ViralS-Truongnh/shainManager | 6b70d67b75d75d21f959a02c232f95cd834cc077 | 8c8d18eabaf7be0e6916cbf1e845f6bdc1e530a3 | refs/heads/master | 2020-12-03T07:12:04.785583 | 2019-12-27T15:15:48 | 2019-12-27T15:15:48 | 231,238,134 | 0 | 1 | null | 2020-01-01T16:24:26 | 2020-01-01T16:24:26 | null | UTF-8 | Java | false | false | 255 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package dev.flutter.e2e;
public final class R {
private R() {}
}
| [
"[email protected]"
] | |
d9c1ca2b9b79e11d124377ed41a8f4164eb15bfc | 4023d418f113ddcbbc2a64c9a0aab42e8acbee57 | /o2o/src/main/java/com/song/o2o/dto/echarts/LineStepSeries.java | ce445ebce1bfe9b83c9b507f37509033d8aeed11 | [] | no_license | songshiyun/o2o-system | 9b3a69c807f3f83ce26f67235f8fe2015821b8c3 | b96fefe9aece83302c2c9908f25c2ff517af2fe5 | refs/heads/master | 2020-03-28T03:50:02.691414 | 2018-09-06T12:58:03 | 2018-09-06T12:58:03 | 143,446,112 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 568 | java | package com.song.o2o.dto.echarts;
import java.util.List;
public class LineStepSeries {
private String name;
private String type="line";
private String step;
private List<Integer> data;
public List<Integer> getData() {
return data;
}
public void setName(String name) {
this.name = name;
}
public void setStep(String step) {
this.step = step;
}
public void setData(List<Integer> data) {
this.data = data;
}
public String getName() {
return name;
}
public String getType() {
return type;
}
public String getStep() {
return step;
}
}
| [
"[email protected]"
] | |
d4c437b663e6e254d59603ffaa9d02141d7dd20a | 46453350d77e272d776dd4a63be11aa25c9cd944 | /paascloud-provider/paascloud-provider-omc/src/main/java/com/paascloud/provider/config/ResourceServerConfig.java | 1cf7be6892661206d114dae5ed89438adc06f911 | [
"Apache-2.0"
] | permissive | poorhua/paascloud-wechat-auth-master | 34991df6b4de2ee803c82681d9f8871159f24577 | 67877629bb98140e75ad804cedc14a56233f9fa3 | refs/heads/master | 2020-04-12T17:58:37.170355 | 2018-09-17T04:29:24 | 2018-09-17T04:29:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,816 | java | /*
* Copyright (c) 2018. paascloud.net All Rights Reserved.
* 项目名称:paascloud快速搭建企业级分布式微服务平台
* 类名称:ResourceServerConfig.java
* 创建人:刘兆明
* 联系方式:[email protected]
* 开源地址: https://github.com/paascloud
* 博客地址: http://blog.paascloud.net
* 项目官网: http://paascloud.net
*/
package com.paascloud.provider.config;
import com.paascloud.config.properties.PaascloudProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer;
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer;
import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* The class Resource server config.
*
* @author paascloud.net @gmail.com
*/
@Configuration
@EnableResourceServer
public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
@Resource
private PaascloudProperties paascloudProperties;
@Override
public void configure(HttpSecurity http) throws Exception {
ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry registry = http.authorizeRequests();
List<String> urls = paascloudProperties.getSecurity().getOauth2().getIgnore().getUrls();
if(urls != null && urls.size() > 0 ){
urls.forEach(url ->registry.antMatchers(url).permitAll());
}
registry.anyRequest().authenticated()
.and()
.csrf().disable();
http.headers().frameOptions().disable();
}
}
| [
"[email protected]"
] | |
056d4d451b0f4114aad2b6f22b5ab91f1043a251 | bd100ab6cf7f2fa79d9a883e6da721c9da24af67 | /ACompiler/src/ast/Statement.java | e2cc90b67ad146f718992cd1632a11c9bc74f807 | [] | no_license | alonsovb/compiler-codegenerator | 300080863f815ab05dff3b512f9e2d8c81fbf3e3 | b272c20e0213d54fbe0b5a32361ac6ca18b57866 | refs/heads/master | 2020-12-24T13:44:11.409619 | 2012-06-23T03:24:06 | 2012-06-23T03:24:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 115 | java | package ast;
public abstract class Statement extends AST
{
public abstract Object visit(Visitor v,Object arg);
}
| [
"[email protected]"
] | |
ebadebc0413be0e65b8d9b73370366bd2251d7b7 | e09d2a6d070ea3e00e3b2a79b71dd1846ff515c7 | /core/src/com/mygdx/game/Main.java | b726505ac5998fdb77c865af3d61218029a9673c | [] | no_license | GeorgebigG/Racer | b8a7f0930d1e34913ed9ef9f3343caa3f06e5fec | 055ce96664c82bfdf3fa37d0c351c54585834676 | refs/heads/master | 2021-01-19T01:23:46.904198 | 2016-06-09T15:49:01 | 2016-06-09T15:49:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 477 | java | package com.mygdx.game;
import com.badlogic.gdx.Game;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.mygdx.game.Screens.PlayScreen;
public class Main extends Game {
public SpriteBatch batch;
public static final int WIDTH = 595;
public static final int HEIGHT = 797;
public static String name;
@Override
public void create () {
batch = new SpriteBatch();
setScreen(new PlayScreen(this));
}
@Override
public void render () {
super.render();
}
}
| [
"[email protected]"
] | |
09cb09b66d9f7feb2069221271d6627aec0eeba5 | 6eb1bb7665fa6110f0ce9b7d00129ba99210bd6a | /src/nim/NimGame.java | 462814064c5d018a274ec185ae6b57feebe67542 | [] | no_license | phung025/NimGame | 11b2577dd27b9ac403ae9188fe4e8599f534343c | 1acc4877d9546b7b5058791236ddcd615626a05b | refs/heads/master | 2021-01-11T21:37:45.245387 | 2018-03-13T04:56:23 | 2018-03-13T04:56:23 | 78,822,287 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,276 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package nim;
import framework_AI_game.Game;
import framework_AI_game.Move;
import framework_AI_game.Player;
import framework_AI_game.State;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ThreadLocalRandom;
/**
*
* @author user
*/
public class NimGame extends Game {
public NimGame(String introduction,
State initial_game_state,
Player first_player,
State p1_winning_state,
Player second_player,
State p2_winning_state) {
super(introduction, initial_game_state, first_player, p1_winning_state, second_player, p2_winning_state);
}
/**
* Check if the game is finish
*
* @return true if the game's current state is final state
*/
@Override
public boolean isGameEnd() {
return ((NimState) getCurrentGameState()).getAllCoins() == 0;
}
@Override
public void newRandomGame() {
// Initial game piles
List<Integer> initialPiles = new ArrayList<>();
for (int i = 0; i < PILE_SIZE; ++i) {
// Add a random amount of coins from 6 to 12 to the pile
initialPiles.add(ThreadLocalRandom.current().nextInt(6, 12));
}
// Available move list
List<Move> moves = new ArrayList<>();
for (int pile_index = 0; pile_index < initialPiles.size(); ++pile_index) {
for (int coin_capacity = 1; coin_capacity <= initialPiles.get(pile_index); ++coin_capacity) {
moves.add(new NimMove("Take " + coin_capacity + " coins from pile " + (pile_index + 1),
pile_index + ":" + coin_capacity));
}
}
// Create a new random game state with first player playing first
NimState newGameState = new NimState(initialPiles, getFirstPlayer().getPlayerType(), getSecondPlayer().getPlayerType());
// All game players
getFirstPlayer().setAvailableMoves(moves);
getSecondPlayer().setAvailableMoves(moves);
setCurrentPlayer(getFirstPlayer());
// Set new game state
setCurrentGameState(newGameState);
setInitialGameState(newGameState);
}
@Override
public void resetGame() {
setCurrentPlayer(getFirstPlayer());
setCurrentGameState(getInitialGameState());
}
@Override
public String toString() {
StringBuilder s = new StringBuilder("");
s.append("\n---------- World of Nim ----------");
s.append("\nPlayer 1: ".concat(getFirstPlayer().getPlayerName()));
s.append("\nPlayer 2: ".concat(getSecondPlayer().getPlayerName()));
s.append("\n----------Current Score ----------");
s.append("\n".concat(getFirstPlayer().getPlayerName()).concat(": ").concat(String.valueOf(getFirstPlayerScore())).concat(" point(s)"));
s.append("\n".concat(getSecondPlayer().getPlayerName()).concat(": ").concat(String.valueOf(getSecondPlayerScore())).concat(" point(s)"));
return s.toString();
}
// Size of the game piles.
public static int PILE_SIZE = 3;
}
| [
"[email protected]"
] | |
47ee814b345f0ef58ed922d828f2769a7eb31a52 | 38e8d4b91d36eb25e1f4229c06523b474f906ddb | /app/src/main/java/bakeapp/rako/layoutteste/BaseActivity.java | 99b3f42f4cf01cb6052d16c311f794f003da77ed | [] | no_license | RafaelKozar/ScrollWithConstraint | abf9ef27265c2c9d086581c995966cbde2e74b1f | 770ad19a2bef6a6b5e1d9b805dbb677a33a874f8 | refs/heads/master | 2020-03-25T19:07:42.902300 | 2018-08-13T13:54:52 | 2018-08-13T13:54:52 | 144,066,161 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,197 | java | /*
package bakeapp.rako.layoutteste;
import android.app.Activity;
import android.content.Intent;
import android.support.v4.content.LocalBroadcastManager;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.view.Window;
*/
/**
* Created by rako on 08/08/2018.
*//*
public class BaseActivity extends Activity {
private ViewTreeObserver.OnGlobalLayoutListener keyboardLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
int heightDiff = rootLayout.getRootView().getHeight() - rootLayout.getHeight();
int contentViewTop = getWindow().findViewById(Window.ID_ANDROID_CONTENT).getTop();
LocalBroadcastManager broadcastManager = LocalBroadcastManager.getInstance(BaseActivity.this);
if(heightDiff <= contentViewTop){
onHideKeyboard();
Intent intent = new Intent("KeyboardWillHide");
broadcastManager.sendBroadcast(intent);
} else {
int keyboardHeight = heightDiff - contentViewTop;
onShowKeyboard(keyboardHeight);
Intent intent = new Intent("KeyboardWillShow");
intent.putExtra("KeyboardHeight", keyboardHeight);
broadcastManager.sendBroadcast(intent);
}
}
};
private boolean keyboardListenersAttached = false;
private ViewGroup rootLayout;
protected void onShowKeyboard(int keyboardHeight) {}
protected void onHideKeyboard() {}
protected void attachKeyboardListeners() {
if (keyboardListenersAttached) {
return;
}
rootLayout = (ViewGroup) findViewById(R.id.rootLayout);
rootLayout.getViewTreeObserver().addOnGlobalLayoutListener(keyboardLayoutListener);
keyboardListenersAttached = true;
}
@Override
protected void onDestroy() {
super.onDestroy();
if (keyboardListenersAttached) {
rootLayout.getViewTreeObserver().removeGlobalOnLayoutListener(keyboardLayoutListener);
}
}
}
*/
| [
"[email protected]"
] | |
866f0c84d5e6c717d46ec5501db490b739d279cc | d5f09c7b0e954cd20dd613af600afd91b039c48a | /sources/net/lingala/zip4j/headers/VersionNeededToExtract.java | 1aa9d17998bf66e25c2b2349fad200509b59375b | [] | no_license | t0HiiBwn/CoolapkRelease | af5e00c701bf82c4e90b1033f5c5f9dc8526f4b3 | a6a2b03e32cde0e5163016e0078391271a8d33ab | refs/heads/main | 2022-07-29T23:28:35.867734 | 2021-03-26T11:41:18 | 2021-03-26T11:41:18 | 345,290,891 | 5 | 2 | null | null | null | null | UTF-8 | Java | false | false | 327 | java | package net.lingala.zip4j.headers;
public enum VersionNeededToExtract {
DEFAULT(10),
DEFLATE_COMPRESSED(20),
ZIP_64_FORMAT(45),
AES_ENCRYPTED(51);
private int code;
private VersionNeededToExtract(int i) {
this.code = i;
}
public int getCode() {
return this.code;
}
}
| [
"[email protected]"
] | |
59ed04b921ee0099ddf639e7eb0f82582d64a5b2 | 6d3fccfe86c0fe4d92632f1d6992990ddc31a05c | /hsweb-easy-orm-rdb/src/main/java/org/hswebframework/ezorm/rdb/mapping/defaults/DefaultReactiveQuery.java | 7a864a62a59b4a330b0dd6b66c5bca817c4402c0 | [] | no_license | MethodLevelAnalyzer/hsweb-easy-orm | 7f81cc218f0a7c14c09861a1bd8946e13e42be1f | 31659eaac403423bffbd021868e4786e21cd8050 | refs/heads/master | 2023-05-14T21:33:30.015536 | 2021-06-08T08:45:56 | 2021-06-08T08:45:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,842 | java | package org.hswebframework.ezorm.rdb.mapping.defaults;
import org.hswebframework.ezorm.rdb.events.ContextKeyValue;
import org.hswebframework.ezorm.rdb.executor.wrapper.ResultWrapper;
import org.hswebframework.ezorm.rdb.mapping.EntityColumnMapping;
import org.hswebframework.ezorm.rdb.mapping.ReactiveQuery;
import org.hswebframework.ezorm.rdb.mapping.events.EventSupportWrapper;
import org.hswebframework.ezorm.rdb.mapping.events.MappingEventTypes;
import org.hswebframework.ezorm.rdb.metadata.TableOrViewMetadata;
import org.hswebframework.ezorm.rdb.operator.DMLOperator;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import static org.hswebframework.ezorm.rdb.events.ContextKeys.source;
import static org.hswebframework.ezorm.rdb.events.ContextKeys.tableMetadata;
import static org.hswebframework.ezorm.rdb.executor.wrapper.ResultWrappers.*;
import static org.hswebframework.ezorm.rdb.mapping.events.EventSupportWrapper.*;
import static org.hswebframework.ezorm.rdb.mapping.events.MappingContextKeys.*;
import static org.hswebframework.ezorm.rdb.mapping.events.MappingContextKeys.type;
import static org.hswebframework.ezorm.rdb.operator.dml.query.Selects.count1;
public class DefaultReactiveQuery<T> extends DefaultQuery<T, ReactiveQuery<T>> implements ReactiveQuery<T> {
public DefaultReactiveQuery(TableOrViewMetadata tableMetadata,
EntityColumnMapping mapping,
DMLOperator operator,
ResultWrapper<T, ?> wrapper,
ContextKeyValue<?>... keyValues) {
super(tableMetadata, mapping, operator, wrapper,keyValues);
}
@Override
public Flux<T> fetch() {
return operator
.query(tableMetadata)
.select(getSelectColumn())
.where(param.getTerms())
.orderBy(getSortOrder())
.when(param.isPaging(), query -> query.paging(param.getPageIndex(), param.getPageSize()))
.accept(queryOperator ->
tableMetadata.fireEvent(MappingEventTypes.select_before, eventContext ->
eventContext.set(
source(DefaultReactiveQuery.this),
query(queryOperator),
tableMetadata(tableMetadata),
dml(operator),
executorType("reactive"),
type("fetch")
)))
.fetch(eventWrapper(tableMetadata, wrapper, executorType("reactive"), type("fetch")))
.reactive();
}
@Override
public Mono<T> fetchOne() {
return operator
.query(tableMetadata)
.select(getSelectColumn())
.where(param.getTerms())
.orderBy(getSortOrder())
.paging(0, 1)
.accept(queryOperator ->
tableMetadata.fireEvent(MappingEventTypes.select_before, eventContext ->
eventContext.set(
source(DefaultReactiveQuery.this),
query(queryOperator),
dml(operator),
tableMetadata(tableMetadata),
executorType("reactive"),
type("fetchOne")
)))
.fetch(eventWrapper(tableMetadata, wrapper, executorType("reactive"), type("fetchOne")))
.reactive()
.as(Mono::from);
}
@Override
public Mono<Integer> count() {
return operator
.query(tableMetadata)
.select(count1().as("total"))
.where(param.getTerms())
.accept(queryOperator ->
tableMetadata.fireEvent(MappingEventTypes.select_before, eventContext ->
eventContext.set(
source(DefaultReactiveQuery.this),
query(queryOperator),
dml(operator),
tableMetadata(tableMetadata),
executorType("reactive"),
type("count")
)))
.fetch(column("total", Number.class::cast))
.reactive()
.map(Number::intValue)
.reduce(Math::addExact)
.switchIfEmpty(Mono.just(0));
}
}
| [
"[email protected]"
] | |
6b1e653a341d273b393c8886e504df42f214ff90 | 516b6594e527b9aa08bc82707b27f2f4784fd8d5 | /common-datamodel/src/main/java/ait/ffma/factory/.svn/text-base/ComponentNameConstants.java.svn-base | c810ef54b6d122ec1ec7446c24659a104aac61da | [
"Apache-2.0"
] | permissive | ait-ngcms/ffma | 1efb3c7bfd3822e1f4ff08eea99f967a251b28da | 76c0ff5585b10d02a19f07e85558dd1303bef599 | refs/heads/master | 2021-01-01T06:26:16.669922 | 2015-10-14T12:44:36 | 2015-10-14T12:44:36 | 31,206,908 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 235 | package ait.ffma.factory;
public interface ComponentNameConstants {
public static final String COMPONENT_PRESERVATION_RISKMANAGEMENT = "preservation-riskmanagement";
public static final String COMPONENT_COMMON = "common";
}
| [
"[email protected]"
] | ||
b51b1c3755551b01bb1aa357ff4f1bcfc2385f70 | dbfef24b8e48968baa87dcd2d8d94af6c9821d98 | /lynx-api/src/com/dikshatech/portal/dao/LoanEligibilityCriteriaDao.java | b27625187f29c3ad7e9f1b4a2452a226021fb1cd | [] | no_license | sudheer999/vijay-gradle | 7ab62da1b41120b48ab5c8f06f3e3be5c4a5530e | c03d167319ec915c3eb25e394761682144e1e3b3 | refs/heads/master | 2021-04-26T23:02:03.684417 | 2018-03-02T11:03:07 | 2018-03-02T11:03:07 | 123,918,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,965 | java | /*
* This source file was generated by FireStorm/DAO.
*
* If you purchase a full license for FireStorm/DAO you can customize this header file.
*
* For more information please visit http://www.codefutures.com/products/firestorm
*/
package com.dikshatech.portal.dao;
import com.dikshatech.portal.dto.*;
import com.dikshatech.portal.exceptions.*;
public interface LoanEligibilityCriteriaDao
{
/**
* Inserts a new row in the LOAN_ELIGIBILITY_CRITERIA table.
*/
public LoanEligibilityCriteriaPk insert(LoanEligibilityCriteria dto) throws LoanEligibilityCriteriaDaoException;
/**
* Updates a single row in the LOAN_ELIGIBILITY_CRITERIA table.
*/
public void update(LoanEligibilityCriteriaPk pk, LoanEligibilityCriteria dto) throws LoanEligibilityCriteriaDaoException;
/**
* Deletes a single row in the LOAN_ELIGIBILITY_CRITERIA table.
*/
public void delete(LoanEligibilityCriteriaPk pk) throws LoanEligibilityCriteriaDaoException;
/**
* Returns the rows from the LOAN_ELIGIBILITY_CRITERIA table that matches the specified primary-key value.
*/
public LoanEligibilityCriteria findByPrimaryKey(LoanEligibilityCriteriaPk pk) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'ID = :id'.
*/
public LoanEligibilityCriteria findByPrimaryKey(int id) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria ''.
*/
public LoanEligibilityCriteria[] findAll() throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'TYPE_ID = :typeId'.
*/
public LoanEligibilityCriteria[] findByLoanType(int typeId) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'ID = :id'.
*/
public LoanEligibilityCriteria[] findWhereIdEquals(int id) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'LABEL = :label'.
*/
public LoanEligibilityCriteria[] findWhereLabelEquals(String label) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'ELIGIBILITY_AMOUNT = :eligibilityAmount'.
*/
public LoanEligibilityCriteria[] findWhereEligibilityAmountEquals(String eligibilityAmount) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'EMI_ELIGIBILITY = :emiEligibility'.
*/
public LoanEligibilityCriteria[] findWhereEmiEligibilityEquals(int emiEligibility) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'MAX_AMOUNT_LIMIT = :maxAmountLimit'.
*/
public LoanEligibilityCriteria[] findWhereMaxAmountLimitEquals(double maxAmountLimit) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the criteria 'TYPE_ID = :typeId'.
*/
public LoanEligibilityCriteria[] findWhereTypeIdEquals(int typeId) throws LoanEligibilityCriteriaDaoException;
/**
* Sets the value of maxRows
*/
public void setMaxRows(int maxRows);
/**
* Gets the value of maxRows
*/
public int getMaxRows();
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the specified arbitrary SQL statement
*/
public LoanEligibilityCriteria[] findByDynamicSelect(String sql, Object[] sqlParams) throws LoanEligibilityCriteriaDaoException;
/**
* Returns all rows from the LOAN_ELIGIBILITY_CRITERIA table that match the specified arbitrary SQL statement
*/
public LoanEligibilityCriteria[] findByDynamicWhere(String sql, Object[] sqlParams) throws LoanEligibilityCriteriaDaoException;
}
| [
"[email protected]"
] | |
19aaa4e62800ce10652137b08d29e679cf22760a | 4bae14b2c62863bbaf98aad5a584cdf81e460ee7 | /src/com/cybertek/AbstarctClass.java | d81fa1b5cb60887045f3402cbeb2259a0acd94bd | [] | no_license | xerinay/FirstSelinum | 68ca6cc8a96b6f1d0ff4a541a98b024b0bdcd383 | c4c3123e9db3b77246343744cb16bb983cbb1e89 | refs/heads/master | 2020-04-17T20:42:59.038281 | 2019-01-22T03:06:31 | 2019-01-22T03:06:31 | 166,917,863 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 81 | java | package com.cybertek;
public class AbstarctClass {
int age ;
public S
}
| [
"[email protected]"
] | |
58f723ef2e6620116cb651145017cf444d469f6c | 44e082b233a2e44212422514fa9225cf1b6358d2 | /GPROG_oldPruefungen/src/_glProg_2018_VZ_HT/Dalmatiner.java | 092f7d2ec1cdb37a75b6d70fb2a3120f17c79e5d | [] | no_license | fhbgraceb/VerbundA-SS20 | b3af20000e1a4b6efe768156ad415dbf67e16be0 | 7e672445bb785386af2ff65d3526f89c67882a71 | refs/heads/master | 2022-12-28T05:56:20.158197 | 2020-10-10T23:20:18 | 2020-10-10T23:20:18 | 238,525,365 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 615 | java | package _glProg_2018_VZ_HT;
public class Dalmatiner {
public static void main(String[] args) {
int anzahlDalamtiner = 101;
for (int mickey = 1; mickey < anzahlDalamtiner; mickey++) {
for (int donald = 1; donald < anzahlDalamtiner; donald++) {
for (int goofy = 1; goofy < anzahlDalamtiner; goofy++) {
int summe = mickey + donald + goofy;
if ((summe < anzahlDalamtiner)
&& (summe > 17)
&& (mickey > (donald + goofy) * 2)
&& (donald == goofy + 3)) {
System.out.println("Mickey: " + mickey + " Donald: " + donald + " Goofy: " + goofy);
}
}
}
}
}
}
| [
"[email protected]"
] | |
2f4dc80b981048f230592c2db08983c8a1a624ec | 367d92dd52871e4089bb794e8384b9c9a5a81f25 | /leetcode/RangeAdditionII/RangeAddition.java | 0dd733f55c7389f3533f1d3b7a2271a6da97d0c6 | [] | no_license | SpicyZinc/underestimate | 54cfd10e3202e4bce5b8cb5d8b03481d295c308c | dbe9caffb41f153d5e23a583a1abe2c66e4bdf4b | refs/heads/master | 2023-03-09T01:31:43.867486 | 2023-02-28T10:05:14 | 2023-02-28T10:05:14 | 20,214,984 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,310 | java | /*
Given an m * n matrix M initialized with all 0's and several update operations.
Operations are represented by a 2D array, and each operation is represented by an array with two positive integers a and b,
which means M[i][j] should be added by one for all 0 <= i < a and 0 <= j < b.
You need to count and return the number of maximum integers in the matrix after performing all the operations.
Example 1:
Input:
m = 3, n = 3
operations = [[2,2],[3,3]]
Output: 4
Explanation:
Initially, M =
[[0, 0, 0],
[0, 0, 0],
[0, 0, 0]]
After performing [2,2], M =
[[1, 1, 0],
[1, 1, 0],
[0, 0, 0]]
After performing [3,3], M =
[[2, 2, 1],
[2, 2, 1],
[1, 1, 1]]
So the maximum integer in M is 2, and there are four of it in M. So return 4.
Note:
The range of m and n is [1,40000].
The range of a is [1,m], and the range of b is [1,n].
The range of operations size won't exceed 10,000.
idea:
easy
the number of the max
length * width
find the min common part of length
find the min common part of width
note, maxRow and maxCol is NOT index based
*/
public class RangeAddition {
public int maxCount(int m, int n, int[][] ops) {
int maxRow = m;
int maxCol = n;
for (int[] op : ops) {
maxRow = Math.min(op[0], maxRow);
maxCol = Math.min(op[1], maxCol);
}
return maxRow * maxCol;
}
} | [
"[email protected]"
] | |
e3781f8339b43d544b00d9770770dcbbb29c32e7 | 1baeed75248c36a535749e74c7efbd7f5dc581e2 | /pinyougouparent/pinyougou-content-service/src/main/java/com/pinyougou/content/service/impl/ContentCategoryServiceImpl.java | 5ae47a6d206764175380f0b49c2a3d45cbada466 | [] | no_license | GaoForGot/pyg | a13fa3e0479b47af543cfe54c49f1a4af0ad5c6b | 35b00b7154d7ae39b4521c414b53bc86d79a7cfe | refs/heads/master | 2022-12-22T00:32:57.328344 | 2020-11-09T19:23:33 | 2020-11-09T19:23:33 | 209,957,805 | 0 | 0 | null | 2022-12-16T07:18:30 | 2019-09-21T09:27:46 | JavaScript | UTF-8 | Java | false | false | 2,829 | java | package com.pinyougou.content.service.impl;
import java.util.List;
import com.pinyougou.content.service.ContentCategoryService;
import entities.PageResult;
import org.springframework.beans.factory.annotation.Autowired;
import com.alibaba.dubbo.config.annotation.Service;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.pinyougou.mapper.TbContentCategoryMapper;
import com.pinyougou.pojo.TbContentCategory;
import com.pinyougou.pojo.TbContentCategoryExample;
import com.pinyougou.pojo.TbContentCategoryExample.Criteria;
import org.springframework.transaction.annotation.Transactional;
/**
* 服务实现层
*
* @author Administrator
*/
@Service
@Transactional
public class ContentCategoryServiceImpl implements ContentCategoryService {
@Autowired
private TbContentCategoryMapper contentCategoryMapper;
/**
* 查询全部
*/
@Override
public List<TbContentCategory> findAll() {
return contentCategoryMapper.selectByExample(null);
}
/**
* 按分页查询
*/
@Override
public PageResult findPage(int pageNum, int pageSize) {
PageHelper.startPage(pageNum, pageSize);
Page<TbContentCategory> page = (Page<TbContentCategory>) contentCategoryMapper.selectByExample(null);
return new PageResult(page.getTotal(), page.getResult());
}
/**
* 增加
*/
@Override
public void add(TbContentCategory contentCategory) {
contentCategoryMapper.insert(contentCategory);
}
/**
* 修改
*/
@Override
public void update(TbContentCategory contentCategory) {
contentCategoryMapper.updateByPrimaryKey(contentCategory);
}
/**
* 根据ID获取实体
*
* @param id
* @return
*/
@Override
public TbContentCategory findOne(Long id) {
return contentCategoryMapper.selectByPrimaryKey(id);
}
/**
* 批量删除
*/
@Override
public void delete(Long[] ids) {
for (Long id : ids) {
contentCategoryMapper.deleteByPrimaryKey(id);
}
}
@Override
public PageResult findPage(TbContentCategory contentCategory, int pageNum, int pageSize) {
PageHelper.startPage(pageNum, pageSize);
TbContentCategoryExample example = new TbContentCategoryExample();
Criteria criteria = example.createCriteria();
if (contentCategory != null) {
if (contentCategory.getName() != null && contentCategory.getName().length() > 0) {
criteria.andNameLike("%" + contentCategory.getName() + "%");
}
}
Page<TbContentCategory> page = (Page<TbContentCategory>) contentCategoryMapper.selectByExample(example);
return new PageResult(page.getTotal(), page.getResult());
}
}
| [
"[email protected]"
] | |
d7211e74828d0edecf7405399783f872d5b94935 | 9cabe1bd10d1ae856cae561c8dfc7ccac0880bcd | /Server/src/main/java/bgu/spl171/net/impl/rci/Command.java | ec9f6fa4f385896a34e451cc0055924bd060dad3 | [] | no_license | yardenvaknin/Server_Application | 891bfdc4636389be21366e46d5c0cff97a1744d5 | 764ffee18350b8a06f297fea56f2f6b32c881ac9 | refs/heads/master | 2022-06-08T10:08:55.228872 | 2020-05-06T08:45:10 | 2020-05-06T08:45:10 | 261,674,300 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 151 | java | package bgu.spl171.net.impl.rci;
import java.io.Serializable;
public interface Command<T> extends Serializable {
Serializable execute(T arg);
}
| [
"[email protected]"
] | |
0d0d5abf0f6ef08b18f11676c806cf4390199989 | ed5159d056e98d6715357d0d14a9b3f20b764f89 | /test/irvine/oeis/a044/A044128Test.java | 22b13e02bd3fe0f99f35632b7d24d8cd5d4c563b | [] | no_license | flywind2/joeis | c5753169cf562939b04dd246f8a2958e97f74558 | e5efd6971a0062ac99f4fae21a7c78c9f9e74fea | refs/heads/master | 2020-09-13T18:34:35.080552 | 2019-11-19T05:40:55 | 2019-11-19T05:40:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 195 | java | package irvine.oeis.a044;
import irvine.oeis.AbstractSequenceTest;
/**
* Tests the corresponding class.
* @author Sean A. Irvine
*/
public class A044128Test extends AbstractSequenceTest {
}
| [
"[email protected]"
] | |
a626492a96e1581afafa3380518e2722dec95c5b | 709a28bd394652b6211cda052caef70338b457da | /BubbleLayout/app/src/main/java/com/tc/bubblelayout/testrecylerview/GroupItemDecoration.java | 54e8fa91e5719e75445f57f38454f07db1fe52c6 | [] | no_license | ouyangpeng/BubbleLayout | aabd6418cbf61874d12d186a40b5ce0241a397c0 | 9df9014745f980fa9b7ce17a350dc6e20d073580 | refs/heads/master | 2022-03-28T03:13:36.415493 | 2019-12-26T08:07:53 | 2019-12-26T08:07:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,772 | java | package com.tc.bubblelayout.testrecylerview;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Path;
import android.graphics.Rect;
import android.graphics.RectF;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import com.tc.bubblelayout.DensityUtil;
import java.util.List;
/**
* author: tc
* date: 2019/9/14 & 16:29
* version 1.0
* description 列表根据不同数据类型,拆分为多个群组进行布局显示的布局间隔绘制类
* item没有触发反馈
*
* @see IGroupSort
* modify by
*/
public class GroupItemDecoration extends AbstractGroupItemDecoration {
private int mCornerRadius;
public GroupItemDecoration(Context context, List list, int cornerRadius) {
super(context, list);
this.mCornerRadius = cornerRadius;
}
private void drawGroupCorner(Canvas canvas, View child, IGroupSort item, float[] corners) {
Path srcPath = new Path();
RectF rectF = new RectF(child.getLeft(), child.getTop(), child.getRight(), child.getBottom());
if (item != null) {
mPaint.setColor(mContext.getResources().getColor(item.getGroupBackgroundColorId()));
}
//默认无圆角
srcPath.addRoundRect(rectF, corners, Path.Direction.CCW);
canvas.drawPath(srcPath, mPaint);
}
@Override
public void onDrawWhenFirstGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State state,
int adapterPosition, IGroupSort item) {
float[] corners = {mCornerRadius, mCornerRadius, mCornerRadius, mCornerRadius, 0, 0, 0, 0};
drawGroupCorner(canvas, child, item, corners);
}
@Override
public void onDrawWhenMiddleGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State state,
int adapterPosition, IGroupSort item) {
float[] corners = {0, 0, 0, 0, 0, 0, 0, 0};
drawGroupCorner(canvas, child, item, corners);
}
@Override
public void onDrawWhenLastGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State state, int
adapterPosition, IGroupSort item) {
float[] corners = {0, 0, 0, 0, mCornerRadius, mCornerRadius, mCornerRadius, mCornerRadius};
drawGroupCorner(canvas, child, item, corners);
}
@Override
public void onDrawWhenSingleGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State state,
int adapterPosition, IGroupSort item) {
float[] corners = {mCornerRadius, mCornerRadius, mCornerRadius, mCornerRadius, mCornerRadius, mCornerRadius,
mCornerRadius, mCornerRadius};
drawGroupCorner(canvas, child, item, corners);
}
@Override
public void onDrawOverWhenFirstGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
}
@Override
public void onDrawOverWhenMiddleGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
}
@Override
public void onDrawOverWhenLastGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State state,
int adapterPosition, IGroupSort item) {
}
@Override
public void onDrawOverWhenSingleGroupItem(Canvas canvas, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
}
@Override
public void getItemOffsetsWhenFirstGroupItem(Rect outRect, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
if (adapterPosition != 0) {
//第一个群组不加顶部间距
outRect.set(0, DensityUtil.dip2px(mContext, item.getGroupDividerSize()), 0, 0);
}
}
@Override
public void getItemOffsetsWhenMiddleGroupItem(Rect outRect, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
outRect.set(0, 0, 0, 0);
}
@Override
public void getItemOffsetsWhenLastGroupItem(Rect outRect, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
outRect.set(0, 0, 0, 0);
}
@Override
public void getItemOffsetsWhenSingleGroupItem(Rect outRect, View child, RecyclerView parent, RecyclerView.State
state, int adapterPosition, IGroupSort item) {
outRect.set(0, DensityUtil.dip2px(mContext, item.getGroupDividerSize()), 0, 0);
}
}
| [
"[email protected]"
] | |
c8d93a386444e8a19af5f0d7384c250ac69fbe22 | 32f38cd53372ba374c6dab6cc27af78f0a1b0190 | /app/src/main/java/com/ta/audid/db/SqliteHelper.java | 0238c0ad5649c62606fbf0b8e450c30e84c21330 | [] | no_license | shuixi2013/AmapCode | 9ea7aefb42e0413f348f238f0721c93245f4eac6 | 1a3a8d4dddfcc5439df8df570000cca12b15186a | refs/heads/master | 2023-06-06T23:08:57.391040 | 2019-08-29T04:36:02 | 2019-08-29T04:36:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,815 | java | package com.ta.audid.db;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import com.alipay.mobile.common.transport.monitor.RPCDataItems;
import com.ta.audid.utils.UtdidLogger;
import java.util.concurrent.Future;
import java.util.concurrent.atomic.AtomicInteger;
public class SqliteHelper extends SQLiteOpenHelper {
private static final int DATABASE_VERSION = 2;
private DelayCloseDbTask mCloseDbTask = new DelayCloseDbTask();
/* access modifiers changed from: private */
public AtomicInteger mWritableCounter = new AtomicInteger();
/* access modifiers changed from: private */
public SQLiteDatabase mWritableDatabase;
private Future<?> mcloseFuture;
class DelayCloseDbTask implements Runnable {
DelayCloseDbTask() {
}
public void run() {
synchronized (SqliteHelper.this) {
if (SqliteHelper.this.mWritableCounter.get() == 0 && SqliteHelper.this.mWritableDatabase != null) {
SqliteHelper.this.mWritableDatabase.close();
SqliteHelper.this.mWritableDatabase = null;
}
}
}
}
public void onCreate(SQLiteDatabase sQLiteDatabase) {
}
public void onUpgrade(SQLiteDatabase sQLiteDatabase, int i, int i2) {
}
public SqliteHelper(Context context, String str) {
super(context, str, null, 2);
}
/* JADX WARNING: type inference failed for: r0v0, types: [java.lang.String[], android.database.Cursor] */
/* JADX WARNING: Multi-variable type inference failed. Error: jadx.core.utils.exceptions.JadxRuntimeException: No candidate types for var: r0v0, types: [java.lang.String[], android.database.Cursor]
assigns: [?[int, float, boolean, short, byte, char, OBJECT, ARRAY]]
uses: [android.database.Cursor, java.lang.String[]]
mth insns count: 10
at jadx.core.dex.visitors.typeinference.TypeSearch.fillTypeCandidates(TypeSearch.java:237)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1540)
at jadx.core.dex.visitors.typeinference.TypeSearch.run(TypeSearch.java:53)
at jadx.core.dex.visitors.typeinference.TypeInferenceVisitor.runMultiVariableSearch(TypeInferenceVisitor.java:104)
at jadx.core.dex.visitors.typeinference.TypeInferenceVisitor.visit(TypeInferenceVisitor.java:97)
at jadx.core.dex.visitors.DepthTraversal.visit(DepthTraversal.java:27)
at jadx.core.dex.visitors.DepthTraversal.lambda$visit$1(DepthTraversal.java:14)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1540)
at jadx.core.dex.visitors.DepthTraversal.visit(DepthTraversal.java:14)
at jadx.core.ProcessClass.process(ProcessClass.java:30)
at jadx.core.ProcessClass.lambda$processDependencies$0(ProcessClass.java:49)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1540)
at jadx.core.ProcessClass.processDependencies(ProcessClass.java:49)
at jadx.core.ProcessClass.process(ProcessClass.java:35)
at jadx.api.JadxDecompiler.processClass(JadxDecompiler.java:311)
at jadx.api.JavaClass.decompile(JavaClass.java:62)
at jadx.api.JadxDecompiler.lambda$appendSourcesSave$0(JadxDecompiler.java:217)
*/
/* Code decompiled incorrectly, please refer to instructions dump. */
public void onOpen(android.database.sqlite.SQLiteDatabase r3) {
/*
r2 = this;
r0 = 0
java.lang.String r1 = "PRAGMA journal_mode=DELETE"
android.database.Cursor r1 = r3.rawQuery(r1, r0) // Catch:{ Throwable -> 0x0010, all -> 0x000b }
r2.closeCursor(r1)
goto L_0x0013
L_0x000b:
r3 = move-exception
r2.closeCursor(r0)
throw r3
L_0x0010:
r2.closeCursor(r0)
L_0x0013:
super.onOpen(r3)
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.ta.audid.db.SqliteHelper.onOpen(android.database.sqlite.SQLiteDatabase):void");
}
public synchronized SQLiteDatabase getWritableDatabase() {
try {
if (this.mWritableDatabase == null) {
this.mWritableDatabase = super.getWritableDatabase();
}
this.mWritableCounter.incrementAndGet();
} catch (Throwable th) {
UtdidLogger.w(RPCDataItems.SWITCH_TAG_LOG, "e", th);
}
return this.mWritableDatabase;
}
/* JADX WARNING: Code restructure failed: missing block: B:12:0x0027, code lost:
return;
*/
/* Code decompiled incorrectly, please refer to instructions dump. */
public synchronized void closeWritableDatabase(android.database.sqlite.SQLiteDatabase r5) {
/*
r4 = this;
monitor-enter(r4)
if (r5 != 0) goto L_0x0005
monitor-exit(r4)
return
L_0x0005:
java.util.concurrent.atomic.AtomicInteger r5 = r4.mWritableCounter // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
int r5 = r5.decrementAndGet() // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
if (r5 != 0) goto L_0x0026
java.util.concurrent.Future<?> r5 = r4.mcloseFuture // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
if (r5 == 0) goto L_0x0017
java.util.concurrent.Future<?> r5 = r4.mcloseFuture // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
r0 = 0
r5.cancel(r0) // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
L_0x0017:
com.ta.audid.utils.TaskExecutor r5 = com.ta.audid.utils.TaskExecutor.getInstance() // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
r0 = 0
com.ta.audid.db.SqliteHelper$DelayCloseDbTask r1 = r4.mCloseDbTask // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
r2 = 30000(0x7530, double:1.4822E-319)
java.util.concurrent.ScheduledFuture r5 = r5.schedule(r0, r1, r2) // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
r4.mcloseFuture = r5 // Catch:{ Throwable -> 0x002b, all -> 0x0028 }
L_0x0026:
monitor-exit(r4)
return
L_0x0028:
r5 = move-exception
monitor-exit(r4)
throw r5
L_0x002b:
monitor-exit(r4)
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.ta.audid.db.SqliteHelper.closeWritableDatabase(android.database.sqlite.SQLiteDatabase):void");
}
public void closeCursor(Cursor cursor) {
if (cursor != null) {
try {
cursor.close();
} catch (Throwable unused) {
}
}
}
}
| [
"[email protected]"
] | |
7262b17ba404321c3af570092e2b81ba84dbe6ff | b50101521ecfb368496a6d11c1774d0773fd62df | /src/server/status/db/SortedList.java | 270c67c604d8d1dda83262b4340006b66075113d | [] | no_license | johvik/server_status | 508e7089e80c332db0567da85f396c8a4dfc2b49 | 06ac6e5c525f413442f08652ae5ad51728220727 | refs/heads/master | 2021-01-22T12:02:37.153164 | 2014-05-09T17:41:50 | 2014-05-09T17:41:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,586 | java | package server.status.db;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
public class SortedList<E extends Comparable<E>> implements Collection<E>,
Iterable<E> {
private ArrayList<E> list = new ArrayList<E>();
@Override
public boolean add(E e) {
int index = Collections.binarySearch(list, e);
if (index < 0) {
list.add((-index) - 1, e);
return true;
}
return false;
}
@Override
public boolean addAll(Collection<? extends E> c) {
int oldSize = list.size();
for (E e : c) {
add(e);
}
return oldSize != list.size();
}
@Override
public void clear() {
list.clear();
}
@Override
public boolean contains(Object o) {
@SuppressWarnings("unchecked")
int index = Collections.binarySearch(list, (E) o);
return index >= 0;
}
@Override
public boolean containsAll(Collection<?> c) {
for (Object o : c) {
if (!contains(o)) {
return false;
}
}
return true;
}
/**
* Finds object in the list.
*
* @param e
* Object to find.
* @return Instance of e in list or null.
*/
public E find(E e) {
int index = Collections.binarySearch(list, e);
if (index >= 0) {
return list.get(index);
}
return null;
}
public E get(int index) {
return list.get(index);
}
@Override
public boolean isEmpty() {
return list.isEmpty();
}
/**
* Gets the index of element e.
*
* @param e
* Element to find
* @return Index of element or -1 if not found.
*/
public int indexOf(E e) {
int index = Collections.binarySearch(list, e);
if (index >= 0) {
return index;
}
return -1;
}
@Override
public Iterator<E> iterator() {
return list.iterator();
}
@Override
public boolean remove(Object o) {
@SuppressWarnings("unchecked")
int index = Collections.binarySearch(list, (E) o);
if (index >= 0) {
list.remove(index);
return true;
}
return false;
}
@Override
public boolean removeAll(Collection<?> c) {
int oldSize = list.size();
for (Object o : c) {
remove(o);
}
return oldSize != list.size();
}
@Override
public boolean retainAll(Collection<?> c) {
throw new UnsupportedOperationException();
}
@Override
public int size() {
return list.size();
}
@Override
public Object[] toArray() {
return list.toArray();
}
@Override
public <T> T[] toArray(T[] array) {
return list.toArray(array);
}
public boolean update(E e) {
int index = Collections.binarySearch(list, e);
if (index >= 0) {
list.set(index, e);
return true;
}
return false;
}
}
| [
"[email protected]"
] | |
6768e9c407410bef1be41d39e413228b840bb96b | a464211147d0fd47d2be533a5f0ced0da88f75f9 | /EvoSuiteTests/evosuite_3/evosuite-tests/org/mozilla/javascript/NativeJavaClass_ESTest.java | 34ae5ce9b5d3875d7e8a97af1fb4527e96f6b1fb | [
"MIT"
] | permissive | LASER-UMASS/Swami | 63016a6eccf89e4e74ca0ab775e2ef2817b83330 | 5bdba2b06ccfad9d469f8122c2d39c45ef5b125f | refs/heads/master | 2022-05-19T12:22:10.166574 | 2022-05-12T13:59:18 | 2022-05-12T13:59:18 | 170,765,693 | 11 | 5 | NOASSERTION | 2022-05-12T13:59:19 | 2019-02-14T22:16:01 | HTML | UTF-8 | Java | false | false | 6,263 | java | /*
* This file was automatically generated by EvoSuite
* Wed Aug 01 22:00:47 GMT 2018
*/
package org.mozilla.javascript;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.runtime.EvoAssertions.*;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
import org.mozilla.javascript.BaseFunction;
import org.mozilla.javascript.Context;
import org.mozilla.javascript.ContextFactory;
import org.mozilla.javascript.Delegator;
import org.mozilla.javascript.ImporterTopLevel;
import org.mozilla.javascript.NativeArray;
import org.mozilla.javascript.NativeJavaClass;
import org.mozilla.javascript.NativeJavaObject;
import org.mozilla.javascript.Scriptable;
import org.mozilla.javascript.TopLevel;
@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true, useJEE = true)
public class NativeJavaClass_ESTest extends NativeJavaClass_ESTest_scaffolding {
@Test(timeout = 4000)
public void test0() throws Throwable {
Context context0 = Context.enter();
ImporterTopLevel importerTopLevel0 = new ImporterTopLevel(context0, true);
TopLevel.Builtins topLevel_Builtins0 = TopLevel.Builtins.Object;
BaseFunction baseFunction0 = importerTopLevel0.getBuiltinCtor(topLevel_Builtins0);
Class<Delegator> class0 = Delegator.class;
NativeJavaClass nativeJavaClass0 = new NativeJavaClass(baseFunction0, class0, true);
boolean boolean0 = nativeJavaClass0.has("error reporter", (Scriptable) baseFunction0);
assertFalse(boolean0);
}
@Test(timeout = 4000)
public void test1() throws Throwable {
NativeJavaClass nativeJavaClass0 = new NativeJavaClass();
// Undeclared exception!
try {
nativeJavaClass0.getIds();
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.mozilla.javascript.NativeJavaClass", e);
}
}
@Test(timeout = 4000)
public void test2() throws Throwable {
NativeJavaClass nativeJavaClass0 = new NativeJavaClass();
Class<Delegator> class0 = Delegator.class;
Object object0 = nativeJavaClass0.getDefaultValue(class0);
assertSame(object0, nativeJavaClass0);
}
@Test(timeout = 4000)
public void test3() throws Throwable {
NativeJavaClass nativeJavaClass0 = new NativeJavaClass();
double double0 = Context.toNumber(nativeJavaClass0);
assertEquals(Double.NaN, double0, 0.01);
}
@Test(timeout = 4000)
public void test4() throws Throwable {
NativeJavaClass nativeJavaClass0 = new NativeJavaClass();
// Undeclared exception!
try {
nativeJavaClass0.getDefaultValue((Class<?>) null);
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.mozilla.javascript.NativeJavaClass", e);
}
}
@Test(timeout = 4000)
public void test5() throws Throwable {
Context context0 = Context.enter();
ImporterTopLevel importerTopLevel0 = new ImporterTopLevel(context0, true);
TopLevel.Builtins topLevel_Builtins0 = TopLevel.Builtins.Object;
BaseFunction baseFunction0 = importerTopLevel0.getBuiltinCtor(topLevel_Builtins0);
Class<Delegator> class0 = Delegator.class;
NativeJavaClass nativeJavaClass0 = new NativeJavaClass(baseFunction0, class0, true);
NativeArray nativeArray0 = null;
try {
nativeArray0 = new NativeArray(context0.emptyArgs);
// fail("Expecting exception: NullPointerException");
// Unstable assertion
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.mozilla.javascript.NativeArray", e);
}
}
@Test(timeout = 4000)
public void test6() throws Throwable {
ContextFactory contextFactory0 = ContextFactory.getGlobal();
Context context0 = contextFactory0.enterContext();
ImporterTopLevel importerTopLevel0 = new ImporterTopLevel(context0);
TopLevel.NativeErrors topLevel_NativeErrors0 = TopLevel.NativeErrors.ReferenceError;
BaseFunction baseFunction0 = importerTopLevel0.getNativeErrorCtor(topLevel_NativeErrors0);
Class<String> class0 = String.class;
NativeJavaClass nativeJavaClass0 = new NativeJavaClass(baseFunction0, class0);
// Undeclared exception!
try {
nativeJavaClass0.get("error reporter", (Scriptable) baseFunction0);
fail("Expecting exception: RuntimeException");
} catch(RuntimeException e) {
//
// Java class \"java.lang.String\" has no public instance field or method named \"error reporter\".
//
verifyException("org.mozilla.javascript.DefaultErrorReporter", e);
}
}
@Test(timeout = 4000)
public void test7() throws Throwable {
ContextFactory contextFactory0 = ContextFactory.getGlobal();
Context context0 = contextFactory0.enterContext();
ImporterTopLevel importerTopLevel0 = new ImporterTopLevel(context0);
TopLevel.NativeErrors topLevel_NativeErrors0 = TopLevel.NativeErrors.ReferenceError;
BaseFunction baseFunction0 = importerTopLevel0.getNativeErrorCtor(topLevel_NativeErrors0);
Class<String> class0 = String.class;
NativeJavaClass nativeJavaClass0 = new NativeJavaClass(baseFunction0, class0);
Object[] objectArray0 = new Object[1];
objectArray0[0] = (Object) nativeJavaClass0;
NativeJavaObject nativeJavaObject0 = (NativeJavaObject)nativeJavaClass0.call(context0, nativeJavaClass0, nativeJavaClass0, objectArray0);
assertEquals("JavaObject", nativeJavaObject0.getClassName());
}
@Test(timeout = 4000)
public void test8() throws Throwable {
NativeJavaClass nativeJavaClass0 = new NativeJavaClass();
String string0 = nativeJavaClass0.getClassName();
assertEquals("JavaClass", string0);
}
}
| [
"[email protected]"
] | |
dc64add0e367138cd32949196ee7cb29941e99c0 | 7480717e8866db20d8738742630b1733410d6d2b | /ApacheDatasets/PIG-0.9.0/pig-0.8.1/test/org/apache/pig/test/TestExampleGenerator.java | 2dee27b5674c5b7c829affb124ab11092bd7993a | [
"Apache-2.0"
] | permissive | abcdefghiklk/SeekChanges | 600ecffeceedbc2caf1672fc7bb553e37b00131a | 82103108425f22e2b535f43e424c23dbdea3b6f2 | refs/heads/master | 2020-04-06T07:02:43.703757 | 2016-08-17T10:43:59 | 2016-08-17T10:43:59 | 57,231,049 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 6,169 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pig.test;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Map;
import java.util.Random;
import junit.framework.TestCase;
import org.apache.pig.ExecType;
import org.apache.pig.PigServer;
import org.apache.pig.backend.executionengine.ExecException;
import org.apache.pig.data.DataBag;
import org.apache.pig.impl.PigContext;
import org.apache.pig.impl.io.FileLocalizer;
import org.apache.pig.impl.logicalLayer.LogicalOperator;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class TestExampleGenerator extends TestCase {
static MiniCluster cluster = MiniCluster.buildCluster();
PigContext pigContext = new PigContext(ExecType.MAPREDUCE, cluster
.getProperties());
Random rand = new Random();
int MAX = 100;
String A, B;
{
try {
pigContext.connect();
} catch (ExecException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Before
public void setUp() throws Exception {
File fileA, fileB;
fileA = File.createTempFile("dataA", ".dat");
fileB = File.createTempFile("dataB", ".dat");
writeData(fileA);
writeData(fileB);
A = "'" + FileLocalizer.hadoopify(fileA.toString(), pigContext) + "'";
B = "'" + FileLocalizer.hadoopify(fileB.toString(), pigContext) + "'";
System.out.println("A : " + A + "\n" + "B : " + B);
System.out.println("Test data created.");
fileA.deleteOnExit();
fileB.deleteOnExit();
}
@AfterClass
public static void oneTimeTearDown() throws Exception {
cluster.shutDown();
}
private void writeData(File dataFile) throws Exception {
// File dataFile = File.createTempFile(name, ".dat");
FileOutputStream dat = new FileOutputStream(dataFile);
Random rand = new Random();
for (int i = 0; i < MAX; i++)
dat.write((rand.nextInt(10) + "\t" + rand.nextInt(10) + "\n")
.getBytes());
dat.close();
}
@Test
public void testFilter() throws Exception {
PigServer pigserver = new PigServer(pigContext);
String query = "A = load " + A
+ " using PigStorage() as (x : int, y : int);\n";
pigserver.registerQuery(query);
query = "B = filter A by x > 10;";
pigserver.registerQuery(query);
Map<LogicalOperator, DataBag> derivedData = pigserver.getExamples("B");
assertTrue(derivedData != null);
}
@Test
public void testForeach() throws ExecException, IOException {
PigServer pigServer = new PigServer(pigContext);
pigServer.registerQuery("A = load " + A
+ " using PigStorage() as (x : int, y : int);");
pigServer.registerQuery("B = foreach A generate x + y as sum;");
Map<LogicalOperator, DataBag> derivedData = pigServer.getExamples("B");
assertTrue(derivedData != null);
}
@Test
public void testJoin() throws IOException, ExecException {
PigServer pigServer = new PigServer(pigContext);
pigServer.registerQuery("A1 = load " + A + " as (x, y);");
pigServer.registerQuery("B1 = load " + B + " as (x, y);");
pigServer.registerQuery("E = join A1 by x, B1 by x;");
Map<LogicalOperator, DataBag> derivedData = pigServer.getExamples("E");
assertTrue(derivedData != null);
}
@Test
public void testCogroupMultipleCols() throws Exception {
PigServer pigServer = new PigServer(pigContext);
pigServer.registerQuery("A = load " + A + " as (x, y);");
pigServer.registerQuery("B = load " + B + " as (x, y);");
pigServer.registerQuery("C = cogroup A by (x, y), B by (x, y);");
Map<LogicalOperator, DataBag> derivedData = pigServer.getExamples("C");
assertTrue(derivedData != null);
}
@Test
public void testCogroup() throws Exception {
PigServer pigServer = new PigServer(pigContext);
pigServer.registerQuery("A = load " + A + " as (x, y);");
pigServer.registerQuery("B = load " + B + " as (x, y);");
pigServer.registerQuery("C = cogroup A by x, B by x;");
Map<LogicalOperator, DataBag> derivedData = pigServer.getExamples("C");
assertTrue(derivedData != null);
}
@Test
public void testGroup() throws Exception {
PigServer pigServer = new PigServer(pigContext);
pigServer.registerQuery("A = load " + A.toString() + " as (x, y);");
pigServer.registerQuery("B = group A by x;");
Map<LogicalOperator, DataBag> derivedData = pigServer.getExamples("B");
assertTrue(derivedData != null);
}
@Test
public void testUnion() throws Exception {
PigServer pigServer = new PigServer(pigContext);
pigServer.registerQuery("A = load " + A.toString() + " as (x, y);");
pigServer.registerQuery("B = load " + B.toString() + " as (x, y);");
pigServer.registerQuery("C = union A, B;");
Map<LogicalOperator, DataBag> derivedData = pigServer.getExamples("C");
assertTrue(derivedData != null);
}
}
| [
"[email protected]"
] | |
8a1bffe3a8e7e32aa85a4349ad4480e72f75e55c | 05f15ac1d30be14f1562edeade6117292c28530f | /eskyzdt-server/src/main/java/cn/eskyzdt/WebApplication.java | 684ae7ccf591201b0e8129e1101ab3889fbaf250 | [] | no_license | eskyzdt/eskyzdt | 57798bdc1961f7799b330228677868e527a9c87a | 4a28e1aceb77260df4504e57609af76ba8c8d0af | refs/heads/V1.0 | 2023-08-16T22:34:44.423083 | 2023-08-15T06:53:46 | 2023-08-15T06:53:46 | 206,766,628 | 1 | 0 | null | 2022-10-14T06:12:21 | 2019-09-06T10:03:01 | JavaScript | UTF-8 | Java | false | false | 443 | java | package cn.eskyzdt;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@MapperScan(basePackages = {"cn.eskyzdt.modules.*.dao"}) //这里扫描的是dao的接口层
public class WebApplication {
public static void main(String[] args) {
SpringApplication.run(WebApplication.class);
}
}
| [
"[email protected]"
] | |
de61115778ad9d4b9b717c3a6307981442de2aa2 | 7195a8f1125c55d42c5b6fb0a820ca055583031a | /modules/andes-core/common/src/main/java/org/wso2/andes/messaging/util/Lexicon.java | cc94d819d30c365e5e6a30c7f16ae41194197e0f | [
"Apache-2.0"
] | permissive | wso2/andes | 355d3a3b94ee376ae1bef01871216925199f9065 | 85434f648e56ce5f88cd5abcc6db738edce90af9 | refs/heads/master | 2023-08-16T09:55:41.020956 | 2023-06-07T08:40:22 | 2023-06-07T08:40:22 | 20,559,270 | 38 | 124 | Apache-2.0 | 2023-06-07T07:07:35 | 2014-06-06T10:04:24 | Java | UTF-8 | Java | false | false | 2,619 | java | /*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.wso2.andes.messaging.util;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
/**
* Lexicon
*
*/
public class Lexicon
{
private List<Token.Type> types;
private Token.Type eof;
public Lexicon()
{
this.types = new ArrayList<Token.Type>();
this.eof = null;
}
public Token.Type define(String name, String pattern)
{
Token.Type t = new Token.Type(name, pattern);
types.add(t);
return t;
}
public Token.Type eof(String name)
{
Token.Type t = new Token.Type(name, null);
eof = t;
return t;
}
public Lexer compile()
{
StringBuilder joined = new StringBuilder();
for (Token.Type t : types)
{
if (joined.length() > 0)
{
joined.append('|');
}
joined.append('(').append(t.getPattern()).append(')');
}
Pattern rexp = Pattern.compile(joined.toString());
return new Lexer(new ArrayList<Token.Type>(types), eof, rexp);
}
public static final void main(String[] args)
{
StringBuilder input = new StringBuilder();
for (String a : args)
{
if (input.length() > 0)
{
input.append(" ");
}
input.append(a);
}
Lexicon lxi = new Lexicon();
lxi.define("FOR", "for");
lxi.define("IF", "if");
lxi.define("LPAREN", "\\(");
lxi.define("RPAREN", "\\)");
lxi.define("ID", "[\\S]+");
lxi.define("WSPACE", "[\\s]+");
lxi.eof("EOF");
Lexer lx = lxi.compile();
for (Token t : lx.lex(input.toString()))
{
System.out.println(t);
}
}
}
| [
"[email protected]"
] | |
e64abe6af52fdb214131cd2f025a2b5983286001 | cb6c75eed28972d6c07d205fd6ebfeb04cb94f61 | /eclipse-workspace/APPTECH_JAVA2/src/lab8/Type4Demo.java | 3cebcf2088137554d7dac6d29002e213613cd356 | [] | no_license | chehuy97/JavaAptech | 9cf980bcf109a6503fed7a684b14ce92bea44736 | f3bbd231d2ab532b94a3beec07bc5270c15787f7 | refs/heads/master | 2020-03-29T06:24:28.485350 | 2018-09-20T14:41:38 | 2018-09-20T14:41:38 | 149,623,003 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,501 | java | package lab8;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Type4Demo {
public static void main(String[] args) {
Connection cn = null; // tao ket noi voi database
Statement st = null; // chay cau lenh sql
ResultSet rs = null; // chua ket qua tra ve
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");// lay ra dia chi Driver
cn = DriverManager.getConnection("jdbc:sqlserver://DESKTOP-VR6CH56\\SQLEXPRESS:1433;databaseName=QLSV", "sa","huy9101997");
//String sql = "select *from SinhVien";
String sql = "insert into SinhVien values ('MS07','Nguyen Van I',10);";
st = cn.createStatement();
// rs = st.executeQuery(sql);
// while (rs.next()) {
// System.out.printf(" %-5s %-15s %-5s \n", rs.getString(1), rs.getString(2), rs.getString(3));
// }
int n = st.executeUpdate(sql);
if(n>0) {
System.out.println("insert thanh cong");
}else {
System.out.println("insert khong thanh cong");
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if (rs != null)
rs.close();
if (st != null)
st.close();
if (cn != null)
cn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
| [
"[email protected]"
] | |
3dc2bc3991ab127df2e69c686f46e278731299ea | cf9ec4a44ea26d5b3fc21c335a2c71c08abcb49a | /src/algorithms/com/guan/hunan/GraphClient.java | a1b648fe251986988869e2486fbf266e20cdebf9 | [] | no_license | zhongwen7710/algorithm | 22b8ba860ae84f5b9bca6c7e6611a4de982150e6 | 5735237dc48dffa6c02fc982756e1c39978690dd | refs/heads/master | 2021-01-18T17:15:16.523909 | 2020-12-13T07:35:39 | 2020-12-13T07:35:39 | 23,423,697 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,968 | java | package algorithms.com.guan.hunan;
import algorithms.com.guan.stdlib.In;
import algorithms.com.guan.stdlib.StdOut;
/*************************************************************************
* Compilation: javac GraphClient.java
* Execution: java GraphClient graph.txt
* Dependencies: Graph.java
*
* Typical graph-processing code.
*
* % java GraphClient tinyG.txt
* 13 13
* 0: 6 2 1 5
* 1: 0
* 2: 0
* 3: 5 4
* 4: 5 6 3
* 5: 3 4 0
* 6: 0 4
* 7: 8
* 8: 7
* 9: 11 10 12
* 10: 9
* 11: 9 12
* 12: 11 9
*
* vertex of maximum degree = 4
* average degree = 2
* number of self loops = 0
*
*************************************************************************/
public class GraphClient {
// degree of v
public static int degree(Graph G, int v) {
int degree = 0;
for (int w : G.adj(v)) degree++;
return degree;
}
// maximum degree
public static int maxDegree(Graph G) {
int max = 0;
for (int v = 0; v < G.V(); v++)
if (degree(G, v) > max)
max = degree(G, v);
return max;
}
// average degree
public static int avgDegree(Graph G) {
// each edge incident on two vertices
return 2 * G.E() / G.V();
}
// number of self-loops
public static int numberOfSelfLoops(Graph G) {
int count = 0;
for (int v = 0; v < G.V(); v++)
for (int w : G.adj(v))
if (v == w) count++;
return count/2; // self loop appears in adjacency list twice
}
public static void main(String[] args) {
In in = new In(args[0]);
Graph G = new Graph(in);
StdOut.println(G);
StdOut.println("vertex of maximum degree = " + maxDegree(G));
StdOut.println("average degree = " + avgDegree(G));
StdOut.println("number of self loops = " + numberOfSelfLoops(G));
}
} | [
"[email protected]"
] | |
cd64f22b5801c2ba6631fbd295ec979a68de81bb | 6378cd7f9e5ca4e8e3eacad55fe9053d4ed65511 | /src/interfaces/IOBBank.java | 2b34997605e79674bc42d178e73fc22e1ef7be11 | [] | no_license | Vinay9190/SectionFInheritance | 1e148adae6f2c007eb084368e50d2cbb20638804 | 383209e5b8a4ee71fb02c93fb215b4275226186f | refs/heads/master | 2022-12-09T22:01:55.125521 | 2020-09-07T17:47:00 | 2020-09-07T17:47:00 | 290,124,347 | 1 | 0 | null | 2020-08-25T05:43:11 | 2020-08-25T05:43:10 | null | UTF-8 | Java | false | false | 514 | java | package interfaces;
public interface IOBBank {
// for inheriting class
// the extends keyword
// for inherinting interfaces we use:
// the implements keyword
class IOBBank implements Bank {
@Override
public void createAccount() {
System.out.println(" ASK FOR NAME,AGE, EMAIL");
}
}
class SBIBank implements Bank, ATM {
@Override
public void createAccount() {
System.out.println("ASK ONLY FOR NAME" );
}
}
}
| [
"[email protected]"
] | |
ca84ee6697769f5f0f8d658a6c622bba16ce740a | 0bb95ff114dab9e471006a5596293f20e2821e18 | /ClothesManager/app/src/main/java/database/DatabaseOperations.java | 06fd7a9415b7c5310025b6988284d7675ab24990 | [] | no_license | AngelaRg/ClothesManager | 0df245837a362f273ab705b1403f97223c542480 | b817f9bf0162c3f0cd213b2f3681d9b11f06d7e3 | refs/heads/master | 2021-01-01T04:14:12.965513 | 2017-10-01T10:46:01 | 2017-10-01T10:46:01 | 97,145,493 | 0 | 0 | null | 2017-10-01T10:46:02 | 2017-07-13T16:46:00 | Java | UTF-8 | Java | false | false | 15,010 | java | package database;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import models.Basket;
import models.Garment;
import utils.BitmapConverter;
import utils.DateFormatter;
import utils.StringValues;
/**
* This class performs the CRUD operations for the in app database
*
* Created by Cesar on 7/24/2017.
*/
public class DatabaseOperations {
private SQLiteDatabase db;
private DataBaseHelper dataBaseHelper;
/**
* Constructor method
* @param context
*/
public DatabaseOperations(Context context) {
// initialize the database
dataBaseHelper = DataBaseHelper.getInstance(context);
}
/**
* Method to get all the Garments in the database
* @return list of all garments
*/
public List<Garment> getAllGarments() {
db = dataBaseHelper.getWritableDatabase();
// query string
String query = "SELECT * FROM " + StringValues.TABLE_GARMENT;
// execute query
Cursor cursor = db.rawQuery(query,null);
// initialize object list
List<Garment> garments = new ArrayList<Garment>();
try {
if (cursor.moveToFirst()) {
// iterate through all the lines of the result
while (!cursor.isAfterLast()) {
garments.add(createGarmentFromResultQuery(cursor));
// move to next query result
cursor.moveToNext();
}
}
} catch (Exception e) {
Log.d("getAllGarments", "Error while getting all garments");
e.printStackTrace();
}
db.close();
return garments;
}
/**
* Method to create a new Garment in the DB
* @param garment
*/
public void addGarment(Garment garment) {
db = dataBaseHelper.getWritableDatabase();
// add all the values in a ContentValues
ContentValues values = new ContentValues();
values.put(StringValues.COLUMN_IDGARMENT, garment.getIdGarment());
values.put(StringValues.COLUMN_GARMENTNAME, garment.getGarmentName());
values.put(StringValues.COLUMN_GARMENTTYPE, garment.getGarmentType());
values.put(StringValues.COLUMN_USAGE, garment.getUsagePercentage());
values.put(StringValues.COLUMN_LASTUSAGE, DateFormatter.createStringFromDate(garment.getLastUsage()));
values.put(StringValues.COLUMN_GARMENTPCITURE, BitmapConverter.getBytes(garment.getGarmentPicture()));
values.put(StringValues.COLUMN_ISINBASKET, (garment.isInBasket()? 1:0));
values.put(StringValues.COLUMN_IDBASKET, garment.getIdBasket());
// insert the values into a new row in DB
db.insert(StringValues.TABLE_GARMENT, null, values);
db.close();
}
/**
* Method to get a Garment object by its id
* @param garmentId
* @return
*/
public Garment getGarmentById(int garmentId) {
db = dataBaseHelper.getWritableDatabase();
// query string
String query = "SELECT * FROM " + StringValues.TABLE_GARMENT
+ " WHERE " + StringValues.COLUMN_IDGARMENT
+ " = \"" + garmentId + "\"";
// execute query
Cursor cursor = db.rawQuery(query,null);
Garment garment = new Garment();
// try to read the Garment result
try {
if (cursor.moveToFirst()) {
garment = createGarmentFromResultQuery(cursor);
}
} catch (Exception e) {
Log.d("getGarmentById", "Error while getting garment by id");
e.printStackTrace();
}
db.close();
return garment;
}
/**
* Method to get the type of a Garment based on its Id
* @param garmentId
* @return
*/
public String getGarmentTypeByGarmentId(int garmentId) {
db = dataBaseHelper.getWritableDatabase();
// query string
String query = "SELECT * FROM " + StringValues.TABLE_GARMENT
+ " WHERE " + StringValues.COLUMN_IDGARMENT
+ " = \"" + garmentId + "\"";
// execute query
Cursor cursor = db.rawQuery(query,null);
Garment garment = new Garment();
// try to read the Garment result
try {
if (cursor.moveToFirst()) {
garment = createGarmentFromResultQuery(cursor);
}
} catch (Exception e) {
Log.d("getGarmentById", "Error while getting garment by id");
e.printStackTrace();
}
db.close();
return garment.getGarmentType();
}
/**
* Method to update the garmentType of a garment based on its id
* @param idGarment
* @param garmentType
*/
public void setGarmentType(int idGarment, String garmentType) {
db = dataBaseHelper.getWritableDatabase();
// set garmentType value in a ContentValues
ContentValues values = new ContentValues();
values.put(StringValues.COLUMN_GARMENTTYPE, garmentType);
// execute the update in DB
db.update(StringValues.TABLE_GARMENT, values, StringValues.COLUMN_IDGARMENT + "=" + idGarment, null);
db.close();
}
/**
* Method to get a Basket object correspondent to a Garment
* @param idGarment
* @return
*/
public Basket getBasketByGarmentId(int idGarment) {
db = dataBaseHelper.getWritableDatabase();
// get the garment object to access the basketId value
Garment currentGarment = getGarmentById(idGarment);
// get the basket via query
String query = "SELECT * FROM " + StringValues.TABLE_BASKET
+ " WHERE " + StringValues.COLUMN_IDBASKET
+ " = \"" + currentGarment.getIdBasket() + "\"";
// execute query
Cursor cursor = db.rawQuery(query,null);
Basket basket = null;
if (cursor.moveToFirst()) {
// get values and create object
int idBasket = cursor.getInt(cursor.getColumnIndex(StringValues.COLUMN_IDBASKET));
String basketName = cursor.getString(cursor.getColumnIndex(StringValues.COLUMN_BASKETNAME));
String basketDescription = cursor.getString(cursor.getColumnIndex(StringValues.COLUMN_BASKETDESCRIPTION));
basket = new Basket(idBasket, basketName, basketDescription);
}
db.close();
return basket;
}
/**
* Method to set the idBasket to a garment object
* @param idGarment
* @param idBasket
*/
public void setBasket(int idGarment,int idBasket) {
db = dataBaseHelper.getWritableDatabase();
// set idBasket value in a ContentValues
ContentValues values = new ContentValues();
values.put(StringValues.COLUMN_IDBASKET, idBasket);
// execute the update in DB
db.update(StringValues.TABLE_GARMENT, values, StringValues.COLUMN_IDGARMENT + "=" + idGarment, null);
db.close();
}
/**
* Method to get the usage percentage of a garment by its id
* @param idGarment
* @return
*/
public int getUsagePercentage(int idGarment){
Garment currentGarment = getGarmentById(idGarment);
return currentGarment.getUsagePercentage();
}
/**
* Method to update the usagePercentage of a garment by its id
* @param idGarment
* @param newUsagePercentage
*/
public void setUsagePercentage(int idGarment, int newUsagePercentage) {
db = dataBaseHelper.getWritableDatabase();
// set garmentType value in a ContentValues
ContentValues values = new ContentValues();
values.put(StringValues.COLUMN_USAGE, newUsagePercentage);
// execute the update in DB
db.update(StringValues.TABLE_GARMENT, values, StringValues.COLUMN_IDGARMENT + "=" + idGarment, null);
db.close();
}
/**
* Method to delete a garment based on its id
* @param idGarment
*/
public void deleteGarment(int idGarment) {
db = dataBaseHelper.getWritableDatabase();
db.delete(StringValues.TABLE_GARMENT, StringValues.COLUMN_IDGARMENT + "=" + idGarment, null);
db.close();
}
/**
* Method to set the usagePercentage of a garment to 0 (clean)
* @param idGarment
*/
public void cleanGarmentByGarmentId(int idGarment) {
db = dataBaseHelper.getWritableDatabase();
// set usagePercentage value in a ContentValues
ContentValues values = new ContentValues();
values.put(StringValues.COLUMN_USAGE, 0);
// execute the update in DB
db.update(StringValues.TABLE_GARMENT, values, StringValues.COLUMN_IDGARMENT + "=" + idGarment, null);
db.close();
}
/**
* Method to get all the garments that are not 100% used based on its garment type
* @param garmentType
* @return
*/
public List<Garment> getAvailableGarmentsByGarmentType(String garmentType) {
db = dataBaseHelper.getWritableDatabase();
// query string
String query = "SELECT * FROM " + StringValues.TABLE_GARMENT
+ " WHERE " + StringValues.COLUMN_GARMENTTYPE
+ " = \"" + garmentType + "\"";
// execute query
Cursor cursor = db.rawQuery(query,null);
// initialize object list
List<Garment> garments = new ArrayList<Garment>();
try {
if (cursor.moveToFirst()) {
// iterate through all the lines of the result
while (!cursor.isAfterLast()) {
Garment currentGarment = createGarmentFromResultQuery(cursor);
// add to the list the garments that are not 100% used
if(currentGarment.getUsagePercentage() < 100) {
garments.add(currentGarment);
}
// move to next query result
cursor.moveToNext();
}
}
} catch (Exception e) {
Log.d("getAvailableGarments", "Error while getting av. garments");
e.printStackTrace();
}
db.close();
return garments;
}
/**
* Method to get the dirty garments (100% usage) from a basket
* @param idBasket
* @return
*/
public List<Garment> getDirtyGarmentsByBasketId(int idBasket) {
db = dataBaseHelper.getWritableDatabase();
// query string
String query = "SELECT * FROM " + StringValues.TABLE_GARMENT
+ " WHERE " + StringValues.COLUMN_IDBASKET
+ " = \"" + idBasket + "\"";
// execute query
Cursor cursor = db.rawQuery(query,null);
// initialize object list
List<Garment> garments = new ArrayList<Garment>();
try {
if (cursor.moveToFirst()) {
// iterate through all the lines of the result
while (!cursor.isAfterLast()) {
Garment currentGarment = createGarmentFromResultQuery(cursor);
// add to the list only the garments that are 100% used
if(currentGarment.getUsagePercentage() == 100) {
garments.add(currentGarment);
}
// move to next query result
cursor.moveToNext();
}
}
} catch (Exception e) {
Log.d("getDirtyGarments", "Error while getting d. garments");
e.printStackTrace();
}
db.close();
return garments;
}
/**
* Method to clean (set usage to 0) all garments by basket id
* @param idBasket
*/
public void cleanAllGarmentsByBasketId(int idBasket) {
db = dataBaseHelper.getWritableDatabase();
// query string
String query = "SELECT * FROM " + StringValues.TABLE_GARMENT
+ " WHERE " + StringValues.COLUMN_IDBASKET
+ " = \"" + idBasket + "\"";
// execute query
Cursor cursor = db.rawQuery(query,null);
// initialize object list
List<Garment> garments = new ArrayList<Garment>();
try {
if (cursor.moveToFirst()) {
// iterate through all the lines of the result
while (!cursor.isAfterLast()) {
Garment currentGarment = createGarmentFromResultQuery(cursor);
cleanGarmentByGarmentId(currentGarment.getIdGarment());
// move to next query result
cursor.moveToNext();
}
}
} catch (Exception e) {
Log.d("getDirtyGarments", "Error while getting d. garments");
e.printStackTrace();
}
db.close();
}
/**
* Method to create a new basket
* @param basket
*/
public void addBasket(Basket basket) {
db = dataBaseHelper.getWritableDatabase();
// add all the values in a ContentValues
ContentValues values = new ContentValues();
values.put(StringValues.COLUMN_IDBASKET, basket.getIdBasket());
values.put(StringValues.COLUMN_BASKETNAME, basket.getBasketName());
values.put(StringValues.COLUMN_BASKETDESCRIPTION, basket.getBasketDescription());
// insert the values into a new row in DB
db.insert(StringValues.TABLE_BASKET, null, values);
db.close();
}
/**
* Method to create a Garment object from a Cursor of a query result
* @param cursor
* @return
*/
private Garment createGarmentFromResultQuery(Cursor cursor) {
// get all the attributes from the current line of the query result
int idGarment = cursor.getInt(cursor.getColumnIndex(StringValues.COLUMN_IDGARMENT));
String garmentName = cursor.getString(cursor.getColumnIndex(StringValues.COLUMN_GARMENTNAME));
String garmentType = cursor.getString(cursor.getColumnIndex(StringValues.COLUMN_GARMENTTYPE));
int usagePercentage = cursor.getInt(cursor.getColumnIndex(StringValues.COLUMN_USAGE));
Date lastUsage = DateFormatter.createDateFromString(
cursor.getString(cursor.getColumnIndex(StringValues.COLUMN_LASTUSAGE)));
byte[] garmentPicture = cursor.getBlob(cursor.getColumnIndex(StringValues.COLUMN_GARMENTPCITURE));
boolean isInBasket = cursor.getInt(cursor.getColumnIndex(StringValues.COLUMN_ISINBASKET)) > 0;
int idBasket = cursor.getInt(cursor.getColumnIndex(StringValues.COLUMN_IDBASKET));
// create a new Garment object
Garment currentGarment = new Garment(idGarment,garmentName,
garmentType,usagePercentage,lastUsage,
BitmapConverter.getImage(garmentPicture), isInBasket, idBasket);
return currentGarment;
}
}
| [
"[email protected]"
] | |
d389a930036dbab2c7d9f4aabc97cb266b8c3a67 | 29b6a856a81a47ebab7bfdba7fe8a7b845123c9e | /dingtalk/java/src/main/java/com/aliyun/dingtalkdatacenter_1_0/models/GetAdministrativeLicensingRequest.java | 8930eb425ec897350f55586f6ec4dda1279f86f2 | [
"Apache-2.0"
] | permissive | aliyun/dingtalk-sdk | f2362b6963c4dbacd82a83eeebc223c21f143beb | 586874df48466d968adf0441b3086a2841892935 | refs/heads/master | 2023-08-31T08:21:14.042410 | 2023-08-30T08:18:22 | 2023-08-30T08:18:22 | 290,671,707 | 22 | 9 | null | 2021-08-12T09:55:44 | 2020-08-27T04:05:39 | PHP | UTF-8 | Java | false | false | 1,268 | java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetAdministrativeLicensingRequest extends TeaModel {
@NameInMap("pageNumber")
public Integer pageNumber;
@NameInMap("pageSize")
public Integer pageSize;
@NameInMap("searchKey")
public String searchKey;
public static GetAdministrativeLicensingRequest build(java.util.Map<String, ?> map) throws Exception {
GetAdministrativeLicensingRequest self = new GetAdministrativeLicensingRequest();
return TeaModel.build(map, self);
}
public GetAdministrativeLicensingRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetAdministrativeLicensingRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetAdministrativeLicensingRequest setSearchKey(String searchKey) {
this.searchKey = searchKey;
return this;
}
public String getSearchKey() {
return this.searchKey;
}
}
| [
"[email protected]"
] | |
b52fb334dd356c33b7e7e9fb2990053748eb72c1 | 6754d18ec15386da4c646a26178ef29c5db7697d | /Java/CurrencyConverter/src/com/company/Currency.java | e6c97181ef3a7d3a871e79c8dd7aa3f25e418611 | [] | no_license | Roobun/SomeProjects | bd8e621a01c151ecac2044e261b3256f30c91fc9 | adc8efb7836f3907bc204f1ea188a96f324dcf5a | refs/heads/master | 2020-03-29T06:18:04.950580 | 2018-09-22T13:26:42 | 2018-09-22T13:26:42 | 149,618,656 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 590 | java | package com.company;
public class Currency {
String CharCode;
int Nominal;
String Name;
double Value;
public Currency(String OuterCharCode, int OuterNominal,
String OuterName, double OuterValue) {
this.CharCode = OuterCharCode;
this.Nominal = OuterNominal;
this.Name = OuterName;
this.Value = OuterValue;
}
public int getNominal() {
return this.Nominal;
}
public String getName() {
return this.Name;
}
public double getValue() {
return this.Value;
}
}
| [
"[email protected]"
] | |
6856d532283898b71c1f21b4576ff882421a760a | b1ef5a31d6b9fb7ec22d0c680dd990c693c80df7 | /src/main/java/bsuir/ppvis/view/style/Titles.java | 88eeea0dd0ee60c9c7144dd430f81ab487694be8 | [] | no_license | DanilaSavkov/inventory-book-lab2 | dc5162be847e1ff09d23b74f97b759e2e0825ce2 | 307e3853e53b6e17b3e81aab8b7f943335feafca | refs/heads/main | 2023-04-21T23:34:40.921018 | 2021-05-25T22:32:42 | 2021-05-25T22:32:42 | 361,668,818 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,218 | java | package bsuir.ppvis.view.style;
public interface Titles {
String FILE_MENU_TITLE = "Файл";
String EDIT_MENU_TITLE = "Изменить";
String OPEN_FILE_TITLE = "Открыть";
String SAVE_FILE_TITLE = "Сохранить";
String ADD_TITLE = "Добавить";
String REMOVE_TITLE = "Удалить";
String SEARCH_TITLE = "Поиск";
String PRODUCT_NAME_TITLE = "Название продукта";
String FABRICATOR_NAME_TITLE = "Название производителя";
String FABRICATOR_NUMBER_TITLE = "УНП производителя";
String COUNT_ON_STORAGE_TITLE = "Количество на складе";
String STORAGE_ADDRESS_TITLE = "Адрес склада";
String ALL_RECORDS_TITLE = "Все записи";
String ADD_RECORD_TITLE = "Добавить запись";
String SEARCH_RECORDS_TITLE = "Найти записи";
String REMOVE_RECORDS_TITLE = "Удалить записи";
String SHOW_TITLE = "Показать";
String RECORDS_TOTAL_TITLE = "Всего записей";
String OK_TITLE = "Ок";
String CANCEL_TITLE = "Отмена";
String EMPTY_TABLE_TITLE = "Нет записей";
}
| [
"[email protected]"
] | |
bde612cb228a8269320c0ccdde2750a28e2f5b9f | c90fa18e878094746ca6ee0582accb33e85e870d | /demos/AndroidDataStorage/sharedpreferencestest/src/main/java/com/example/sharedpreferencestest/MainActivity.java | f2d4e7c419019816f96349bd26650386199c0738 | [] | no_license | TDCQZD/AndroidDev | f4beb684169be1c00ac121fea3867068baa16852 | 7a217c23547e44273e4f42b784026c257a145517 | refs/heads/master | 2020-04-27T23:39:17.044479 | 2019-03-10T06:09:33 | 2019-03-10T06:09:33 | 174,784,609 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,018 | java | package com.example.sharedpreferencestest;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private Button btDataSave;
private Button btDataRead;
private TextView tvShow;
private SharedPreferences sp;
private SharedPreferences.Editor spe;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sp = getPreferences(MODE_PRIVATE);
spe = sp.edit();
findViews();
}
private void findViews() {
btDataSave = (Button) findViewById(R.id.bt_Data_save);
btDataRead = (Button) findViewById(R.id.bt_Data_read);
tvShow = (TextView) findViewById(R.id.tv_show);
btDataSave.setOnClickListener(this);
btDataRead.setOnClickListener(this);
}
@Override
public void onClick(View v) {
if (v == btDataSave) {
saveData();
} else if (v == btDataRead) {
readData();
}
}
private void readData() {
String name = sp.getString("name", "");
String sex = sp.getString("sex", "");
int hight = sp.getInt("身高", 0);
Boolean b = sp.getBoolean("婚姻状况", false);
tvShow.setText("name:" + name + "\n" + "sex:" + sex + "\n" + "身高:" + hight + "\n" + "婚姻状况:" + b);
// Log.i("TAG", "MainActivity readData()--->" + name);
}
private void saveData() {
spe.putString("name", "张三");
spe.putString("sex", "张三");
spe.putInt("身高", 170);
spe.putBoolean("婚姻状况", false);
spe.commit();
Toast.makeText(MainActivity.this, "数据写入成功", Toast.LENGTH_SHORT).show();
}
}
| [
"[email protected]"
] | |
340e918d3a7424362831a9c5605c1ceeff23b6b0 | 3bcd26696ae26414d648f6d01285fb0b67d7cfcd | /BankABC/src/main/java/com/MainAppForRun.java | 324bac60705c4db3c8f3cfc1727c932d66d304b1 | [] | no_license | nooruli/demo | 30b8ed766298858fceed33b7e117835e5c051599 | e4a491909d8134d59dc1546a5d1e0cfa61243421 | refs/heads/master | 2020-04-22T08:54:13.341046 | 2019-02-12T05:10:08 | 2019-02-12T05:10:08 | 170,254,479 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 305 | java | package com;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MainAppForRun {
public static void main(String[] args) {
SpringApplication.run(MainAppForRun.class, args);
}
}
| [
"[email protected]"
] | |
3d1bbaee0a2ce84e495a1451798f795d90f67518 | cb074fc882112da644164c26c7ac8dab49dc22d1 | /src/logic/Trains/Restriction.java | 1fe382ccd471b19a3b89948e4c7b21fbc3ce8ce2 | [] | no_license | potockan/Trains | 6aeae277ef12fe072cfcf142074a5681834013f4 | c93e3eea9e9dea08f38bbf376b09c3e7abf7ffb0 | refs/heads/master | 2021-01-12T08:22:31.478717 | 2016-12-22T10:55:19 | 2016-12-22T10:55:19 | 76,557,759 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 458 | java | package logic.Trains;
/**
* Created by npotocka on 15.12.16.
*/
public class Restriction<V> {
private V min;
private V max;
public Restriction(V min, V max){
this.min = min;
this.max = max;
}
public V getMax() {
return max;
}
public V getMin() {
return min;
}
public void setMax(V max) {
this.max = max;
}
public void setMin(V min) {
this.min = min;
}
}
| [
"[email protected]"
] | |
137395c0c3a1201f54b1200c558362a49e4e0896 | cf2979c4b54a6f8cbd5a429b21f93d71e9d2a378 | /DroidUtils/src/main/java/rhcloud/com/droidutils/tabutil/tabutil/impl/OnAddTabDefaultImpl.java | 541a5f2a7114e4f6756643a3125e555cbe29bb45 | [] | no_license | Klauswk/DroidUtils | 645dc984c9b97d6f3625768ae1679ebb776f5d17 | f72446f598c61195c5b7290646f6c2810f372e96 | refs/heads/master | 2021-01-20T15:57:56.686891 | 2016-08-12T20:13:30 | 2016-08-12T20:13:30 | 65,158,039 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,246 | java | package rhcloud.com.droidutils.tabutil.tabutil.impl;
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import rhcloud.com.droidutils.tabutil.tabutil.Tab;
import rhcloud.com.droidutils.tabutil.tabutil.TabBody;
import rhcloud.com.droidutils.tabutil.tabutil.TabFragment;
import rhcloud.com.droidutils.tabutil.tabutil.interfaces.OnAddTab;
import rhcloud.com.droidutils.tabutil.tabutil.interfaces.TabHeaderUpdater;
/**
* @author <a href="https://github.com/Klauswk">Klaus Klein</a>
* @version 1.0
* @since 1.0
*/
public class OnAddTabDefaultImpl implements OnAddTab {
private TabBody tabBody;
private TabHeaderUpdater updateTabHeader;
public OnAddTabDefaultImpl(TabBody tabBody, TabHeaderUpdater updateTabHeader) {
this.tabBody = tabBody;
this.updateTabHeader = updateTabHeader;
}
@Override
public Tab addTab(@NonNull TabFragment tabFragment){
return addTab(tabFragment,-1);
}
@Override
public Tab addTab(@NonNull TabFragment tabFragment , int position){
tabBody.addTab(tabFragment,position);
updateTabHeader.updateTabHeader();
return null;
}
@Override
public Tab addTab(@NonNull Fragment fragment){
return addTab(new TabFragment(fragment), -1);
}
@Override
public Tab addTab(@NonNull Fragment fragment, @Nullable String title){
return addTab(fragment,title,null);
}
@Override
public Tab addTab(@NonNull Fragment fragment, @Nullable String title , @Nullable Drawable drawable){
return addTab(new TabFragment(fragment,title,drawable), -1);
}
@Override
public Tab addTab(@NonNull Fragment fragment, int position){
return addTab(new TabFragment(fragment), position);
}
@Override
public Tab addTab(@NonNull Fragment fragment, @Nullable String title, int position){
return addTab(fragment,title,null,position);
}
@Override
public Tab addTab(@NonNull Fragment fragment, @Nullable String title , @Nullable Drawable drawable, int position){
return addTab(new TabFragment(fragment,title,drawable), position);
}
}
| [
"[email protected]"
] | |
974845abe6bb8e516bce2c656c2e8c8a94b65383 | 66bde34f2af40afc55d3c7231cdf9a1da44a95e2 | /progressDialog/app/src/main/java/com/ultron/sahilpratap/progressdialog/MainActivity.java | bb6d01799a35f809738e13d08e43b8681a4e937e | [] | no_license | sahilpratap/resources_ASD | b81e373055eef2159cb1ba48979afa6bb7e7576c | d89c49128d7caeaa100f048b91cdf73456a480c7 | refs/heads/master | 2020-03-23T19:23:15.909466 | 2018-07-23T07:04:32 | 2018-07-23T07:04:32 | 141,100,107 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,269 | java | package com.ultron.sahilpratap.progressdialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button btn;
ProgressDialog pd;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = findViewById(R.id.button);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
pd = new ProgressDialog(MainActivity.this);
pd.setTitle("Sanju Movie");
pd.setMessage("Downloading....");
pd.setCancelable(false);
// pd.setCanceledOnTouchOutside(false);
pd.setButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
pd.show();
}
});
}
}
| [
"[email protected]"
] | |
365ced70a60d6aa736d046111ef7082a1c1d1bd1 | 94b02ebcd4708a54350b47c00f772a7115e282b8 | /src/main/groovy/com/agilemaster/form/constants/FormCoreStaticMethod.java | 2fb21e60ff198555c5c61530944f1d259b72e9eb | [] | no_license | agilizer/junjie-cassandra | 222ffe8dd12fdd7bf9888d1110d0171b577daf1b | f083306833cf8e7a7ef51946ebae406386fe002d | refs/heads/master | 2021-01-19T21:45:06.116366 | 2016-06-22T09:14:46 | 2016-06-22T09:14:46 | 39,555,960 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 200 | java | package com.agilemaster.form.constants;
import java.util.UUID;
public class FormCoreStaticMethod {
public static String genUUID(){
return UUID.randomUUID().toString().replaceAll("-", "");
}
}
| [
"[email protected]"
] | |
a6505a06f509e8c7c40d440a9d3a3c6e4a394acc | ebf47fd5dd0f42000b7d3e494c3df679cabf7dad | /backend/src/main/java/de/pharos/myPosts/dao/PostDao.java | 90717fa74721fd0030aa1d44e2916c86ecd93422 | [
"MIT"
] | permissive | OmarGSharaf/MyPosts | 28ba77986d46cd9e2eac110e2bb028b6de2bdc75 | 6e8773591b33b7fa11105a4e3a50c2d3b7745f3c | refs/heads/master | 2023-01-10T03:47:41.160272 | 2019-08-26T11:12:42 | 2019-08-26T11:12:42 | 203,486,690 | 0 | 0 | null | 2022-12-11T02:51:24 | 2019-08-21T02:02:49 | Java | UTF-8 | Java | false | false | 561 | java | package de.pharos.myPosts.dao;
import de.pharos.myPosts.model.Post;
import de.pharos.myPosts.model.User;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface PostDao extends JpaRepository<Post, Integer> {
Page<Post> findAllByUser(User user, Pageable pageable);
Page<Post> findByContentIgnoreCaseContainingAndStatus(String content, String status, Pageable pageable);
} | [
"[email protected]"
] | |
3c87c235cc1281079a5d7ac15f367acc67029104 | 7954758bc55ff16441c7892d5cab973c73de0db7 | /android/app/src/main/java/br/com/lifemove/utils/StringUtils.java | e9afe735ae90fe215adc9683cbc074e1d97fbe79 | [] | no_license | phsa/lifemove | f6cbbd32cad0de3c23c4cd76d5c2dcd0b24f22e4 | 952cdec968a1f2a7dad23e19e62d3e93102fad84 | refs/heads/master | 2020-07-07T04:23:20.498337 | 2019-12-03T18:20:28 | 2019-12-03T18:20:28 | 203,248,353 | 1 | 0 | null | 2019-12-03T18:20:30 | 2019-08-19T20:50:23 | Java | UTF-8 | Java | false | false | 632 | java | package br.com.lifemove.utils;
public class StringUtils {
public static final String EMPTY = "";
public static final String DEBUG_TAG = "DebuggingLifeMove";
public static final String SPORTS_EVENT_KEY = "event";
public static final String INVALID_USERNAME_PATTERN = "[^a-zA-Z_.0-9\\-]";
public static boolean checkEmail(String email) {
if (email != null) return email.matches("^[a-z0-9.]+@[a-z0-9]+\\.[a-z]+(\\.[a-z]+)?$");
else return false;
}
public static String valueOf(int resID) {
return LifeMoveApplicationUtils.getLifeMoveAppContext().getString(resID);
}
}
| [
"[email protected]"
] | |
914f779078eaec947c9a942d76e148c14fc3b54e | 80cf2ebe9786c5ce8ca1b969e791e8800b2c4cba | /src/main/java/com/brs/oa/staff/entity/Staff.java | 99c2cdceb4f55ce99f168bb1a57b54a4f82fcc3c | [
"Apache-2.0"
] | permissive | tinyjjlin/glod | 2d2ef8c075914af93a71f726e0b1990ba4517ee8 | 7de4c33ac92c1cd0479809c197cb849ff7eab0a5 | refs/heads/master | 2020-04-09T17:56:20.755661 | 2019-03-11T22:48:28 | 2019-03-11T22:48:28 | 160,496,722 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,321 | java | package com.brs.oa.staff.entity;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* <p>
*
* </p>
*
* @author tiny lin
* @since 2018-12-04
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class Staff implements Serializable {
private static final long serialVersionUID = 1L;
@TableId
private Integer id;
private Integer empNo;
private String name;
private Integer deptNo;
private String email;
private LocalDate birthday;
private LocalDate hireDate;
private String nation;
private String politicsStatus;
private String highestDegree;
private String maritalStatus;
private String mobile;
private String currentAddress;
private String address;
/**
* 中华人民共和国身份证号
*/
private String nationIdcard;
private String position;
private Integer gender;
/**
* 员工头像
*/
private String picture;
/**
* 表创建时间
*/
private LocalDateTime gmtCreate;
/**
* 表修改时间
*/
private LocalDateTime gmtModified;
}
| [
"[email protected]"
] | |
f048f0de5e175bc85f279c1ce640812f1e9901ed | 8a4f548ff452adf851805fb2cf21b1dcc8ec0ee8 | /android/app/src/main/java/com/eproject/MainApplication.java | a95cf0eb6000b3d65a037cb665e504dc363f5fe8 | [] | no_license | samuelbrehm/eProject | 0d24315fedcb2d950ee75ae1466e320f4d115c98 | 3affdec8aa41c3c4537f395e011a8ef873e2f859 | refs/heads/master | 2020-03-27T05:25:20.050312 | 2018-08-24T21:24:30 | 2018-08-24T21:24:30 | 146,017,578 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,044 | java | package com.eproject;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import java.util.Arrays;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage()
);
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
}
}
| [
"[email protected]"
] | |
5e9932337afc32f2e1b79fb92b4879168a740834 | 579db55bd3610a4be6bd1b06905c4c0bad735e3d | /services/src/main/java/pl/funnyqrz/mappers/dto/ReportDto.java | 3b879c18f0a104cb61d51a35dd83a6ab61033311 | [] | no_license | macg20/funnyQuartz | 3e3150c428a60080bcd53eb62bc614571815defc | 3eee12761d559c1aa6ce8879575791f270055210 | refs/heads/master | 2021-07-04T16:54:32.881840 | 2018-03-23T19:54:42 | 2018-03-23T19:54:42 | 96,250,838 | 0 | 0 | null | 2018-03-30T17:53:50 | 2017-07-04T20:24:30 | Java | UTF-8 | Java | false | false | 401 | java | package pl.funnyqrz.mappers.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import lombok.Data;
import java.math.BigInteger;
import java.time.LocalDate;
@Data
public class ReportDto {
private BigInteger id;
private String fileName;
@JsonSerialize(using =LocalDateSerializer.class)
private LocalDate date;
}
| [
"[email protected]"
] | |
4ff04c000b955680c96ba513d33ab8ef85de0628 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/14/14_4e41553096ed8825e7d1ce4b0a0a6bdb6699cddc/SVTableModel/14_4e41553096ed8825e7d1ce4b0a0a6bdb6699cddc_SVTableModel_s.java | 9a125a744cb9dc31e328bbaccc2fe4fece2a39dd | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 4,012 | java |
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" and
* "Apache POI" must not be used to endorse or promote products
* derived from this software without prior written permission. For
* written permission, please contact [email protected].
*
* 5. Products derived from this software may not be called "Apache",
* "Apache POI", nor may "Apache" appear in their name, without
* prior written permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.poi.hssf.contrib.view;
import java.util.Iterator;
import javax.swing.table.*;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFCell;
/**
* Sucky Viewer Table Model - The model for the Sucky Viewer just overrides things.
* @author Andrew C. Oliver
*/
public class SVTableModel extends AbstractTableModel {
private HSSFSheet st = null;
int maxcol = 0;
public SVTableModel(HSSFSheet st, int maxcol) {
this.st = st;
this.maxcol=maxcol;
}
public SVTableModel(HSSFSheet st) {
this.st = st;
Iterator i = st.rowIterator();
while (i.hasNext()) {
HSSFRow row = (HSSFRow)i.next();
if (maxcol < (row.getLastCellNum()+1)) {
this.maxcol = row.getLastCellNum();
}
}
}
public int getColumnCount() {
return this.maxcol+1;
}
public Object getValueAt(int row, int col) {
HSSFRow r = st.getRow(row);
HSSFCell c = null;
if (r != null) {
c = r.getCell((short)col);
}
return c;
}
public int getRowCount() {
return st.getLastRowNum() + 1;
}
public Class getColumnClass(int c) {
return getValueAt(0, c).getClass();
}
}
| [
"[email protected]"
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.