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
d3e6470df3896c9bcf163966346736fc23a9af8a
a9e74f1f418071a8d0aab9b9681648de7cc5ca26
/JSP/GUESTBOOK/src/guestbook/model/MessageListView.java
6924de11134395f8673e6865e24e02e8970580fe
[]
no_license
kytsaaa6/bitcampjn201904
cb687cf58582d87aae457588e18201453058413d
8285bdbd283607e7fdc85c5e388b353e6937447e
refs/heads/master
2020-05-28T07:37:31.082261
2019-10-08T02:50:48
2019-10-08T02:50:48
188,924,136
0
0
null
null
null
null
UTF-8
Java
false
false
1,501
java
package guestbook.model; import java.util.List; public class MessageListView { private int messageTotalCount; private int currentPageNumber; private List<Message> messageList; private int pageTotalCount; private int messageCountPerPage; private int firstRow; private int endRow; public MessageListView(int messageTotalCount, int currentPageNumber, List<Message> messageList, int messageCountPerPage, int firstRow, int endRow) { super(); this.messageTotalCount = messageTotalCount; this.currentPageNumber = currentPageNumber; this.messageList = messageList; this.messageCountPerPage = messageCountPerPage; this.firstRow = firstRow; this.endRow = endRow; calcuratePageTotalCount(); } private void calcuratePageTotalCount() { if(messageTotalCount == 0) { pageTotalCount = 0; } else { pageTotalCount = messageTotalCount / messageCountPerPage; if(messageTotalCount % messageCountPerPage > 0) { pageTotalCount++; } } } public int getMessageTotalCount() { return messageTotalCount; } public int getCurrentPageNumber() { return currentPageNumber; } public List<Message> getMessageList() { return messageList; } public int getPageTotalCount() { return pageTotalCount; } public int getMessageCountPerPage() { return messageCountPerPage; } public int getFirstRow() { return firstRow; } public int getEndRow() { return endRow; } public boolean isEmpty() { return messageTotalCount == 0; } }
92617984991554a188f6adde679e07d780e54736
a5bf413a514336672f949ad6f5c1a3b00191d4ec
/src/com/ezetap/android/utils/TextMaskingTransformationMethod.java
cf7f9187362ec0c7289bae6798351069c1e886c5
[]
no_license
adonisk/dpli_android_collection
f398a7acb9e4fd11e8323a95a7d497d840b9ac70
797b9fc9e787a7554731ebdff1b78c3fad5ca693
refs/heads/master
2020-04-16T17:06:13.128439
2015-08-12T11:52:09
2015-08-12T11:52:09
40,597,905
0
0
null
null
null
null
UTF-8
Java
false
false
1,331
java
package com.ezetap.android.utils; import android.graphics.Rect; import android.text.method.TransformationMethod; import android.view.View; import android.widget.TextView; public class TextMaskingTransformationMethod implements TransformationMethod { public MASK_TYPE maskType; public TextMaskingTransformationMethod(MASK_TYPE maskType) { this.maskType = maskType; } public static enum MASK_TYPE{ MOBILE_NUM, }; @Override public CharSequence getTransformation(CharSequence source, View view) { return new MobileNumberCharSequence(source); } private class MobileNumberCharSequence implements CharSequence { private CharSequence actualString; public MobileNumberCharSequence(CharSequence source) { actualString = source; } public char charAt(int index) { if(maskType == MASK_TYPE.MOBILE_NUM){ if (length() > 6 && index > 5 && length() - index < 5) return actualString.charAt(index); else return '#'; } else { return actualString.charAt(index); } } public int length() { return actualString.length(); } public CharSequence subSequence(int start, int end) { return actualString.subSequence(start, end); } } @Override public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) { } }
7a5e2885b8bd11caff93f750be7f570e03aa6c78
ed3216a07ee8babe2a868cfb68083ea1e4008e54
/ProyectoHotel/src/java/Entidades/TipoHorario.java
fc581cb8b3f9a83152f733b497b9d89215a315e9
[]
no_license
mquibar/rrhhhospital
93a82c73fa9186d80534a6771df5ff36e366d34d
03553f8ef8adf88f510c870b6b903bf0b5749b3a
refs/heads/master
2016-09-03T07:23:49.454531
2010-08-09T03:01:31
2010-08-09T03:01:31
33,873,175
0
0
null
null
null
null
UTF-8
Java
false
false
4,553
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Entidades; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.OneToMany; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; /** * * @author Manuel */ @Entity @Table(name = "TipoHorario", catalog = "hospital", schema = "public") @NamedQueries({@NamedQuery(name = "TipoHorario.findAll", query = "SELECT t FROM TipoHorario t"), @NamedQuery(name = "TipoHorario.findById", query = "SELECT t FROM TipoHorario t WHERE t.id = :id"), @NamedQuery(name = "TipoHorario.findByNombre", query = "SELECT t FROM TipoHorario t WHERE t.nombre = :nombre"), @NamedQuery(name = "TipoHorario.findByHoraIngreso", query = "SELECT t FROM TipoHorario t WHERE t.horaIngreso = :horaIngreso"), @NamedQuery(name = "TipoHorario.findByHoraSalida", query = "SELECT t FROM TipoHorario t WHERE t.horaSalida = :horaSalida"), @NamedQuery(name = "TipoHorario.findByDescripcion", query = "SELECT t FROM TipoHorario t WHERE t.descripcion = :descripcion"), @NamedQuery(name = "TipoHorario.findByEliminado", query = "SELECT t FROM TipoHorario t WHERE t.eliminado = :eliminado")}) public class TipoHorario implements Serializable { private static final long serialVersionUID = 1L; @Id @Basic(optional = false) @Column(name = "id") private Integer id; @Basic(optional = false) @Column(name = "Nombre") private String nombre; @Basic(optional = false) @Column(name = "HoraIngreso") @Temporal(TemporalType.TIME) private Date horaIngreso; @Basic(optional = false) @Column(name = "HoraSalida") @Temporal(TemporalType.TIME) private Date horaSalida; @Column(name = "Descripcion") private String descripcion; @Column(name = "Eliminado") private Boolean eliminado; @OneToMany(cascade = CascadeType.ALL, mappedBy = "idTipoHorario", fetch = FetchType.LAZY) private List<AsignacionHorario> asignacionHorarioList; public TipoHorario() { } public TipoHorario(Integer id) { this.id = id; } public TipoHorario(Integer id, String nombre, Date horaIngreso, Date horaSalida) { this.id = id; this.nombre = nombre; this.horaIngreso = horaIngreso; this.horaSalida = horaSalida; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getNombre() { return nombre; } public void setNombre(String nombre) { this.nombre = nombre; } public Date getHoraIngreso() { return horaIngreso; } public void setHoraIngreso(Date horaIngreso) { this.horaIngreso = horaIngreso; } public Date getHoraSalida() { return horaSalida; } public void setHoraSalida(Date horaSalida) { this.horaSalida = horaSalida; } public String getDescripcion() { return descripcion; } public void setDescripcion(String descripcion) { this.descripcion = descripcion; } public Boolean getEliminado() { return eliminado; } public void setEliminado(Boolean eliminado) { this.eliminado = eliminado; } public List<AsignacionHorario> getAsignacionHorarioList() { return asignacionHorarioList; } public void setAsignacionHorarioList(List<AsignacionHorario> asignacionHorarioList) { this.asignacionHorarioList = asignacionHorarioList; } @Override public int hashCode() { int hash = 0; hash += (id != null ? id.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof TipoHorario)) { return false; } TipoHorario other = (TipoHorario) object; if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) { return false; } return true; } @Override public String toString() { return "Entidades.TipoHorario[id=" + id + "]"; } }
[ "negromanuel.quibar@29706a64-f129-2db0-2637-2e5b7570b2ea" ]
negromanuel.quibar@29706a64-f129-2db0-2637-2e5b7570b2ea
d7aa0fc0ee6d062f5321e474e069daed70844fc7
9e9c99ea453345c48e8817a7dd687de2b3f1001d
/source/LeavePhoneAlone_bak/src/com/ranger/lpa/utils/Md5Tools.java
9ffc9e106ad0cb41dd3ed3a77f59f2e7260a6a33
[]
no_license
haoerloveyou/anconsd
62218040b8cd2484ebb0da339d1e7f6e50552136
229beafc90746a298ba2817f34d5af80eff785c0
refs/heads/master
2021-12-07T12:07:50.299023
2015-11-25T05:26:24
2015-11-25T05:26:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,019
java
package com.ranger.lpa.utils; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public final class Md5Tools { private Md5Tools() { } public static String toMd5(byte abyte0[], boolean flag) { String res = ""; try{ MessageDigest messagedigest; messagedigest = MessageDigest.getInstance("MD5"); messagedigest.reset(); messagedigest.update(abyte0); res = toHexString(messagedigest.digest(), "", flag); }catch(NoSuchAlgorithmException e){ }finally{ } return res; } public static String toHexString(byte abyte0[], String s, boolean flag) { StringBuilder stringbuilder = new StringBuilder(); byte abyte1[] = abyte0; int i = abyte1.length; for (int j = 0; j < i; j++) { byte byte0 = abyte1[j]; String s1 = Integer.toHexString(0xff & byte0); if (flag) s1 = s1.toUpperCase(); if (s1.length() == 1) stringbuilder.append("0"); stringbuilder.append(s1).append(s); } return stringbuilder.toString(); } }
[ "[email protected]@191c2ca7-3885-2a62-3bbc-e3df3e48f935" ]
[email protected]@191c2ca7-3885-2a62-3bbc-e3df3e48f935
18083b74922bd3556f84d9a4c3fe23116189d922
ad87cca73c85e7951e956e093c8a1203f6b1d9ab
/Android/EmergenciAPP/app/src/main/java/com/ull/emergenciapp/Ajustes.java
735d12c35b4eeab0e43e4dd576f0ee04247ef2a4
[]
no_license
PanchoMen/EmergenciAPP
aab99b69975e7139a8cc7ace0ac04d4fe80083b3
fc7895596269e90c6d2bf488e8d6612c29ec6ad0
refs/heads/master
2022-12-22T19:46:02.510423
2020-09-20T16:48:51
2020-09-20T16:48:51
292,607,224
0
0
null
null
null
null
UTF-8
Java
false
false
8,343
java
package com.ull.emergenciapp; import androidx.activity.OnBackPressedCallback; import androidx.appcompat.app.AppCompatActivity; import androidx.core.content.ContextCompat; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.ProgressBar; import android.widget.Toast; import com.google.android.material.textfield.TextInputEditText; import com.google.android.material.textfield.TextInputLayout; import com.ull.emergenciapp.API.APIEngine; import com.ull.emergenciapp.API.UserService; import com.ull.emergenciapp.Entities.Response; import com.ull.emergenciapp.Entities.User; import okhttp3.MediaType; import okhttp3.RequestBody; import retrofit2.Call; import retrofit2.Callback; public class Ajustes extends AppCompatActivity { private TextInputLayout radioCont, frecuenciaCont; private TextInputEditText radio, frecuencia; private Button btnGuardar; private ProgressBar loading; private boolean sanitario; private String oldRadius; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_ajustes); radioCont = (TextInputLayout) findViewById(R.id.txtRadio_Aj); frecuenciaCont = (TextInputLayout) findViewById(R.id.txtFrecuencia_Aj); radio = (TextInputEditText) radioCont.getEditText(); frecuencia = (TextInputEditText) frecuenciaCont.getEditText(); btnGuardar = (Button) findViewById(R.id.btn_guardar_Aj); loading = (ProgressBar) findViewById(R.id.progressBar_Aj); SharedPreferences loginPreferences = getSharedPreferences(EmergenciAPP.LOGIN_PREFERENCES, Context.MODE_PRIVATE); sanitario = (loginPreferences.getInt("userType", -1) != EmergenciAPP.USUARIO_GENERAL); showData(); if(sanitario) { radio.setOnFocusChangeListener((v, hasFocus) -> { if (hasFocus) { radioCont.setHelperText("Distancia en metros en la cual se desean recibir notificaciones"); } else { radioCont.setHelperText(null); if (radioCont.getEditText().getText().toString().length() > 6) { radioCont.setError("Máximo 6 dígitos"); } else { radioCont.setError(null); } } }); } frecuencia.setOnFocusChangeListener((v, hasFocus) -> { if (hasFocus) { frecuenciaCont.setHelperText("Frecuencia en minutos con la que se actualiza la ubicación"); } else { frecuenciaCont.setHelperText(null); } }); getOnBackPressedDispatcher().addCallback(this, new OnBackPressedCallback(true /* enabled by default */) { @Override public void handleOnBackPressed() { goToMenu(null); } }); } public void goToMenu(View view){ Intent intent = new Intent(Ajustes.this, Menu.class); startActivity(intent); overridePendingTransition(R.anim.enter_from_left, R.anim.exit_to_right); } private void showData(){ frecuencia.setText(String.valueOf(EmergenciAPP.UPDATE_INTERVAL)); if(sanitario){ getRadius(); }else{ showElements(); } } public void saveData(View view){ if(checkData()) { saveFrecuency(); if (sanitario) { saveRadius(); } }else{ goToMenu(null); } } private void saveRadius(){ UserService userService = APIEngine.getAPIEngine().create(UserService.class); Call<Response<String>> call = userService.setRadius( RequestBody.create(String.valueOf(getSharedPreferences(EmergenciAPP.LOGIN_PREFERENCES, Context.MODE_PRIVATE).getInt("id", -1)), MediaType.parse("text/plain")), RequestBody.create(radio.getText().toString(), MediaType.parse("text/plain")) ); call.enqueue(new Callback<Response<String>>() { @Override public void onResponse(Call<Response<String>> call, retrofit2.Response<Response<String>> response) { if (response.isSuccessful()) { Response<String> resp = response.body(); if (resp.getResult()) { Toast.makeText(Ajustes.this, "Usuario actualizado correctamente", Toast.LENGTH_LONG).show(); goToMenu(null); }else{ Toast.makeText(Ajustes.this, resp.getMessage(), Toast.LENGTH_LONG).show(); } }else{ Toast.makeText(Ajustes.this, "Error en el proceso de actualización, inténtelo más tarde", Toast.LENGTH_LONG).show(); } } @Override public void onFailure(Call<Response<String>> call, Throwable t) { } }); } private void getRadius(){ UserService userService = APIEngine.getAPIEngine().create(UserService.class); Call<Response<String>> call = userService.getRadius( String.valueOf(getSharedPreferences(EmergenciAPP.LOGIN_PREFERENCES, Context.MODE_PRIVATE).getInt("id", -1)) ); call.enqueue(new Callback<Response<String>>() { @Override public void onResponse(Call<Response<String>> call, retrofit2.Response<Response<String>> response) { if (response.isSuccessful()) { Response<String> resp = response.body(); if (resp.getResult()) { oldRadius = resp.getData(); radio.setText(resp.getData()); showElements(); }else{ Toast.makeText(Ajustes.this, resp.getMessage(), Toast.LENGTH_LONG).show(); } }else{ Toast.makeText(Ajustes.this, "Error al obtener el radio, inténtelo más tarde", Toast.LENGTH_LONG).show(); } } @Override public void onFailure(Call<Response<String>> call, Throwable t) { Toast.makeText(Ajustes.this, "Error al obtener el radio, inténtelo más tarde", Toast.LENGTH_LONG).show(); } }); } private void saveFrecuency(){ EmergenciAPP.UPDATE_INTERVAL = Long.valueOf(frecuencia.getText().toString()); if(LocationService.isRunning) { Intent stopLocationService = new Intent(this, LocationService.class); stopLocationService.setAction(LocationService.STOP_ACTION); stopService(stopLocationService); Intent startLocationService = new Intent(this, LocationService.class); startLocationService.setAction(LocationService.START_ACTION); ContextCompat.startForegroundService(this, startLocationService); /*if (isInBackground) { ContextCompat.startForegroundService(this, startLocationService); } else { startService(startLocationService); }*/ } if(!sanitario){ Toast.makeText(Ajustes.this, "Usuario actualizado correctamente", Toast.LENGTH_LONG).show(); goToMenu(null); } } private void showElements(){ frecuenciaCont.setVisibility(View.VISIBLE); if(sanitario){ radioCont.setVisibility(View.VISIBLE); } btnGuardar.setVisibility(View.VISIBLE); loading.setVisibility(View.GONE); } private boolean checkData(){ if(sanitario) { if (!radio.getText().toString().equals(oldRadius)) { return true; } } if (!frecuencia.getText().toString().equals(EmergenciAPP.UPDATE_INTERVAL)) { return true; } Log.d("mylog", "Los ajustes no necesitan ser actualizados"); return false; } }
0ae71b75e0ca38fb00a698e9c1021bc23883a19c
ea73aeb3f0df2f0e7e0165af7af0ce35b9f77267
/src/main/java/com/virtusa/dto/TourPackageDto.java
d0008ec449bd36e1bcdd3d12c3ddc31a28565f13
[]
no_license
areebahmadd/Spring-MVC-TravelAndTourism-
531a04dab105446e899aa22bf3b4c842191a973a
eb7f47d654a342c686c3a073998e2a46c692a9ac
refs/heads/master
2023-03-27T01:07:03.990078
2021-03-28T09:34:42
2021-03-28T09:34:42
352,289,428
0
0
null
null
null
null
UTF-8
Java
false
false
1,849
java
package com.virtusa.dto; import com.virtusa.model.Customer; import com.virtusa.model.TourGuide; import com.virtusa.model.TourPackage; public class TourPackageDto { private int packageId; private String city; private String place; private String tourname; private double tourprice; private TourGuide tourGuide; private Customer customer; public TourPackage getTourPackage() { TourPackage packageDto = new TourPackage(); packageDto.setPackageId(packageId); packageDto.setCity(city); packageDto.setPlace(place); packageDto.setTourname(tourname); packageDto.setTourprice(tourprice); packageDto.setTourGuide(tourGuide); packageDto.setCustomer(customer); return packageDto; } public int getPackageId() { return packageId; } public void setPackageId(int packageId) { this.packageId = packageId; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getPlace() { return place; } public void setPlace(String place) { this.place = place; } public String getTourname() { return tourname; } public void setTourname(String tourname) { this.tourname = tourname; } public double getTourprice() { return tourprice; } public void setTourprice(double tourprice) { this.tourprice = tourprice; } public TourGuide getTourGuide() { return tourGuide; } public void setTourGuide(TourGuide tourGuide) { this.tourGuide = tourGuide; } public Customer getCustomer() { return customer; } public void setCustomer(Customer customer) { this.customer = customer; } @Override public String toString() { return "TourPackageDto [packageId=" + packageId + ", city=" + city + ", place=" + place + ", tourname=" + tourname + ", tourprice=" + tourprice + ", tourGuide=" + tourGuide + ", customer=" + customer + "]"; } }
962eb4e63d3d4cc89003635623360aef0572f0e2
258d1f616d3bc313e830a7f6e0819ba55dbe60af
/module_shared/src/main/java/com/daqula/carmore/model/customer/CustomerERPProfile.java
a92097831cd4fc113555f17efbf4fc122891d707
[]
no_license
licomao/erp_gradle
9d235e2b8993f4f0f1abfef30fdbad1653351431
9dc415767a4b5c221c8a9c8e397b3baf96fbc125
refs/heads/master
2021-01-22T03:54:38.680203
2017-02-09T17:20:30
2017-02-09T17:20:30
81,475,224
1
2
null
null
null
null
UTF-8
Java
false
false
810
java
package com.daqula.carmore.model.customer; import com.daqula.carmore.model.shop.Organization; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; import javax.persistence.ManyToOne; /** ERP顾客信息,组织与组织之间是隔离的 */ @Entity @DiscriminatorValue(value=CustomerProfile.PROFILE_TYPE_ERP) public class CustomerERPProfile extends CustomerProfile { /** 真实姓名 */ public String realName; /** 性别 男:0;女:1*/ public int gender; /** 会员等级 */ public Integer level = 0; /** 积分结余 */ public Integer bonus = 0; /** 所属组织 */ @ManyToOne @JsonSerialize(using = IDSerializer.class) public Organization organization; }
fe748383a57e330aff618dcf97eea6a552cc535b
3bf68ca1c67c9c09cd62e3d651775c5a248530c5
/百知网/1.代码区/1.项目/baizhi/src/com/baizhi/talk/dao/TalkDao.java
63c0ff2df06eb5b7c2055e6877a85bd0854c7733
[]
no_license
hemingwang0902/hmw-online-shopping
5c67f06494d9acc8bf8725179267de9094bc0de3
52daf95374550c211a4f7a6161724f25f564a4c7
refs/heads/master
2016-09-10T00:46:07.377730
2013-11-23T12:10:39
2013-11-23T12:10:39
32,144,617
0
0
null
null
null
null
UTF-8
Java
false
false
4,450
java
package com.baizhi.talk.dao; import java.util.List; import java.util.Map; import org.dom4j.Element; import com.baizhi.commons.DaoSupport; import com.baizhi.commons.ParametersSupport; /** * * 类名:TalkDao.java * 描述:话题信息表数据操作类,负责增删改查 * 创建者: 江红 * 创建日期:2011-06-20 23:49:03 * 版本:V0.9 * 修改者: * 修改日期: */ public class TalkDao extends DaoSupport{ /** * 新增或修改话题信息表信息 * * @param element 实体对象 * @return 返回主键ID,失败返回"" */ public String saveOrUpdateTalk(Element element) { return this.saveOrUpdate(element, "TALK_ID"); } /** * 删除话题信息表信息 * * @param TALK_IDS 话题信息表ID值集合以","分隔 * @return 返回boolean值,成功返回true,失败返回false */ public boolean deleteTalk(String TALK_IDS) { return this.delete("T_TALK","TALK_ID", TALK_IDS); } /** * 根据话题信息表ID获取话题信息表实体 * @param TALK_ID 话题信息表ID * @return 返回话题信息表实体,如果无查询记录则返回null */ public Element getTalkEleById(String TALK_ID){ return this.getElementById("T_TALK", "TALK_ID", TALK_ID); } /** * 获取话题信息表数量 * * @param params 参数 * @return 返回查询记录数量,失败返回-1 */ public int getTalkCount(Map<String, Object> params) { //组织查询语句 StringBuffer sql = new StringBuffer(); sql.append("SELECT count(*) FROM T_TALK a WHERE 1=1 "); //设置查询条件,及初始化查询条件值 ParametersSupport ps=new ParametersSupport(params); return this.getCount(sql.toString(), ps.getValues()); } /** * 根据话题信息表ID获取话题信息表信息 * @param TALK_ID 话题信息表ID * @return 返回话题信息表信息,如果无查询记录则返回null */ public Map<String, Object> getTalkMapById(String TALK_ID){ //组织查询语句 StringBuffer sql = new StringBuffer(); sql.append("SELECT new Map(") .append("a.TALK_ID as TALK_ID,")//话题ID .append("a.CONTENT as CONTENT,")//内容 .append("a.USER_ID as USER_ID,")//用户ID .append("a.CREATE_TIME as CREATE_TIME,")//创建时间 .append("a.MODIFY_TIME as MODIFY_TIME) ")//修改时间 .append("FROM T_TALK a WHERE a.TALK_ID=? "); return this.getById(sql.toString(), new Object[]{TALK_ID}); } /** * 获取话题信息表列表信息 * @param params 参数 * @param nowPage 当前页 * @param onePageCount 每页显示多少条 * @return 返回话题信息表列表信息,如果无查询记录则返回null */ public Map<String,Object> getTalkList(Map<String, Object> params,int nowPage,int onePageCount){ //组织查询语句 StringBuffer sql = new StringBuffer(); sql.append("SELECT new Map(") .append("a.TALK_ID as TALK_ID,")//话题ID .append("a.CONTENT as CONTENT,")//内容 .append("a.USER_ID as USER_ID,")//用户ID .append("b.NAME as NAME,")//用户名 .append("a.CREATE_TIME as CREATE_TIME,")//创建时间 .append("a.MODIFY_TIME as MODIFY_TIME) ")//修改时间 .append("FROM T_TALK a,T_USER_BASIC b WHERE a.USER_ID=b.USER_ID "); //设置查询条件,及初始化查询条件值 ParametersSupport ps=new ParametersSupport(params); sql.append(ps.getConditions()); return this.getByList(sql.toString(), ps.getValues(), "T_TALK", nowPage, onePageCount); } /** * 获取话题信息表信息 * * @param params 参数 * @return 成功返回话题信息表信息,如果无查询记录则返回null */ public List<Map<String,Object>> getTalkList(Map<String, Object> params){ //组织查询语句 StringBuffer sql = new StringBuffer(); sql.append("SELECT new Map(") .append("a.TALK_ID as TALK_ID,")//话题ID .append("a.CONTENT as CONTENT,")//内容 .append("a.USER_ID as USER_ID,")//用户ID .append("a.CREATE_TIME as CREATE_TIME,")//创建时间 .append("a.MODIFY_TIME as MODIFY_TIME) ")//修改时间 .append("FROM T_TALK a where 1=1 "); //设置查询条件,及初始化查询条件值 ParametersSupport ps=new ParametersSupport(params); sql.append(ps.getConditions()); return this.getByList(sql.toString(), ps.getValues()); } }
[ "[email protected]@dce72f8f-b3c2-5724-611a-96d15c06b5c8" ]
[email protected]@dce72f8f-b3c2-5724-611a-96d15c06b5c8
7b4ef67a1b5cfb0441959c6eddf57be5cf29f213
55d22fdfec53708213ed7a13f2557c4e1b4803c9
/pojo/src/main/java/net/sf/mmm/util/pojo/descriptor/api/accessor/PojoPropertyAccessorIndexedNonArg.java
86c59bc23f8dfe7298016c21af59db4980047e0b
[ "Apache-2.0" ]
permissive
m-m-m/util
981f66f58a99b49c1ea458d7d12db3156bfc33ed
0b6d40b1976f9fa2f32b1a7ff03821eef939b301
refs/heads/master
2021-06-15T16:04:47.825146
2021-03-01T15:38:37
2021-03-01T15:38:37
4,889,980
2
2
Apache-2.0
2020-10-13T10:21:28
2012-07-04T19:08:14
Java
UTF-8
Java
false
false
1,505
java
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0 * http://www.apache.org/licenses/LICENSE-2.0 */ package net.sf.mmm.util.pojo.descriptor.api.accessor; import net.sf.mmm.util.reflect.api.ReflectionException; /** * This is the interface for a {@link PojoPropertyAccessor property-accessor} that allows to {@link #invoke(Object, int) * perform something} (e.g. get or remove) for a given {@code index} of an indexed property. * * @author Joerg Hohwiller (hohwille at users.sourceforge.net) * @since 1.1.0 */ public interface PojoPropertyAccessorIndexedNonArg extends PojoPropertyAccessor { @Override PojoPropertyAccessorIndexedNonArgMode getMode(); /** * This method invokes the according property-method of {@code pojoInstance} with the given arguments. <br> * * @param pojoInstance is the instance of the POJO where to access the property. Has to be an instance of the * {@link net.sf.mmm.util.pojo.descriptor.api.PojoDescriptor#getPojoClass() type} from where this accessor was * created for. * @param index is the position in the indexed property (e.g. where to get or remove an item). * @return the result of the invocation. Will be {@code null} if void (e.g. remove method). * @throws ReflectionException if the underlying {@link PojoPropertyAccessor#getAccessibleObject() accessor} caused an * error during reflection. */ Object invoke(Object pojoInstance, int index) throws ReflectionException; }
e894c4361bcd715710c37c03e772725b7bfad72e
0b63590544f05e22a96da4bc09ac137e8aa741de
/android/programming-mobile-apps-for-android-handheld-system/activitylab/app-test/src/test/java/course/labs/activitylab/tests/StartActivityOneTest.java
f6eef46eb20138b3aee7343095fffe6cdf6275eb
[]
no_license
ismaelcabanas/android
70d811d01bc42b2c342dcf320cfc6ef945263f58
4b07fafc69c1f244f689549136e9f34c54c12ffa
refs/heads/master
2020-04-16T02:49:50.594201
2015-10-30T14:22:51
2015-10-30T14:22:51
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,856
java
package course.labs.activitylab.tests; import android.content.res.Configuration; import android.os.Bundle; import android.widget.TextView; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.Robolectric; import org.robolectric.annotation.Config; import org.robolectric.util.ActivityController; import course.labs.activitylab.ActivityOne; import course.labs.activitylab.R; import course.labs.activitylab.RobolectricGradleTestRunner; import static org.hamcrest.core.Is.is; import static org.hamcrest.core.IsEqual.equalTo; import static org.junit.Assert.assertThat; /** * Test utilizando Robolectric * * Created by icabanas on 10/02/15. */ @RunWith(RobolectricGradleTestRunner.class) @Config(emulateSdk = 18, reportSdk = 18) public class StartActivityOneTest { private ActivityOne mActivityOne; private ActivityController<ActivityOne> activityController; @Before public void setUp(){ activityController = Robolectric.buildActivity(ActivityOne.class); } @Test public void should_update_lifecycle_counters_when_activity_one_is_started(){ // GIVEN String expectedTxtCreate = "onCreate() calls: 1"; String expectedTxtStart = "onStart() calls: 1"; String expectedTxtResume = "onResume() calls: 1"; String expectedTxtRestart = "onRestart() calls: 0"; // WHEN mActivityOne = activityController.create().start().resume().visible().get(); // THEN TextView mTvCreate = (TextView) mActivityOne.findViewById(R.id.create); String actualTxtCreate = mTvCreate.getText().toString(); assertThat("El número de invocaciones sobre el método onCreate de ActivityOne debería ser " + expectedTxtCreate, actualTxtCreate, is(equalTo(expectedTxtCreate))); TextView mTvStart = (TextView) mActivityOne.findViewById(R.id.start); String actualTxtStart = mTvStart.getText().toString(); assertThat("El número de invocaciones sobre el método onStart de ActivityOne debería ser " + expectedTxtStart, actualTxtStart, is(equalTo(expectedTxtStart))); TextView mTvResume = (TextView) mActivityOne.findViewById(R.id.resume); String actualTxtResume = mTvResume.getText().toString(); assertThat("El número de invocaciones sobre el método onResume de ActivityOne debería ser " + expectedTxtResume, actualTxtResume, is(equalTo(expectedTxtResume))); TextView mTvRestart = (TextView) mActivityOne.findViewById(R.id.restart); String actualTxtRestart = mTvRestart.getText().toString(); assertThat("El número de invocaciones sobre el método onCreate de ActivityOne debería ser " + expectedTxtRestart, actualTxtRestart, is(equalTo(expectedTxtRestart))); } }
0f3d8845389e725107d33f105fa9ffe060f8fdb8
cca31028de0cd45d47cc68c5f05e30fac0149507
/modules/japid-0.9.2/tests/cn/bran/TemplateTranslatorTest.java
86d275edf62a406c6d73f46974ba142631cd5ef3
[ "Apache-2.0" ]
permissive
woofgl/knowledge
f617562358d0ac7c917ba33e6a60eb66c3cec293
3f4b9b7a1dd6dc6cd13b03271edeff344cf29c74
refs/heads/master
2021-01-17T05:20:29.865955
2011-12-19T07:57:55
2011-12-19T07:57:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
578
java
package cn.bran; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.io.File; import java.io.IOException; import org.junit.Test; import cn.bran.japid.classmeta.AbstractTemplateClassMetaData; import cn.bran.japid.compiler.JapidTemplateTransformer; public class TemplateTranslatorTest { @Test public void testFilePathConversion() throws IOException { String ch = "child"; File f = new File(ch); File fc = new File("."); String rela = JapidTemplateTransformer.getRelativePath(f, fc); assertEquals(ch, rela); } }
1c17c3684db44fe25e6568d14acc5747e71536da
725158813f6b7f6353732228d948dc3bf265fc61
/JapaneseVehicleFactory.java
c32c202119022a6b3b206e29352933e1e9497f45
[]
no_license
andrii-g/VehicleFactory
76481b1c36116411187a780abf135cb93bd0c14c
fe2f6792eb29272f081f1a5ffec04e6fd0b3f613
refs/heads/master
2021-01-09T06:34:04.830133
2017-02-05T18:01:06
2017-02-05T18:01:06
81,010,868
0
0
null
null
null
null
UTF-8
Java
false
false
314
java
package factory; /** * Created by User on 05.02.2017. */ public class JapaneseVehicleFactory implements VehicleFactory { @Override public Car createCar() { return new CarMitsubishi(); } @Override public Motorcycle createMotorcycle() { return new MotorcycleYamaha(); } }
b5dede673470269a6baa0567e966fcefd0b600a0
a5c2cdf6bd2285a14c90c440cb0683e1ce500d17
/src/main/java/com/module6/jpaapplication/DemoApplication.java
92921de685415e195cc1e3d0c8dd6ce68614338e
[]
no_license
SParakhin/mcs-module6
ad39cb9e25705126d92113cfd1e98b66442f4f75
f89e42fac4396f42f97d3c7b91bb9ea569f50002
refs/heads/module6
2020-05-17T09:23:10.030295
2019-06-07T14:45:11
2019-06-07T14:45:11
183,632,671
0
0
null
2019-06-07T14:45:12
2019-04-26T13:23:05
Java
UTF-8
Java
false
false
3,061
java
/** * Сергей Парахин * Практика: Модуль 6 * [email protected] */ package com.module6.jpaapplication; import com.module6.jpaapplication.dao.Bank2DAO; import com.module6.jpaapplication.entity.AccountType; import com.module6.jpaapplication.entity.Bank; import com.module6.jpaapplication.entity.ClientBank; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import java.util.ArrayList; import java.util.List; @SpringBootApplication public class DemoApplication implements CommandLineRunner { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } @Autowired Bank2DAO bank2DAO; @Override public void run(String... args) throws Exception { /** *Entity creation */ Bank bank = new Bank("Village"); AccountType debit = bank.addAccountType("debit"); AccountType credit = bank.addAccountType("credit"); debit.setBank(bank); credit.setBank(bank); ClientBank clientBank = debit.addClient("Ivan"); ClientBank clientBank1 = credit.addClient("Sergey"); ClientBank clientBank2 = debit.addClient("Petya"); ClientBank clientBank3 = credit.addClient("Dima"); clientBank.setAccountType(debit); clientBank1.setAccountType(credit); clientBank2.setAccountType(debit); clientBank3.setAccountType(credit); bank2DAO.saveBank(bank); /** * Get the entity id for update or delete demonstration */ List<Integer> listId = new ArrayList<>(); listId.addAll(bank2DAO.getIdClient()); int idForDelete = listId.get(0); int idForUpdate = listId.get(listId.size() - 1); /** *Show entity updates */ ClientBank updateClient = bank2DAO.getClientBankById(idForUpdate); System.out.println("-----------Entity before change in db-----------" + "\n"); System.out.println(updateClient + "\n"); updateClient.setName("Name after update"); bank2DAO.updateClientBank(updateClient); ClientBank clientBankAfterUpdate = bank2DAO.getClientBankById(idForUpdate); System.out.println("-----------Entity after change in db-----------" + "\n"); System.out.println(clientBankAfterUpdate + "\n"); /** * Show delete entity */ ClientBank deleteClient = bank2DAO.getClientBankById(idForDelete); System.out.println("-----------Entity before delete from db-----------" + "\n"); System.out.println(deleteClient + "\n"); bank2DAO.deleteClientBank(idForDelete); ClientBank afterDeleteClient = bank2DAO.getClientBankById(idForDelete); System.out.println("-----------Entity after delete from db-----------" + "\n"); System.out.println(afterDeleteClient + "\n"); } }
28d5ec178fcebd6f4b7c85920d86de14f6a2d54c
fd0b60a9bf20a1c7a4c9ac4db881079148aee247
/src/edu/stanford/bmir/protege/web/client/ui/hierarchy/HierarchyNodePath.java
4d4e5a553b3bf7547e325cceac8c6d70a798fb1a
[]
no_license
irirnelnistor/webprotege
7c5015c114d2655e143b455113c83189513835a2
de0b3d2f3bc8c0e8da34ca1a5f7d295e807fd71f
refs/heads/master
2020-04-01T16:37:33.692931
2013-10-17T20:42:54
2013-10-17T20:42:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
604
java
package edu.stanford.bmir.protege.web.client.ui.hierarchy; import java.io.Serializable; import java.util.ArrayList; import java.util.List; /** * Author: Matthew Horridge<br> * Stanford University<br> * Bio-Medical Informatics Research Group<br> * Date: 12/06/2012 */ public class HierarchyNodePath implements Serializable { private List<HierarchyNode> path; private HierarchyNodePath() { } public HierarchyNodePath(List<HierarchyNode> path) { this.path = new ArrayList<HierarchyNode>(path); } public List<HierarchyNode> getPath() { return path; } }
11d6cb6a75453212dfb87093b428b6514447c0d2
4cdb2532a7a62e942f6775bba75ff4a930ba96b8
/src/main/java/net/rationalminds/core/apache/http/protocol/ResponseContent.java
deab05ec3338f7fb6d69310a9d2493466a878621
[]
no_license
vbhavsingh/JSnooper
ff20ddb10ede59abadd07ec731025b7e36144b2d
ccdff8f5fa50e83ee97f07993ab1d44c9490466d
refs/heads/master
2021-06-14T03:48:10.529604
2019-09-27T19:15:32
2019-09-27T19:15:32
201,826,294
0
0
null
null
null
null
UTF-8
Java
false
false
4,274
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. * ==================================================================== * * 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 net.rationalminds.core.apache.http.protocol; import java.io.IOException; import net.rationalminds.core.apache.http.HttpEntity; import net.rationalminds.core.apache.http.HttpException; import net.rationalminds.core.apache.http.HttpResponse; import net.rationalminds.core.apache.http.HttpResponseInterceptor; import net.rationalminds.core.apache.http.HttpStatus; import net.rationalminds.core.apache.http.HttpVersion; import net.rationalminds.core.apache.http.ProtocolException; import net.rationalminds.core.apache.http.ProtocolVersion; /** * ResponseContent is the most important interceptor for outgoing responses. * It is responsible for delimiting content length by adding * <code>Content-Length</code> or <code>Transfer-Content</code> headers based * on the properties of the enclosed entity and the protocol version. * This interceptor is required for correct functioning of server side protocol * processors. * * @since 4.0 */ public class ResponseContent implements HttpResponseInterceptor { public ResponseContent() { super(); } public void process(final HttpResponse response, final HttpContext context) throws HttpException, IOException { if (response == null) { throw new IllegalArgumentException("HTTP request may not be null"); } if (response.containsHeader(HTTP.TRANSFER_ENCODING)) { throw new ProtocolException("Transfer-encoding header already present"); } if (response.containsHeader(HTTP.CONTENT_LEN)) { throw new ProtocolException("Content-Length header already present"); } ProtocolVersion ver = response.getStatusLine().getProtocolVersion(); HttpEntity entity = response.getEntity(); if (entity != null) { long len = entity.getContentLength(); if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) { response.addHeader(HTTP.TRANSFER_ENCODING, HTTP.CHUNK_CODING); } else if (len >= 0) { response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength())); } // Specify a content type if known if (entity.getContentType() != null && !response.containsHeader( HTTP.CONTENT_TYPE )) { response.addHeader(entity.getContentType()); } // Specify a content encoding if known if (entity.getContentEncoding() != null && !response.containsHeader( HTTP.CONTENT_ENCODING)) { response.addHeader(entity.getContentEncoding()); } } else { int status = response.getStatusLine().getStatusCode(); if (status != HttpStatus.SC_NO_CONTENT && status != HttpStatus.SC_NOT_MODIFIED && status != HttpStatus.SC_RESET_CONTENT) { response.addHeader(HTTP.CONTENT_LEN, "0"); } } } }
79a7624721130ae5b02c141f0e758e2d62c671d1
ae94bb9e570f7f4f6b96bc656b4fc35b95585f3c
/simcity201/src/EricRestaurant/gui/CookGui.java
2ef81c36ac3587b809f47f8d502b9daac0ba7a89
[]
no_license
danielCantwell/SimCity
0f884e1a1f58a0e648379be53b3440120f3cc83b
3738c7cb968f397f1c723a881e79b1d5349c27e3
refs/heads/master
2016-08-11T13:43:21.233656
2013-12-12T21:47:36
2013-12-12T21:47:36
55,092,944
1
0
null
null
null
null
UTF-8
Java
false
false
1,530
java
package EricRestaurant.gui; import java.awt.*; import EricRestaurant.EricCook; import EricRestaurant.interfaces.Customer; import EricRestaurant.interfaces.Waiter; public class CookGui implements Gui{ private EricCook agent = null; public int xPos = -20, yPos = -20; private int xDestination = 420, yDestination = 30; String displayText = ""; public CookGui(EricCook agent) { this.agent = agent; } public void draw(Graphics2D g) { g.setColor(Color.RED); g.fillRect(xPos, yPos, 20, 20); if (displayText.trim().length() >0) g.drawString(displayText, (xPos-10), (yPos-3)); } public void updatePosition() { if (xPos < xDestination) xPos+=5; else if (xPos > xDestination) xPos-=5; if (yPos < yDestination) yPos+=5; else if (yPos > yDestination) yPos-=5; } public void setText(String string) { displayText = string; } public void getIng() { xDestination = 510; yDestination = 30; } public void goGrill() { xDestination = 420; yDestination = 20; } public void doLeaveBuilding() { xDestination = -20; yDestination = -20; } public void goCounter() { xDestination = 420; yDestination = 50; } public boolean isPresent() { return true; } public int getXPos() { return xPos; } public int getYPos() { return yPos; } }
5de23c5e29518387c89487e2e0c7d6d16ea75f71
5de04d8bb9e6e033246c52b034e4d38ce2de08e3
/hystrix/src/main/java/com/doze/HystrixApplication.java
81f642a04009f1a292f652626f02090cb50eec9b
[]
no_license
ishbn/SpringCloudDemo
a5933e37243e3e4a4c231b9497685caccd184311
793641fabbd906d960c9f0ac7ca3799987904f2b
refs/heads/master
2023-08-05T06:25:32.149452
2019-08-27T16:33:16
2019-08-27T16:33:16
204,493,054
0
0
null
null
null
null
UTF-8
Java
false
false
735
java
package com.doze; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker; import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard; import org.springframework.cloud.openfeign.EnableFeignClients; /** * @BelongsProject: clouddemo * @BelongsPackage: com.doze * @Author: hbn * @CreateTime: 2019-08-26 17:09 * @Description: */ @SpringBootApplication @EnableFeignClients @EnableCircuitBreaker @EnableHystrixDashboard public class HystrixApplication { public static void main(String[] args) { SpringApplication.run(HystrixApplication.class,args); } }
[ "l" ]
l
a89377381deb228e15b8eed97994b098b1e589a6
a1826c2ed9c12cfc395fb1a14c1a2e1f097155cb
/sgw-20180511/src/main/java/com/aliyun/sgw20180511/models/ReportGatewayUsageResponse.java
54ca83c382ea1721437b1d7733fd0def6cb34589
[ "Apache-2.0" ]
permissive
aliyun/alibabacloud-java-sdk
83a6036a33c7278bca6f1bafccb0180940d58b0b
008923f156adf2e4f4785a0419f60640273854ec
refs/heads/master
2023-09-01T04:10:33.640756
2023-09-01T02:40:45
2023-09-01T02:40:45
288,968,318
40
45
null
2023-06-13T02:47:13
2020-08-20T09:51:08
Java
UTF-8
Java
false
false
1,088
java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sgw20180511.models; import com.aliyun.tea.*; public class ReportGatewayUsageResponse extends TeaModel { @NameInMap("headers") @Validation(required = true) public java.util.Map<String, String> headers; @NameInMap("body") @Validation(required = true) public ReportGatewayUsageResponseBody body; public static ReportGatewayUsageResponse build(java.util.Map<String, ?> map) throws Exception { ReportGatewayUsageResponse self = new ReportGatewayUsageResponse(); return TeaModel.build(map, self); } public ReportGatewayUsageResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ReportGatewayUsageResponse setBody(ReportGatewayUsageResponseBody body) { this.body = body; return this; } public ReportGatewayUsageResponseBody getBody() { return this.body; } }
f1c8e03e0dd9d213305b3a807bce3b960a7abda5
5fed829498caade0a60596a087680210747d8ff6
/menglang/src/test/java/cn/menglangpoem/mobile/PoemApplicationTests.java
3a2fac5764904eae4987681a98e43321769ea6a2
[]
no_license
mengxianglong123/menglang
996ee4b2da22b4c994c44cd1952ac9d0b9970240
334ddae23b372449ed0f0b1c0350807e2d7409ad
refs/heads/master
2020-08-23T00:02:22.745053
2019-10-21T07:35:04
2019-10-21T07:35:04
216,501,237
0
1
null
null
null
null
UTF-8
Java
false
false
346
java
package cn.menglangpoem.mobile; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class PoemApplicationTests { @Test public void contextLoads() { } }
3990cb277de450398458c0f2398610d6c869de71
86a4f4a2dc3f38c0b3188d994950f4c79f036484
/src/android/support/v7/media/RegisteredMediaRouteProviderWatcher.java
439f583aaf6fb7241e77a4d30733200b532cf6c2
[]
no_license
reverseengineeringer/com.cbs.app
8f6f3532f119898bfcb6d7ddfeb465eae44d5cd4
7e588f7156f36177b0ff8f7dc13151c451a65051
refs/heads/master
2021-01-10T05:08:31.000287
2016-03-19T20:39:17
2016-03-19T20:39:17
54,283,808
0
0
null
null
null
null
UTF-8
Java
false
false
5,098
java
package android.support.v7.media; import android.content.BroadcastReceiver; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.pm.PackageManager; import android.content.pm.ResolveInfo; import android.content.pm.ServiceInfo; import android.os.Handler; import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; final class RegisteredMediaRouteProviderWatcher { private final Callback mCallback; private final Context mContext; private final Handler mHandler; private final PackageManager mPackageManager; private final ArrayList<RegisteredMediaRouteProvider> mProviders = new ArrayList(); private boolean mRunning; private final BroadcastReceiver mScanPackagesReceiver = new BroadcastReceiver() { public void onReceive(Context paramAnonymousContext, Intent paramAnonymousIntent) { RegisteredMediaRouteProviderWatcher.this.scanPackages(); } }; private final Runnable mScanPackagesRunnable = new Runnable() { public void run() { RegisteredMediaRouteProviderWatcher.this.scanPackages(); } }; public RegisteredMediaRouteProviderWatcher(Context paramContext, Callback paramCallback) { mContext = paramContext; mCallback = paramCallback; mHandler = new Handler(); mPackageManager = paramContext.getPackageManager(); } private int findProvider(String paramString1, String paramString2) { int j = mProviders.size(); int i = 0; while (i < j) { if (((RegisteredMediaRouteProvider)mProviders.get(i)).hasComponentName(paramString1, paramString2)) { return i; } i += 1; } return -1; } private void scanPackages() { if (!mRunning) {} label38: label272: label273: for (;;) { return; Object localObject1 = new Intent("android.media.MediaRouteProviderService"); localObject1 = mPackageManager.queryIntentServices((Intent)localObject1, 0).iterator(); int i = 0; int j; while (((Iterator)localObject1).hasNext()) { Object localObject2 = nextserviceInfo; if (localObject2 == null) { break label272; } int k = findProvider(packageName, name); if (k < 0) { localObject2 = new RegisteredMediaRouteProvider(mContext, new ComponentName(packageName, name)); ((RegisteredMediaRouteProvider)localObject2).start(); mProviders.add(i, localObject2); mCallback.addProvider((MediaRouteProvider)localObject2); i += 1; } else { if (k < i) { break label272; } localObject2 = (RegisteredMediaRouteProvider)mProviders.get(k); ((RegisteredMediaRouteProvider)localObject2).start(); ((RegisteredMediaRouteProvider)localObject2).rebindIfDisconnected(); localObject2 = mProviders; j = i + 1; Collections.swap((List)localObject2, k, i); i = j; } } for (;;) { break label38; if (i >= mProviders.size()) { break label273; } j = mProviders.size() - 1; while (j >= i) { localObject1 = (RegisteredMediaRouteProvider)mProviders.get(j); mCallback.removeProvider((MediaRouteProvider)localObject1); mProviders.remove(localObject1); ((RegisteredMediaRouteProvider)localObject1).stop(); j -= 1; } break; } } } public final void start() { if (!mRunning) { mRunning = true; IntentFilter localIntentFilter = new IntentFilter(); localIntentFilter.addAction("android.intent.action.PACKAGE_ADDED"); localIntentFilter.addAction("android.intent.action.PACKAGE_REMOVED"); localIntentFilter.addAction("android.intent.action.PACKAGE_CHANGED"); localIntentFilter.addAction("android.intent.action.PACKAGE_REPLACED"); localIntentFilter.addAction("android.intent.action.PACKAGE_RESTARTED"); localIntentFilter.addDataScheme("package"); mContext.registerReceiver(mScanPackagesReceiver, localIntentFilter, null, mHandler); mHandler.post(mScanPackagesRunnable); } } public final void stop() { if (mRunning) { mRunning = false; mContext.unregisterReceiver(mScanPackagesReceiver); mHandler.removeCallbacks(mScanPackagesRunnable); int i = mProviders.size() - 1; while (i >= 0) { ((RegisteredMediaRouteProvider)mProviders.get(i)).stop(); i -= 1; } } } public static abstract interface Callback { public abstract void addProvider(MediaRouteProvider paramMediaRouteProvider); public abstract void removeProvider(MediaRouteProvider paramMediaRouteProvider); } } /* Location: * Qualified Name: android.support.v7.media.RegisteredMediaRouteProviderWatcher * Java Class Version: 6 (50.0) * JD-Core Version: 0.7.1 */
73555727f8520c0676b3c430d655bec5636ab061
6df6666c25948cfab148764cb1768f0da8f0b321
/mycoolapp/src/main/java/com/luv2code/springboot/demo/mycoolapp/MycoolappApplication.java
bf1fa20561399079650b2729b3fd8868e55f379d
[]
no_license
lalitkoli11121998/spring-boot-project
1a6ecceea003e4a559d1a49e7d2ef873947e145a
618bcbd0535b778d4dadb6c2c379405f737a30d5
refs/heads/main
2023-07-07T22:40:17.114508
2021-08-16T07:21:04
2021-08-16T07:21:04
396,670,886
1
0
null
null
null
null
UTF-8
Java
false
false
380
java
package com.luv2code.springboot.demo.mycoolapp; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class MycoolappApplication { public static void main(String[] args) { SpringApplication.run(MycoolappApplication.class, args); //it bootstrap the spring boot application } }
e29789908517f68b74ecb78be1ef4a36c14e9c18
eca4a253fe0eba19f60d28363b10c433c57ab7a1
/server/openjacob.engine/java/de/tif/jacob/screen/IBrowserCellRenderer.java
55bc61c31f9f9bf9c4508437d5593abd17f7f967
[]
no_license
freegroup/Open-jACOB
632f20575092516f449591bf6f251772f599e5fc
84f0a6af83876bd21c453132ca6f98a46609f1f4
refs/heads/master
2021-01-10T11:08:03.604819
2015-05-25T10:25:49
2015-05-25T10:25:49
36,183,560
0
0
null
null
null
null
UTF-8
Java
false
false
974
java
/* * Created on 23.01.2010 * */ package de.tif.jacob.screen; import de.tif.jacob.core.data.IDataBrowserRecord; import de.tif.jacob.screen.impl.html.ClientContext; public abstract class IBrowserCellRenderer { /** * Return the HTML content (the part between the <b>TD</b> tag) of the cell. * * @param context * @param record the related record * @param row the current row index. Can be used for even/odd rendering (zebra) * @param cellContent The raw content to render. This has may be filtered by a UI filterCell Method. * @return * @since 2.10 */ public String renderCell(IClientContext context,IBrowser browser, IDataBrowserRecord record, int row, String cellContent) { return cellContent; } /** * Return the width of the cell/column or <b>0</b> if the engine should calculate * the best width. * * @param context * @return */ public int getCellWidth(ClientContext context) { return 0; } }
0af7fa14d96afaa5afdb8866b8b3bd78dd5f468f
fe014f5f6df14e272e1e90dd1df80245370003af
/src/triage/agent/ERDoctorAgent.java
f7b009bd18bb092173f2125e0ca208b9f2f1787a
[]
no_license
gitkobaya/trisim
d90d903b18bed62a35aa5e501d6f643a120bbc78
2ec294f5ccc6e38fe537ee2a40c648d5ee58cdcb
refs/heads/master
2022-09-14T20:38:52.719439
2018-03-23T05:59:45
2018-03-23T05:59:45
268,844,608
0
0
null
null
null
null
UTF-8
Java
false
false
140,914
java
package triage.agent; import java.io.IOException; import java.util.ArrayList; import java.util.LinkedList; import java.util.Queue; import java.util.logging.Logger; import jp.ac.nihon_u.cit.su.furulab.fuse.Message; import jp.ac.nihon_u.cit.su.furulab.fuse.SimulationEngine; import jp.ac.nihon_u.cit.su.furulab.fuse.models.Agent; import utility.csv.CCsv; import utility.initparam.InitSimParam; import utility.node.ERTriageNode; public class ERDoctorAgent extends Agent{ private static final long serialVersionUID = 3036002566514283755L; public static final int ERDA_SUCCESS = 0; public static final int ERDA_FATAL_ERROR = -101; public static final int ERDA_MEMORYALLOCATE_ERROR = -102; public static final int ERDA_NULLPOINT_ERROR = -103; public static final int ERDA_INVALID_ARGUMENT_ERROR = -104; public static final int ERDA_INVALID_DATA_ERROR = -105; public static final int ERDA_ARRAY_INDEX_ERROR = -106; public static final int ERDA_ZERO_DIVIDE_ERROR = -107; // 医師パラメータ(定数) int iDoctorId; // 医師のID int iDoctorDepartment; // 医師の所属部門 int iSurgeon; // 執刀医かどうか int iRoomNumber; // 所属している部屋番号 double lfYearExperience; // 経験年数 double lfConExperience; // 経験年数重みパラメータ double lfConExperienceAIS; // 経験年数重みパラメータ(重症度) double lfExperienceRate1; // 経験年数パラメータその1 double lfExperienceRate2; // 経験年数パラメータその2 double lfExperienceRateAIS1; // 経験年数パラメータその1(重症度) double lfExperienceRateAIS2; // 経験年数パラメータその2(重症度) double lfExperienceRateOp1; // 経験年数パラメータその1 double lfConExperienceOp; // 経験年数パラメータその2 double lfExperienceRateOp2; // 経験年数パラメータその3 double lfTiredRate; // 疲労度 double lfConTired1; // 疲労度パラメータ1 double lfConTired2; // 疲労度パラメータ2 double lfConTired3; // 疲労度パラメータ3 double lfConTired4; // 疲労度パラメータ4 double lfRevisedOperationRate; // 手術による傷病状態の改善度 double lfRevisedEmergencyRate; // 処置による傷病状態の改善度 double lfAssociationRate; // 連携度 double lfConsultationAssociateRate; // 診察室における連携度 double lfOperationAssociateRate; // 手術室における連携度 // 医師パラメータ(変数) double lfConsultationTime; // 診察時間 double lfCurrentConsultationTime; // 今回の診察時間 double lfTotalConsultationTime; // 診察総時間 double lfOperationTime; // 手術時間 double lfCurrentOperationTime; // 今回の手術時間 double lfTotalOperationTime; // 手術総時間 double lfCurrentEmergencyTime; // 現在の初療室対応時間 double lfEmergencyTime; // 初療室対応時間 double lfTotalEmergencyTime; // 初療室総対応時間 double lfCurrentPassOverTime; // 現在の医師が作業を開始してからの時間 int iConsultationAttending; // 診察室対応中フラグ int iOperationAttending; // 手術室対応中フラグ int iEmergencyAttending; // 初療室対応中フラグ int iEmergencyLevel; // 緊急度 int iTotalConsultationNum; // 医師が患者を観察した回数 int iTotalOperationNum; // 医師が患者を手術した回数 int iTotalEmergencyNum; // 医師が患者を初療室で対応した回数 // メッセージ取得関連パラメータ int iTriageProtocol; // トリアージプロトコル int iTriageProtocolLevel; // トリアージプロトコルのレベル int iTriageProcessFlag; // トリアージを実施するか否か int iNurseDepartment; // 看護師の所属部門 int iNurseId; // 看護師ID int iPatientLocation; // 患者が現在いる部屋 int iPatientId; // 担当患者ID int iClinicalEngineerDepartment; // 検査した医療技師所属室 int iClinicalEngineerId; // 検査した医療技士のID int iFromDoctorId; // 担当した医師のID int iFromDoctorDepartment; // 担当した医師の所属部門 double lfObservationTime; // 観察時間 double lfWaitTime; // 患者の待ち時間 double lfExaminationTime; // 検査時間 int iExaminationFinishFlag; // 検査完了フラグ // 医療技師に関わるパラメータ int iRequestExamination; // 依頼する検査を表す変数 int aiRequestAnatomys[]; // 依頼する検査をする部位 int iRequestExaminationNum; // 依頼する検査部位数 // 患者に関わるパラメータ double lfJudgedAISHead; // 頭部のAIS double lfJudgedAISFace; // 顔面のAIS double lfJudgedAISNeck; // 頸部(首)のAIS double lfJudgedAISThorax; // 胸部のAIS double lfJudgedAISAbdomen; // 腹部のAIS double lfJudgedAISSpine; // 脊椎のAIS double lfJudgedAISUpperExtremity; // 上肢のAIS double lfJudgedAISLowerExtremity; // 下肢のAIS double lfJudgedAISUnspecified; // 特定部位でない。(体表・熱傷・その他外傷) String strInjuryHeadStatus; // 患者が訴える頭部AIS値 String strInjuryFaceStatus; // 患者が訴える顔面AIS値 String strInjuryNeckStatus; // 患者が訴える頸部AIS値; String strInjuryThoraxStatus; // 患者が訴える胸部AIS値 String strInjuryAbdomenStatus; // 患者が訴える腹部AIS値 String strInjurySpineStatus; // 患者が訴える脊椎AIS値 String strInjuryUpperExtremityStatus; // 患者が訴える上肢AIS値 String strInjuryLowerExtremityStatus; // 患者が訴える下肢AIS値 String strInjuryUnspecifiedStatus; // 患者が訴える表面、熱傷、その他外傷AIS値 double lfExamAISHead; // 医療技師からの検査結果頭部AIS値 double lfExamAISFace; // 医療技師からの検査結果顔面AIS値 double lfExamAISNeck; // 医療技師からの検査結果頸部AIS値 double lfExamAISThorax; // 医療技師からの検査結果胸部AIS値 double lfExamAISAbdomen; // 医療技師からの検査結果腹部AIS値 double lfExamAISSpine; // 医療技師からの検査結果脊椎AIS値 double lfExamAISUpperExtremity; // 医療技師からの検査結果上肢AIS値 double lfExamAISLowerExtremity; // 医療技師からの検査結果下肢AIS値 double lfExamAISUnspecified; // 医療技師からの検査結果表面、熱傷、その他外傷AIS値 double lfUpperExtremityNRS; // 上肢痛みの強さのスケール double lfLowerExtremityNRS; // 下肢痛みの強さのスケール double lfUnspecifiedNRS; // 体表、熱傷、その他外傷の痛みの強さのスケール double lfSpineNRS; // 脊椎痛みの強さのスケール double lfAbdomenNRS; // 腹部痛みの強さのスケール double lfThoraxNRS; // 胸部痛みの強さのスケール double lfNeckNRS; // 頸部痛みの強さのスケール double lfFaceNRS; // 顔面痛みの強さのスケール double lfHeadNRS; // 頭部痛みの強さのスケール double lfPatientGcsLevel; // 患者の意識レベル double lfPatientRr; // 患者の呼吸回数 double lfPatientSpO2; // 患者の動脈血山荘飽和度(SpO2) double lfFatigue; // 医師の疲労度 int iCalcTiredFlag; // 疲労度計算時の初めて計算したか否か ArrayList<Long> ArrayListDoctorAgentIds; // 全医師のID ArrayList<Long> ArrayListNurseAgentIds; // 全看護師のID ArrayList<Long> ArrayListClinicalEngineerAgentIds; // 医療技師のID ArrayList<Long> ArrayListPatientAgentIds; // 全患者のID ERPatientAgent erPatientAgent; // 現在診察、あるいは手術をしている患者エージェント ERPatientAgent erPrevPatientAgent; // 現在診察、あるいは手術をしている患者エージェント Queue<Message> mesQueueData; // メッセージキューを保持する変数 double lfTimeCourse; // 経過時間 int iPatientMoveWaitFlag; // 患者移動フラグ utility.sfmt.Rand rnd; // 乱数クラス CCsv csvWriteAgentData; // 終了データファイル出力 CCsv csvWriteAgentStartData; // 開始データファイル出力 private Logger cDoctorAgentLog; // 医師エージェントのログ出力 private double lfTotalTime; // 総時間 private double lfSimulationEndTime; // シミュレーション終了時間 private int iInverseSimMode; // 逆シミュレーションモード private Object erDoctorCriticalSection; // クリティカルセクション用 private int iFileWriteMode; // 長時間シミュレーションファイル出力モード private InitSimParam initSimParam; // 初期設定ファイル操作用変数 private ERTriageNode erTriageNode; // 医師がいるノード /** * <PRE> * コンストラクタ * </PRE> * @author kobayashi * @since 2015/07/23 */ public ERDoctorAgent() { vInitialize(); } void vInitialize() { String strFileName = ""; // long seed; // seed = (long)(Math.random()*Long.MAX_VALUE); // rnd = null; // rnd = new sfmt.Rand( (int)seed ); // 医師パラメータ(定数) iDoctorId = 0; // 医師のID iDoctorDepartment = 0; // 医師の所属部門 lfYearExperience = 5.0; lfConExperience = 0.61; lfExperienceRate1 = 2.1; lfExperienceRate2 = 0.9; lfConExperienceAIS = 0.14; // 経験年数重みパラメータ(重症度用) lfExperienceRateAIS1 = 0.2; // 経験年数パラメータその1(重症度用) lfExperienceRateAIS2 = 1.1; // 経験年数パラメータその2(重症度用) lfExperienceRateOp1 = 0.9; // 経験年数パラメータその1(手術における傷病重症度改善用) // lfConExperienceOp = 0.16; // 経験年数パラメータその2(手術における傷病重症度改善用)(5年で半分) lfConExperienceOp = 0.05; // 経験年数パラメータその2(手術における傷病重症度改善用)(5年で8割り) lfExperienceRateOp2 = 0.1; // 経験年数パラメータその3(手術における傷病重症度改善用) lfTiredRate = 0; // 疲労度 lfConTired1 = 0; // 疲労度重みパラメータ1 lfConTired2 = 0; // 疲労度重みパラメータ2 lfConTired3 = 0; // 疲労度重みパラメータ3 lfConTired4 = 0; // 疲労度重みパラメータ4 iSurgeon = 0; // 執刀医かどうか lfRevisedOperationRate = 0.6666666;// 手術による傷病状態の改善度 lfRevisedEmergencyRate = 0.8; // 処置による傷病状態の改善度 lfAssociationRate = 1.0; // 連携度 lfConsultationAssociateRate = 1.0; // 診察室における連携度 lfOperationAssociateRate = 1.0; // 手術室における連携度 // 医師パラメータ(変数) lfConsultationTime = 0; // 診察時間 lfTotalConsultationTime = 0; // 診察総時間 lfOperationTime = 0; // 手術時間 lfTotalOperationTime = 0; // 手術総時間 lfEmergencyTime = 0; // 初療室対応時間 lfTotalEmergencyTime = 0; // 初療室総対応時間 lfCurrentPassOverTime = 0; // 現在の医師が作業を開始してからの時間 iConsultationAttending = 0; // 診察室対応中フラグ iOperationAttending = 0; // 手術室対応中フラグ iEmergencyAttending = 0; // 初療室対応中フラグ iEmergencyLevel = 6; // 緊急度 iTotalConsultationNum = 0; // 医師が患者を観察した回数 iTotalOperationNum = 0; // 医師が患者を手術した回数 iTotalEmergencyNum = 0; // 医師が患者を初療室で対応した回数 // メッセージ取得関連パラメータ iTriageProtocol = 0; // トリアージプロトコル iTriageProtocolLevel = 0; // トリアージプロトコルのレベル iTriageProcessFlag = 0; // トリアージを実施するか否か iNurseDepartment = 0; // 看護師の所属部門 iNurseId = 0; // 看護師ID iPatientLocation = 0; // 患者が現在いる部屋 iPatientId = 0; // 担当患者ID iClinicalEngineerDepartment = 0; // 検査した医療技師所属室 iClinicalEngineerId = 0; // 検査した医療技士のID iExaminationFinishFlag = 0; // 検査完了フラグ lfObservationTime = 0.0; // 観察時間 lfWaitTime = 0.0; // 患者の待ち時間 lfExaminationTime = 0.0; // 検査時間 // 医療技師に関わるパラメータ iRequestExamination = 0; // 依頼する検査を表す変数 aiRequestAnatomys = new int[9]; // 依頼する検査をする部位 iRequestExaminationNum = 0; // 依頼する検査部位数 // 患者に関わるパラメータ lfJudgedAISHead = 0; // 頭部のAIS lfJudgedAISFace = 0; // 顔面のAIS lfJudgedAISNeck = 0; // 頸部(首)のAIS lfJudgedAISThorax = 0; // 胸部のAIS lfJudgedAISAbdomen = 0; // 腹部のAIS lfJudgedAISSpine = 0; // 脊椎のAIS lfJudgedAISUpperExtremity = 0; // 上肢のAIS lfJudgedAISLowerExtremity = 0; // 下肢のAIS lfJudgedAISUnspecified = 0; // 特定部位でない。(体表・熱傷・その他外傷) strInjuryHeadStatus = ""; // 患者が訴える頭部AIS値 strInjuryFaceStatus = ""; // 患者が訴える顔面AIS値 strInjuryNeckStatus = ""; // 患者が訴える頸部AIS値; strInjuryThoraxStatus = ""; // 患者が訴える胸部AIS値 strInjuryAbdomenStatus = ""; // 患者が訴える腹部AIS値 strInjurySpineStatus = ""; // 患者が訴える脊椎AIS値 strInjuryUpperExtremityStatus = ""; // 患者が訴える上肢AIS値 strInjuryLowerExtremityStatus = ""; // 患者が訴える下肢AIS値 strInjuryUnspecifiedStatus = ""; // 患者が訴える表面、熱傷、その他外傷AIS値 lfExamAISHead = 0; // 医療技師からの検査結果頭部AIS値 lfExamAISFace = 0; // 医療技師からの検査結果顔面AIS値 lfExamAISNeck = 0; // 医療技師からの検査結果頸部AIS値 lfExamAISThorax = 0; // 医療技師からの検査結果胸部AIS値 lfExamAISAbdomen = 0; // 医療技師からの検査結果腹部AIS値 lfExamAISSpine = 0; // 医療技師からの検査結果脊椎AIS値 lfExamAISUpperExtremity = 0; // 医療技師からの検査結果上肢AIS値 lfExamAISLowerExtremity = 0; // 医療技師からの検査結果下肢AIS値 lfExamAISUnspecified = 0; // 医療技師からの検査結果表面、熱傷、その他外傷AIS値 lfPatientSpO2 = 0.0; // 患者の動脈血山荘飽和度(SpO2) lfUpperExtremityNRS = 0.0; // 上肢痛みの強さのスケール lfLowerExtremityNRS = 0.0; // 下肢痛みの強さのスケール lfUnspecifiedNRS = 0.0; // 体表、熱傷、その他外傷の痛みの強さのスケール lfSpineNRS = 0.0; // 脊椎痛みの強さのスケール lfAbdomenNRS = 0.0; // 腹部痛みの強さのスケール lfThoraxNRS = 0.0; // 胸部痛みの強さのスケール lfNeckNRS = 0.0; // 頸部痛みの強さのスケール lfFaceNRS = 0.0; // 顔面痛みの強さのスケール lfHeadNRS = 0.0; // 頭部痛みの強さのスケール lfFatigue = 0.0; // 医師の疲労度 iCalcTiredFlag = 0; // 疲労度計算時の初めて計算したか否か ArrayListDoctorAgentIds = new ArrayList<Long>();// 全医師のID ArrayListNurseAgentIds = new ArrayList<Long>();// 全看護師のID ArrayListPatientAgentIds = new ArrayList<Long>();// 全患者のID ArrayListClinicalEngineerAgentIds = new ArrayList<Long>();// 医療技師のID erPatientAgent = null; // 現在診察、あるいは手術をしている患者エージェント mesQueueData = new LinkedList<Message>(); lfTimeCourse = 0.0; // 経過時間 iPatientMoveWaitFlag = 0; // 患者移動フラグ iFileWriteMode = 0; // try // { // csvWriteAgentData = new CCsv(); // strFileName = "./er/dc/erdc_start" + this.getId() + ".csv"; // csvWriteAgentData.vOpen( strFileName, "write"); // csvWriteAgentStartData = new CCsv(); // strFileName = "./er/dc/erdc_end" + this.getId() + ".csv"; // csvWriteAgentStartData.vOpen( strFileName, "write"); // } // catch( IOException ioe ) // { // // } } /** * <PRE> * ファイルの読み込みを行います。 * </PRE> * @param iFileWriteMode ファイル書き込みモード * 0 すべて、1 最初と最後 * @throws IOException ファイル書き込みエラー */ public void vSetReadWriteFile( int iFileWriteMode ) throws IOException { String strFileName = ""; this.iFileWriteMode = iFileWriteMode; if( iFileWriteMode == 1 ) { csvWriteAgentData = new CCsv(); strFileName = "./er/dc/erdc_start" + this.getId() + ".csv"; csvWriteAgentData.vOpen( strFileName, "write"); csvWriteAgentStartData = new CCsv(); strFileName = "./er/dc/erdc_end" + this.getId() + ".csv"; csvWriteAgentStartData.vOpen( strFileName, "write"); } else { csvWriteAgentData = new CCsv(); strFileName = "./er/dc/erdc_end" + this.getId() + ".csv"; csvWriteAgentData.vOpen( strFileName, "write"); } } /** * <PRE> * 終了処理を実行します。 * </PRE> * @throws IOException java標準エラー */ public void vTerminate() throws IOException { if( iInverseSimMode == 0 || iInverseSimMode == 1 ) { if( csvWriteAgentData != null ) { csvWriteAgentData.vClose(); csvWriteAgentData = null; } if( csvWriteAgentStartData != null ) { csvWriteAgentStartData.vClose(); csvWriteAgentStartData = null; } } rnd = null; if( ArrayListDoctorAgentIds != null ) { ArrayListDoctorAgentIds.clear(); // 全医師のID ArrayListDoctorAgentIds = null; } if( ArrayListNurseAgentIds != null ) { ArrayListNurseAgentIds.clear(); // 全看護師のID ArrayListNurseAgentIds = null; } if( ArrayListClinicalEngineerAgentIds != null ) { ArrayListClinicalEngineerAgentIds.clear(); // 全看護師のID ArrayListClinicalEngineerAgentIds = null; } if( ArrayListPatientAgentIds != null ) { ArrayListPatientAgentIds.clear(); ArrayListPatientAgentIds = null; } if( mesQueueData != null ) { mesQueueData.clear(); // メッセージキューを保持する変数 mesQueueData = null; } } /** * <PRE> * FUSEエンジンにエージェントを登録します。 * </PRE> * @param engine シミュレーションエンジン */ public void vSetSimulationEngine( SimulationEngine engine ) { engine.addAgent(this); } /** * <PRE> * 医師の診察プロセスを実行します。 * </PRE> * @param erPatientAgent 診察をうける患者エージェント * @return 1 診察終了待合室待機 * 2 検査の必要あり検査室へ移動 * 3 入院処置必要、一般病棟へ * 4 手術室必要、手術室へ * 5 緊急処置必要、初療室へ * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/08/05 */ public int iImplementConsultationProcess( ERPatientAgent erPatientAgent ) throws ERDoctorAgentException { int iProcessResult = 0; int iEmergencyLevel1 = 6; int iEmergencyLevel2 = 6; // 問診の実施をします。 iEmergencyLevel1 = iMedicalInterview( erPatientAgent ); // 診察の実施をします。 iEmergencyLevel2 = iImplementConsultation( erPatientAgent ); iEmergencyLevel = iEmergencyLevel1 > iEmergencyLevel2 ? iEmergencyLevel2 : iEmergencyLevel1; // 診察時間に経験年数を反映させる。(経験年数が浅いと過小評価するようにする。) iEmergencyLevel = (int)(lfCalcExperienceAIS()*iEmergencyLevel); erPatientAgent.vSetEmergencyLevel( iEmergencyLevel ); if( iEmergencyLevel <= 3 ) { // 緊急性があるので、初療室へ患者を移動するように判定します。 iProcessResult = 5; // if( iEmergencyLevel == 3 && erPatientAgent.iGetStartEmergencyLevel() == 5 ) { // if( rnd.NextUnif() < 0.78 ) if( rnd.NextUnif() < initSimParam.lfGetDoctorImplementConsultationJudgeEmergencyDischargeRate1() ) iProcessResult = 1; } else if( iEmergencyLevel == 3 && erPatientAgent.iGetStartEmergencyLevel() == 4 ) { // if( rnd.NextUnif() < 0.5 ) if( rnd.NextUnif() < initSimParam.lfGetDoctorImplementConsultationJudgeEmergencyDischargeRate2() ) iProcessResult = 1; } } else { // 検査が必要な場合は検査室へ患者を移動します。 if( erPatientAgent.iGetExaminataionFinishFlag() == 0 && isJudgeExamination( erPatientAgent ) == true ) { vSetRequestExamination(); iProcessResult = 2; } else { // 手術が必要な場合は手術室へ患者を移動します。 if( isJudgeOperation(erPatientAgent) == true ) { iProcessResult = 3; } else { // 入院(一般病棟)の必要がある場合は患者を一般病棟へ移動します。 if( isJudgeGeneralWard( erPatientAgent ) == true ) { iProcessResult = 4; } else { // 緊急を要するものではないので、診察室を終了し、待合室へ移動します。 iProcessResult = 1; } } } // 検査終了している場合はここでフラグを0にします。 if( erPatientAgent.iGetExaminataionFinishFlag() == 1 ) { erPatientAgent.vSetExaminationFinishFlag( 0 ); } if( iProcessResult == 4 ) { if( iEmergencyLevel == 4 && erPatientAgent.iGetStartEmergencyLevel() == 5 ) { // if( rnd.NextUnif() < 0.999 ) if( rnd.NextUnif() < initSimParam.lfGetDoctorImplementConsultationJudgeGeneralWardDischargeRate1() ) iProcessResult = 1; } else if( iEmergencyLevel == 5 && erPatientAgent.iGetStartEmergencyLevel() == 5 ) { if( rnd.NextUnif() <= initSimParam.lfGetDoctorImplementConsultationJudgeGeneralWardDischargeRate2() ) iProcessResult = 1; } else if( iEmergencyLevel == 5 && erPatientAgent.iGetStartEmergencyLevel() == 4 ) { if( rnd.NextUnif() <= initSimParam.lfGetDoctorImplementConsultationJudgeGeneralWardDischargeRate3() ) iProcessResult = 1; } else if( iEmergencyLevel == 4 && erPatientAgent.iGetStartEmergencyLevel() == 4 ) { // if( rnd.NextUnif() < 0.8 ) if( rnd.NextUnif() < initSimParam.lfGetDoctorImplementConsultationJudgeGeneralWardDischargeRate4() ) iProcessResult = 1; } } } iTotalConsultationNum++; return iProcessResult; } /** * <PRE> * 問診を行います。基本的にはバイタルサイン、傷病重症度より判定します。 * 参考になるものがないので、トリアージの判定アルゴリズムを基にしています。 * </PRE> * @param erPatientAgent 患者エージェントインスタンス * @return 緊急度(1~5) * @throws ERDoctorAgentException 医師エージェント例外 */ private int iMedicalInterview( ERPatientAgent erPatientAgent ) throws ERDoctorAgentException { int iEmergency = 5; // バイタルサインが正常かどうかの判定を行います。 if( isJudgeVitalSign( erPatientAgent ) == true ) { // 正常でない場合は詳細に見ます。 // 脈が明らかに低い場合はCTASレベル1とします。 if( erPatientAgent.lfGetPulse() <= 30.0 ) { iEmergency = 1; return iEmergency; } // 脈が明らかに多い場合はCTASレベルを1とします。 else if( erPatientAgent.lfGetPulse() >= 140.0 ) { iEmergency = 1; return iEmergency; } // 呼吸回数が明らかに低い、あるいはない場合はCTASレベル1とします。 if( erPatientAgent.lfGetRr() <= 5.0 ) { iEmergency = 1; return iEmergency; } // 呼吸回数があまりにも多い場合はCTASレベルを1とします。 else if( erPatientAgent.lfGetRr() >= 40 ) { iEmergency = 1; return iEmergency; } // けいれん状態の場合はCTASレベル1とします。 if( erPatientAgent.strGetInjuryUnspecifiedStatus() == "けいれん状態" ) { iEmergency = 1; return iEmergency; } } // 酸素飽和度から緊急度を判定します。 vJudgeSpO2Status( erPatientAgent.strGetSpO2Status() ); iEmergency = iJudgeSpO2( erPatientAgent ); return iEmergency; } /** * <PRE> * 診察を実行します。 * </PRE> * @param erPatientAgent 患者エージェントインスタンス * @return 緊急度(1~5) * @throws ERDoctorAgentException 医師エージェント例外 */ private int iImplementConsultation( ERPatientAgent erPatientAgent ) throws ERDoctorAgentException { double lfEmergency = 0.0; int iEmergencyFlag = 0; int i; int iEmergency = 6; int iEmergencyRespiration = 0; int aiEmergency[] = new int[12]; // 医療技師からの検査結果を反映します。 vExaminationResult(); // CTASレベル判定 // 患者エージェントから状態を取得します。 for( i = 0;i < aiEmergency.length; i++ ) { aiEmergency[i] = 5; } // 呼吸のCTAS判定を実施します。 vJudgeSpO2Status( erPatientAgent.strGetSpO2Status() ); aiEmergency[0] = iJudgeSpO2( erPatientAgent ); if( aiEmergency[0] == 1 ) { // CTASレベル1と判定できる状態ならば、蘇生レベルの1を返却します。 return aiEmergency[0]; } // 循環動態のCTAS判定を実施します。 aiEmergency[1] = iJudgeCirculatoryDynamics( erPatientAgent ); if( aiEmergency[1] == 1 ) { // CTASレベル1と判定できるならば、返却します。 return aiEmergency[1]; } // 意識状態のCTAS判定を実施します。 aiEmergency[2] = iJudgeConsciousness( erPatientAgent ); if( aiEmergency[2] == 1 ) { // CTASレベル1と判定できるならば、返却します。 return aiEmergency[2]; } // 体温のCTAS判定を実施します。 aiEmergency[3] = iJudgeBodyTemperature( erPatientAgent ); // 出血性疾患のCTAS判定を実施します。 aiEmergency[4] = iJudgeBloodIssue( erPatientAgent ); // 疼痛のCTAS判定を実施します。 aiEmergency[5] = iJudgeAIS( erPatientAgent ); if( aiEmergency[5] == 1 ) { // CTASレベル1と判定できるならば、返却します。 return aiEmergency[5]; } if( erPatientAgent.strGetSkinSignStatus() == "冷たい皮膚" ) { aiEmergency[6] = 1; } if( erPatientAgent.strGetFaceSignStatus() == "チアノーゼ" ) { aiEmergency[7] = 1; } if( erPatientAgent.strGetHeartSignStatus() == "心停止" ) { aiEmergency[8] = 1; } if( erPatientAgent.strGetBodyTemperatureSignStatus() == "低体温症" || erPatientAgent.strGetBodyTemperatureSignStatus() == "過高温" || erPatientAgent.strGetBodyTemperatureSignStatus() == "超過高温" ) { aiEmergency[9] = 1; } // 最終的に判定レベルが最も高いものを判定します。 iEmergency = 6; for( i = 0;i < aiEmergency.length; i++ ) { if( iEmergency > aiEmergency[i] && aiEmergency[i] != 0 ) { iEmergency = aiEmergency[i]; } } return iEmergency; } /** * <PRE> * 体温のCTAS判定を実施します。 * 全身性炎症症候群(SIRS)を判定してCTAS判定を実施します。 * </PRE> * @param erPAgent 患者エージェント * @return 患者の緊急度 */ private int iJudgeBodyTemperature( ERPatientAgent erPAgent ) { int iFlagCount = 0; int iFlagTemp = 0; int iEmergency = 5; // TODO 自動生成されたメソッド・スタブ // SIRSの診断項目 4項目 // 1 体温 if( erPAgent.lfGetBodyTemperature() > 38.0 || erPAgent.lfGetBodyTemperature() < 36.0 ) { iFlagCount++; iFlagTemp = 1; } // 2 心拍数 if( erPAgent.lfGetPulse() > 90.0 ) { iFlagCount++; } // 3 呼吸数 if( erPAgent.lfGetRr() > 20.0 ) { iFlagCount++; } // 4 白血球数 if( 12000.0 <= erPAgent.lfGetLeucocyte() || erPAgent.lfGetLeucocyte() <= 4000.0 ) { iFlagCount++; } // 3項目以上満たす場合 if( iFlagCount >= 3 ) { iEmergency = 2; } // 2項目以下の場合 if( iFlagCount <= 2 ) { iEmergency = 3; } // 体温だけ該当する場合 if( iFlagCount == 1 && iFlagTemp == 1 ) { iEmergency = 4; } // 判定に該当しない場合は正常とします。 if( iFlagCount == 0 || iFlagTemp == 0 ) { iEmergency = 5; } // 意識障害(軽度)の場合 if( 10.0 <= erPAgent.lfGetGcs() && erPAgent.lfGetGcs() <= 13.0 ) { iEmergency = 2; } // 中等症の呼吸障害の場合 if( 0.9 < erPAgent.lfGetSpO2() && erPAgent.lfGetSpO2() <= 0.92 ) { iEmergency = 2; } return iEmergency; } /** * <PRE> * 出血のCTAS判定を実施します。 * </PRE> * @param erPAgent 受診対象患者エージェント * @return 患者エージェントの緊急度 */ private int iJudgeBloodIssue( ERPatientAgent erPAgent ) { int iEmergency; // TODO 自動生成されたメソッド・スタブ // この判定は再現が難しいため、正常とみなして緊急度を非緊急とします。 iEmergency = 5; return iEmergency; } /** * <PRE> * 循環動態のCTAS判定を実施します。 * </PRE> * @param erPAgent 対象患者エージェント * @return 患者エージェントの緊急度 */ private int iJudgeCirculatoryDynamics( ERPatientAgent erPAgent ) { int i; int iEmergency; int aiEmergency[] = new int[5]; // TODO 自動生成されたメソッド・スタブ // 弱い脈、明らかに低い、徐脈、重度の頻脈はCTASレベル1とします。 if( erPAgent.lfGetPulse() <= 30.0 || erPAgent.lfGetPulse() >= 140.0 ) { aiEmergency[0] = 1; } // 低血圧 if( erPAgent.lfGetSbp() <= 80 || erPAgent.lfGetDbp() <= 30 ) { aiEmergency[1] = 1; } // 顔面の状態から判定します。 if( erPAgent.strGetFaceSignStatus() == "著明に蒼白" ) { aiEmergency[2] = 1; } else if( erPAgent.strGetFaceSignStatus() == "蒼白" ) { aiEmergency[2] = 2; } // 皮膚の状態を見ます。 if( erPAgent.strGetSkinSignStatus() == "冷たい皮膚" || erPAgent.strGetSkinSignStatus() == "冷たい発汗" ) { aiEmergency[3] = 1; } // バイタルサインのチェックを行います。 if( isJudgeVitalSign( erPAgent ) == true ) { // 正常値のため、決定できないので他の判定条件により判定します。 // aiEmergency[4] = rnd.NextUnif() <= 0.5 ? 4 : 5; aiEmergency[4] = 5; } // 最終的に判定レベルが最も高いものを判定します。 iEmergency = 6; for( i = 0;i < aiEmergency.length; i++ ) { if( iEmergency > aiEmergency[i] && aiEmergency[i] != 0 ) { iEmergency = aiEmergency[i]; } } return iEmergency; } /** * <PRE> * バイタルサインが正常かどうかを判定します。 * 5項目を判定し、3項目以上正常値ならば正常と判定します。 * </PRE> * @param erPAgent 患者エージェント * @return 患者エージェントの緊急度 */ private boolean isJudgeVitalSign( ERPatientAgent erPAgent ) { boolean bRet = false; int iOK = 0; // 呼吸回数 if( 15 <= erPAgent.lfGetRr() && erPAgent.lfGetRr() <= 20 ) { iOK += 1; } // 体温 if( 35.0 <= erPAgent.lfGetBodyTemperature() && erPAgent.lfGetBodyTemperature() <= 37.2 ) { iOK += 1; } // 脈拍 if( 60.0 <= erPAgent.lfGetPulse() && erPAgent.lfGetPulse() <= 100.0 ) { iOK += 1; } // 拡張期血圧 if( 110.0 <= erPAgent.lfGetSbp() && erPAgent.lfGetSbp() <= 140.0 ) { iOK += 1; } // 収縮期血圧 if( 55.0 <= erPAgent.lfGetDbp() && erPAgent.lfGetDbp() <= 85.0 ) { iOK += 1; } // 3項目以上OKならば正常とみなします。 if( iOK >= 3 ) { bRet = true; } return bRet; } /** * <PRE> * 患者の意識レベルを判定します。 * </PRE> * @param erPAgent 対象患者エージェント * @return 緊急度レベル */ public int iJudgeConsciousness( ERPatientAgent erPAgent ) { int iEmergency = 5; if( 3.0 <= erPAgent.lfGetGcs() && erPAgent.lfGetGcs() < 9.0 ) { iEmergency = 1; } else if( 9.0 <= erPAgent.lfGetGcs() && erPAgent.lfGetGcs() < 13.0 ) { iEmergency = 2; } else if( 13.0 <= erPAgent.lfGetGcs() && erPAgent.lfGetGcs() <= 15.0 ) { // iEmergency = (int)(3.0*rnd.NextUnif()+2.0); //この領域のスコアに入った場合は他の条件から緊急度を判定する。 iEmergency = 5; } else { } return iEmergency; } /** * <PRE> * 検査室から患者の検査結果を取得します。 * </PRE> */ private void vExaminationResult() { int i; int iCount = 0; if( iExaminationFinishFlag == 0 ) { return ; } if( aiRequestAnatomys != null ) { for( i = 0;i < aiRequestAnatomys.length; i++ ) { if( aiRequestAnatomys[i] == 1 ) { if( i == 0 ) lfJudgedAISHead = lfExamAISHead; else if( i == 1 ) lfJudgedAISFace = lfExamAISFace; else if( i == 2 ) lfJudgedAISNeck = lfExamAISNeck; else if( i == 3 ) lfJudgedAISThorax = lfExamAISThorax; else if( i == 4 ) lfJudgedAISAbdomen = lfExamAISAbdomen; else if( i == 5 ) lfJudgedAISSpine = lfExamAISSpine; else if( i == 6 ) lfJudgedAISUpperExtremity = lfExamAISUpperExtremity; else if( i == 7 ) lfJudgedAISLowerExtremity = lfExamAISLowerExtremity; else if( i == 8 ) lfJudgedAISUnspecified = lfExamAISUnspecified; iCount++; } } if( iCount == 0 ) { lfJudgedAISHead = lfExamAISHead; lfJudgedAISFace = lfExamAISFace; lfJudgedAISNeck = lfExamAISNeck; lfJudgedAISThorax = lfExamAISThorax; lfJudgedAISAbdomen = lfExamAISAbdomen; lfJudgedAISSpine = lfExamAISSpine; lfJudgedAISUpperExtremity = lfExamAISUpperExtremity; lfJudgedAISLowerExtremity = lfExamAISLowerExtremity; lfJudgedAISUnspecified = lfExamAISUnspecified; } } } void vSetRequestExamination() { // ここでは仮アルゴリズムとして、各部位のAIS値が2以上の場合は検査を実施する。 iRequestExamination = 2; // 仮にCT室とする。 // AIS値が一つでも大きいものがある場合はレントゲンとする。 if( lfJudgedAISHead >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[0] = 1; iRequestExamination = 1; } if( lfJudgedAISFace >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[1] = 1; iRequestExamination = 1; } if( lfJudgedAISNeck >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[2] = 1; iRequestExamination = 1; } if( lfJudgedAISThorax >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[3] = 1; iRequestExamination = 1; } if( lfJudgedAISAbdomen >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[4] = 1; iRequestExamination = 1; } if( lfJudgedAISSpine >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[5] = 1; iRequestExamination = 1; } if( lfJudgedAISUpperExtremity >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[6] = 1; iRequestExamination = 1; } if( lfJudgedAISLowerExtremity >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[7] = 1; iRequestExamination = 1; } if( lfJudgedAISUnspecified >= 2 ) { iRequestExaminationNum++; aiRequestAnatomys[8] = 1; iRequestExamination = 1; } // 検査部位が一か所の場合はX線室へ移動します。 if( iRequestExaminationNum == 1 ) { // 胸部の場合はX線検査 if( aiRequestAnatomys[3] == 1 ) { iRequestExamination = 1; } // 腹部の場合は血管造影検査を実施します。 else if( aiRequestAnatomys[4] == 1 ) { iRequestExamination = 5; } // 脊柱の場合はMRI検査を実施します。 else if( aiRequestAnatomys[5] == 1) { iRequestExamination = 4; } // 上肢、下肢の場合はX線検査を実施します。 else if( aiRequestAnatomys[6] == 1 || aiRequestAnatomys[7] == 1 ) { iRequestExamination = 2; } } // 検査部位が複数個所の場合はCT室、MRI室のいずれかへ移動します。 else if( iRequestExaminationNum >= 2 ) { // CT検査を実施します。 iRequestExamination = 3; // CT検査でわからなかった場合はMRI検査を実施します。 // if() // { // iRequestExamination = 4; // } } } /** * <PRE> * 手術プロセスを実行します。 * </PRE> * @param erPatientAgent 対象患者エージェント * @throws ERDoctorAgentException 医師エージェント例外 * @return フラグ */ public int iImplementOperationProcess( ERPatientAgent erPatientAgent ) throws ERDoctorAgentException { int iEmergencyFlag = 0; // if( isJudgeOperation( erPatientAgent ) == true ) { double lfAISHead = erPatientAgent.lfGetInternalAISHead(); double lfAISFace = erPatientAgent.lfGetInternalAISFace(); double lfAISNeck = erPatientAgent.lfGetInternalAISNeck(); double lfAISThorax = erPatientAgent.lfGetInternalAISThorax(); double lfAISAbdomen = erPatientAgent.lfGetInternalAISAbdomen(); double lfAISSpine = erPatientAgent.lfGetInternalAISSpine(); double lfAISUpperExtremity = erPatientAgent.lfGetInternalAISUpperExtremity(); double lfAISLowerExtremity = erPatientAgent.lfGetInternalAISLowerExtremity(); double lfAISUnspecified = erPatientAgent.lfGetInternalAISUnspecified(); double lfRespirationNumber = erPatientAgent.lfGetRr(); double lfSpO2 = erPatientAgent.lfGetSpO2(); double lfPulse = erPatientAgent.lfGetPulse(); double lfSbp = erPatientAgent.lfGetSbp(); double lfDbp = erPatientAgent.lfGetDbp(); double lfBodyTemperature = erPatientAgent.lfGetBodyTemperature(); // AIS値を改善させます。 // ここではAIS値を半分にします。 lfAISHead = lfAISHead*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISFace = lfAISFace*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISNeck = lfAISNeck*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISThorax = lfAISThorax*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISAbdomen = lfAISAbdomen*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISSpine = lfAISSpine*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISUpperExtremity = lfAISUpperExtremity*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISLowerExtremity = lfAISLowerExtremity*lfRevisedOperationRate*lfCalcExperienceOperation(); lfAISUnspecified = lfAISUnspecified*lfRevisedOperationRate*lfCalcExperienceOperation(); // 呼吸関係は正常値にします。 lfSpO2 = 1.0; lfRespirationNumber = 5*rnd.NextUnif()+15.0; lfPulse = 10*rnd.NextUnif() + 70; lfSbp = 10*rnd.NextUnif() + 90; lfDbp = 10*rnd.NextUnif() + 70; lfBodyTemperature = 1.8*rnd.NextUnif() + 35; // // 改善した内容を代入します。 erPatientAgent.vSetInternalAISHead( lfAISHead ); erPatientAgent.vSetInternalAISFace( lfAISFace ); erPatientAgent.vSetInternalAISNeck( lfAISNeck ); erPatientAgent.vSetInternalAISThorax( lfAISThorax ); erPatientAgent.vSetInternalAISAbdomen( lfAISAbdomen ); erPatientAgent.vSetInternalAISSpine( lfAISSpine ); erPatientAgent.vSetInternalAISUpperExtremity( lfAISUpperExtremity ); erPatientAgent.vSetInternalAISLowerExtremity( lfAISLowerExtremity ); erPatientAgent.vSetInternalAISUnspecified( lfAISUnspecified ); // バイタルサイン系パラメータの改善 erPatientAgent.vSetSpO2( lfSpO2 ); erPatientAgent.vSetRr( lfRespirationNumber ); erPatientAgent.vSetPulse( lfPulse ); erPatientAgent.vSetSbp( lfSbp ); erPatientAgent.vSetDbp( lfDbp ); erPatientAgent.vSetBodyTemperature( lfBodyTemperature ); // 患者の文字列による状態を更新します。 erPatientAgent.vStrSetInjuryStatus(); // AIS値を基に緊急レベルを判断します。 iEmergencyLevel = iEmergencyFlag = iJudgeAIS( erPatientAgent ); erPatientAgent.vSetEmergencyLevel( iEmergencyLevel ); iTotalOperationNum++; // 医師が患者を手術した回数 } return iEmergencyFlag; } /** * <PRE> * 初療室プロセスを実行します。 * </PRE> * @param erPatientAgent 処置を受ける患者エージェント * @throws ERDoctorAgentException 医師エージェント例外 * @return 緊急度レベル */ public int iImplementEmergencyProcess( ERPatientAgent erPatientAgent )throws ERDoctorAgentException { int iEmergencyFlag = 0; int iEmergencyLevel1 = 6; int iEmergencyLevel2 = 6; // 診察を実施します。 // 問診の実施をします。 iEmergencyLevel1 = iMedicalInterview( erPatientAgent ); // 医療技師からの検査結果を反映します。 vExaminationResult(); // AIS値を基に緊急レベルを判断します。 iEmergencyLevel2 = iJudgeAIS( erPatientAgent ); iEmergencyLevel = iEmergencyLevel1 > iEmergencyLevel2 ? iEmergencyLevel2 : iEmergencyLevel1; // 診察時間に経験年数を反映させます。(経験年数が浅いと過小評価するようにします。) iEmergencyLevel = (int)(lfCalcExperienceAIS()*iEmergencyLevel); // 手術を実施します。 // if( isJudgeOperation( erPatientAgent ) == true ) { double lfAISHead = erPatientAgent.lfGetInternalAISHead(); double lfAISFace = erPatientAgent.lfGetInternalAISFace(); double lfAISNeck = erPatientAgent.lfGetInternalAISNeck(); double lfAISThorax = erPatientAgent.lfGetInternalAISThorax(); double lfAISAbdomen = erPatientAgent.lfGetInternalAISAbdomen(); double lfAISSpine = erPatientAgent.lfGetInternalAISSpine(); double lfAISUpperExtremity = erPatientAgent.lfGetInternalAISUpperExtremity(); double lfAISLowerExtremity = erPatientAgent.lfGetInternalAISLowerExtremity(); double lfAISUnspecified = erPatientAgent.lfGetInternalAISUnspecified(); double lfRespirationNumber = erPatientAgent.lfGetRr(); double lfSpO2 = erPatientAgent.lfGetSpO2(); double lfPulse = erPatientAgent.lfGetPulse(); double lfSbp = erPatientAgent.lfGetSbp(); double lfDbp = erPatientAgent.lfGetDbp(); double lfBodyTemperature = erPatientAgent.lfGetBodyTemperature(); // AIS値を改善させます。 // ここではAIS値を半分にします。 // lfAISHead = lfAISHead*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISFace = lfAISFace*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISNeck = lfAISNeck*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISThorax = lfAISThorax*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISAbdomen = lfAISAbdomen*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISSpine = lfAISSpine*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISUpperExtremity = lfAISUpperExtremity*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISLowerExtremity = lfAISLowerExtremity*lfRevisedEmergencyRate*lfCalcExperienceOperation(); // lfAISUnspecified = lfAISUnspecified*lfRevisedEmergencyRate*lfCalcExperienceOperation(); lfAISHead = lfAISHead*lfRevisedEmergencyRate; lfAISFace = lfAISFace*lfRevisedEmergencyRate; lfAISNeck = lfAISNeck*lfRevisedEmergencyRate; lfAISThorax = lfAISThorax*lfRevisedEmergencyRate; lfAISAbdomen = lfAISAbdomen*lfRevisedEmergencyRate; lfAISSpine = lfAISSpine*lfRevisedEmergencyRate; lfAISUpperExtremity = lfAISUpperExtremity*lfRevisedEmergencyRate; lfAISLowerExtremity = lfAISLowerExtremity*lfRevisedEmergencyRate; lfAISUnspecified = lfAISUnspecified*lfRevisedEmergencyRate; // バイタルサイン関係は正常値にします。 lfSpO2 = 1.0; lfRespirationNumber = 5*rnd.NextUnif()+15.0; lfPulse = 10*rnd.NextUnif() + 70; lfSbp = 10*rnd.NextUnif() + 90; lfDbp = 10*rnd.NextUnif() + 70; lfBodyTemperature = 1.8*rnd.NextUnif() + 35; // 改善した内容を代入します。 erPatientAgent.vSetInternalAISHead( lfAISHead ); erPatientAgent.vSetInternalAISFace( lfAISFace ); erPatientAgent.vSetInternalAISNeck( lfAISNeck ); erPatientAgent.vSetInternalAISThorax( lfAISThorax ); erPatientAgent.vSetInternalAISAbdomen( lfAISAbdomen ); erPatientAgent.vSetInternalAISSpine( lfAISSpine ); erPatientAgent.vSetInternalAISUpperExtremity( lfAISUpperExtremity ); erPatientAgent.vSetInternalAISLowerExtremity( lfAISLowerExtremity ); erPatientAgent.vSetInternalAISUnspecified( lfAISUnspecified ); // バイタルサイン系パラメータの改善 erPatientAgent.vSetSpO2( lfSpO2 ); erPatientAgent.vSetRr( lfRespirationNumber ); erPatientAgent.vSetPulse( lfPulse ); erPatientAgent.vSetSbp( lfSbp ); erPatientAgent.vSetDbp( lfDbp ); erPatientAgent.vSetBodyTemperature( lfBodyTemperature ); // 患者の文字列による状態を更新します。 erPatientAgent.vStrSetInjuryStatus(); // AIS値を基に緊急レベルを判断します。 iEmergencyLevel = iJudgeAIS( erPatientAgent ); erPatientAgent.vSetEmergencyLevel( iEmergencyLevel ); iTotalEmergencyNum++; // 医師が患者を初療室で対応した回数 } return 0; } /** * <PRE> * 医師エージェントが通常プロセスに基づいて * 患者エージェントの状況を判断します。 * </PRE> * @param erPAgent 患者エージェントインスタンス * @return 患者エージェントの緊急度 * @throws ERDoctorAgentException 医師エージェント例外 * @author kobayashi * @since 2015/07/21 */ public int iJudgeAIS( ERPatientAgent erPAgent) throws ERDoctorAgentException { ERDoctorAgentException cERDae; int iTraumaNum = 0; int iEmergency = 0; int iMinEmergency = 10; // 患者から状態をメッセージで受診します cERDae = new ERDoctorAgentException(); iTraumaNum = erPAgent.iGetNumberOfTrauma(); if( iTraumaNum < 0 ) { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "iJudgeAIS", "不正な数値です。" ); throw( cERDae ); } // 受信後各部位に関しての痛度の度合いからAISを判定します。 if( erPAgent.lfGetInternalAISHead() > 0.0 ) { vJudgeAISHeadStatus( erPAgent.strGetInjuryHeadStatus() ); } if( erPAgent.lfGetInternalAISFace() > 0.0 ) { vJudgeAISFaceStatus( erPAgent.strGetInjuryFaceStatus() ); } if( erPAgent.lfGetInternalAISNeck() > 0.0 ) { vJudgeAISNeckStatus( erPAgent.strGetInjuryNeckStatus() ); } if( erPAgent.lfGetInternalAISThorax() > 0.0 ) { vJudgeAISThoraxStatus( erPAgent.strGetInjuryThoraxStatus() ); } if( erPAgent.lfGetInternalAISAbdomen() > 0.0 ) { vJudgeAISAbdomenStatus( erPAgent.strGetInjuryAbdomenStatus() ); } if( erPAgent.lfGetInternalAISSpine() > 0.0 ) { vJudgeAISSpineStatus( erPAgent.strGetInjurySpineStatus() ); } if( erPAgent.lfGetInternalAISUpperExtremity() > 0.0 ) { vJudgeAISUpperExtrimityStatus( erPAgent.strGetInjuryUpperExtremityStatus() ); } if(erPAgent.lfGetInternalAISLowerExtremity() > 0.0 ) { vJudgeAISLowerExtrimityStatus( erPAgent.strGetInjuryLowerExtremityStatus() ); } if( erPAgent.lfGetInternalAISUnspecified() > 0.0 ) { vJudgeAISUnspecifiedStatus( erPAgent.strGetInjuryUnspecifiedStatus() ); } if( 0 <= lfHeadNRS && lfHeadNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfHeadNRS && lfHeadNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfHeadNRS && lfHeadNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfFaceNRS && lfFaceNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfFaceNRS && lfFaceNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfFaceNRS && lfFaceNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfNeckNRS && lfNeckNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfNeckNRS && lfNeckNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfNeckNRS && lfNeckNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfThoraxNRS && lfThoraxNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfThoraxNRS && lfThoraxNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfThoraxNRS && lfThoraxNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfAbdomenNRS && lfAbdomenNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfAbdomenNRS && lfAbdomenNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfAbdomenNRS && lfAbdomenNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfSpineNRS && lfSpineNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfSpineNRS && lfSpineNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfSpineNRS && lfSpineNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfUpperExtremityNRS && lfUpperExtremityNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfUpperExtremityNRS && lfUpperExtremityNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfUpperExtremityNRS && lfUpperExtremityNRS <= 10 ) iEmergency = iJudgeMildTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfLowerExtremityNRS && lfLowerExtremityNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfLowerExtremityNRS && lfLowerExtremityNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfLowerExtremityNRS && lfLowerExtremityNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; if( 0 <= lfUnspecifiedNRS && lfUnspecifiedNRS <= 3 ) iEmergency = iJudgeMildTrauma(); else if( 4 <= lfUnspecifiedNRS && lfUnspecifiedNRS <= 7 ) iEmergency = iJudgeModerateTrauma(); else if( 8 <= lfUnspecifiedNRS && lfUnspecifiedNRS <= 10 ) iEmergency = iJudgeSevereTrauma(); iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfHeadNRS && lfHeadNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfHeadNRS && lfHeadNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfHeadNRS && lfHeadNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfFaceNRS && lfFaceNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfFaceNRS && lfFaceNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfFaceNRS && lfFaceNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfNeckNRS && lfNeckNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfNeckNRS && lfNeckNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfNeckNRS && lfNeckNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfThoraxNRS && lfThoraxNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfThoraxNRS && lfThoraxNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfThoraxNRS && lfThoraxNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfAbdomenNRS && lfAbdomenNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfAbdomenNRS && lfAbdomenNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfAbdomenNRS && lfAbdomenNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfSpineNRS && lfSpineNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfSpineNRS && lfSpineNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfSpineNRS && lfSpineNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfUpperExtremityNRS && lfUpperExtremityNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfUpperExtremityNRS && lfUpperExtremityNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfUpperExtremityNRS && lfUpperExtremityNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfLowerExtremityNRS && lfLowerExtremityNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfLowerExtremityNRS && lfLowerExtremityNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfLowerExtremityNRS && lfLowerExtremityNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; // if( 0 <= lfUnspecifiedNRS && lfUnspecifiedNRS <= 3 ) iEmergency = 5; // else if( 4 <= lfUnspecifiedNRS && lfUnspecifiedNRS <= 7 ) iEmergency = 3; // else if( 8 <= lfUnspecifiedNRS && lfUnspecifiedNRS <= 10 ) iEmergency = 1; // iMinEmergency = iMinEmergency > iEmergency ? iEmergency : iMinEmergency; return iMinEmergency; } /** * <PRE> * 外傷が軽症の状態の緊急度を判定します。 * </PRE> * @return 緊急度 */ private int iJudgeMildTrauma() { int iEmergency = 5; double lfCurProb = 0.5; double lfPrevProb = 0.0; double lfRand = 0.0; // lfRand = 0.5 * ( normalRand() + 1.0 ); // lfRand = weibullRand(initSimParam.lfGetDoctorJudgeMildTraumaWeibullAlpha(), initSimParam.lfGetDoctorJudgeMildTraumaWeibullBeta()); // lfPrevProb = initSimParam.lfGetDoctorJudgeMildTrauma3(); // if( lfRand <= lfPrevProb ) // { // iEmergency = 4; // } // lfCurProb = initSimParam.lfGetDoctorJudgeMildTrauma4(); // if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) // { // iEmergency = 4; // } // lfPrevProb = lfCurProb; // lfCurProb += 0.5; // lfCurProb += initSimParam.lfGetDoctorJudgeMildTrauma5(); // if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 5; } return iEmergency; } /** * <PRE> * 外傷が中症の状態の緊急度を判定します。 * </PRE> * @return 緊急度 */ private int iJudgeModerateTrauma() { int iEmergency = 5; double lfCurProb = 0.25; double lfPrevProb = 0.0; double lfRand = 0.0; lfRand = 0.5 * ( normalRand() + 1.5 ); // lfRand = 0.7 * normalRand() + 0.3; // lfRand = weibullRand(1.0, 0.05); // 現在設定値 // lfRand = weibullRand(1.0, 0.1); // lfRand = weibullRand(1.0, 0.3); // lfRand = 0.5 * normalRand() + 0.5; // lfRand = 0.35 * normalRand() + 0.65; // lfRand = 0.01 * normalRand() + 0.99; lfRand = weibullRand(initSimParam.lfGetDoctorJudgeModerateTraumaWeibullAlpha(), initSimParam.lfGetDoctorJudgeModerateTraumaWeibullBeta()); if( lfRand <= lfPrevProb ) { iEmergency = 3; } lfCurProb = initSimParam.lfGetDoctorJudgeModerateTrauma3(); if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 3; } lfPrevProb = lfCurProb; // lfCurProb += 0.5; lfCurProb += initSimParam.lfGetDoctorJudgeModerateTrauma4(); if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 4; } lfPrevProb = lfCurProb; // lfCurProb += 0.25; lfCurProb += initSimParam.lfGetDoctorJudgeModerateTrauma5(); if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 5; } return iEmergency; } /** * <PRE> * 外傷が重症の状態の緊急度を判定します。 * </PRE> * @return 緊急度 */ private int iJudgeSevereTrauma() { int iEmergency = 4; double lfCurProb = 0.25; double lfPrevProb = 0.0; double lfRand = 0.0; // lfRand = 0.5 * ( normalRand() + 1.0 ); lfRand = weibullRand(1.0, 0.05); // 現在設定値 // lfRand = weibullRand(1.0, 0.1); // lfRand = weibullRand(1.0, 0.4); // lfRand = 0.5 * normalRand() + 0.5; // lfRand = 0.4 * normalRand() + 0.6; // lfRand = 0.56 * normalRand() + 0.44; // lfRand = weibullRand(2.0, 1.1); lfRand = weibullRand(initSimParam.lfGetDoctorJudgeSevereTraumaWeibullAlpha(), initSimParam.lfGetDoctorJudgeSevereTraumaWeibullBeta()); if( lfRand <= lfPrevProb ) { iEmergency = 2; } lfCurProb = initSimParam.lfGetDoctorJudgeSevereTrauma2(); if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 2; } lfPrevProb = lfCurProb; // lfCurProb += 0.5; lfCurProb += initSimParam.lfGetDoctorJudgeSevereTrauma3(); if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 3; } lfPrevProb = lfCurProb; // lfCurProb += 0.25; lfCurProb += initSimParam.lfGetDoctorJudgeSevereTrauma4(); if( lfPrevProb <= lfRand && lfRand <= lfCurProb ) { iEmergency = 4; } return iEmergency; } /** * <PRE> * 患者から頭部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryHeadStatus 患者が訴える頭部のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISHeadStatus( String strCurrentInjuryHeadStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryHeadStatus == "痛くない") { lfJudgedAISHead = 0.0; lfHeadNRS = 0; } // 頭部外傷軽度 else if( strCurrentInjuryHeadStatus == "ほんの少し痛い") { lfJudgedAISHead = 0.3*rnd.NextUnif()+1; lfHeadNRS = 1; } else if( strCurrentInjuryHeadStatus == "少し痛い") { lfJudgedAISHead = 0.3*rnd.NextUnif()+1.3; lfHeadNRS = 2; } else if( strCurrentInjuryHeadStatus == "少々痛い") { lfJudgedAISHead = 0.3*rnd.NextUnif()+1.6; lfHeadNRS = 3; } // 頭部外傷中等度 else if( strCurrentInjuryHeadStatus == "痛い" ) { lfJudgedAISHead = 0.3*rnd.NextUnif()+2; lfHeadNRS = 4; } else if( strCurrentInjuryHeadStatus == "けっこう痛い" ) { lfJudgedAISHead = 0.3*rnd.NextUnif()+2.3; lfHeadNRS = 5; } else if( strCurrentInjuryHeadStatus == "相当痛い" ) { lfJudgedAISHead = 0.3*rnd.NextUnif()+2.6; lfHeadNRS = 6; } // 重症、重篤(頭部の機能を失う) else if( strCurrentInjuryHeadStatus == "かなり痛い" ) { lfJudgedAISHead = 0.3*rnd.NextUnif()+3; lfHeadNRS = 7; } else if( strCurrentInjuryHeadStatus == "とてつもなく痛い" ) { lfJudgedAISHead = 0.3*rnd.NextUnif()+3.3; lfHeadNRS = 8; } else if( strCurrentInjuryHeadStatus == "とてつもなくかなり痛い" ) { lfJudgedAISHead = 0.3*rnd.NextUnif()+3.6; lfHeadNRS = 9; } else if( strCurrentInjuryHeadStatus == "耐えられないほど痛い" ) { lfJudgedAISHead = rnd.NextUnif()+4; lfHeadNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から顔面部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryFaceStatus 患者が訴える顔面のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISFaceStatus( String strCurrentInjuryFaceStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryFaceStatus == "痛くない") { lfJudgedAISFace = 0.0; lfFaceNRS = 0; } // 顔面外傷軽度 else if( strCurrentInjuryFaceStatus == "ほんの少し痛い") { lfJudgedAISFace = 0.3*rnd.NextUnif()+1; lfFaceNRS = 1; } else if( strCurrentInjuryFaceStatus == "少し痛い") { lfJudgedAISFace = 0.3*rnd.NextUnif()+1.3; lfFaceNRS = 2; } else if( strCurrentInjuryFaceStatus == "少々痛い") { lfJudgedAISFace = 0.3*rnd.NextUnif()+1.6; lfFaceNRS = 3; } // 顔面外傷中等度 else if( strCurrentInjuryFaceStatus == "痛い" ) { lfJudgedAISFace = 0.3*rnd.NextUnif()+2; lfFaceNRS = 4; } else if( strCurrentInjuryFaceStatus == "けっこう痛い" ) { lfJudgedAISFace = 0.3*rnd.NextUnif()+2.3; lfFaceNRS = 5; } else if( strCurrentInjuryFaceStatus == "相当痛い" ) { lfJudgedAISFace = 0.3*rnd.NextUnif()+2.6; lfFaceNRS = 6; } // 重症、重篤(顔面の機能を失う) else if( strCurrentInjuryFaceStatus == "かなり痛い" ) { lfJudgedAISFace = 0.3*rnd.NextUnif()+3; lfFaceNRS = 7; } else if( strCurrentInjuryFaceStatus == "とてつもなく痛い" ) { lfJudgedAISFace = 0.3*rnd.NextUnif()+3.3; lfFaceNRS = 8; } else if( strCurrentInjuryFaceStatus == "とてつもなくかなり痛い" ) { lfJudgedAISFace = 0.3*rnd.NextUnif()+3.6; lfFaceNRS = 9; } else if( strCurrentInjuryFaceStatus == "耐えられないほど痛い" ) { lfJudgedAISFace = rnd.NextUnif()+4; lfFaceNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から頸部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryNeckStatus 患者が訴える頸部のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISNeckStatus( String strCurrentInjuryNeckStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryNeckStatus == "痛くない") { lfJudgedAISNeck = 0.0; lfNeckNRS = 0; } // 頸部外傷軽度 else if( strCurrentInjuryNeckStatus == "ほんの少し痛い") { lfJudgedAISNeck = 0.3*rnd.NextUnif()+1; lfNeckNRS = 1; } else if( strCurrentInjuryNeckStatus == "少し痛い") { lfJudgedAISNeck = 0.3*rnd.NextUnif()+1.3; lfNeckNRS = 2; } else if( strCurrentInjuryNeckStatus == "少々痛い") { lfJudgedAISNeck = 0.3*rnd.NextUnif()+1.6; lfNeckNRS = 3; } // 頸部外傷中等度 else if( strCurrentInjuryNeckStatus == "痛い" ) { lfJudgedAISNeck = 0.3*rnd.NextUnif()+2; lfNeckNRS = 4; } else if( strCurrentInjuryNeckStatus == "けっこう痛い" ) { lfJudgedAISNeck = 0.3*rnd.NextUnif()+2.3; lfNeckNRS = 5; } else if( strCurrentInjuryNeckStatus == "相当痛い" ) { lfJudgedAISNeck = 0.3*rnd.NextUnif()+2.6; lfNeckNRS = 6; } // 重症、重篤(頸部の機能を失う) else if( strCurrentInjuryNeckStatus == "かなり痛い" ) { lfJudgedAISNeck = 0.3*rnd.NextUnif()+3; lfNeckNRS = 7; } else if( strCurrentInjuryNeckStatus == "とてつもなく痛い" ) { lfJudgedAISNeck = 0.3*rnd.NextUnif()+3.3; lfNeckNRS = 8; } else if( strCurrentInjuryNeckStatus == "とてつもなくかなり痛い" ) { lfJudgedAISNeck = 0.3*rnd.NextUnif()+3.6; lfNeckNRS = 9; } else if( strCurrentInjuryNeckStatus == "耐えられないほど痛い" ) { lfJudgedAISNeck = rnd.NextUnif()+4; lfNeckNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から胸部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryThoraxStatus 患者が訴える腹部のAIS値 * @throws ERDoctorAgentException 医師エージェントの例外 * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISThoraxStatus( String strCurrentInjuryThoraxStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryThoraxStatus == "痛くない") { lfJudgedAISThorax = 0.0; lfThoraxNRS = 0; } // 脊椎外傷軽度 else if( strCurrentInjuryThoraxStatus == "ほんの少し痛い") { lfJudgedAISThorax = 0.3*rnd.NextUnif()+1; lfThoraxNRS = 1; } else if( strCurrentInjuryThoraxStatus == "少し痛い") { lfJudgedAISThorax = 0.3*rnd.NextUnif()+1.3; lfThoraxNRS = 2; } else if( strCurrentInjuryThoraxStatus == "少々痛い") { lfJudgedAISThorax = 0.3*rnd.NextUnif()+1.6; lfThoraxNRS = 3; } // 脊椎外傷中等度 else if( strCurrentInjuryThoraxStatus == "痛い" ) { lfJudgedAISThorax = 0.3*rnd.NextUnif()+2; lfThoraxNRS = 4; } else if( strCurrentInjuryThoraxStatus == "けっこう痛い" ) { lfJudgedAISThorax = 0.3*rnd.NextUnif()+2.3; lfThoraxNRS = 5; } else if( strCurrentInjuryThoraxStatus == "相当痛い" ) { lfJudgedAISThorax = 0.3*rnd.NextUnif()+2.6; lfThoraxNRS = 6; } // 重症、重篤(脊椎の機能を失う) else if( strCurrentInjuryThoraxStatus == "かなり痛い" ) { lfJudgedAISThorax = 0.3*rnd.NextUnif()+3; lfThoraxNRS = 7; } else if( strCurrentInjuryThoraxStatus == "とてつもなく痛い" ) { lfJudgedAISThorax = 0.3*rnd.NextUnif()+3.3; lfThoraxNRS = 8; } else if( strCurrentInjuryThoraxStatus == "とてつもなくかなり痛い" ) { lfJudgedAISThorax = 0.3*rnd.NextUnif()+3.6; lfThoraxNRS = 9; } else if( strCurrentInjuryThoraxStatus == "耐えられないほど痛い" ) { lfJudgedAISThorax = rnd.NextUnif()+4; lfThoraxNRS = 10; } else if( strCurrentInjuryThoraxStatus == "心停止" ) { lfJudgedAISThorax = 5; lfThoraxNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から腹部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryAbdomenStatus 患者が訴える腹部のAIS値 * @throws ERDoctorAgentException 医師エージェント例外 * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISAbdomenStatus( String strCurrentInjuryAbdomenStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryAbdomenStatus == "痛くない") { lfJudgedAISAbdomen = 0.0; lfAbdomenNRS = 0; } // 腹部外傷軽度 else if( strCurrentInjuryAbdomenStatus == "ほんの少し痛い") { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+1; lfAbdomenNRS = 1; } else if( strCurrentInjuryAbdomenStatus == "少し痛い") { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+1.3; lfAbdomenNRS = 2; } else if( strCurrentInjuryAbdomenStatus == "少々痛い") { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+1.6; lfAbdomenNRS = 3; } // 腹部外傷中等度 else if( strCurrentInjuryAbdomenStatus == "痛い" ) { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+2; lfAbdomenNRS = 4; } else if( strCurrentInjuryAbdomenStatus == "けっこう痛い" ) { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+2.3; lfAbdomenNRS = 5; } else if( strCurrentInjuryAbdomenStatus == "相当痛い" ) { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+2.6; lfAbdomenNRS = 6; } // 重症、重篤(腹部の機能を失う) else if( strCurrentInjuryAbdomenStatus == "かなり痛い" ) { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+3; lfAbdomenNRS = 7; } else if( strCurrentInjuryAbdomenStatus == "とてつもなく痛い" ) { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+3.3; lfAbdomenNRS = 8; } else if( strCurrentInjuryAbdomenStatus == "とてつもなくかなり痛い" ) { lfJudgedAISAbdomen = 0.3*rnd.NextUnif()+3.6; lfAbdomenNRS = 9; } else if( strCurrentInjuryAbdomenStatus == "耐えられないほど痛い" ) { lfJudgedAISAbdomen = rnd.NextUnif()+4; lfAbdomenNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から腹部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjurySpineStatus 患者が訴える脊椎のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISSpineStatus( String strCurrentInjurySpineStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjurySpineStatus == "痛くない") { lfJudgedAISSpine = 0.0; lfSpineNRS = 0; } // 脊椎外傷軽度 else if( strCurrentInjurySpineStatus == "ほんの少し痛い") { lfJudgedAISSpine = 0.3*rnd.NextUnif()+1; lfSpineNRS = 1; } else if( strCurrentInjurySpineStatus == "少し痛い") { lfJudgedAISSpine = 0.3*rnd.NextUnif()+1.3; lfSpineNRS = 2; } else if( strCurrentInjurySpineStatus == "少々痛い") { lfJudgedAISSpine = 0.3*rnd.NextUnif()+1.6; lfSpineNRS = 3; } // 脊椎外傷中等度 else if( strCurrentInjurySpineStatus == "痛い" ) { lfJudgedAISSpine = 0.3*rnd.NextUnif()+2; lfSpineNRS = 4; } else if( strCurrentInjurySpineStatus == "けっこう痛い" ) { lfJudgedAISSpine = 0.3*rnd.NextUnif()+2.3; lfSpineNRS = 5; } else if( strCurrentInjurySpineStatus == "相当痛い" ) { lfJudgedAISSpine = 0.3*rnd.NextUnif()+2.6; lfSpineNRS = 6; } // 重症、重篤(脊椎の機能を失う) else if( strCurrentInjurySpineStatus == "かなり痛い" ) { lfJudgedAISSpine = 0.3*rnd.NextUnif()+3; lfSpineNRS = 7; } else if( strCurrentInjurySpineStatus == "とてつもなく痛い" ) { lfJudgedAISSpine = 0.3*rnd.NextUnif()+3.3; lfSpineNRS = 8; } else if( strCurrentInjurySpineStatus == "とてつもなくかなり痛い" ) { lfJudgedAISSpine = 0.3*rnd.NextUnif()+3.6; lfSpineNRS = 9; } else if( strCurrentInjurySpineStatus == "耐えられないほど痛い" ) { lfJudgedAISSpine = rnd.NextUnif()+4; lfSpineNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から腹部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryUpperExtremityStatus 患者が訴える上肢のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISUpperExtrimityStatus( String strCurrentInjuryUpperExtremityStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryUpperExtremityStatus == "痛くない") { lfJudgedAISUpperExtremity = 0.0; lfUpperExtremityNRS = 0; } // 上肢外傷軽度 else if( strCurrentInjuryUpperExtremityStatus == "ほんの少し痛い") { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+1; lfUpperExtremityNRS = 1; } else if( strCurrentInjuryUpperExtremityStatus == "少し痛い") { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+1.3; lfUpperExtremityNRS = 2; } else if( strCurrentInjuryUpperExtremityStatus == "少々痛い") { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+1.6; lfUpperExtremityNRS = 3; } // 上肢外傷中等度 else if( strCurrentInjuryUpperExtremityStatus == "痛い" ) { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+2; lfUpperExtremityNRS = 4; } else if( strCurrentInjuryUpperExtremityStatus == "けっこう痛い" ) { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+2.3; lfUpperExtremityNRS = 5; } else if( strCurrentInjuryUpperExtremityStatus == "相当痛い" ) { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+2.6; lfUpperExtremityNRS = 6; } // 重症、重篤(上肢の機能を失う、上肢を失う) else if( strCurrentInjuryUpperExtremityStatus == "かなり痛い" ) { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+3; lfUpperExtremityNRS = 7; } else if( strCurrentInjuryUpperExtremityStatus == "とてつもなく痛い" ) { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+3.3; lfUpperExtremityNRS = 8; } else if( strCurrentInjuryUpperExtremityStatus == "とてつもなくかなり痛い" ) { lfJudgedAISUpperExtremity = 0.3*rnd.NextUnif()+3.6; lfUpperExtremityNRS = 9; } else if( strCurrentInjuryUpperExtremityStatus == "耐えられないほど痛い" ) { lfJudgedAISUpperExtremity = rnd.NextUnif()+4; lfUpperExtremityNRS = 10; } else if( strCurrentInjuryUpperExtremityStatus == "上肢が動かない" ) { lfJudgedAISUpperExtremity = rnd.NextUnif()+3; lfUpperExtremityNRS = 8; } else if( strCurrentInjuryUpperExtremityStatus == "上肢が変形している" ) { lfJudgedAISUpperExtremity = rnd.NextUnif()+2; lfUpperExtremityNRS = 6; } else if( strCurrentInjuryUpperExtremityStatus == "上肢が切断している" ) { lfJudgedAISUpperExtremity = 5; lfUpperExtremityNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から腹部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryLowerExtremityStatus 患者が訴える下肢のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISLowerExtrimityStatus( String strCurrentInjuryLowerExtremityStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryLowerExtremityStatus == "痛くない") { lfJudgedAISLowerExtremity = 0.0; lfLowerExtremityNRS = 0; } // 下肢外傷軽度 else if( strCurrentInjuryLowerExtremityStatus == "ほんの少し痛い") { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+1; lfLowerExtremityNRS = 1; } else if( strCurrentInjuryLowerExtremityStatus == "少し痛い") { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+1.3; lfLowerExtremityNRS = 2; } else if( strCurrentInjuryLowerExtremityStatus == "少々痛い") { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+1.6; lfLowerExtremityNRS = 3; } // 下肢外傷中等度 else if( strCurrentInjuryLowerExtremityStatus == "痛い" ) { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+2; lfLowerExtremityNRS = 4; } else if( strCurrentInjuryLowerExtremityStatus == "けっこう痛い" ) { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+2.3; lfLowerExtremityNRS = 5; } else if( strCurrentInjuryLowerExtremityStatus == "相当痛い" ) { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+2.6; lfLowerExtremityNRS = 6; } // 重症、重篤(下肢の機能を失う、下肢を失う) else if( strCurrentInjuryLowerExtremityStatus == "かなり痛い" ) { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+3; lfLowerExtremityNRS = 7; } else if( strCurrentInjuryLowerExtremityStatus == "とてつもなく痛い" ) { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+3.3; lfLowerExtremityNRS = 8; } else if( strCurrentInjuryLowerExtremityStatus == "とてつもなくかなり痛い" ) { lfJudgedAISLowerExtremity = 0.3*rnd.NextUnif()+3.6; lfLowerExtremityNRS = 9; } else if( strCurrentInjuryLowerExtremityStatus == "耐えられないほど痛い" ) { lfJudgedAISLowerExtremity = rnd.NextUnif()+4; lfLowerExtremityNRS = 10; } else if( strCurrentInjuryLowerExtremityStatus == "下肢が動かない" ) { lfJudgedAISLowerExtremity = rnd.NextUnif()+3; lfLowerExtremityNRS = 6; } else if( strCurrentInjuryLowerExtremityStatus == "下肢が変形している" ) { lfJudgedAISLowerExtremity = rnd.NextUnif()+2; lfLowerExtremityNRS = 8; } else if( strCurrentInjuryLowerExtremityStatus == "下肢が切断している" ) { lfJudgedAISLowerExtremity = 5; lfLowerExtremityNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から腹部状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentInjuryUnspecifiedStatus 患者が訴える表面、熱傷、その他外傷のAIS値 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeAISUnspecifiedStatus( String strCurrentInjuryUnspecifiedStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentInjuryUnspecifiedStatus == "痛くない") { lfJudgedAISUnspecified = 0.0; lfUnspecifiedNRS = 0; } // 下肢外傷軽度 else if( strCurrentInjuryUnspecifiedStatus == "ほんの少し痛い") { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+1; lfUnspecifiedNRS = 1; } else if( strCurrentInjuryUnspecifiedStatus == "少し痛い") { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+1.3; lfUnspecifiedNRS = 2; } else if( strCurrentInjuryUnspecifiedStatus == "少々痛い") { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+1.6; lfUnspecifiedNRS = 3; } // 下肢外傷中等度 else if( strCurrentInjuryUnspecifiedStatus == "痛い" ) { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+2; lfUnspecifiedNRS = 4; } else if( strCurrentInjuryUnspecifiedStatus == "けっこう痛い" ) { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+2.3; lfUnspecifiedNRS = 5; } else if( strCurrentInjuryUnspecifiedStatus == "相当痛い" ) { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+2.6; lfUnspecifiedNRS = 6; } // 重症、重篤(下肢の機能を失う、下肢を失う) else if( strCurrentInjuryUnspecifiedStatus == "かなり痛い" ) { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+3; lfUnspecifiedNRS = 7; } else if( strCurrentInjuryUnspecifiedStatus == "とてつもなく痛い" ) { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+3.3; lfUnspecifiedNRS = 8; } else if( strCurrentInjuryUnspecifiedStatus == "とてつもなくかなり痛い" ) { lfJudgedAISUnspecified = 0.3*rnd.NextUnif()+3.6; lfUnspecifiedNRS = 9; } else if( strCurrentInjuryUnspecifiedStatus == "耐えられないほど痛い" ) { lfJudgedAISUnspecified = rnd.NextUnif()+4; lfUnspecifiedNRS = 10; } else if( strCurrentInjuryUnspecifiedStatus == "けいれん状態" ) { lfJudgedAISUnspecified = 5; lfUnspecifiedNRS = 10; } else if( strCurrentInjuryUnspecifiedStatus == "冷たい皮膚" ) { lfJudgedAISUnspecified = 5; lfUnspecifiedNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeTriageProcess", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 患者から呼吸状態をメッセージで受信し、状態を把握します。 * </PRE> * @param strCurrentRespirationStatus 患者の呼吸状態 * @throws ERDoctorAgentException 医師エージェント例外クラス * @author kobayashi * @since 2015/07/21 */ private void vJudgeSpO2Status( String strCurrentRespirationStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentRespirationStatus == "呼吸停止") { lfPatientSpO2 = 0.1*rnd.NextUnif(); } else if( strCurrentRespirationStatus == "チアノーゼ" ) { lfPatientSpO2 = 0.65*rnd.NextUnif()+0.1; } else if( strCurrentRespirationStatus == "単語単位でのみ会話可能") { lfPatientSpO2 = 0.75*rnd.NextUnif()+0.15; } else if( strCurrentRespirationStatus == "文節単位で会話かろうじて可能" ) { lfPatientSpO2 = 0.02*rnd.NextUnif()+0.9; } else if( strCurrentRespirationStatus == "文節単位で会話可能" ) { lfPatientSpO2 = 0.02*rnd.NextUnif()+0.92; } else if( strCurrentRespirationStatus == "通常に会話可能" ) { lfPatientSpO2 = 0.06*rnd.NextUnif()+0.94; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeSpO2Status", "不正な数値です。" ); throw( cERDae ); } } public void vJudgeFaceSign( String strCurrentFaceSignStatus ) throws ERDoctorAgentException { ERDoctorAgentException cERDae; cERDae = new ERDoctorAgentException(); if( strCurrentFaceSignStatus == "蒼白" ) { lfJudgedAISFace = rnd.NextUnif()+2; lfFaceNRS = 6; } else if( strCurrentFaceSignStatus == "著明に蒼白" ) { lfJudgedAISFace = 2*rnd.NextUnif()+3; lfFaceNRS = 10; } else { cERDae.SetErrorInfo( ERDA_INVALID_DATA_ERROR, "ERDoctorAgent", "vJudgeFaceSign", "不正な数値です。" ); throw( cERDae ); } } /** * <PRE> * 酸素飽和度から患者の緊急度を判定します。 * </PRE> * @param erPAgent 対象となる患者エージェント * @return 患者エージェントの緊急度 */ private int iJudgeSpO2( ERPatientAgent erPAgent ) { int iEmergency = 0; if( lfPatientSpO2 <= 0.9 ) { iEmergency = 1; } else if( 0.9 < lfPatientSpO2 && lfPatientSpO2 <= 0.92 ) { iEmergency = 2; } else if( 0.92 < lfPatientSpO2 && lfPatientSpO2 <= 0.94 ) { iEmergency = 3; } else if( 0.94 < lfPatientSpO2 ) { iEmergency = rnd.NextUnif() <= 0.5 ? 4 : 5; } return iEmergency; } /** * <PRE> * 診察、あるいは手術した患者の緊急状態を取得します。 * </PRE> * @return 判定した患者の緊急度レベル */ public int iGetEmergencyLevel() { return iEmergencyLevel; } /** * <PRE> * 医師が応対している患者エージェントを取得します。 * </PRE> * @return 担当している患者エージェント */ public ERPatientAgent cGetERPatientAgent() { return erPatientAgent; } /** * <PRE> * 対応中か否かを取得します。 * </PRE> * @return 0 未対応中 1 対応中 */ public int iGetAttending() { int iAttendingData = 0; // 診察室の場合 if( iDoctorDepartment == 1 ) { // 診察中か否か iAttendingData = iConsultationAttending; } // 手術室の場合 else if( iDoctorDepartment == 2 ) { // 診察中か否か iAttendingData = iOperationAttending; } // 初療室の場合 else if( iDoctorDepartment == 3 ) { // 診察中か否か iAttendingData = iEmergencyAttending; } // それ以外の場合 else { } return iAttendingData; } /** * <PRE> * 医師の診察時間を取得します。 * </PRE> * @return 診察時間 * @author kobayashi * @since 2015/08/03 */ public double lfGetConsultationTime() { return lfConsultationTime; } /** * <PRE> * 医師の手術時間を取得します。 * </PRE> * @return 手術時間 * @author kobayashi * @since 2015/08/03 */ public double lfGetOperationTime() { return lfOperationTime; } /** * <PRE> * 医師が応対する患者エージェントを設定します。 * </PRE> * @param erPAgent 担当する患者エージェント */ public void vSetERPatientAgent( ERPatientAgent erPAgent ) { erPatientAgent = erPAgent; } /** * <PRE> * 対応しているか否かのフラグを設定します。 * </PRE> * @param iAttendingData * 1 診察室 * 2 手術室 * 3 初療室 */ public void vSetAttending( int iAttendingData ) { // 診察室の場合 if( iDoctorDepartment == 1 ) { // 診察中か否か iConsultationAttending = iAttendingData; if( erPatientAgent != null && iAttendingData == 0 ) { } } // 手術室の場合 else if( iDoctorDepartment == 2 ) { // 診察中か否か iOperationAttending = iAttendingData; } // 初療室の場合 else if( iDoctorDepartment == 3 ) { // 診察中か否か iEmergencyAttending = iAttendingData; } // それ以外の場合 else { } } /** * <PRE> * 救急部門に登録されている全エージェントのIDを設定します。 * </PRE> * @param ArrayListNurseAgentIdsData 全看護師エージェントのID * @param ArrayListDoctorAgentIdsData 全医師エージェントのID * @param ArrayListClinicalEngineerAgentIdsData 全医療技師エージェントのID */ public void vSetAgentIds(ArrayList<Long> ArrayListNurseAgentIdsData, ArrayList<Long> ArrayListDoctorAgentIdsData, ArrayList<Long> ArrayListClinicalEngineerAgentIdsData) { int i; // TODO 自動生成されたメソッド・スタブ for( i = 0;i < ArrayListNurseAgentIdsData.size(); i++ ) { this.ArrayListNurseAgentIds.add( ArrayListNurseAgentIdsData.get(i) ); } for( i = 0;i < ArrayListDoctorAgentIdsData.size(); i++ ) { this.ArrayListDoctorAgentIds.add( ArrayListDoctorAgentIdsData.get(i) ); } for( i = 0;i < ArrayListClinicalEngineerAgentIdsData.size(); i++ ) { this.ArrayListClinicalEngineerAgentIds.add( ArrayListClinicalEngineerAgentIdsData.get(i) ); } } /** * <PRE> * 診察対応中か否かを取得します。 * </PRE> * @return true 診察中, false 未診察 */ public boolean isConsultation() { // 診察室の場合 if( iConsultationAttending == 1 ) { // 診察中か否か return true; } return false; } /** * <PRE> * 手術判断を行います。 * </PRE> * @param erPatientAgent 患者エージェント * @return true 手術を実施 false 手術しない * @throws ERDoctorAgentException 医師エージェント例外 */ public boolean isJudgeOperation( ERPatientAgent erPatientAgent ) throws ERDoctorAgentException { boolean bRet = false; // iJudgeAIS( erPatientAgent ); // ここでは仮アルゴリズムとして、 // 各部位のAIS値が1つでも3以上のものがある場合は手術を実施する。 if( lfJudgedAISHead >= 3 ) { bRet = true; } if( lfJudgedAISFace >= 3 ) { bRet = true; } if( lfJudgedAISNeck >= 3 ) { bRet = true; } if( lfJudgedAISThorax >= 3 ) { bRet = true; } if( lfJudgedAISAbdomen >= 3 ) { bRet = true; } if( lfJudgedAISSpine >= 3 ) { bRet = true; } if( lfJudgedAISUpperExtremity >= 3 ) { bRet = true; } if( lfJudgedAISLowerExtremity >= 3 ) { bRet = true; } if( lfJudgedAISUnspecified >= 3 ) { bRet = true; } if( iEmergencyLevel <= 3 ) { bRet = true; } return bRet; } /** * <PRE> * 検査判定をします。 * </PRE> * @param erPatientAgent 担当している患者エージェント * @return true 検査を実施 false 検査はしない */ public boolean isJudgeExamination( ERPatientAgent erPatientAgent ) { boolean bRet = true; // ここでは仮アルゴリズムとして、 // 各部位のAIS値が1つでも2以上のものがある場合は検査を実施する。 if( lfJudgedAISHead >= 2 ) { bRet = true; } if( lfJudgedAISFace >= 2 ) { bRet = true; } if( lfJudgedAISNeck >= 2 ) { bRet = true; } if( lfJudgedAISThorax >= 2 ) { bRet = true; } if( lfJudgedAISAbdomen >= 2 ) { bRet = true; } if( lfJudgedAISSpine >= 2 ) { bRet = true; } if( lfJudgedAISUpperExtremity >= 2 ) { bRet = true; } if( lfJudgedAISLowerExtremity >= 2 ) { bRet = true; } if( lfJudgedAISUnspecified >= 2 ) { bRet = true; } if( iEmergencyLevel <= 4 ) { bRet = true; } return bRet; } /** * <PRE> * 患者エージェントの退院判定を行います。 * </PRE> * @param erPatientAgent 担当している患者エージェント * @return true 入院する false 入院しない */ public boolean isJudgeDischarge( ERPatientAgent erPatientAgent ) { boolean bRet = false; int iMoveFlag = 0; int iMoveJudgeFlag = 0; // ここでは仮アルゴリズムとして、 // 各部位のAIS値が1以下のものがある場合は退院を許可する。 iMoveJudgeFlag = erPatientAgent.iGetNumberOfTrauma(); if( lfJudgedAISHead < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISFace < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISNeck < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISThorax < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISAbdomen < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISSpine < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISUpperExtremity < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISLowerExtremity < 1.0 ) { iMoveFlag += 1; } if( lfJudgedAISUnspecified < 1.0 ) { iMoveFlag += 1; } if( iEmergencyLevel == 5 ) { iMoveFlag += 1; // iMoveFlag = 9; } if( iMoveFlag >= 9 ) { erPatientAgent.vSetStayHospital( 0 ); erPatientAgent.vSetStayGeneralWardFlag( 0 ); bRet = true; } return bRet; } /** * <PRE> * 患者エージェントの高度治療室判定を行います。 * </PRE> * @param erPatientAgent 担当する患者エージェント * @return true 高度治療室へ入院 false 入院しない */ public boolean isJudgeHighCareUnit( ERPatientAgent erPatientAgent ) { boolean bRet = false; int iMoveJudgeFlag = 0; int iMoveFlag = 0; int i; // ここでは仮アルゴリズムとして、 // 各部位のAIS値が1つでも3以上のものがある場合は入院を実施する。 if( erPatientAgent.iGetStayHighCareUnit() == 0 ) { iMoveJudgeFlag = erPatientAgent.iGetNumberOfTrauma(); if( 2.5 <= lfJudgedAISHead && lfJudgedAISHead < 3 ); { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISFace && lfJudgedAISFace < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISNeck &&lfJudgedAISNeck < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISThorax && lfJudgedAISThorax < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISAbdomen && lfJudgedAISAbdomen < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISSpine && lfJudgedAISSpine < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISUpperExtremity && lfJudgedAISUpperExtremity < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISLowerExtremity && lfJudgedAISLowerExtremity < 3 ) { iMoveFlag += 1; } if( 2.5 <= lfJudgedAISUnspecified && lfJudgedAISUnspecified < 3 ) { iMoveFlag += 1; } // 緊急度レベ3以上の場合は高度治療室へ入院するものとする。 if( iEmergencyLevel == 3 ) { iMoveFlag += 1; } // 集中治療室に入る重症度の場合はiMoveFlagを強制的に0にする。 if( 3 <= lfJudgedAISHead ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISFace ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISNeck ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISThorax ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISAbdomen ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISSpine ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISUpperExtremity ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISLowerExtremity ) { iMoveFlag = 0; } if( 3 <= lfJudgedAISUnspecified ) { iMoveFlag = 0; } if( iEmergencyLevel < 3 ) { iMoveFlag = 0; } if( iMoveFlag > 0 ) { erPatientAgent.vSetStayHospital( 1 ); erPatientAgent.vSetStayHighCareUnitFlag( 1 ); erPatientAgent.vSetStayIntensiveCareUnitFlag( 0 ); erPatientAgent.vSetStayGeneralWardFlag( 0 ); bRet = true; } } return bRet; } /** * <PRE> * 患者エージェントの集中治療室判定を行います。 * </PRE> * @param erPatientAgent 対象となる患者エージェント * @return true 集中治療室へ移動 * false 集中治療室へは行かない */ public boolean isJudgeIntensiveCareUnit( ERPatientAgent erPatientAgent ) { boolean bRet = false; int iMoveFlag = 0; int iMoveJudgeFlag = 0; int i; // ここでは仮アルゴリズムとして、 // 各部位のAIS値が1つでも3以上のものがある場合は集中治療室に入院する判定を行う。 if( erPatientAgent.iGetStayIntensiveCareUnitFlag() == 0 ) { iMoveJudgeFlag = erPatientAgent.iGetNumberOfTrauma(); // System.out.println( lfJudgedAISHead + "," + lfJudgedAISFace + "," + lfJudgedAISNeck + "," + lfJudgedAISThorax + "," + lfJudgedAISAbdomen + "," + lfJudgedAISSpine + "," + lfJudgedAISUpperExtremity + "," + lfJudgedAISLowerExtremity + "," + lfJudgedAISUnspecified); if( 3 <= lfJudgedAISHead ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISFace ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISNeck ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISThorax ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISAbdomen ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISSpine ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISUpperExtremity ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISLowerExtremity ) { iMoveFlag += 1; } if( 3 <= lfJudgedAISUnspecified ) { iMoveFlag += 1; } if( iEmergencyLevel <= 2 ) { iMoveFlag += 1; } if( iMoveFlag > 0 ) { erPatientAgent.vSetStayHospitalFlag( 1 ); erPatientAgent.vSetStayIntensiveCareUnitFlag( 1 ); erPatientAgent.vSetStayHighCareUnitFlag( 0 ); erPatientAgent.vSetStayGeneralWardFlag( 0 ); bRet = true; } } return bRet; } /** * <PRE> * 患者エージェントの一般病棟判定を行います。 * </PRE> * @param erPatientAgent 対象となる患者エージェント * @return true 一般病棟へ移動可能 * false 一般病棟へ移動不可 */ public boolean isJudgeGeneralWard( ERPatientAgent erPatientAgent ) { boolean bRet = false; int iMoveFlag = 0; int iMoveJudgeFlag = 0; int i; // ここでは仮アルゴリズムとして、 // 各部位のAIS値が1つでも2以上のものがある場合は入院を実施する。 if( erPatientAgent.iGetStayGeneralWardFlag() == 0 ) { iMoveJudgeFlag = erPatientAgent.iGetNumberOfTrauma(); if( 1 <= lfJudgedAISHead && lfJudgedAISHead < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISFace && lfJudgedAISFace < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISNeck &&lfJudgedAISNeck < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISThorax && lfJudgedAISThorax < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISAbdomen && lfJudgedAISAbdomen < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISSpine && lfJudgedAISSpine < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISUpperExtremity && lfJudgedAISUpperExtremity < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISLowerExtremity && lfJudgedAISLowerExtremity < 2.5 ) { iMoveFlag += 1; } if( 1 <= lfJudgedAISUnspecified && lfJudgedAISUnspecified < 2.5 ) { iMoveFlag += 1; } else if( iEmergencyLevel == 3 ) { if( erPatientAgent.iGetStartEmergencyLevel() > iEmergencyLevel ) { // if( rnd.NextUnif() < 0.8 ) iMoveFlag = 0; } } else if( iEmergencyLevel == 4 ) { iMoveFlag += 1; if( erPatientAgent.iGetStartEmergencyLevel() >= iEmergencyLevel ) { // if( rnd.NextUnif() < 0.8 ) iMoveFlag = 0; } if( rnd.NextUnif() < 0.8 ) iMoveFlag = 0; } else if( iEmergencyLevel > 4 ) { iMoveFlag = 0; } // 高度治療室、集中治療室に入る重症度の場合はiMoveFlagを強制的に0にする。 if( 2 <= lfJudgedAISHead ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISFace ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISNeck ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISThorax ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISAbdomen ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISSpine ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISUpperExtremity ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISLowerExtremity ) { iMoveFlag = 0; } if( 2 <= lfJudgedAISUnspecified ) { iMoveFlag = 0; } if( iEmergencyLevel <= 3 ) { iMoveFlag = 0; } if( iMoveFlag > 0 ) { erPatientAgent.vSetStayHospital( 1 ); erPatientAgent.vSetStayGeneralWardFlag( 1 ); erPatientAgent.vSetStayIntensiveCareUnitFlag( 0 ); erPatientAgent.vSetStayHighCareUnitFlag( 0 ); bRet = true; } } return bRet; } public boolean isSurgeon() { boolean bRet = true; if( iSurgeon == 0 ) bRet = false; return bRet; } public void vSetSurgeon( int iSurgeonData ) { iSurgeon = iSurgeonData; } /** * <PRE> * 患者の手術時間を算出します。 * * </PRE> * @param erPatientAgent 患者エージェント * @return 手術時間 * @throws ERDoctorAgentException 医師エージェント例外クラス */ public int isJudgeOeprationTime( ERPatientAgent erPatientAgent ) throws ERDoctorAgentException { int i,j; int iNumOfTrauma = 0; int iOperationTimeData = 0; int iMaxOperationTime = -1; int iSumOperationTime = 0; double lfProb = 0.0; double lfPrevProb = 0.0; double lfRes = 0.0; double lfRand = 0.0; // 患者の真のAIS値を推定します。 iJudgeAIS( erPatientAgent ); // 外傷数を取得します。 iNumOfTrauma = erPatientAgent.iGetNumberOfTrauma(); iMaxOperationTime = 0; // 該当する手術時間を算出します。(重症度に応じて割り当てる必要はどうもないようだ。) for( j = 0;j < iNumOfTrauma; j++ ) { lfRand = rnd.NextUnif(); lfProb = lfPrevProb = 0.0; for( i = 0;i < 649; i++ ) { lfRes = lfCalcOperationTime( i, 2, 110 ); lfProb += lfRes/20.99971074; if( lfPrevProb <= lfRand && lfRand < lfProb ) { iOperationTimeData = i; break; } lfPrevProb = lfProb; } // iSumOperationTime += iOperationTimeData; lfRes = lfCalcOperationTime( lfRand, 2, 110 ); // iOperationTimeData = (int)lfRes; iMaxOperationTime = iOperationTimeData > iMaxOperationTime ? iOperationTimeData : iMaxOperationTime; } // 経験年数及び連携度に応じて手術時間を変更します。 iMaxOperationTime = (int)(iMaxOperationTime*lfCalcExperienceTime()*rnd.NextUnif()*lfOperationAssociateRate); return iMaxOperationTime*60; // return iSumOperationTime*60; } /** * <PRE> * ワイブル分布に当て込んで手術時間を算出する。 * </PRE> * @param lfData ワイブル分布データ * @param lfK 形状パラメータ * @param lfM 尺度パラメータ * @return 手術時間 */ private double lfCalcOperationTime( double lfData, double lfK, double lfM ) { double lfRes = 0.0; double lfA = 21.0; lfRes = lfA*lfK/lfM*Math.pow( lfData/lfM,lfK-1 )*Math.exp( -Math.pow( lfData/lfM,lfK ) ); // lfRes = lfK*Math.log( Math.pow( 1.0/(1-lfData)/lfM, 1.0/lfK ) ); return lfRes; } /** * <PRE> * 患者の診察時間を算出します。 * 厚生労働省統計データ 平成23年受療行動調査(確定数)の概況より参照 * </PRE> * @param erPatientAgent 患者エージェント * @return 診察時間 */ public double isJudgeConsultationTime( ERPatientAgent erPatientAgent ) { int iOperationTimeData = 0; int iMaxOperationTime = -1; int iSumOperationTime = 0; double lfRand = 0.0; double lfProb = 0.0; double lfPrevProb = 0.0; double lfAvg = 0.0; double lfStd = 0.0; // 診察に係る時間を算出します。 lfRand = rnd.NextUnif(); lfProb = 0.154846; lfPrevProb = 0.0; if( lfRand < lfProb ) { // 3分未満 lfAvg = 90; lfStd = 90; lfConsultationTime = lfAvg + lfStd*normalRand(); lfConsultationTime = lfConsultationTime > 180 ? 180 : lfConsultationTime; } lfPrevProb = lfProb; lfProb += 0.481087; if( lfPrevProb <= lfRand && lfRand < lfProb ) { // 3分以上10分未満 lfAvg = 390; lfStd = 210; lfConsultationTime = lfAvg + lfStd*normalRand(); lfConsultationTime = lfConsultationTime < 180 ? 180 : lfConsultationTime; lfConsultationTime = lfConsultationTime > 600 ? 600 : lfConsultationTime; } lfPrevProb = lfProb; lfProb += 0.276596; if( lfPrevProb <= lfRand && lfRand < lfProb ) { // 10分以上20分未満 lfAvg = 900; lfStd = 300; lfConsultationTime = lfAvg + lfStd*normalRand(); lfConsultationTime = lfConsultationTime < 600 ? 600 : lfConsultationTime; lfConsultationTime = lfConsultationTime > 1200 ? 1200 : lfConsultationTime; } lfPrevProb = lfProb; lfProb += 0.043735; if( lfPrevProb <= lfRand && lfRand < lfProb ) { // 20分以上30分未満 lfAvg = 1500; lfStd = 300; lfConsultationTime = lfAvg + lfStd*normalRand(); lfConsultationTime = lfConsultationTime < 1200 ? 1200 : lfConsultationTime; lfConsultationTime = lfConsultationTime > 1800 ? 1800 : lfConsultationTime; } lfPrevProb = lfProb; lfProb += 0.043735; if( lfPrevProb <= lfRand ) { // 30分以上 lfAvg = 2700; lfStd = 900; lfConsultationTime = lfAvg + lfStd*normalRand(); lfConsultationTime = lfConsultationTime < 1800 ? 1800 : lfConsultationTime; } // 経験年数及び連携度に応じて診察時間を変更します。 lfConsultationTime = lfConsultationTime*lfCalcExperienceTime()*lfConsultationAssociateRate; return lfConsultationTime; } /** * <PRE> * 経験年数を加算算出する式です。 * 初期値は3倍程度になり、経験年数が経過するにつれて1倍に近づきます。 * 診察時間、手術時間算出に使用します。 * </PRE> * @return 積算する重み。 * @author kobayashi * @since 2015/10/09 */ private double lfCalcExperienceTime() { double lfYearExperienceData = 0.0; lfYearExperienceData = lfYearExperience >= 5.0 ? 5.0 : lfYearExperience; return lfExperienceRate1 * Math.exp(-lfYearExperienceData*lfConExperience) + lfExperienceRate2; } /** * <PRE> * 経験年数を加算算出する式です。 * 初期値は0.8倍程度になり、経験年数が経過するにつれて1に近づきます。 * 5年以降は一定とします。 * </PRE> * @return 積算する重み。 * @author kobayashi * @since 2015/07/17 */ private double lfCalcExperienceAIS() { double lfYearExperienceData = 0.0; lfYearExperienceData = lfYearExperience >= 5.0 ? 5.0 : lfYearExperience; return -lfExperienceRateAIS1 * Math.exp(-lfYearExperienceData*lfConExperienceAIS) + lfExperienceRateAIS2; } /** * <PRE> * 経験年数を加算算出する式です。 * 初期値は1倍程度になり、経験年数が経過するにつれて0.5に近づきます。 * </PRE> * @return 積算する重み。 * @author kobayashi * @since 2015/07/17 */ private double lfCalcExperienceOperation() { double lfRes = 0.0; double lfYearExperienceData = 0.0; lfYearExperienceData = lfYearExperience >= 5.0 ? 5.0 : lfYearExperience; lfRes = lfExperienceRateOp1 * Math.exp(-lfYearExperienceData*lfConExperienceOp) + lfExperienceRateOp2; cDoctorAgentLog.info("経験年数パラメータ:" + lfRes); return lfRes; } /** * <PRE> * 疲労度を算出します。 * </PRE> * @author kobayashi * @since 2015/10/29 * @param lfCurrentTime 現在のシミュレーション経過時刻 */ private void vCalcFatigue( double lfCurrentTime ) { double lfRes = 0.0; double lfU = 0.0; double lfDeltaR = 0.0; double lfDeltaU = 0.0; double lfDeltaWorkLoad = 10.0; double lfFrameWidth = 0.5; // 500[ms] double lfMu = lfConTired1; // リカバー用パラメータ double lfOmega = lfConTired2; // リカバー用パラメータ double lfAlpha = lfConTired3; // 疲労用パラメータ double lfBeta = lfConTired4; // 疲労用パラメータ if( iCalcTiredFlag == 0 ) { // 初回は初期の値を代入します。 lfFatigue = lfMu*Math.exp( lfOmega*lfFrameWidth ); iCalcTiredFlag = 1; } else { if( iDoctorDepartment == 1 ) { // 診察室のワークロードを設定します。 lfDeltaWorkLoad = 10; } else if( iDoctorDepartment == 2 ) { // 手術室のワークロードを設定します。 lfDeltaWorkLoad = 5; } else if( iDoctorDepartment == 3 ) { // 初療室のワークロードを設定します。 lfDeltaWorkLoad = 20; } lfDeltaU = lfAlpha*Math.exp( lfBeta*lfDeltaWorkLoad ); lfFatigue = (lfFatigue + lfDeltaU)/(1.0+Math.exp( lfOmega*lfFrameWidth )); } cDoctorAgentLog.info(this.getId() + "," + "疲労度パラメータ:" + lfFatigue ); } /** * <PRE> * 連携度を設定します。 * 看護師エージェントが複数人いる場合、徐々に診察の効率が増します。 * </PRE> * @param ArrayListNurseAgents 医師が所属する室に所属している全看護師エージェント * @return 積算する重み。 * @author kobayashi * @since 2015/10/11 */ public double lfCalcAssociateRateConsultation( ArrayList<ERNurseAgent> ArrayListNurseAgents ) { int i; double lfRes = 0.0; for( i = 0;i < ArrayListNurseAgents.size(); i++ ) { lfRes += ArrayListNurseAgents.get(i).lfGetAssociationRate(); } lfConsultationAssociateRate = 0.9*Math.exp( -0.09*1.0/lfRes )+0.1; lfConsultationAssociateRate = lfConsultationAssociateRate < 0.5 ? 0.5 : lfConsultationAssociateRate; cDoctorAgentLog.info(this.getId() + "," + "連携度:" + lfConsultationAssociateRate); return lfConsultationAssociateRate; } /** * <PRE> * 連携度を設定します。 * 医師エージェントが複数人いる場合及び看護師エージェントが複数人いる場合、徐々に手術の効率が増します。 * </PRE> * @param ArrayListDoctorAgents 所属している医師エージェント * @param ArrayListNurseAgents 所属している看護師エージェント * @return 積算する重み。 * @author kobayashi * @since 2015/10/11 */ public double lfCalcAssociateRateOperation( ArrayList<ERDoctorAgent> ArrayListDoctorAgents, ArrayList<ERNurseAgent> ArrayListNurseAgents ) { int i; double lfRes = 0.0; for( i = 0;i < ArrayListDoctorAgents.size(); i++ ) { lfRes += ArrayListDoctorAgents.get(i).lfGetAssociationRate(); } for( i = 0;i < ArrayListNurseAgents.size(); i++ ) { lfRes += ArrayListNurseAgents.get(i).lfGetAssociationRate(); } lfOperationAssociateRate = 0.9*Math.exp( -0.09*1.0/lfRes )+0.1; lfOperationAssociateRate = lfOperationAssociateRate < 0.5 ? 0.5 : lfOperationAssociateRate; cDoctorAgentLog.info("連携度:" + lfOperationAssociateRate); return lfOperationAssociateRate; } /** * <PRE> * 初療室での処置時間を取得します。 * </PRE> * @return 初療室の処置時間 */ public double lfGetEmergencyTime() { return lfEmergencyTime; } /** * <PRE> * 診察にかかる時間を設定します。 * </PRE> * @param lfTime 診察時間 */ public void vSetConsultationTime( double lfTime ) { lfConsultationTime = lfTime; // 診察時間 } /** * <PRE> * 手術にかかる時間を設定します。 * </PRE> * @param lfTime 手術時間 */ public void vSetOperationTime( double lfTime ) { lfOperationTime = lfTime; // 手術時間 } /** * <PRE> * 初療室でかかる時間を設定します。 * </PRE> * @param lfTime 初療室の処置時間 */ public void vSetEmergencyTime( double lfTime ) { lfEmergencyTime = lfTime; // 初療室対応時間 } /** * <PRE> * 医師の所属部門を設定します。 * </PRE> * @param iDepartment 医師が所属する部屋 */ public void vSetDoctorDepartment( int iDepartment ) { iDoctorDepartment = iDepartment; } /** * <PRE> * 経験年数重みを設定します。 * </PRE> * @param lfCon 経験年数重み */ public void vSetConExperience( double lfCon ) { lfConExperience = lfCon; } /** * <PRE> * 経験年数を設定します。 * </PRE> * @param lfCon 経験年数 */ public void vSetYearExperience( double lfCon ) { lfYearExperience = lfCon; } /** * <PRE> * 疲労度パラメータ1を設定します。 * </PRE> * @param lfCon 疲労度1 */ public void vSetConTired1( double lfCon ) { lfConTired1 = lfCon; } /** * <PRE> * 疲労度パラメータ2を設定します。 * </PRE> * @param lfCon 疲労度2 */ public void vSetConTired2( double lfCon ) { lfConTired2 = lfCon; } /** * <PRE> * 疲労度パラメータ3を設定します。 * </PRE> * @param lfCon 疲労度3 */ public void vSetConTired3( double lfCon ) { lfConTired3 = lfCon; } /** * <PRE> * 疲労度パラメータ4を設定します。 * </PRE> * @param lfCon 疲労度4 */ public void vSetConTired4( double lfCon ) { lfConTired4 = lfCon; } /** * <PRE> * 疲労度を設定します。 * </PRE> * @param lfCon 疲労度 */ public void vSetTiredRate( double lfCon ) { lfTiredRate = lfCon; } /** * <PRE> * 手術による重症度改善値を設定します。 * </PRE> * @param lfCon 手術改善度 */ public void vSetRevisedOperationRate( double lfCon ) { lfRevisedOperationRate = lfCon; } /** * <PRE> * 初療室による重症度改善値を設定します。 * </PRE> * @param lfCon 初療室処置改善度 */ public void vSetRevisedEmergencyRate( double lfCon ) { lfRevisedEmergencyRate = lfCon; } /** * <PRE> * 他のエージェントとの連携度を設定します。 * </PRE> * @param lfCon 連携度 */ public void vSetAssociationRate( double lfCon ) { lfAssociationRate = lfCon; } /** * <PRE> * 患者エージェントが移動中か否かを表すフラグです。 * 0 移動していない。 * 1 移動している。 * </PRE> * @param iData 移動中か否かのフラグ0 or 1 */ public void vSetPatientMoveWaitFlag( int iData ) { iPatientMoveWaitFlag = iData; } /** * <PRE> * 経験値による重みづけ計算に使用するパラメータ(その1)です。 * </PRE> * @param lfData 経験値による重みづけパラメータ(その1) */ public void vSetExperienceRate1( double lfData ) { lfExperienceRate1 = lfData; } /** * <PRE> * 経験値による重みづけ計算に使用するパラメータ(その2)です。 * </PRE> * @param lfData 経験値による重みづけパラメータ(その2) */ public void vSetExperienceRate2( double lfData ) { lfExperienceRate2 = lfData; } /** * <PRE> * 経験値(AIS重症度)による重みづけ計算に使用するパラメータです。 * </PRE> * @param lfData 経験値による重みづけパラメータ(AIS重症度) */ public void vSetConExperienceAIS( double lfData ) { lfConExperienceAIS = lfData; } /** * <PRE> * 経験値(AIS重症度)による重みづけ計算に使用するパラメータ(その1)です。 * </PRE> * @param lfData 経験値(AIS重症度)による重みづけパラメータ(その1) */ public void vSetExperienceRateAIS1( double lfData ) { lfExperienceRateAIS1 = lfData; } /** * <PRE> * 経験値(AIS重症度)による重みづけ計算に使用するパラメータ(その2)です。 * </PRE> * @param lfData 経験値(AIS重症度)による重みづけパラメータ(その2) */ public void vSetExperienceRateAIS2( double lfData ) { lfExperienceRateAIS2 = lfData; } /** * <PRE> * 所属している部屋番号を設定します。 * </PRE> * @param iNum 部屋番号 */ public void vSetRoomNumber( int iNum ) { iRoomNumber = iNum; } /** * <PRE> * 現在の医師が作業開始してからの時間を取得します。 * なお、診察室の医師ならば、1患者開始からの時間で、 * 終了したら0に初期化します。 * </PRE> * @return 医師の現在の作業時間 */ public double lfGetCurrentPassOverTime() { return lfCurrentPassOverTime; } /** * <PRE> * 医師エージェントが検査依頼したかどうかを取得します。 * </PRE> * @return 依頼部位 */ public int iGetRequestExamination() { return iRequestExamination; } public double lfGetAssociationRate() { return lfAssociationRate; } /** * <PRE> * 医師エージェントへ診察結果送信の設定をします。 * </PRE> * @param erPAgent 検査対象の患者エージェント * @param iFromAgentId 送信先のエージェント(ここでは医師エージェント) * @param iToAgentId 送信元のエージェント(ここでは医師エージェント) * @author kobayashi * @since 2015/07/23 */ public void vSendToDoctorAgentMessage( ERPatientAgent erPAgent, int iFromAgentId, int iToAgentId ) { Message mesSend; mesSend = new Message(); mesSend.setData( new MessageFromDocToDoc() ); mesSend.setFromAgent( iFromAgentId ); mesSend.setToAgent( iToAgentId ); ((MessageFromDocToDoc)mesSend.getData()).vSetERPatientAgent( erPAgent ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISHead( lfJudgedAISHead ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISFace( lfJudgedAISFace ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISNeck( lfJudgedAISNeck ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISThorax( lfJudgedAISThorax ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISAbdomen( lfJudgedAISAbdomen ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISSpine( lfJudgedAISSpine ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISUpperExtremity( lfJudgedAISUpperExtremity ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISLowerExtremity( lfJudgedAISLowerExtremity ); ((MessageFromDocToDoc)mesSend.getData()).vSetJudgedAISUnspecified( lfJudgedAISUnspecified ); if( iDoctorDepartment == 1 ) ((MessageFromDocToDoc)mesSend.getData()).vSetConsultationTime( lfCurrentPassOverTime ); else ((MessageFromDocToDoc)mesSend.getData()).vSetConsultationTime( 0.0 ); if( iDoctorDepartment == 2 || iDoctorDepartment == 3 ) ((MessageFromDocToDoc)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); else ((MessageFromDocToDoc)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); ((MessageFromDocToDoc)mesSend.getData()).vSetEmergencyLevel( iEmergencyLevel ); ((MessageFromDocToDoc)mesSend.getData()).vSetFromDoctorDepartment( iDoctorDepartment ); this.vSendMessage( mesSend ); } /** * <PRE> * 看護師エージェントへ診察結果送信の設定をします。 * </PRE> * @param erPAgent 検査対象の患者エージェント * @param erNurseAgent 担当看護師エージェント * @param iFromAgentId 送信先のエージェント(ここでは医師エージェント) * @param iToAgentId 送信元のエージェント(ここでは看護師エージェント) * @author kobayashi * @since 2015/07/23 */ public void vSendToNurseAgentMessage( ERPatientAgent erPAgent, ERNurseAgent erNurseAgent, int iFromAgentId, int iToAgentId ) { Message mesSend; mesSend = new Message(); mesSend.setData( new MessageFromDocToNurse() ); mesSend.setFromAgent( iFromAgentId ); mesSend.setToAgent( iToAgentId ); ((MessageFromDocToNurse)mesSend.getData()).vSetERPatientAgent( erPAgent ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISHead( lfJudgedAISHead ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISFace( lfJudgedAISFace ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISNeck( lfJudgedAISNeck ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISThorax( lfJudgedAISThorax ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISAbdomen( lfJudgedAISAbdomen ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISSpine( lfJudgedAISSpine ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISUpperExtremity( lfJudgedAISUpperExtremity ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISLowerExtremity( lfJudgedAISLowerExtremity ); ((MessageFromDocToNurse)mesSend.getData()).vSetExamAISUnspecified( lfJudgedAISUnspecified ); if( iDoctorDepartment == 1 ) ((MessageFromDocToNurse)mesSend.getData()).vSetConsultationTime( lfCurrentPassOverTime ); else ((MessageFromDocToNurse)mesSend.getData()).vSetConsultationTime( 0.0 ); if( iDoctorDepartment == 2 || iDoctorDepartment == 3 ) ((MessageFromDocToNurse)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); else ((MessageFromDocToNurse)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); ((MessageFromDocToNurse)mesSend.getData()).vSetEmergencyLevel( iEmergencyLevel ); ((MessageFromDocToNurse)mesSend.getData()).vSetDoctorDepartment( iDoctorDepartment ); // this.sendMessage( mesSend ); // 対象となる看護師エージェントが自分自身でメッセージ送信します。 erNurseAgent.vSendMessage( mesSend ); } /** * <PRE> * 医療技師エージェントへ検査依頼送信の設定をします。 * </PRE> * @param erPAgent 検査対象の患者エージェント * @param erClinicalEngineerAgent 担当医療技師エージェント * @param iFromAgentId 送信先のエージェント(ここでは医師エージェント) * @param iToAgentId 送信元のエージェント(ここでは看護師エージェント) * @author kobayashi * @since 2015/07/23 */ public void vSendToEngineerAgentMessage( ERPatientAgent erPAgent, ERClinicalEngineerAgent erClinicalEngineerAgent, int iFromAgentId, int iToAgentId ) { Message mesSend; mesSend = new Message(); mesSend.setData( new MessageFromDocToEng() ); mesSend.setFromAgent( iFromAgentId ); mesSend.setToAgent( iToAgentId ); ((MessageFromDocToEng)mesSend.getData()).vSetERPatientAgent( erPAgent ); ((MessageFromDocToEng)mesSend.getData()).vSetRequestExamination( iRequestExamination ); ((MessageFromDocToEng)mesSend.getData()).vSetRequestAnatomy( aiRequestAnatomys ); ((MessageFromDocToEng)mesSend.getData()).vSetRequestExaminationNum( iRequestExaminationNum ); ((MessageFromDocToEng)mesSend.getData()).vSetConsultationTime( lfCurrentPassOverTime ); if( iDoctorDepartment == 1 ) ((MessageFromDocToEng)mesSend.getData()).vSetConsultationTime( lfCurrentPassOverTime ); else ((MessageFromDocToEng)mesSend.getData()).vSetConsultationTime( 0.0 ); // if( iDoctorDepartment == 2 || iDoctorDepartment == 3 ) ((MessageFromDocToEng)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); // else ((MessageFromDocToEng)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); ((MessageFromDocToEng)mesSend.getData()).vSetEmergencyLevel( iEmergencyLevel ); ((MessageFromDocToEng)mesSend.getData()).vSetDoctorDepartment( iDoctorDepartment ); // this.sendMessage( mesSend ); // 対象となる医療技師エージェントが自分自身にメッセージ送信します。 erClinicalEngineerAgent.vSendMessage( mesSend ); } /** * <PRE> * 患者エージェントへ診察結果送信の設定をします。 * </PRE> * @param erPAgent 患者エージェントのインスタンス * @param iFromAgentId 送信先のエージェント(ここでは患者エージェント) * @param iToAgentId 送信元のエージェント(ここでは看護師エージェント) * @author kobayashi * @since 2015/07/23 */ void vSendToPatientAgentMessage( ERPatientAgent erPAgent, int iFromAgentId, int iToAgentId ) { Message mesSend; mesSend = new Message(); mesSend.setData( new MessageFromDocToPat() ); mesSend.setFromAgent( iFromAgentId ); mesSend.setToAgent( iToAgentId ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISHead( lfExamAISHead ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISFace( lfExamAISFace ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISNeck( lfExamAISNeck ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISThorax( lfExamAISThorax ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISAbdomen( lfExamAISAbdomen ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISSpine( lfExamAISSpine ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISUpperExtremity( lfExamAISUpperExtremity ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISLowerExtremity( lfExamAISLowerExtremity ); ((MessageFromDocToPat)mesSend.getData()).vSetExamAISUnspecified( lfExamAISUnspecified ); ((MessageFromDocToPat)mesSend.getData()).vSetEmergencyLevel( iEmergencyLevel ); if( iDoctorDepartment == 1 ) ((MessageFromDocToPat)mesSend.getData()).vSetConsultationTime( lfCurrentPassOverTime ); else ((MessageFromDocToPat)mesSend.getData()).vSetConsultationTime( 0.0 ); if( iDoctorDepartment == 2 || iDoctorDepartment == 3 ) ((MessageFromDocToPat)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); else ((MessageFromDocToPat)mesSend.getData()).vSetOperationTime( lfCurrentPassOverTime ); ((MessageFromDocToPat)mesSend.getData()).vSetEmergencyLevel( iEmergencyLevel ); ((MessageFromDocToPat)mesSend.getData()).vSetDoctorDepartment( iDoctorDepartment ); // this.sendMessage( mesSend ); // 対象となる患者エージェントが自分自身にメッセージ送信します。 erPAgent.vSendMessage( mesSend ); } public void vSendMessage( Message mess ) { if( mesQueueData != null ) { mesQueueData.add( mess ); } } public Message messGetMessage() { Message mes = null; if( mesQueueData != null ) { mes = mesQueueData.poll(); } return mes; } @Override public void action(long timeStep) { int i; double lfSecond = timeStep / 1000.0; int iDoctorMessFlag = 0; int iNurseMessFlag = 0; int iClinicalEngineerMessFlag = 0; int iSurvivalFlag = 1; // TODO 自動生成されたメソッド・スタブ ERDoctorAgentException edae; edae = new ERDoctorAgentException(); try { Message mess = null; // 看護師、医師からのメッセージを1つずつ取得します。 // 対応中でない場合のみメッセージを取得します。 if( this.iGetAttending() == 0 ) { mess = messGetMessage(); if( mess != null ) { // 医師からのメッセージかどうかを判定します。 if( mess.getData() instanceof MessageFromDocToDoc ) { // 診察内容を取得します。 // 部屋の想定は診察室、初療室、手術室、 // 外傷の状況を取得します。 // lfJudgedAISHead = ((MessageFromDocToDoc)mess.getData()).lfGetAISHead(); // lfJudgedAISFace = ((MessageFromDocToDoc)mess.getData()).lfGetAISFace(); // lfJudgedAISNeck = ((MessageFromDocToDoc)mess.getData()).lfGetAISNeck(); // lfJudgedAISThorax = ((MessageFromDocToDoc)mess.getData()).lfGetAISThorax(); // lfJudgedAISAbdomen = ((MessageFromDocToDoc)mess.getData()).lfGetAISAbdomen(); // lfJudgedAISSpine = ((MessageFromDocToDoc)mess.getData()).lfGetAISSpine(); // lfJudgedAISUpperExtremity = ((MessageFromDocToDoc)mess.getData()).lfGetAISUpperExtremity(); // lfJudgedAISLowerExtremity = ((MessageFromDocToDoc)mess.getData()).lfGetAISLowerExtremity(); // lfJudgedAISUnspecified = ((MessageFromDocToDoc)mess.getData()).lfGetAISUnspecified(); // 担当した医師エージェントを取得します。 iFromDoctorDepartment = ((MessageFromDocToDoc)mess.getData()).iGetFromDoctorDepartment(); iFromDoctorId = (int)mess.getFromAgentId(); iEmergencyLevel = ((MessageFromDocToDoc)mess.getData()).iGetEmergencyLevel(); // lfConsultationTime = ((MessageFromDocToDoc)mess.getData()).lfGetConsultationTime(); // これから対応する患者エージェントを取得します。 erPatientAgent = ((MessageFromDocToDoc)mess.getData()).cGetERPatientAgent(); iDoctorMessFlag = 1; } // 看護師からのメッセージかどうかを判定します。 if( mess.getData() instanceof MessageFromNurseToDoc ) { // 観察内容を取得します。 // 外傷の状況を取得します。 // lfJudgedAISHead = ((MessageFromNurseToDoc)mess.getData()).lfGetAISHead(); // lfJudgedAISFace = ((MessageFromNurseToDoc)mess.getData()).lfGetAISFace(); // lfJudgedAISNeck = ((MessageFromNurseToDoc)mess.getData()).lfGetAISNeck(); // lfJudgedAISThorax = ((MessageFromNurseToDoc)mess.getData()).lfGetAISThorax(); // lfJudgedAISAbdomen = ((MessageFromNurseToDoc)mess.getData()).lfGetAISAbdomen(); // lfJudgedAISSpine = ((MessageFromNurseToDoc)mess.getData()).lfGetAISSpine(); // lfJudgedAISUpperExtremity = ((MessageFromNurseToDoc)mess.getData()).lfGetAISUpperExtremity(); // lfJudgedAISLowerExtremity = ((MessageFromNurseToDoc)mess.getData()).lfGetAISLowerExtremity(); // lfJudgedAISUnspecified = ((MessageFromNurseToDoc)mess.getData()).lfGetAISUnspecified(); // 担当した看護師エージェントを取得します。 iNurseDepartment = ((MessageFromNurseToDoc)mess.getData()).iGetNurseDepartment(); iNurseId = (int)mess.getFromAgentId(); iEmergencyLevel = ((MessageFromNurseToDoc)mess.getData()).iGetEmergencyLevel(); lfObservationTime = ((MessageFromNurseToDoc)mess.getData()).lfGetObservationTime(); // これから対応する患者エージェントを取得します。 erPatientAgent = ((MessageFromNurseToDoc)mess.getData()).cGetERPatientAgent(); iNurseMessFlag = 1; } // 医療技師からのメッセージかどうかを判定します。 if( mess.getData() instanceof MessageFromEngToDoc ) { // 観察内容を取得します。 // 外傷の状況を取得します。 lfJudgedAISHead = ((MessageFromEngToDoc)mess.getData()).lfGetAISHead(); lfJudgedAISFace = ((MessageFromEngToDoc)mess.getData()).lfGetAISFace(); lfJudgedAISNeck = ((MessageFromEngToDoc)mess.getData()).lfGetAISNeck(); lfJudgedAISThorax = ((MessageFromEngToDoc)mess.getData()).lfGetAISThorax(); lfJudgedAISAbdomen = ((MessageFromEngToDoc)mess.getData()).lfGetAISAbdomen(); lfJudgedAISSpine = ((MessageFromEngToDoc)mess.getData()).lfGetAISSpine(); lfJudgedAISUpperExtremity = ((MessageFromEngToDoc)mess.getData()).lfGetAISUpperExtremity(); lfJudgedAISLowerExtremity = ((MessageFromEngToDoc)mess.getData()).lfGetAISLowerExtremity(); lfJudgedAISUnspecified = ((MessageFromEngToDoc)mess.getData()).lfGetAISUnspecified(); // 担当した医療技師エージェントを取得します。 iClinicalEngineerDepartment = ((MessageFromEngToDoc)mess.getData()).iGetClinicalEngineerDepartment(); iClinicalEngineerId = (int)mess.getFromAgentId(); lfExaminationTime = ((MessageFromEngToDoc)mess.getData()).lfGetExaminationTime(); // これから対応する患者エージェントを取得します。 erPatientAgent = ((MessageFromEngToDoc)mess.getData()).cGetERPatientAgent(); iClinicalEngineerMessFlag = 1; } // 患者からのメッセージかどうかを判定します。 // (医師、看護師及び医療技師以外で受信するメッセージは患者しかいないため。) if( iDoctorMessFlag != 1 && iNurseMessFlag != 1 && iClinicalEngineerMessFlag != 1 ) { // 観察内容を取得します。 // 外傷の状況を取得します。 // 患者が訴える症状を取得します。 if( mess.getData() instanceof MessageFromPatToNurse ) { strInjuryHeadStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryHeadStatus(); strInjuryFaceStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryFaceStatus(); strInjuryNeckStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryNeckStatus(); strInjuryThoraxStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryThoraxStatus(); strInjuryAbdomenStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryAbdomenStatus(); strInjurySpineStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjurySpineStatus(); strInjuryUpperExtremityStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryUpperExtremityStatus(); strInjuryLowerExtremityStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryLowerExtremityStatus(); strInjuryUnspecifiedStatus = ((MessageFromPatToDoc)mess.getData()).strGetInjuryUnspecifiedStatus(); // 担当した患者エージェントを取得します。 iPatientLocation = ((MessageFromPatToDoc)mess.getData()).iGetPatientLocation(); iPatientId = (int)mess.getFromAgentId(); lfWaitTime = ((MessageFromPatToDoc)mess.getData()).lfGetWaitTime(); iSurvivalFlag = ((MessageFromPatToDoc)mess.getData()).iGetSurvivalFlag(); // 患者が生存していない場合は医師の各種フラグを初期化する。 if( iSurvivalFlag == 0 ) { iConsultationAttending = 0; iOperationAttending = 0; iEmergencyAttending = 0; iPatientMoveWaitFlag = 0; lfCurrentPassOverTime = 0.0; lfCurrentEmergencyTime = 0.0; lfCurrentOperationTime = 0.0; lfCurrentConsultationTime = 0.0; } } } } } // 診察中であれば、経過時間を計算します。 if( iConsultationAttending == 1 ) { lfCurrentPassOverTime += lfSecond; lfCurrentConsultationTime += lfSecond; lfTotalConsultationTime += lfSecond; } else { // 手術中であれば、経過時間を計算します。 if( iOperationAttending == 1 ) { if( iPatientMoveWaitFlag == 0 ) { lfCurrentPassOverTime += lfSecond; lfCurrentOperationTime += lfSecond; lfTotalOperationTime += lfSecond; } } else { // 初療室対応中であれば、経過時間を計算します。 if( iEmergencyAttending == 1 ) { if( iPatientMoveWaitFlag == 0 ) { lfCurrentPassOverTime += lfSecond; lfCurrentEmergencyTime += lfSecond; lfTotalEmergencyTime += lfSecond; } } else { if( iPatientMoveWaitFlag == 0 ) { lfCurrentPassOverTime = 0.0; lfCurrentEmergencyTime = 0.0; lfCurrentOperationTime = 0.0; lfCurrentConsultationTime = 0.0; } } } } // 対応中の場合、疲労の計算をします。 if( this.iGetAttending() == 1 ) { vCalcFatigue( lfTimeCourse ); } if( erPatientAgent != null ) { // なくなったので患者エージェントを削除します。 if( erPatientAgent.iGetSurvivalFlag() == 0 ) { iConsultationAttending = 0; // 診察室対応中フラグ iOperationAttending = 0; // 手術室対応中フラグ iEmergencyAttending = 0; // 初療室対応中フラグ iEmergencyLevel = 6; // 緊急度 iPatientMoveWaitFlag = 0; lfCurrentPassOverTime = 0.0; lfCurrentEmergencyTime = 0.0; lfCurrentOperationTime = 0.0; lfCurrentConsultationTime = 0.0; erPatientAgent = null; } } if( iInverseSimMode == 0 ) { // 終了100秒前からファイルに書き始めます。(長時間処理のため) vWriteFile( iFileWriteMode, lfTotalTime ); } lfTimeCourse += lfSecond; lfTotalTime += lfSecond; } catch( NullPointerException npe ) { StackTraceElement ste[] = (new Throwable()).getStackTrace(); edae.SetErrorInfo( ERDA_NULLPOINT_ERROR, "action", "ERDoctorAgent", "NULLポイントアクセスエラー", ste[0].getLineNumber() ); // エラー詳細を出力 String strMethodName = edae.strGetMethodName(); String strClassName = edae.strGetClassName(); String strErrDetail = edae.strGetErrDetail(); int iErrCode = edae.iGetErrCode(); int iErrLine = edae.iGetErrorLine(); cDoctorAgentLog.warning( strClassName + "," + strMethodName + "," + strErrDetail + "," + iErrCode + "," + iErrLine ); for( i = 0;i < npe.getStackTrace().length; i++ ) { String str = "クラス名" + "," + npe.getStackTrace()[i].getClassName(); str += "メソッド名" + "," + npe.getStackTrace()[i].getMethodName(); str += "ファイル名" + "," + npe.getStackTrace()[i].getFileName(); str += "行数" + "," + npe.getStackTrace()[i].getLineNumber(); cDoctorAgentLog.warning( str ); } } catch( RuntimeException re ) { StackTraceElement ste[] = (new Throwable()).getStackTrace(); edae.SetErrorInfo( ERDA_FATAL_ERROR, "action", "ERDoctorAgent", "不明、および致命的エラー", ste[0].getLineNumber() ); // エラー詳細を出力 String strMethodName = edae.strGetMethodName(); String strClassName = edae.strGetClassName(); String strErrDetail = edae.strGetErrDetail(); int iErrCode = edae.iGetErrCode(); int iErrLine = edae.iGetErrorLine(); cDoctorAgentLog.warning( re.getLocalizedMessage() + "," + strClassName + "," + strMethodName + "," + strErrDetail + "," + iErrCode + "," + iErrLine ); for( i = 0;i < re.getStackTrace().length; i++ ) { String str = "クラス名" + "," + re.getStackTrace()[i].getClassName(); str += "メソッド名" + "," + re.getStackTrace()[i].getMethodName(); str += "ファイル名" + "," + re.getStackTrace()[i].getFileName(); str += "行数" + "," + re.getStackTrace()[i].getLineNumber(); cDoctorAgentLog.warning( str ); } } catch( IOException ioe ) { StackTraceElement ste[] = (new Throwable()).getStackTrace(); edae.SetErrorInfo( ERDA_FATAL_ERROR, "action", "ERDoctorAgent", "不明、および致命的エラー", ste[0].getLineNumber() ); // エラー詳細を出力 String strMethodName = edae.strGetMethodName(); String strClassName = edae.strGetClassName(); String strErrDetail = edae.strGetErrDetail(); int iErrCode = edae.iGetErrCode(); int iErrLine = edae.iGetErrorLine(); cDoctorAgentLog.warning( strClassName + "," + strMethodName + "," + strErrDetail + "," + iErrCode + "," + iErrLine ); for( i = 0;i < ioe.getStackTrace().length; i++ ) { String str = "クラス名" + "," + ioe.getStackTrace()[i].getClassName(); str += "メソッド名" + "," + ioe.getStackTrace()[i].getMethodName(); str += "ファイル名" + "," + ioe.getStackTrace()[i].getFileName(); str += "行数" + "," + ioe.getStackTrace()[i].getLineNumber(); cDoctorAgentLog.warning( str ); } } } /** * <PRE> * 医師エージェントのログ出力設定をします。 * </PRE> * @param log java標準のロガークラスのインスタンス */ public void vSetLog(Logger log) { // TODO 自動生成されたメソッド・スタブ cDoctorAgentLog = log; } /** * <PRE> * シミュレーションの終了時間を設定します。 * </PRE> * @param lfEndTime 終了時間(秒指定) */ public void vSetSimulationEndTime( double lfEndTime ) { lfSimulationEndTime = lfEndTime; } /** * <PRE> * 逆シミュレーションモードを設定します。 * </PRE> * @param iMode 逆シミュレーションのモード */ public void vSetInverseSimMode( int iMode ) { iInverseSimMode = iMode; } /** * <PRE> * クリティカルセクションを設定します。 * </PRE> * @param cs クリティカルセクションのインスタンス */ public void vSetCriticalSection(Object cs) { // TODO 自動生成されたメソッド・スタブ erDoctorCriticalSection = cs; } /** * <PRE> * 正規乱数を発生させます。-1.0以下、1.0以上が乱数を発生させた結果出力された場合、 * 再度乱数を発生させます。乱数発生回数の繰り返し回数は100回とします。 * </PRE> * @return 正規乱数の結果(-1.0 &lt;= rand &lt;= 1.0) */ public double normalRand() { double lfRes = 0.0; int i; for( i = 0;i < 100; i++ ) { lfRes = rnd.NextNormal(); if( -1.0 <= lfRes && lfRes <= 1.0 ) break; } // この場合は一様乱数ではっせさせます。 if( i == 100 ) { lfRes = rnd.NextUnif(); } return lfRes; } /** * <PRE> * weibull分布関数の逆関数。 * </PRE> * @param lfAlpha 調整パラメータ1 * @param lfBeta 調整パラメータ2 * @param lfRand 入力値 * @return 逆関数値 */ private double InvWeibull( double lfAlpha, double lfBeta, double lfRand ) { double lfRes = 0.0; lfRes = lfBeta*Math.pow( Math.log( 1.0/(1.0-lfRand) ), 1.0/lfAlpha ); return lfRes; } /** * <PRE> * weibull分布乱数を発生させます。-1.0以下、1.0以上が乱数を発生させた結果出力された場合、 * 再度乱数を発生させます。乱数発生回数の繰り返し回数は100回とします。 * </PRE> * @param lfAlpha 調整パラメータ1 * @param lfBeta 調整パラメータ2 * @return ワイブル分布乱数 */ public double weibullRand( double lfAlpha, double lfBeta ) { double lfRes = 0.0; double lfRand = 0.0; int i; for( i = 0;i < 100; i++ ) { if( rnd == null ) lfRand = Math.random(); else lfRand = rnd.NextUnif(); lfRand = lfRand >= 1.0 ? 0.9999999999 : lfRand; lfRes = InvWeibull( lfAlpha, lfBeta, lfRand ); if( -1.0 <= lfRes && lfRes <= 1.0 ) break; } // この場合は一様乱数で発生させます。 if( i == 100 ) { lfRes = rnd.NextUnif(); } return lfRes; } /** * <PRE> * ファイルの書き込みを行います。 * </PRE> * @param iFlag ファイル書き込みモード * @param lfTime ファイル書き込み時間 * @throws IOException ファイル処理エラー */ public void vWriteFile( int iFlag, double lfTime ) throws IOException { String strData = lfTimeCourse + "," + lfCurrentConsultationTime + "," + lfCurrentOperationTime + "," + lfCurrentEmergencyTime + "," + iTotalConsultationNum +"," + iTotalOperationNum + "," + iTotalEmergencyNum + "," + iDoctorDepartment + "," + iSurgeon +","; strData += lfJudgedAISHead + "," + lfJudgedAISFace + "," + lfJudgedAISNeck + "," + lfJudgedAISThorax + "," + lfJudgedAISAbdomen + "," + lfJudgedAISSpine + "," + lfJudgedAISLowerExtremity + "," + lfJudgedAISUpperExtremity + "," + lfJudgedAISUnspecified; // 終了時の書き込みか、特に指定していない場合 if( iFlag == 0 ) { csvWriteAgentData.vWrite( strData ); } else { // 開始時の書き込み if( lfTime <= 100.0 ) { csvWriteAgentStartData.vWrite( strData ); } // 終了時の書き込み if( lfTime >= lfSimulationEndTime-100.0 ) { csvWriteAgentData.vWrite( strData ); } } } /** * <PRE> * メルセンヌツイスターインスタンスを設定します。 * </PRE> * @param sfmtRandom メルセンヌツイスターインスタンス */ public void vSetRandom(utility.sfmt.Rand sfmtRandom ) { // TODO 自動生成されたメソッド・スタブ rnd = sfmtRandom; } public void vSetInitParam(InitSimParam initparam) { // TODO 自動生成されたメソッド・スタブ initSimParam = initparam; } /** * <PRE> * 医師エージェントが何階にいるか取得します。 * </PRE> * @return 患者エージェントの現在いる階数 */ public int iGetFloor() { return erTriageNode.iGetFloor(); } /** * <PRE> * 医師エージェントが何階にいるか設定します。 * </PRE> * @param 現在いる階数 */ public void vSetFloor( int iFloorData ) { erTriageNode.vSetFloor( iFloorData ); } /** * <PRE> * トリアージプロトコルの設定をします。 * </PRE> * @param cCurNode トリアージプロトコル */ public void vSetTriageNode( ERTriageNode cCurNode ) { erTriageNode = cCurNode; } /** * <PRE> * トリアージプロトコルを取得します。 * </PRE> * @return トリアージプロトコル */ public ERTriageNode erGetTriageNode() { return erTriageNode; } }
73da49f40498487cde1ca7dbea542c23734c805b
9eb4b540dc044b7aae0b8d6b2d3ea120af04e5ec
/src/salud/isa/gsonMedDB/Medicine.java
1f98001848787549dc4bbf64e36fde07cadf546f
[]
no_license
Pblazquez/ISA1819JSON-BLAZQUEZ
13b837e765a20af2b195b1deb6ca8ea6da44b702
a86665f5b56b2773ff28a42d4455bb72fad1a398
refs/heads/master
2020-05-07T18:37:58.169807
2019-04-11T11:20:51
2019-04-11T11:20:51
180,776,176
0
0
null
null
null
null
UTF-8
Java
false
false
1,449
java
package salud.isa.gsonMedDB; import java.io.IOException; import com.google.gson.stream.JsonReader; public class Medicine extends Cadena { private static final String MEDICINE = "medicines"; private static final String NAME = "name"; public Medicine(Cadena med) throws IOException { setSucesor(med); } private StringBuffer readMedicines(JsonReader JLector) throws IOException { StringBuffer medicineData = new StringBuffer(); JLector.beginArray(); while (JLector.hasNext()) { JLector.beginObject(); medicineData.append(readMedicineEntry(JLector)).append("\n"); JLector.endObject(); } medicineData.append("\n"); JLector.endArray(); return medicineData; } private String readMedicineEntry(JsonReader JLector) throws IOException { String med = null; while(JLector.hasNext()){ String name = JLector.nextName(); switch (name) { case NAME: med = JLector.nextString(); break; default: JLector.skipValue(); } } return med; } @Override public String analisis(String name, JsonReader JLector) throws IOException { StringBuffer readData = new StringBuffer(); if (name.equals(MEDICINE)) { readData.append(readMedicines(JLector)).append("\n"); }else if (sucesor!=null){ readData.append(sucesor.analisis(name, JLector)); }else { JLector.skipValue(); readData.append("Category not processed : "+name ).append("\n"); } return readData.toString(); } }
e8acfbfd58da0d0540992a3e9c52f6ee9956bfff
ff0a662af63225682a552667bccd6461ab67d8e8
/testng/src/com/microservices/tests/PartnerPortalTests.java
c6b2a791c1c5a4d27b29b7aac560efc0e0df2cfb
[]
no_license
jenkinsmicro/microserviceautomation
291e3519bbf31b54c2c0704ebf186ef7f448b5ac
f72c035bb073a975ec7253e2d3c52c69d66792df
refs/heads/master
2021-07-15T18:45:28.167384
2017-10-13T06:41:36
2017-10-13T06:41:36
106,788,279
0
0
null
null
null
null
UTF-8
Java
false
false
2,115
java
package com.microservices.tests; import org.testng.annotations.Test; import org.testng.log4testng.Logger; import com.microservices.pages.PartnerPortalLoginPage; import com.microservices.utilities.ConfigReader; import com.microservices.utilities.HelperMethods; import com.microservices.utilities.TestBase; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Listeners; import java.io.IOException; import org.testng.Reporter; @Listeners(com.microservices.listners.CustomTestListener.class) public class PartnerPortalTests extends TestBase { protected static final Logger logger = Logger .getLogger(PartnerPortalTests.class); ConfigReader configReader; HelperMethods helperMethods; PartnerPortalLoginPage ppTests; public static String adminEmailId = null; public static String phoneNumber = null; @BeforeMethod(groups = { "sanity" }, alwaysRun = true) public void setUPOtherObejcts() throws IOException { configReader = new ConfigReader(); helperMethods = new HelperMethods(); ppTests =new PartnerPortalLoginPage(); } @Test(priority = 201, groups = { "sanity" }, alwaysRun = true) public void verifyPPpageLoaded() throws InterruptedException { Reporter.log("========PMP Page verification Test Case Started===="); ppTests.launchPartnerPortal(configReader.getPPUrl()); ppTests.clickOnSignInDropDown(); ppTests.assertPageLoaded(); } @Test(priority = 202, groups = { "sanity" }, alwaysRun = true) public void verifyLogin() { logger.info("========Login Test Case Started===="); ppTests.enterUserName(configReader.getPPUsername()); ppTests.enterPassword(configReader.getPPPassword()); ppTests.clickOnLogIn(); ppTests.assertPostLoginScreen(); } @Test(priority = 203, dependsOnMethods = "verifyLogin", groups = { "sanity" }, alwaysRun = true) public void verifyLogout() throws InterruptedException { Reporter.log("========Logout Test Case Started===="); ppTests.clickOnLogout(); ppTests.assertLogoutDropDownLoaded(); ppTests.clickOnLogoutLink(); ppTests.clickOnSignInDropDown(); ppTests.assertPageLoaded(); } }
27a3181f9c7ff6d24b3ab33d1c33574e62cca7ba
04e80a25d4cb0d783434d056ca2b6b37bf8c5729
/SvcCreditoGrupal/src/main/java/negocio/reportes/ReportesCreditoGrupalImpl.java
9eca3e89f4866f8821f18c87d9628aa693918bc6
[]
no_license
FyGIntegracionContinua/CIOFF
bfbd2040de503bacc44e376899bddcd4e3db9fd6
20c63dbc01fea60a426ebd49227efb7b8c413567
refs/heads/master
2021-01-15T11:03:31.184075
2017-08-18T20:12:05
2017-08-18T20:12:05
99,607,645
0
1
null
null
null
null
UTF-8
Java
false
false
29,587
java
/** * */ package negocio.reportes; import org.fabric3.api.annotation.Producer; import org.osoa.sca.annotations.Reference; import tarea.reportes.Amortizacion; import tarea.reportes.CierreDiario; import tarea.reportes.Contables; import tarea.reportes.Generales; import tarea.reportes.EstadoCuenta; import transformador.Transformador; import utilitario.comun.GUIDGenerator; import utilitario.log.LogHandler; import utilitario.mensajes.comun.EncabezadoRespuesta; import utilitario.mensajes.reportes.amortizacion.AmortizacionPeticion; import utilitario.mensajes.reportes.amortizacion.AmortizacionRespuesta; import utilitario.mensajes.reportes.cierre.ReportesCierrePeticion; import utilitario.mensajes.reportes.cierre.ReportesCierreRespuesta; import utilitario.mensajes.reportes.cierre.TiposReporteCierre; import utilitario.mensajes.reportes.cierre.eventos.EventoReporteCierre; import utilitario.mensajes.reportes.cierre.eventos.ReportesCierre; import utilitario.mensajes.reportes.comun.PagosImportadosPeticion; import utilitario.mensajes.reportes.comun.PagosImportadosRespuesta; import utilitario.mensajes.reportes.comun.PersonasBloqueoPeticion; import utilitario.mensajes.reportes.comun.PersonasBloqueoRespuesta; import utilitario.mensajes.reportes.comun.ReportesContablesPeticion; import utilitario.mensajes.reportes.comun.ReportesContablesRespuesta; import utilitario.mensajes.reportes.estadocuenta.EstadoCuentaPeticion; import utilitario.mensajes.reportes.estadocuenta.EstadoCuentaRespuesta; import utilitario.mensajes.reportes.garantias.PeticionReporteExcepcionGarantia; import utilitario.mensajes.reportes.garantias.ReporteExcepcionGarantiaOV; import utilitario.mensajes.reportes.garantias.ReporteSolicitudesGarantiaOV; import utilitario.mensajes.reportes.garantias.ReporteSolicitudesGarantiaPeticion; import utilitario.mensajes.reportes.garantias.ReporteSolicitudesGarantiasRespuesta; import utilitario.mensajes.reportes.garantias.RespuestaReporteExcepcionGarantia; import utilitario.mensajes.reportes.tasas.ReporteTasasPeticion; import utilitario.mensajes.reportes.tasas.ReporteTasasRespuesta; /** * @author mi.mejorada * */ public class ReportesCreditoGrupalImpl implements ReportesCreditoGrupal { /** * componente SCA */ private EstadoCuenta estadoCuenta; /** * componente SCA */ private Amortizacion amortizacion; /** * componente SCA */ private CierreDiario cierre; /** * componente SCA */ private Contables contables; /** The generales. */ private Generales generales; /** * notacion SCA Fabric */ @Producer private ReportesCierre reportesCierre; /** * transformador */ private Transformador transformador; /** * Contructor para inyectar las referencias creadas por Fabric * @param estadoCuenta sca componente variable * @param amortizacion sca componente variable * @param cierre sca componente variable * @param contables sca componente variable * @param generales sca composite * @param transformador sca componente variable */ public ReportesCreditoGrupalImpl(@Reference(name = "estadoCuenta") EstadoCuenta estadoCuenta , @Reference(name = "amortizacion") Amortizacion amortizacion , @Reference(name = "cierre") CierreDiario cierre , @Reference(name = "contables") Contables contables, @Reference(name = "generales") Generales generales, @Reference(name = "transformador") Transformador transformador) { this.estadoCuenta = estadoCuenta; this.amortizacion = amortizacion; this.cierre = cierre; this.contables = contables; this.generales = generales; this.transformador = transformador; } /** * @param cuenta peticion de solicitud * @return respuesta */ public EstadoCuentaRespuesta obtenerEstadoCuenta(EstadoCuentaPeticion cuenta) { //Podemos hacer alguna l�gica con los par�metros de entrada final String uid = GUIDGenerator.generateGUID(cuenta); LogHandler.info(uid, getClass(), "obtenerEstadoCuenta - Datos de entrada : " + cuenta); //Salida final EstadoCuentaRespuesta estadoCuentaRespuesta = estadoCuenta.obtenerEstadoCuenta(uid, cuenta); LogHandler.info(uid, getClass(), "obtenerEstadoCuenta - Datos de salida : " + estadoCuentaRespuesta); return estadoCuentaRespuesta; } /** * @param cuenta peticion de solicitud * @return respuesta */ public AmortizacionRespuesta obtenerAmortizacionGrupo(AmortizacionPeticion cuenta) { //Podemos hacer alguna l�gica con los par�metros de entrada final String uid = GUIDGenerator.generateGUID(cuenta); LogHandler.info(uid, getClass(), "obtenerAmortizacionGrupo - Datos de entrada : " + cuenta); final AmortizacionRespuesta amortizacionRespuesta = amortizacion.obtenerAmortizacionGrupo(uid, cuenta); LogHandler.info(uid, getClass(), "obtenerAmortizacionGrupo - Datos de salida : " + amortizacionRespuesta); return amortizacionRespuesta; } /** * @param cuenta peticion de solicitud * @return respuesta */ public AmortizacionRespuesta obtenerAmortizacionIndividual(AmortizacionPeticion cuenta) { //Podemos hacer alguna l�gica con los par�metros de entrada final String uid = GUIDGenerator.generateGUID(cuenta); LogHandler.info(uid, getClass(), "obtenerAmortizacionIndividual - Datos de entrada : " + cuenta); //Salida final AmortizacionRespuesta amortizacionRespuesta = amortizacion.obtenerAmortizacionIndividual(uid, cuenta); LogHandler.info(uid, getClass(), "obtenerAmortizacionIndividual - Datos de salida : " + amortizacionRespuesta); return amortizacionRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteCarteraActiva(ReportesCierrePeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteCarteraActiva - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.CARTERA_ACTIVA); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } LogHandler.debug(uid, getClass(), "99 generaReporteCarteraActiva"); respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de CARTERA_ACTIVA se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteCarteraActiva - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteContratosActivosConMora(ReportesCierrePeticion peticion/*, String uid*/) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteContratosActivosConMora - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.CONTRATOS_ACTIVOS_CON_MORA); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de CONTRATOS_ACTIVOS_CON_MORA se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteContratosActivosConMora - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteContratosActivosSaldoFavor(ReportesCierrePeticion peticion/*, String uid*/) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteContratosActivosSaldoFavor - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.CONTRATOS_ACTIVOS_SALDO_FAVOR); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de CONTRATOS_ACTIVOS_CON_SALDO_FAVOR se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteContratosActivosSaldoFavor - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteDesembolsoRepayments(ReportesCierrePeticion peticion /*, String uid*/) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteDesembolsoRepayments - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.DESEMBOLSO_REPAYMENTS); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de DESEMBOLSO_REPAYMENTS se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteDesembolsoRepayments - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteDesembolsoSEFinsol1(ReportesCierrePeticion peticion/*, String uid*/) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteDesembolsoSEFinsol1 - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.DESEMBOLOS_SE_FINSOL1); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de DESEMBOLOS_SE_FINSOL1 se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteDesembolsoSEFinsol1 - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteDesembolsoSEFinsol2(ReportesCierrePeticion peticion/*, String uid*/) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteDesembolsoSEFinsol2 - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.DESEMBOLOS_SE_FINSOL2); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de DESEMBOLOS_SE_FINSOL2 se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteDesembolsoSEFinsol2 - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta generaReporteDesembolsoOpenContract(ReportesCierrePeticion peticion/*, String uid*/) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generaReporteDesembolsoSEFinsol2 - Datos de entrada : " + peticion); final ReportesCierreRespuesta respuesta = new ReportesCierreRespuesta(); respuesta.setHeader(new EncabezadoRespuesta()); final EventoReporteCierre eventoReporte = new EventoReporteCierre(TiposReporteCierre.DESEMBOLSO_OPEN_CONTRACT); eventoReporte.setUid(uid); eventoReporte.setFechaCierre(peticion.getFechaCierre()); final Integer totalRegistros = cierre.calculaTotalRegistros(uid, eventoReporte); if (totalRegistros == null) { respuesta.getHeader().setEstatus(false); respuesta.setTotalRegistros(0); respuesta.getHeader().setMensaje("No se pudo iniciar el proceso de generacion del reporte..."); return respuesta; } respuesta.getHeader().setEstatus(true); respuesta.setTotalRegistros(totalRegistros); respuesta.getHeader().setMensaje("El reporte de DESEMBOLSO_OPEN_CONTRACT se esta generando. Tendra un total de: " + totalRegistros + " registros. Espere a que se termine de procesar."); eventoReporte.setTotalRegistros(totalRegistros); reportesCierre.generaReporteCierre(eventoReporte); //Llamado asincrono LogHandler.info(uid, getClass(), "generaReporteDesembolsoSEFinsol2 - Datos de salida : " + respuesta); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesCierreRespuesta[] generarReportesCierre(ReportesCierrePeticion peticion) { final Integer numeroReportesCierre = 7; //Se genera un uid para todos los reportes //final java.lang.String uid = GUIDGenerator.generateGUID( peticion ); /*Se procede a la generacion de los reportes*/ //Objeto que contiene la respuesta de todos los reportes ReportesCierreRespuesta [] respuesta = new ReportesCierreRespuesta[numeroReportesCierre]; //generaReporteCarteraActiva respuesta[0] = generaReporteCarteraActiva(peticion); //, uid); //generaReporteContratosActivosConMora respuesta[1] = generaReporteContratosActivosConMora(peticion); //, uid); //generaReporteContratosActivosSaldoFavor respuesta[2] = generaReporteContratosActivosSaldoFavor(peticion); //, uid); //generaReporteDesembolsoRepayments respuesta[3] = generaReporteDesembolsoRepayments(peticion); //, uid); //generaReporteDesembolsoSEFinsol1 respuesta[4] = generaReporteDesembolsoSEFinsol1(peticion); //, uid); //generaReporteDesembolsoSEFinsol2 respuesta[5] = generaReporteDesembolsoSEFinsol2(peticion); //, uid); //generaReporteDesembolsoOpenContract respuesta[6] = generaReporteDesembolsoOpenContract(peticion); //, uid); return respuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteBalanceGeneral(ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteBalanceGeneral - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteBalanceGeneral(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteBalanceGeneral - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReportePasivosdeFondeo(ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReportePasivosdeFondeo - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReportePasivosdeFondeo(uid, peticion); LogHandler.info(uid, getClass(), "generarReportePasivosdeFondeo - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReportedeEstadosResultados( ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReportedeEstadosResultados - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReportedeEstadosResultados(uid, peticion); LogHandler.info(uid, getClass(), "generarReportedeEstadosResultados - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteCastigoVentadeCarteraVencida( ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteCastigoVentadeCarteraVencida - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteCastigoVentadeCarteraVencida(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteCastigoVentadeCarteraVencida - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteRiesgoCredito(ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteRiesgoCredito - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteRiesgoCredito(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteRiesgoCredito - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteRiesgoMercado( ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteRiesgoMercado - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteRiesgoMercado(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteRiesgoMercado - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteFinanciamientoRiesgoComun(ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteFinanciamientoRiesgoComun - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteFinanciamientoRiesgoComun(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteFinanciamientoRiesgoComun - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteCreditosRelacionados(ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteCreditosRelacionados - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteCreditosRelacionados(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteCreditosRelacionados - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * @param peticion contiene la peticion del reporte. * @return respuesta del metodo. */ public ReportesContablesRespuesta generarReporteCapitalNeto(ReportesContablesPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteCapitalNeto - Datos de entrada : " + peticion); //Se recibe la salida final ReportesContablesRespuesta reportesContablesRespuesta = contables.generarReporteCapitalNeto(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteCapitalNeto - Datos de salida : " + reportesContablesRespuesta); return reportesContablesRespuesta; } /** * Metodo para consultar los pagos importados de una fecha solicitada. * @param peticion contiene la fecha para generar el reporte de pagos importados. * @return respuesta lista de pagos importados. */ public PagosImportadosRespuesta generarReportePagosImportados(PagosImportadosPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReportePagosImportados - Datos de entrada : " + peticion); //Se recibe la salida final PagosImportadosRespuesta pagosImportadosRespuesta = contables.generarReportePagosImportados(uid, peticion); LogHandler.info(uid, getClass(), "generarReportePagosImportados - Datos de salida : " + pagosImportadosRespuesta); return pagosImportadosRespuesta; } /** * Metodo para consultar las personas bloqueadas de un rango de fechas. * @param peticion contiene la fecha para generar el reporte. * @return respuesta lista de personas. */ public PersonasBloqueoRespuesta generarReportePersonasBloqueadas( PersonasBloqueoPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReportePersonasBloqueadas - Datos de entrada : " + peticion); //Se recibe la salida final PersonasBloqueoRespuesta personasBloqueoRespuesta = generales.obtenerReportePersonasBloqueadasTarea(uid, peticion); LogHandler.info(uid, getClass(), "generarReportePersonasBloqueadas - Datos de salida : " + personasBloqueoRespuesta); return personasBloqueoRespuesta; } /** * Método para consultar las solicitudes con excepciones para un rango de fechas. * @param peticion contiene los siguientes parámetros: división, región, estatus, fecha_inicial, fecha_final. * @return respuesta lista de pagos importados. */ public String generarReporteExcepcionesBuzon(String peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteExcepcionesBuzon - Datos de entrada : " + peticion); //Parametros de entrada final Class<?>[] clases = {ReporteExcepcionGarantiaOV.class, RespuestaReporteExcepcionGarantia.class, PeticionReporteExcepcionGarantia.class, EncabezadoRespuesta.class}; //Conversion de XML a Object final PeticionReporteExcepcionGarantia excepcionesPeticion = (PeticionReporteExcepcionGarantia) transformador.transformaXMLAObjeto(uid, peticion, clases); //Se recibe la salida RespuestaReporteExcepcionGarantia respuestaReporteExcepcionGarantia = generales.obtenerReporteExcepcionesBuzon(uid, excepcionesPeticion); //Se genera la salida final java.lang.String respuestaXML = transformador.transformaObjetoAXML(uid, respuestaReporteExcepcionGarantia, clases); LogHandler.info(uid, getClass(), "generarReporteExcepcionesBuzon - Datos de salida : " + respuestaXML); return respuestaXML; } /** * Método para consultar las solicitudes con garantías. * @param peticion contiene los siguientes parámetros: división, región, contrato, fecha_inicial, fecha_final. * @return respuesta lista de solicitudes de garantías. */ public String generarReporteSolicitudesGarantias(String peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteSolicitudesGarantias - Datos de entrada : " + peticion); //Parametros de entrada final Class<?>[] clases = {ReporteSolicitudesGarantiaOV.class, ReporteSolicitudesGarantiaPeticion.class, ReporteSolicitudesGarantiasRespuesta.class, EncabezadoRespuesta.class}; //Conversion de XML a Object final ReporteSolicitudesGarantiaPeticion peticionObjeto = (ReporteSolicitudesGarantiaPeticion) transformador.transformaXMLAObjeto(uid, peticion, clases); //Se recibe la salida ReporteSolicitudesGarantiasRespuesta respuestaObjeto = generales.obtenerReporteSolicitudesGarantia(uid, peticionObjeto); //Se genera la salida final java.lang.String respuestaXML = transformador.transformaObjetoAXML(uid, respuestaObjeto, clases); LogHandler.info(uid, getClass(), "generarReporteSolicitudesGarantias - Datos de salida : " + respuestaXML); return respuestaXML; } /** * Método para consultar el reporte de tasas. * @param peticion contiene los siguientes parametros: fechaInicial y fechaFinal * @return respuesta lista de reporte de tasas */ public ReporteTasasRespuesta generarReporteTasas(ReporteTasasPeticion peticion) { final String uid = GUIDGenerator.generateGUID(peticion); LogHandler.info(uid, getClass(), "generarReporteTasas - Datos de entrada " + peticion); //Se recibe la salida final ReporteTasasRespuesta respuesta = generales.obtenerReporteTasas(uid, peticion); LogHandler.info(uid, getClass(), "generarReporteTasas - Datos de salida " + respuesta); return respuesta; } /** * @param cuenta peticion de solicitud * @return respuesta */ public String obtenerEstadoCuentaJSON(EstadoCuentaPeticion cuenta) { //Podemos hacer alguna logica con los parametros de entrada final String uid = GUIDGenerator.generateGUID(cuenta); LogHandler.info(uid, getClass(), "obtenerEstadoCuenta - Datos de entrada : " + cuenta); //Salida final EstadoCuentaRespuesta estadoCuentaRespuesta = estadoCuenta.obtenerEstadoCuenta(uid, cuenta); LogHandler.info(uid, getClass(), "obtenerEstadoCuenta - Datos de salida : " + estadoCuentaRespuesta); return transformador.transformaObjetoAJSON(uid, estadoCuentaRespuesta); } }
8f34028cc8bd000f7d79a450abedcd64973dc7c4
9eac656152a4860070dc4200f4cebb0e0d5a699e
/Hello/src/main/java/com/tedu/controller/HelloController.java
cb033c481cd1a2cbf85383bf399bbd783b99e0af
[]
no_license
tengdie/stu
3437e19729ad9473a3cb8775d14360dd01254ba7
154d18c05fdf363570398ec82ecf91b89e6cb892
refs/heads/master
2020-04-10T04:26:24.616574
2018-12-12T09:38:35
2018-12-12T09:38:35
160,798,167
0
0
null
null
null
null
UTF-8
Java
false
false
347
java
package com.tedu.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("index") public String hello() { return "hello springboot"; } }
29139676531c0688622bb52e6d9d5e1496551f99
14d022c749ff3111be21fe72eb1fa8d9689f0f47
/app/src/main/java/com/example/doodlerocket/Activities/RatingActivity.java
699cfb0a629c73ed6f8c33a46d8733f4fa5c9da8
[]
no_license
tomersh9/bit.Rocket
b4d1f7b0116fa9704f9a22e53989cdc2fa7c8bf5
5658fbe847a85ff437f1851810c32b05d02b9dfb
refs/heads/master
2022-11-25T05:26:16.869697
2020-07-26T18:10:54
2020-07-26T18:10:54
265,820,201
0
1
null
2020-06-13T20:47:36
2020-05-21T10:30:00
Java
UTF-8
Java
false
false
5,526
java
package com.example.doodlerocket.Activities; import android.animation.ObjectAnimator; import android.content.SharedPreferences; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.ImageButton; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; import com.daimajia.androidanimations.library.Techniques; import com.daimajia.androidanimations.library.YoYo; import com.example.doodlerocket.GameObjects.Star; import com.example.doodlerocket.R; import java.util.ArrayList; import java.util.List; import java.util.TimerTask; public class RatingActivity extends AppCompatActivity { private List<Star> stars = new ArrayList<>(); private List<ImageButton> starsImgList = new ArrayList<>(); private int ratingNum; private SharedPreferences sp; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.rating_layout); //save rating state sp = getSharedPreferences("storage",MODE_PRIVATE); ratingNum = sp.getInt("rating",0); //animations TextView rateTv = findViewById(R.id.rate_tv); ObjectAnimator titleAnimator = new ObjectAnimator().ofFloat(rateTv,"translationY",-1500,0).setDuration(1000); titleAnimator.start(); final ImageButton star1 = findViewById(R.id.star_1); final ImageButton star2 = findViewById(R.id.star_2); final ImageButton star3 = findViewById(R.id.star_3); final ImageButton star4 = findViewById(R.id.star_4); final ImageButton star5 = findViewById(R.id.star_5); //save star list starsImgList.add(star1); starsImgList.add(star2); starsImgList.add(star3); starsImgList.add(star4); starsImgList.add(star5); for(int i = 0 ; i< ratingNum ; i++) { starsImgList.get(i).setImageResource(R.drawable.gold_star_96); } //**********Rating Click Listeners*************// star1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { star1.setImageResource(R.drawable.gold_star_96); star2.setImageResource(R.drawable.black_star_96); star3.setImageResource(R.drawable.black_star_96); star4.setImageResource(R.drawable.black_star_96); star5.setImageResource(R.drawable.black_star_96); ratingNum = 1; } }); star2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { star1.setImageResource(R.drawable.gold_star_96); star2.setImageResource(R.drawable.gold_star_96); star3.setImageResource(R.drawable.black_star_96); star4.setImageResource(R.drawable.black_star_96); star5.setImageResource(R.drawable.black_star_96); ratingNum = 2; } }); star3.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { star1.setImageResource(R.drawable.gold_star_96); star2.setImageResource(R.drawable.gold_star_96); star3.setImageResource(R.drawable.gold_star_96); star4.setImageResource(R.drawable.black_star_96); star5.setImageResource(R.drawable.black_star_96); ratingNum = 3; } }); star4.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { star1.setImageResource(R.drawable.gold_star_96); star2.setImageResource(R.drawable.gold_star_96); star3.setImageResource(R.drawable.gold_star_96); star4.setImageResource(R.drawable.gold_star_96); star5.setImageResource(R.drawable.black_star_96); ratingNum = 4; } }); star5.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { star1.setImageResource(R.drawable.gold_star_96); star2.setImageResource(R.drawable.gold_star_96); star3.setImageResource(R.drawable.gold_star_96); star4.setImageResource(R.drawable.gold_star_96); star5.setImageResource(R.drawable.gold_star_96); ratingNum = 5; } }); Button backBtn = findViewById(R.id.back_rate_btn); ObjectAnimator btnAnimator = new ObjectAnimator().ofFloat(backBtn,"translationY",3500,0).setDuration(1000); btnAnimator.start(); backBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finish(); overridePendingTransition(R.anim.slide_in_left,R.anim.slide_out_right); } }); } @Override public void onBackPressed() { super.onBackPressed(); overridePendingTransition(R.anim.slide_in_left,R.anim.slide_out_right); } @Override protected void onPause() { super.onPause(); SharedPreferences.Editor editor = sp.edit(); editor.putInt("rating",ratingNum); editor.commit(); } }
103a514f0609a35dba6a9728ebea5a9347635668
66b6eb23a5028cb0d8d8db44c6b9303f1e0d94cd
/app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/navigation/fragment/R.java
f7d3f211ee456a05a36dc8c99b51565f8da3d787
[]
no_license
Denoble/Black-FYRE-Android
629ac0497cfcdf33e7113e15a66eef8ffd0851f0
66c210c6ff4bbdef58641513b002a3e23de61ca8
refs/heads/master
2022-05-24T08:44:06.040046
2019-10-03T02:55:15
2019-10-03T02:55:15
203,412,532
0
0
null
null
null
null
UTF-8
Java
false
false
17,293
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 androidx.navigation.fragment; public final class R { private R() {} public static final class attr { private attr() {} public static final int action = 0x7f040000; public static final int alpha = 0x7f040028; public static final int argType = 0x7f04002b; public static final int data = 0x7f0400b8; public static final int dataPattern = 0x7f0400b9; public static final int defaultNavHost = 0x7f0400ba; public static final int destination = 0x7f0400bc; public static final int enterAnim = 0x7f0400d0; public static final int exitAnim = 0x7f0400d3; public static final int font = 0x7f0400ea; public static final int fontProviderAuthority = 0x7f0400ec; public static final int fontProviderCerts = 0x7f0400ed; public static final int fontProviderFetchStrategy = 0x7f0400ee; public static final int fontProviderFetchTimeout = 0x7f0400ef; public static final int fontProviderPackage = 0x7f0400f0; public static final int fontProviderQuery = 0x7f0400f1; public static final int fontStyle = 0x7f0400f2; public static final int fontVariationSettings = 0x7f0400f3; public static final int fontWeight = 0x7f0400f4; public static final int graph = 0x7f0400f8; public static final int launchSingleTop = 0x7f04012a; public static final int navGraph = 0x7f040183; public static final int nullable = 0x7f040188; public static final int popEnterAnim = 0x7f040197; public static final int popExitAnim = 0x7f040198; public static final int popUpTo = 0x7f040199; public static final int popUpToInclusive = 0x7f04019a; public static final int startDestination = 0x7f0401c5; public static final int targetPackage = 0x7f0401f4; public static final int ttcIndex = 0x7f04022e; public static final int uri = 0x7f040237; } public static final class color { private color() {} public static final int notification_action_color_filter = 0x7f06007d; public static final int notification_icon_bg_color = 0x7f06007e; public static final int ripple_material_light = 0x7f060089; public static final int secondary_text_default_material_light = 0x7f06008b; } public static final class dimen { private dimen() {} public static final int compat_button_inset_horizontal_material = 0x7f070050; public static final int compat_button_inset_vertical_material = 0x7f070051; public static final int compat_button_padding_horizontal_material = 0x7f070052; public static final int compat_button_padding_vertical_material = 0x7f070053; public static final int compat_control_corner_material = 0x7f070054; public static final int compat_notification_large_icon_max_height = 0x7f070055; public static final int compat_notification_large_icon_max_width = 0x7f070056; public static final int notification_action_icon_size = 0x7f0700c2; public static final int notification_action_text_size = 0x7f0700c3; public static final int notification_big_circle_margin = 0x7f0700c4; public static final int notification_content_margin_start = 0x7f0700c5; public static final int notification_large_icon_height = 0x7f0700c6; public static final int notification_large_icon_width = 0x7f0700c7; public static final int notification_main_column_padding_top = 0x7f0700c8; public static final int notification_media_narrow_margin = 0x7f0700c9; public static final int notification_right_icon_size = 0x7f0700ca; public static final int notification_right_side_padding_top = 0x7f0700cb; public static final int notification_small_icon_background_padding = 0x7f0700cc; public static final int notification_small_icon_size_as_large = 0x7f0700cd; public static final int notification_subtext_size = 0x7f0700ce; public static final int notification_top_pad = 0x7f0700cf; public static final int notification_top_pad_large_text = 0x7f0700d0; } public static final class drawable { private drawable() {} public static final int notification_action_background = 0x7f080096; public static final int notification_bg = 0x7f080097; public static final int notification_bg_low = 0x7f080098; public static final int notification_bg_low_normal = 0x7f080099; public static final int notification_bg_low_pressed = 0x7f08009a; public static final int notification_bg_normal = 0x7f08009b; public static final int notification_bg_normal_pressed = 0x7f08009c; public static final int notification_icon_background = 0x7f08009d; public static final int notification_template_icon_bg = 0x7f08009e; public static final int notification_template_icon_low_bg = 0x7f08009f; public static final int notification_tile_bg = 0x7f0800a0; public static final int notify_panel_notification_icon_bg = 0x7f0800a1; } public static final class id { private id() {} public static final int accessibility_action_clickable_span = 0x7f0a0006; public static final int accessibility_custom_action_0 = 0x7f0a0007; public static final int accessibility_custom_action_1 = 0x7f0a0008; public static final int accessibility_custom_action_10 = 0x7f0a0009; public static final int accessibility_custom_action_11 = 0x7f0a000a; public static final int accessibility_custom_action_12 = 0x7f0a000b; public static final int accessibility_custom_action_13 = 0x7f0a000c; public static final int accessibility_custom_action_14 = 0x7f0a000d; public static final int accessibility_custom_action_15 = 0x7f0a000e; public static final int accessibility_custom_action_16 = 0x7f0a000f; public static final int accessibility_custom_action_17 = 0x7f0a0010; public static final int accessibility_custom_action_18 = 0x7f0a0011; public static final int accessibility_custom_action_19 = 0x7f0a0012; public static final int accessibility_custom_action_2 = 0x7f0a0013; public static final int accessibility_custom_action_20 = 0x7f0a0014; public static final int accessibility_custom_action_21 = 0x7f0a0015; public static final int accessibility_custom_action_22 = 0x7f0a0016; public static final int accessibility_custom_action_23 = 0x7f0a0017; public static final int accessibility_custom_action_24 = 0x7f0a0018; public static final int accessibility_custom_action_25 = 0x7f0a0019; public static final int accessibility_custom_action_26 = 0x7f0a001a; public static final int accessibility_custom_action_27 = 0x7f0a001b; public static final int accessibility_custom_action_28 = 0x7f0a001c; public static final int accessibility_custom_action_29 = 0x7f0a001d; public static final int accessibility_custom_action_3 = 0x7f0a001e; public static final int accessibility_custom_action_30 = 0x7f0a001f; public static final int accessibility_custom_action_31 = 0x7f0a0020; public static final int accessibility_custom_action_4 = 0x7f0a0021; public static final int accessibility_custom_action_5 = 0x7f0a0022; public static final int accessibility_custom_action_6 = 0x7f0a0023; public static final int accessibility_custom_action_7 = 0x7f0a0024; public static final int accessibility_custom_action_8 = 0x7f0a0025; public static final int accessibility_custom_action_9 = 0x7f0a0026; public static final int action_container = 0x7f0a002f; public static final int action_divider = 0x7f0a0031; public static final int action_image = 0x7f0a0032; public static final int action_text = 0x7f0a0038; public static final int actions = 0x7f0a0039; public static final int async = 0x7f0a0042; public static final int blocking = 0x7f0a0046; public static final int chronometer = 0x7f0a0051; public static final int dialog_button = 0x7f0a0064; public static final int forever = 0x7f0a007d; public static final int icon = 0x7f0a0092; public static final int icon_group = 0x7f0a0093; public static final int info = 0x7f0a009d; public static final int italic = 0x7f0a009f; public static final int line1 = 0x7f0a00a5; public static final int line3 = 0x7f0a00a6; public static final int nav_controller_view_tag = 0x7f0a00b7; public static final int normal = 0x7f0a00c3; public static final int notification_background = 0x7f0a00c4; public static final int notification_main_column = 0x7f0a00c5; public static final int notification_main_column_container = 0x7f0a00c6; public static final int right_icon = 0x7f0a00d7; public static final int right_side = 0x7f0a00d8; public static final int tag_accessibility_actions = 0x7f0a0106; public static final int tag_accessibility_clickable_spans = 0x7f0a0107; public static final int tag_accessibility_heading = 0x7f0a0108; public static final int tag_accessibility_pane_title = 0x7f0a0109; public static final int tag_screen_reader_focusable = 0x7f0a010a; public static final int tag_transition_group = 0x7f0a010b; public static final int tag_unhandled_key_event_manager = 0x7f0a010c; public static final int tag_unhandled_key_listeners = 0x7f0a010d; public static final int text = 0x7f0a010f; public static final int text2 = 0x7f0a0110; public static final int time = 0x7f0a0120; public static final int title = 0x7f0a0121; } public static final class integer { private integer() {} public static final int status_bar_notification_info_maxnum = 0x7f0b0010; } public static final class layout { private layout() {} public static final int custom_dialog = 0x7f0d001f; public static final int notification_action = 0x7f0d0036; public static final int notification_action_tombstone = 0x7f0d0037; public static final int notification_template_custom_big = 0x7f0d003e; public static final int notification_template_icon_group = 0x7f0d003f; public static final int notification_template_part_chronometer = 0x7f0d0043; public static final int notification_template_part_time = 0x7f0d0044; } public static final class string { private string() {} public static final int status_bar_notification_info_overflow = 0x7f110068; } public static final class style { private style() {} public static final int TextAppearance_Compat_Notification = 0x7f120116; public static final int TextAppearance_Compat_Notification_Info = 0x7f120117; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f120119; public static final int TextAppearance_Compat_Notification_Time = 0x7f12011c; public static final int TextAppearance_Compat_Notification_Title = 0x7f12011e; public static final int Widget_Compat_NotificationActionContainer = 0x7f1201c5; public static final int Widget_Compat_NotificationActionText = 0x7f1201c6; } public static final class styleable { private styleable() {} public static final int[] ActivityNavigator = { 0x1010003, 0x7f040000, 0x7f0400b8, 0x7f0400b9, 0x7f0401f4 }; public static final int ActivityNavigator_android_name = 0; public static final int ActivityNavigator_action = 1; public static final int ActivityNavigator_data = 2; public static final int ActivityNavigator_dataPattern = 3; public static final int ActivityNavigator_targetPackage = 4; public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f040028 }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] DialogFragmentNavigator = { 0x1010003 }; public static final int DialogFragmentNavigator_android_name = 0; public static final int[] FontFamily = { 0x7f0400ec, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1 }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0400ea, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f04022e }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_android_ttcIndex = 3; public static final int FontFamilyFont_android_fontVariationSettings = 4; public static final int FontFamilyFont_font = 5; public static final int FontFamilyFont_fontStyle = 6; public static final int FontFamilyFont_fontVariationSettings = 7; public static final int FontFamilyFont_fontWeight = 8; public static final int FontFamilyFont_ttcIndex = 9; public static final int[] FragmentNavigator = { 0x1010003 }; public static final int FragmentNavigator_android_name = 0; public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; public static final int GradientColor_android_startColor = 0; public static final int GradientColor_android_endColor = 1; public static final int GradientColor_android_type = 2; public static final int GradientColor_android_centerX = 3; public static final int GradientColor_android_centerY = 4; public static final int GradientColor_android_gradientRadius = 5; public static final int GradientColor_android_tileMode = 6; public static final int GradientColor_android_centerColor = 7; public static final int GradientColor_android_startX = 8; public static final int GradientColor_android_startY = 9; public static final int GradientColor_android_endX = 10; public static final int GradientColor_android_endY = 11; public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; public static final int GradientColorItem_android_color = 0; public static final int GradientColorItem_android_offset = 1; public static final int[] NavAction = { 0x10100d0, 0x7f0400bc, 0x7f0400d0, 0x7f0400d3, 0x7f04012a, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a }; public static final int NavAction_android_id = 0; public static final int NavAction_destination = 1; public static final int NavAction_enterAnim = 2; public static final int NavAction_exitAnim = 3; public static final int NavAction_launchSingleTop = 4; public static final int NavAction_popEnterAnim = 5; public static final int NavAction_popExitAnim = 6; public static final int NavAction_popUpTo = 7; public static final int NavAction_popUpToInclusive = 8; public static final int[] NavArgument = { 0x1010003, 0x10101ed, 0x7f04002b, 0x7f040188 }; public static final int NavArgument_android_name = 0; public static final int NavArgument_android_defaultValue = 1; public static final int NavArgument_argType = 2; public static final int NavArgument_nullable = 3; public static final int[] NavDeepLink = { 0x10104ee, 0x7f040237 }; public static final int NavDeepLink_android_autoVerify = 0; public static final int NavDeepLink_uri = 1; public static final int[] NavGraphNavigator = { 0x7f0401c5 }; public static final int NavGraphNavigator_startDestination = 0; public static final int[] NavHost = { 0x7f040183 }; public static final int NavHost_navGraph = 0; public static final int[] NavHostFragment = { 0x7f0400ba }; public static final int NavHostFragment_defaultNavHost = 0; public static final int[] NavInclude = { 0x7f0400f8 }; public static final int NavInclude_graph = 0; public static final int[] Navigator = { 0x1010001, 0x10100d0 }; public static final int Navigator_android_label = 0; public static final int Navigator_android_id = 1; } }
332479301a69d2cda6208f373ee0800b8b69d80f
5e3235edf3de262f4d10b9e9e1fcc3bd13d6b8b1
/Code Snippet Repository/Spring/Spring404.java
c2cceb3ef6ee4a24b76cd6132e6fb68245da0f06
[]
no_license
saber13812002/DeepCRM
3336a244d4852a364800af3181e03e868cf6f9f5
be3e5e50e34a042d5ba7259ff5ff75c08ab32bb9
refs/heads/master
2023-03-16T00:08:06.473699
2018-04-18T05:29:50
2018-04-18T05:29:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
983
java
@Test public void testDynamicAndStaticMethodMatcherIntersection() throws Exception { MethodMatcher mm1 = MethodMatcher.TRUE; MethodMatcher mm2 = new TestDynamicMethodMatcherWhichMatches(); MethodMatcher intersection = MethodMatchers.intersection(mm1, mm2); assertTrue("Intersection is a dynamic matcher", intersection.isRuntime()); assertTrue("2Matched setAge method", intersection.matches(ITESTBEAN_SETAGE, TestBean.class)); assertTrue("3Matched setAge method", intersection.matches(ITESTBEAN_SETAGE, TestBean.class, new Integer(5))); // Knock out dynamic part intersection = MethodMatchers.intersection(intersection, new TestDynamicMethodMatcherWhichDoesNotMatch()); assertTrue("Intersection is a dynamic matcher", intersection.isRuntime()); assertTrue("2Matched setAge method", intersection.matches(ITESTBEAN_SETAGE, TestBean.class)); assertFalse("3 - not Matched setAge method", intersection.matches(ITESTBEAN_SETAGE, TestBean.class, new Integer(5))); }
9c077cf2f4e293b7baa2d99e11fb4ec331ce058d
cc49ac5e8006e6ab9b258358073f85c984eb74db
/e3-common/src/main/java/cn/e3mall/common/pojo/EasyUIDataGridResult.java
ffe3a21b287d4ce7178de1ec844112de4f8c438f
[]
no_license
Lin-Js1/e3mall
9da94a34c371be58c57e7348ea13ccfae3a087b3
27113c2c8ad1c14681bc12e2dde212fe63a56571
refs/heads/master
2022-12-17T12:12:13.230499
2020-02-03T13:48:20
2020-02-03T13:48:20
236,494,544
0
0
null
2022-12-16T07:16:32
2020-01-27T13:18:02
JavaScript
UTF-8
Java
false
false
453
java
package cn.e3mall.common.pojo; import java.io.Serializable; import java.util.List; public class EasyUIDataGridResult implements Serializable { private long total; private List rows; public long getTotal() { return total; } public void setTotal(long total) { this.total = total; } public List getRows() { return rows; } public void setRows(List rows) { this.rows = rows; } }
04348e7d3111a293aa5f1172575b92138ed34e65
27cc32cd2720e1e31bd7f192592ba29e5680e74e
/src/main/java/com/jt/algo/practice/leetcode/Lc0394.java
32c593d4f7196486be41f262d879e0e2d0d8e8d0
[]
no_license
John1Tang/algorithm-practice
d68f8f3b5913443d85ed41ed015bd0e0bcfd8a55
86e526cb50d8ac7ffef2c52bdf05a8987c47a61b
refs/heads/master
2023-09-04T15:03:07.673344
2021-11-07T12:37:23
2021-11-07T12:37:23
255,624,225
0
0
null
null
null
null
UTF-8
Java
false
false
1,794
java
package com.jt.algo.practice.leetcode; /** * @description: 394. Decode String * @author: john * @created: 2020/05/31 19:18 * * Given an encoded string, return its decoded string. * * The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. Note that k is guaranteed to be a positive integer. * * You may assume that the input string is always valid; No extra white spaces, square brackets are well-formed, etc. * * Furthermore, you may assume that the original data does not contain any digits and that digits are only for those repeat numbers, k. For example, there won't be input like 3a or 2[4]. * * Examples: * * s = "3[a]2[bc]", return "aaabcbc". * s = "3[a2[c]]", return "accaccacc". * s = "2[abc]3[cd]ef", return "abcabccdcdcdef". * */ public class Lc0394 { String src; int ptr; public String decodeString(String s) { src = s; ptr = 0; return getString(); } public String getString(){ if(ptr == src.length() || src.charAt(ptr) == ']'){ return ""; } char cur = src.charAt(ptr); int repTime = 1; String ret = ""; if(Character.isDigit(cur)){ repTime = getDigits(); ++ptr; String str = getString(); ++ptr; while(repTime-- > 0){ ret += str; } }else if(Character.isLetter(cur)){ ret = String.valueOf(src.charAt(ptr++)); } return ret + getString(); } public int getDigits(){ int ret = 0; while(ptr < src.length() && Character.isDigit(src.charAt(ptr))){ ret = ret * 10 + src.charAt(ptr++) - '0'; } return ret; } }
d5ec27e4c54dbd44755be4a74b23b946fa44c83b
466296eb3b15721295357cc43474106cf7c4c391
/src/main/java/com/transerve/locationservices/manager/utils/SatelliteName.java
da00bfc1421f26dae22de795de98861d23a291ff
[]
no_license
aadit33/LocationService
4361d734ce2695ba263b990361a755516d44ecdf
4ab5b0d95279c7bb48ffb892e67126de8766840f
refs/heads/master
2022-09-11T21:05:51.463315
2022-08-21T06:58:27
2022-08-21T06:58:27
156,164,155
8
3
null
null
null
null
UTF-8
Java
false
false
844
java
/* * Copyright (C) 2013-2018 Sean J. Barbeau * * 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.transerve.locationservices.manager.utils; /** * Types of Global Navigation Satellite Systems */ public enum SatelliteName { ANIK, GALAXY_15, INMARSAT_3F2, INMARSAT_3F5, INMARSAT_4F3, SES_5, ASTRA_5B, GEO5, UNKNOWN }
e852d7e1d877f9438a6193479a57454c9b278408
87901d9fd3279eb58211befa5357553d123cfe0c
/bin/platform/bootstrap/gensrc/de/hybris/platform/btg/model/BTGConditionModel.java
95e3dc0cd754c7e9343d57b1ab6d87d54c603d67
[]
no_license
prafullnagane/learning
4d120b801222cbb0d7cc1cc329193575b1194537
02b46a0396cca808f4b29cd53088d2df31f43ea0
refs/heads/master
2020-03-27T23:04:17.390207
2014-02-27T06:19:49
2014-02-27T06:19:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,257
java
/* * ---------------------------------------------------------------- * --- WARNING: THIS FILE IS GENERATED AND WILL BE OVERWRITTEN! --- * --- Generated at Dec 13, 2013 6:34:48 PM --- * ---------------------------------------------------------------- * * [y] hybris Platform * * Copyright (c) 2000-2011 hybris AG * All rights reserved. * * This software is the confidential and proprietary information of hybris * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with the terms of the * license agreement you entered into with hybris. * */ package de.hybris.platform.btg.model; import de.hybris.platform.btg.enums.BTGConditionEvaluationScope; import de.hybris.platform.btg.model.BTGConditionResultModel; import de.hybris.platform.btg.model.BTGItemModel; import de.hybris.platform.btg.model.BTGRuleModel; import de.hybris.platform.catalog.model.CatalogVersionModel; import de.hybris.platform.core.model.ItemModel; import de.hybris.platform.servicelayer.model.ItemModelContext; import java.util.Collection; /** * Generated model class for type BTGCondition first defined at extension btg. */ @SuppressWarnings("all") public class BTGConditionModel extends BTGItemModel { /**<i>Generated model type code constant.</i>*/ public final static String _TYPECODE = "BTGCondition"; /**<i>Generated relation code constant for relation <code>BTGRuleToBTGConditionsRelation</code> defining source attribute <code>rule</code> in extension <code>btg</code>.</i>*/ public final static String _BTGRULETOBTGCONDITIONSRELATION = "BTGRuleToBTGConditionsRelation"; /** <i>Generated constant</i> - Attribute key of <code>BTGCondition.rule</code> attribute defined at extension <code>btg</code>. */ public static final String RULE = "rule"; /** <i>Generated constant</i> - Attribute key of <code>BTGCondition.results</code> attribute defined at extension <code>btg</code>. */ public static final String RESULTS = "results"; /** <i>Generated constant</i> - Attribute key of <code>BTGCondition.beanId</code> attribute defined at extension <code>btg</code>. */ public static final String BEANID = "beanId"; /** <i>Generated constant</i> - Attribute key of <code>BTGCondition.evaluationScope</code> attribute defined at extension <code>btg</code>. */ public static final String EVALUATIONSCOPE = "evaluationScope"; /** <i>Generated variable</i> - Variable of <code>BTGCondition.rule</code> attribute defined at extension <code>btg</code>. */ private BTGRuleModel _rule; /** <i>Generated variable</i> - Variable of <code>BTGCondition.results</code> attribute defined at extension <code>btg</code>. */ private Collection<BTGConditionResultModel> _results; /** <i>Generated variable</i> - Variable of <code>BTGCondition.beanId</code> attribute defined at extension <code>btg</code>. */ private String _beanId; /** <i>Generated variable</i> - Variable of <code>BTGCondition.evaluationScope</code> attribute defined at extension <code>btg</code>. */ private BTGConditionEvaluationScope _evaluationScope; /** * <i>Generated constructor</i> - Default constructor for generic creation. */ public BTGConditionModel() { super(); } /** * <i>Generated constructor</i> - Default constructor for creation with existing context * @param ctx the model context to be injected, must not be null */ public BTGConditionModel(final ItemModelContext ctx) { super(ctx); } /** * <i>Generated constructor</i> - Constructor with all mandatory attributes. * @deprecated Since 4.1.1 Please use the default constructor without parameters * @param _catalogVersion initial attribute declared by type <code>BTGItem</code> at extension <code>btg</code> * @param _uid initial attribute declared by type <code>BTGItem</code> at extension <code>btg</code> */ @Deprecated public BTGConditionModel(final CatalogVersionModel _catalogVersion, final String _uid) { super(); setCatalogVersion(_catalogVersion); setUid(_uid); } /** * <i>Generated constructor</i> - for all mandatory and initial attributes. * @deprecated Since 4.1.1 Please use the default constructor without parameters * @param _catalogVersion initial attribute declared by type <code>BTGItem</code> at extension <code>btg</code> * @param _owner initial attribute declared by type <code>Item</code> at extension <code>core</code> * @param _uid initial attribute declared by type <code>BTGItem</code> at extension <code>btg</code> */ @Deprecated public BTGConditionModel(final CatalogVersionModel _catalogVersion, final ItemModel _owner, final String _uid) { super(); setCatalogVersion(_catalogVersion); setOwner(_owner); setUid(_uid); } /** * <i>Generated method</i> - Getter of the <code>BTGCondition.beanId</code> attribute defined at extension <code>btg</code>. * @return the beanId */ public String getBeanId() { return _beanId = getPersistenceContext().getValue(BEANID, _beanId); } /** * <i>Generated method</i> - Getter of the <code>BTGCondition.evaluationScope</code> attribute defined at extension <code>btg</code>. * @return the evaluationScope */ public BTGConditionEvaluationScope getEvaluationScope() { return _evaluationScope = getPersistenceContext().getValue(EVALUATIONSCOPE, _evaluationScope); } /** * <i>Generated method</i> - Getter of the <code>BTGCondition.results</code> attribute defined at extension <code>btg</code>. * Consider using FlexibleSearchService::searchRelation for pagination support of large result sets. * @return the results */ public Collection<BTGConditionResultModel> getResults() { return _results = getPersistenceContext().getValue(RESULTS, _results); } /** * <i>Generated method</i> - Getter of the <code>BTGCondition.rule</code> attribute defined at extension <code>btg</code>. * @return the rule */ public BTGRuleModel getRule() { return _rule = getPersistenceContext().getValue(RULE, _rule); } /** * <i>Generated method</i> - Setter of <code>BTGCondition.beanId</code> attribute defined at extension <code>btg</code>. * * @param value the beanId */ public void setBeanId(final String value) { _beanId = getPersistenceContext().setValue(BEANID, value); } /** * <i>Generated method</i> - Setter of <code>BTGCondition.evaluationScope</code> attribute defined at extension <code>btg</code>. * * @param value the evaluationScope */ public void setEvaluationScope(final BTGConditionEvaluationScope value) { _evaluationScope = getPersistenceContext().setValue(EVALUATIONSCOPE, value); } /** * <i>Generated method</i> - Setter of <code>BTGCondition.results</code> attribute defined at extension <code>btg</code>. * * @param value the results */ public void setResults(final Collection<BTGConditionResultModel> value) { _results = getPersistenceContext().setValue(RESULTS, value); } /** * <i>Generated method</i> - Setter of <code>BTGCondition.rule</code> attribute defined at extension <code>btg</code>. * * @param value the rule */ public void setRule(final BTGRuleModel value) { _rule = getPersistenceContext().setValue(RULE, value); } }
[ "admin1@neev31.(none)" ]
admin1@neev31.(none)
2ef5f62723d05c9f8d5cadff9af10acb90b587be
29f178660ffffd6c66d23734e71c9b5be90c1ddf
/src/main/java/com/ss/lms/service/BorrowerService.java
58c9cc85744382fd0ede20ac80f9fd3c5100e9ce
[]
no_license
cjc2785/SpringAdmin
35bf9a1d1ec269072f086dd327e9e4b76853fa75
a6b595196b79f566a091c5ef2526ef715a732dd6
refs/heads/master
2020-08-13T04:45:43.629690
2019-10-21T19:53:13
2019-10-21T19:53:13
214,700,915
0
0
null
null
null
null
UTF-8
Java
false
false
775
java
package com.ss.lms.service; import com.ss.lms.dao.BorrowerRepository; import com.ss.lms.model.Borrower; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class BorrowerService { @Autowired private BorrowerRepository borrowerRepository; public Borrower save(Borrower borrower) { return borrowerRepository.save(borrower); } public Iterable<Borrower> findAll() { return borrowerRepository.findAll(); } public Borrower findByCardNo(Integer cardNo) { return borrowerRepository.getByCardNo(cardNo); } public void delete(Integer cardNo){ Borrower borrower = findByCardNo(cardNo); borrowerRepository.delete(borrower); } }
1fb985aa5f6a87ee1605841a7717d154f342f9c9
131ad85205b3642eb1ae24dc62aa0327e4ab0afe
/jb-app/jb-algorithem/src/test/java/algorithem/problem66/TreeToListByLevelTest.java
e831ee9dceee163b7f32b01d8faece883e271b6b
[ "Apache-2.0" ]
permissive
ChaojieDZhao/jb-brother
eed228e8f474bf4162e9a94215c2181de30aa245
23c2692a8dbb6ffd1a2b7b03298ddf2b2c622312
refs/heads/main
2023-01-21T20:05:24.071649
2020-12-02T12:12:29
2020-12-02T12:12:29
317,843,897
0
0
null
null
null
null
UTF-8
Java
false
false
1,378
java
package algorithem.problem66; import algorithem.binarytree.BinaryNode; import org.junit.Before; import org.junit.Test; import java.util.List; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; public class TreeToListByLevelTest { private TreeToListByLevel toList; @Before public void setUp() { toList = new TreeToListByLevel(); } @Test public void shouldReturnEmptyListIfTreeIsNull() { List<BinaryNode> result = toList.transform(null); assertTrue(result.isEmpty()); } @Test public void shouldReturnListWithJustOneNodeIfTreeContainsJustOneNode() { BinaryNode<Integer> root = new BinaryNode<Integer>(0); List<BinaryNode> result = toList.transform(root); assertEquals(1, result.size()); assertTrue(result.contains(root)); } @Test public void shouldReturnListWithTreeElementsByLevel() { BinaryNode<Integer> root = new BinaryNode<Integer>(0); BinaryNode<Integer> n1 = new BinaryNode<Integer>(1); BinaryNode<Integer> n2 = new BinaryNode<Integer>(2); BinaryNode<Integer> n3 = new BinaryNode<Integer>(3); root.setLeft(n1); root.setRight(n2); n1.setLeft(n3); List<BinaryNode> result = toList.transform(root); assertEquals(4, result.size()); assertEquals(root, result.get(0)); assertEquals(n1, result.get(1)); assertEquals(n2, result.get(2)); assertEquals(n3, result.get(3)); } }
bd2beafba36bf3b80c8cfd8d57fa3301963fc980
4b0de4866bfa0d7db21208e0e0d9a9e12f3050a3
/app/src/main/java/id/ac/pcr/projekku/event/AddEvent.java
06d7cbe38249c1a90c1f9754b024ad6d9839b08c
[]
no_license
haiqaldani/projek-fitri
10dbf018f60e5c1850a4585d885b2a4f2fbe3b5c
3e548a4f16258181222d8ea33411aa15552e3f24
refs/heads/main
2023-06-27T10:00:45.253633
2021-07-31T10:54:54
2021-07-31T10:54:54
390,767,790
0
0
null
null
null
null
UTF-8
Java
false
false
903
java
package id.ac.pcr.projekku.event; import org.joda.time.LocalDate; import java.util.ArrayList; import java.util.HashMap; import id.ac.pcr.projekku.model.EventModel; import id.ac.pcr.projekku.model.MonthModel; public class AddEvent { public ArrayList<EventModel> arrayList; public HashMap<LocalDate, Integer> indextracker; public ArrayList<MonthModel> monthModels; public AddEvent(ArrayList<EventModel> arrayList, HashMap<LocalDate, Integer> indextracker, ArrayList<MonthModel> monthModels) { this.arrayList = arrayList; this.indextracker = indextracker; this.monthModels = monthModels; } public ArrayList<MonthModel> getMonthModels() { return monthModels; } public ArrayList<EventModel> getArrayList() { return arrayList; } public HashMap<LocalDate, Integer> getIndextracker() { return indextracker; } }
1d7e0bd93b4e528d99d4349c016e8d8e68e17070
399e90bdf69d2da9389a44609f80ecae420be724
/CloudChamber/src/main/java/com/e8security/cloudchamber/whois/dao/ConnectionManager.java
01f1cc6c2eda1aab46fc1f660f2208d2352da74c
[]
no_license
WhoIsFission/WhoIs
b7b13cf3796c683729bda4409718139fc1f2eb6b
1ced6140582af475b6aef5df1d43bde42f48b4f2
refs/heads/master
2021-01-10T18:37:13.138327
2014-03-05T12:33:56
2014-03-05T12:33:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,592
java
package com.e8security.cloudchamber.whois.dao; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.e8security.cloudchamber.whois.configuration.WhoIsConfiguration; import com.e8security.cloudchamber.whois.exceptionHandling.WhoIsException; /*** * ConnectionManager is used as a connection pool manager with configured no. of connections * to be maintained in a queue. * * @author Abhijit * */ public class ConnectionManager { private final static Logger logger=LoggerFactory.getLogger(ConnectionManager.class); private static ConnectionManager CONNECTION_MANAGER; private static WhoIsConfiguration conf; private static int MAX_CONNECTION; private final BlockingQueue<Connection> CONNECTION_QUEUE=new LinkedBlockingQueue<Connection>(); private ConnectionManager(){ } /** * Getting ConnectionManager instance out of the given configuration and initializing connection queue. * * @param conf * @return ConnectionManager * @throws WhoIsException */ public static ConnectionManager getConnectionManager(WhoIsConfiguration conf) throws WhoIsException{ if(logger.isDebugEnabled()) logger.debug("Getting connection manager instance and initializing Connection queue"); if(CONNECTION_MANAGER==null){ synchronized(ConnectionManager.class){ if(CONNECTION_MANAGER==null){ CONNECTION_MANAGER=new ConnectionManager(); ConnectionManager.conf=conf; ConnectionManager.MAX_CONNECTION=ConnectionManager.conf.getConnectionPool(); try { CONNECTION_MANAGER.init(); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block if(logger.isErrorEnabled()) logger.error("Class Not found for configured driver class in Cnfiguration.yml"); throw new WhoIsException("Driver class not found",e); } catch (SQLException e) { // TODO Auto-generated catch block if(logger.isErrorEnabled()) logger.error("SQL exception while initializing connections to pool"); throw new WhoIsException("Exception initializing connections",e); } catch (InterruptedException e) { // TODO Auto-generated catch block if(logger.isErrorEnabled()) logger.error("SQL exception while initializing connections to pool"); throw new WhoIsException("Thread Interrupted initializing connections",e); } } } } return CONNECTION_MANAGER; } /* * initialize Connection manager queue * */ private void init() throws ClassNotFoundException, SQLException, InterruptedException{ if(logger.isDebugEnabled()) logger.debug("Fetching DB connection objects and stores them in Connection queue."); Class.forName(conf.getDatabase().getDriverClass()); for(int i=0;i<MAX_CONNECTION;i++){ Connection connection=DriverManager.getConnection(conf.getDatabase().getUrl(), conf.getDatabase().getUser(), conf.getDatabase().getPassword()); CONNECTION_QUEUE.put(connection); } } /** * Fetching Connection object from Connection queue. * * @return Connection * @throws WhoIsException * */ public Connection getConnection() throws WhoIsException { if(logger.isDebugEnabled()) logger.debug("Retrieving connection object from connection queue."); try { return CONNECTION_QUEUE.take(); } catch (InterruptedException e) { // TODO Auto-generated catch block if(logger.isErrorEnabled()) logger.error("Exception retreiving connection from queue"); throw new WhoIsException("Process interrupted while retreiving connection by DAO layer",e); } } /** * Closing connection : Putting connection object back into the queue. * * @param Connection * @throws WhoIsException * */ public void closeConnection(Connection conn) throws WhoIsException{ if(logger.isDebugEnabled()) logger.debug("Putting connection object back into queue."); boolean flag=true; synchronized (CONNECTION_MANAGER) { if(CONNECTION_QUEUE.size()>=MAX_CONNECTION){ flag=false; } } if(flag){ try { CONNECTION_QUEUE.put(conn); } catch (InterruptedException e) { // TODO Auto-generated catch block if(logger.isErrorEnabled()) logger.error("Exception putting connection to connection queue"); throw new WhoIsException("Process interrupted while putting connections back to queue",e); } } } }
e01ccfd79d290548e728ed9b728d734f23161adc
72fc6b316f1f215f2a6d31136cee615c983a528b
/src/main/java/com/maple/ftpdemo/bean/FtpBean.java
0999efd5cedea4f94ce71a452cdc3cc28d6546b3
[]
no_license
hack-feng/ftpdemo
2fd30c9f2e83a63bb539ece39aff9c0c64f52f6b
1ff7f6eadea9aef041be6852c8c281a9a184eaf5
refs/heads/master
2020-04-29T08:33:56.594121
2019-03-16T17:03:38
2019-03-16T17:03:38
175,990,360
2
1
null
null
null
null
UTF-8
Java
false
false
2,199
java
package com.maple.ftpdemo.bean; import java.io.InputStream; /** * @Project : ftpdemo * @Program Name : com.maple.ftpdemo.bean.FtpBean.java * @Class Name : FtpBean * @Description : 类描述 * @Author : Maple * @Creation Date : 2019年3月15日 下午1:26:12 * @ModificationHistory * Who When What * -------- ---------- ----------------------------------- * username 2019年3月15日 FTP实体类信息,封装FTP服务器信息,上传文件基本信息 */ public class FtpBean { //获取ip地址 private String address; //端口号 private String port; //用户名 private String username; //密码 private String password; //文件名称 private String fileName; //基本路 private String basepath; //文件输入流 private InputStream inputStream; //保存文件方式 默认:1-覆盖;2-文件名称后面+(递增数据) private Integer saveFileType; public String getAddress() { return address == null ? "127.0.0.1":address; } public void setAddress(String address) { this.address = address; } public String getPort() { return port == null ? "21":port; } public void setPort(String port) { this.port = port; } public String getUsername() { return username == null ? "maple":username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password == null ?"xxxxxxx":password; } public void setPassword(String password) { this.password = password; } public String getFileName() { return fileName == null ?"未命名":fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getBasepath() { return basepath == null ?"/local":basepath; } public void setBasepath(String basepath) { this.basepath = basepath; } public InputStream getInputStream() { return inputStream; } public void setInputStream(InputStream inputStream) { this.inputStream = inputStream; } public Integer getSaveFileType() { return saveFileType != 1 ? 2:saveFileType; } public void setSaveFileType(Integer saveFileType) { this.saveFileType = saveFileType; } }
[ "1150640979@qq,com" ]
1150640979@qq,com
92dff83b0715b266eadab7aeb84f5cb7c92217a1
67a443c971ef62c62b33472295b9b134bec30194
/common/src/main/java/com/rome/common/rpc/basic/FileUploadReqOrBuilder.java
ff30bb583878643004a3643f305bec2a288a0af5
[]
no_license
lizhenyu0128/company_project
64be2b0db9ee324ec63fc864698fb3196238719a
e84b600f22820f916bd1ef8704bb27a484937284
refs/heads/master
2022-10-21T04:16:50.242790
2019-07-09T03:13:24
2019-07-09T03:13:24
191,302,346
0
0
null
2022-10-05T19:29:53
2019-06-11T05:47:07
Java
UTF-8
Java
false
true
712
java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: Basic.proto package com.rome.common.rpc.basic; public interface FileUploadReqOrBuilder extends // @@protoc_insertion_point(interface_extends:com.rome.common.rpc.basic.FileUploadReq) com.google.protobuf.MessageOrBuilder { /** * <code>string imageByte = 1;</code> */ java.lang.String getImageByte(); /** * <code>string imageByte = 1;</code> */ com.google.protobuf.ByteString getImageByteBytes(); /** * <code>string userAccount = 2;</code> */ java.lang.String getUserAccount(); /** * <code>string userAccount = 2;</code> */ com.google.protobuf.ByteString getUserAccountBytes(); }
6ca4779ff3d4587766d7ede4b8873f32cb247eb9
ca4bd966b2d4fa51d7a91d7c8af3ed872b2574f1
/src/main/java/ua/nure/kovteba/finaltask/controller/start/Registration.java
78570737b8af7471ccb63157fdd27cda09c3be3a
[]
no_license
kovteba/motordeport_jdbc_servlet
ac0d327383d72ebd0e708e08fae8e39e994c89f8
f2b03fba1672b048e795028d7b5323c753380e30
refs/heads/master
2023-04-09T00:31:43.851057
2020-09-10T19:51:44
2020-09-10T19:51:44
248,831,296
0
0
null
2023-03-27T22:22:23
2020-03-20T18:59:50
Java
UTF-8
Java
false
false
2,684
java
package ua.nure.kovteba.finaltask.controller.start; import ua.nure.kovteba.finaltask.dao.user.UserDAO; import ua.nure.kovteba.finaltask.dao.user.UserDAOImpl; import ua.nure.kovteba.finaltask.entity.User; import ua.nure.kovteba.finaltask.enumlist.Role; import ua.nure.kovteba.finaltask.util.Encryption; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.FileInputStream; import java.io.IOException; import java.util.Properties; import java.util.logging.Logger; @WebServlet( name = "registration", urlPatterns = "/registration" ) public class Registration extends HttpServlet { //Create logger private static Logger log = Logger.getLogger(Registration.class.getName()); private static UserDAO userDAO; @Override public void init(ServletConfig config) throws ServletException { super.init(config); userDAO = new UserDAOImpl(); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.setCharacterEncoding("UTF-8"); log.info("Regestration servlet " + this.getClass()); User user = null; Properties properties = new Properties(); FileInputStream secretCodeProperties = new FileInputStream("src/main/resources/application.properties"); properties.load(secretCodeProperties); String secretCode = properties.getProperty("secret.code"); if (secretCode.equals(req.getParameter("secretCode"))){ //find user by phone number String phoneNumber = req.getParameter("phoneNumberAdmin"); User findUser = userDAO.getUserByUserPhoneNumber(phoneNumber); if (findUser == null) { //create new user with role "ADMIN" User newDriver = new User(); newDriver.setFirstName(req.getParameter("firstNameAdmin")); newDriver.setLastName(req.getParameter("lastNameAdmin")); newDriver.setPhoneNumber(phoneNumber); newDriver.setPassword(Encryption.SHA256(req.getParameter("passwordAdmin"))); newDriver.setRole(Role.ADMIN); newDriver.setEmail(req.getParameter("emailAdmin")); Long newDriverId = userDAO.createUser(newDriver); } else { log.warning("User with " + phoneNumber + " already exist!! " + this.getClass()); } } resp.sendRedirect(""); } }
8a8fc5fd125bd7a82b50adb6e7a8f01ecd42d369
c3d491dcebec6c8db08e13889c1cbf28ee46e3ca
/src/main/java/com/greekshop/model/OrderInfo.java
6b6cfbaa9cf3c26ce4f81fb90e0f2b39aea82ad3
[]
no_license
MarkielFP/GreekShop
3543779476210f5a3b7460e7813f3432dd3d0e4f
dee6c629c4f262d59341301caa56f0bb759f7e73
refs/heads/master
2020-03-28T19:26:11.149826
2018-10-01T18:33:51
2018-10-01T18:33:51
148,976,151
0
0
null
null
null
null
UTF-8
Java
false
false
2,576
java
package com.greekshop.model; import java.util.Date; import java.util.List; public class OrderInfo { private String id; private Date orderDate; private int orderNum; private double amount; private String customerName; private String customerAddress; private String customerEmail; private String customerPhone; private List<OrderDetailInfo> details; public OrderInfo() { } // Using for Hibernate Query. public OrderInfo(String id, Date orderDate, int orderNum, // double amount, String customerName, String customerAddress, // String customerEmail, String customerPhone) { this.id = id; this.orderDate = orderDate; this.orderNum = orderNum; this.amount = amount; this.customerName = customerName; this.customerAddress = customerAddress; this.customerEmail = customerEmail; this.customerPhone = customerPhone; } public String getId() { return id; } public void setId(String id) { this.id = id; } public Date getOrderDate() { return orderDate; } public void setOrderDate(Date orderDate) { this.orderDate = orderDate; } public int getOrderNum() { return orderNum; } public void setOrderNum(int orderNum) { this.orderNum = orderNum; } public double getAmount() { return amount; } public void setAmount(double amount) { this.amount = amount; } public String getCustomerName() { return customerName; } public void setCustomerName(String customerName) { this.customerName = customerName; } public String getCustomerAddress() { return customerAddress; } public void setCustomerAddress(String customerAddress) { this.customerAddress = customerAddress; } public String getCustomerEmail() { return customerEmail; } public void setCustomerEmail(String customerEmail) { this.customerEmail = customerEmail; } public String getCustomerPhone() { return customerPhone; } public void setCustomerPhone(String customerPhone) { this.customerPhone = customerPhone; } public List<OrderDetailInfo> getDetails() { return details; } public void setDetails(List<OrderDetailInfo> details) { this.details = details; } }
8802af1784478505eaf176879548bd2ea69d23f1
93b0beab85ffb1e6e4ebd4a2129aea3c72851567
/ppdai-sms/ac-sms-api/ac-sms-admin/src/main/java/com/ppdai/ac/sms/contract/model/vo/TemplateApproveVo.java
613e01f3eb4d866ccc958bec69c9803a373e1c16
[]
no_license
qqbenst/sms
3d60a06d846bbe57fdae366513252c7ef2888fc2
6cda716eea98aae84ace153a8b1b82e886509fb4
refs/heads/master
2021-12-22T10:11:56.962033
2017-10-12T14:39:27
2017-10-12T14:39:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,251
java
package com.ppdai.ac.sms.contract.model.vo; import com.fasterxml.jackson.annotation.JsonProperty; import io.swagger.annotations.ApiModelProperty; import java.sql.Date; import java.sql.Timestamp; /** * Created by wangxiaomei02 on 2017/5/10. * 模板审批列表页 * */ public class TemplateApproveVo { @JsonProperty("departmentId") private int departmentId; @JsonProperty("applicantEmail") private String applicantEmail; @JsonProperty("content") private String content; @JsonProperty("maxCount") private int maxCount; @JsonProperty("totalMaxCount") private int totalMaxCount; @JsonProperty("intervalTime") private int intervalTime; @JsonProperty("templateId") private int templateId; @JsonProperty("title") private String title; @JsonProperty("applicant") private String applicant; @JsonProperty("applyTime") private Timestamp applyTime; @JsonProperty("businessId") private int businessId; @JsonProperty("messageKind") private int messageKind; @JsonProperty("callerId") private int callerId; @JsonProperty("reason") private String reason; @JsonProperty("approveStatus") private int approveStatus; public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } public int getMaxCount() { return maxCount; } public void setMaxCount(int maxCount) { this.maxCount = maxCount; } @ApiModelProperty(value = "部门") public int getDepartmentId() { return departmentId; } public void setDepartmentId(int departmentId) { this.departmentId = departmentId; } @ApiModelProperty(value = "申请人邮箱") public String getApplicantEmail() { return applicantEmail; } public void setApplicantEmail(String applicantEmail) { this.applicantEmail = applicantEmail; } @ApiModelProperty(value = "模板内容") public String getContent() { return content; } public void setContent(String content) { this.content = content; } @ApiModelProperty(value = "单日限制条数") public int getTotalMaxCount() { return totalMaxCount; } public void setTotalMaxCount(int totalMaxCount) { this.totalMaxCount = totalMaxCount; } @ApiModelProperty(value = "间隔时间") public int getIntervalTime() { return intervalTime; } public void setIntervalTime(int intervalTime) { this.intervalTime = intervalTime; } @ApiModelProperty(value = "模板状态") public int getApproveStatus() { return approveStatus; } public void setApproveStatus(int approveStatus) { this.approveStatus = approveStatus; } @ApiModelProperty(value = "标题") public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @ApiModelProperty(value = "申请人") public String getApplicant() { return applicant; } public void setApplicant(String applicant) { this.applicant = applicant; } @ApiModelProperty(value = "申请时间") public Timestamp getApplyTime() { return applyTime; } public void setApplyTime(Timestamp applyTime) { this.applyTime = applyTime; } @ApiModelProperty(value = "业务类型") public int getBusinessId() { return businessId; } public void setBusinessId(int businessId) { this.businessId = businessId; } @ApiModelProperty(value = "模板类型") public int getMessageKind() { return messageKind; } public void setMessageKind(int messageKind) { this.messageKind = messageKind; } @ApiModelProperty(value = "接入方") public int getCallerId() { return callerId; } public void setCallerId(int callerId) { this.callerId = callerId; } @ApiModelProperty(value = "模板id") public int getTemplateId() { return templateId; } public void setTemplateId(int templateId) { this.templateId = templateId; } }
ace526e0abc87d86905d3dd128e31663c9a35c1e
6baf1fe00541560788e78de5244ae17a7a2b375a
/hollywood/com.oculus.assistant-base/sources/X/HH.java
74a954ff345055dae8c567f46401a9dcaf7fb16e
[]
no_license
phwd/quest-tracker
286e605644fc05f00f4904e51f73d77444a78003
3d46fbb467ba11bee5827f7cae7dfeabeb1fd2ba
refs/heads/main
2023-03-29T20:33:10.959529
2021-04-10T22:14:11
2021-04-10T22:14:11
357,185,040
4
2
null
2021-04-12T12:28:09
2021-04-12T12:28:08
null
UTF-8
Java
false
false
588
java
package X; import android.content.SharedPreferences; public final class HH { public static final ZW A02; public static final ZW A03; public static final ZW A04; public final boolean A00 = true; public final SharedPreferences A01; public HH(SharedPreferences sharedPreferences) { this.A01 = sharedPreferences; } static { ZW zw = HL.A0C; ZW zw2 = new ZW(zw, "papaya/", zw.A00); A03 = zw2; A02 = new ZW(zw2, "client_id_key", zw2.A00); ZW zw3 = A03; A04 = new ZW(zw3, "store_path", zw3.A00); } }
5f9fc15c5773a4791b99f3c1eb082f1842c22669
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/2/2_fc78cf9170f8545bd35e05daaa74e7e14d1e261b/DefaultResourceLocator/2_fc78cf9170f8545bd35e05daaa74e7e14d1e261b_DefaultResourceLocator_t.java
c73e093e66fda3fe386e086090f4d3d30ffd4408
[]
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
2,953
java
/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2005-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. */ package org.geotools.styling; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import org.geotools.data.DataUtilities; /** * Default locator for online resources. Searches by absolute URL, relative * path w.r.t. to SLD document or classpath. * * @author Jan De Moerloose * */ public class DefaultResourceLocator implements ResourceLocator { URL sourceUrl; private static final java.util.logging.Logger LOGGER = org.geotools.util.logging.Logging .getLogger("org.geotools.styling"); public void setSourceUrl(URL sourceUrl) { this.sourceUrl = sourceUrl; } public URL locateResource(String uri) { URL url = null; try { url = new URL(uri); //url is valid, check if it is relative File f = DataUtilities.urlToFile(url); if (f != null && !f.isAbsolute()) { //ok, relative url, if the file exists when we are ok if (!f.exists() && sourceUrl != null) { URL relativeUrl = makeRelativeURL(f.getPath()); if (relativeUrl != null) { f = DataUtilities.urlToFile(relativeUrl); if (f.exists()) { //bingo! url = relativeUrl; } } } } } catch (MalformedURLException mfe) { LOGGER.fine("Looks like " + uri + " is a relative path.."); if (sourceUrl != null) { url = makeRelativeURL(uri); } if (url == null) { url = getClass().getResource(uri); if (url == null) LOGGER.warning("can't parse " + uri + " as a java resource present in the classpath"); } } return url; } URL makeRelativeURL(String uri) { try { return new URL(sourceUrl, uri); } catch (MalformedURLException e) { LOGGER.warning("can't parse " + uri + " as relative to" + sourceUrl.toExternalForm()); } return null; } }
98c249d76edea34a88a8ed99177d92810daa9c1b
2f4335c4f0ac8299bc86d7f19a48084ac89605ca
/Uri1008.java
87f60bcd21475db4bb7a78bd5864f3e391e18ecb
[]
no_license
LucioMiyaji/java
554848e6d94fa9980064c31c637a744f7c8a79c3
38c9eea874bab3714d36fb5c877a1491559fb859
refs/heads/master
2023-01-11T12:44:33.457179
2020-11-12T14:11:05
2020-11-12T14:11:05
312,291,520
0
0
null
null
null
null
UTF-8
Java
false
false
428
java
import java.util.Scanner; public class Uri1008{ public static void main(String args[]){ Scanner teclado; teclado = new Scanner(System.in); int F,H; double V,S; F = teclado.nextInt(); H = teclado.nextInt(); V = teclado.nextDouble(); S = H * V; System.out.println("NUMBER = "+F); System.out.printf("SALARY = U$ %.2f\n",S); } }
6a0c272c7bd0900b1705a86e6dfb624615649d42
3b2ea7273732189945ad44f966efeaecdbca0c5b
/src/gui/org/deidentifier/arx/gui/view/impl/common/ComponentGSSlider.java
766b25f05a21017c232ee5a3850099a4b750f4e0
[ "Apache-2.0" ]
permissive
ramongonze/arx
3bfbeb8913320b1033cb3b8eec3a22ceba26db3e
8a936d3d5607b8f10957c16c1e2781d94b9f2904
refs/heads/master
2020-12-26T08:19:55.053796
2020-11-18T02:01:48
2020-11-18T02:01:48
237,444,693
1
0
Apache-2.0
2020-01-31T14:19:21
2020-01-31T14:19:21
null
UTF-8
Java
false
false
8,615
java
/* * ARX: Powerful Data Anonymization * Copyright 2012 - 2020 Fabian Prasser and contributors * * 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.deidentifier.arx.gui.view.impl.common; import org.deidentifier.arx.gui.resources.Resources; import org.eclipse.jface.layout.GridDataFactory; import org.eclipse.jface.layout.GridLayoutFactory; import org.eclipse.swt.SWT; import org.eclipse.swt.events.DisposeEvent; import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Scale; /** * This component allows to configure the coding model. * * @author Fabian Prasser */ public class ComponentGSSlider { /** Color */ private final Color COLOR_MEDIUM; /** Color */ private final Color COLOR_LIGHT; /** Color */ private final Color COLOR_DARK; /** Constant */ private static final int MINIMUM = 0; /** Constant */ private static final int MAXIMUM = 1000; /** Widget */ private final Scale slider; /** Widget */ private final Composite root; /** Widget */ private final Canvas canvas; /** Button */ private final Button button; /** * Creates a new instance. * * @param parent */ public ComponentGSSlider(final Composite parent) { // Colors COLOR_LIGHT = new Color(parent.getDisplay(), 230, 230, 230); COLOR_MEDIUM = new Color(parent.getDisplay(), 200, 200, 200); COLOR_DARK = new Color(parent.getDisplay(), 128, 128, 128); final Color COLOR_TEXT = parent.getDisplay().getSystemColor(SWT.COLOR_WIDGET_FOREGROUND); this.root = new Composite(parent, SWT.NONE); this.root.setLayout(GridLayoutFactory.swtDefaults().numColumns(1).margins(3, 3).create()); this.root.addDisposeListener(new DisposeListener(){ @Override public void widgetDisposed(DisposeEvent arg0) { if (COLOR_LIGHT != null && !COLOR_LIGHT.isDisposed()) COLOR_LIGHT.dispose(); if (COLOR_MEDIUM != null && !COLOR_MEDIUM.isDisposed()) COLOR_MEDIUM.dispose(); if (COLOR_DARK != null && !COLOR_DARK.isDisposed()) COLOR_DARK.dispose(); } }); // Triangle view final int WIDTH = 3; final int OFFSET = 10; this.canvas = new Canvas(root, SWT.DOUBLE_BUFFERED); this.canvas.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1)); this.canvas.addPaintListener(new PaintListener() { @Override public void paintControl(PaintEvent e) { e.gc.setAdvanced(true); e.gc.setAntialias(SWT.ON); final Color COLOR_BACKGROUND = root.getBackground(); final Point size = canvas.getSize(); final int width = size.x; final int height = size.y; final int x = (int) Math.round(getSelection() * (double) (width - OFFSET / 2 - WIDTH * 2 + 2)); int[] left = new int[] {0, 0, width-OFFSET/2, 0, 0, height - OFFSET}; int[] right = new int[] {width-OFFSET/2, OFFSET/2, width-OFFSET/2, height - OFFSET/2, 0, height - OFFSET/2}; int[] center = new int[] {left[2], left[3], left[4], left[5], right[4], right[5], right[0], right[1]}; e.gc.setForeground(COLOR_DARK); e.gc.setBackground(COLOR_BACKGROUND); e.gc.fillRectangle(0, 0, width, height); e.gc.setBackground(COLOR_MEDIUM); e.gc.fillPolygon(left); e.gc.setForeground(COLOR_TEXT); e.gc.drawText(Resources.getMessage("ViewCodingModel.0"), OFFSET, OFFSET); //$NON-NLS-1$ e.gc.setBackground(COLOR_LIGHT); e.gc.fillPolygon(right); final String string = Resources.getMessage("ViewCodingModel.1"); //$NON-NLS-1$ e.gc.setForeground(COLOR_TEXT); Point extent = e.gc.textExtent(string); e.gc.drawText(string, width - OFFSET - extent.x, height - OFFSET - extent.y); e.gc.setForeground(COLOR_DARK); e.gc.setLineWidth(3); e.gc.drawLine(WIDTH + x - 1, 0, WIDTH + x - 1, height - OFFSET / 2); e.gc.setBackground(COLOR_BACKGROUND); e.gc.fillPolygon(center); e.gc.setForeground(COLOR_DARK); e.gc.setLineWidth(1); e.gc.drawPolygon(left); e.gc.drawPolygon(right); } }); // Slider Composite sliderBase = new Composite(this.root, SWT.NONE); sliderBase.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); sliderBase.setLayout(GridLayoutFactory.fillDefaults().numColumns(2).create()); slider = new Scale(sliderBase, SWT.HORIZONTAL); slider.setMinimum(MINIMUM); slider.setMaximum(MAXIMUM); slider.setLayoutData(GridDataFactory.fillDefaults().grab(true, false).create()); slider.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent arg0) { canvas.redraw(); } }); // Button button = new Button(sliderBase, SWT.FLAT); button.setLayoutData(GridDataFactory.fillDefaults().grab(false, false).align(SWT.LEFT, SWT.CENTER).create()); button.setText(Resources.getMessage("ViewCodingModel.2")); //$NON-NLS-1$ button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent arg0) { setSelection(0.5d); canvas.redraw(); } }); root.pack(); this.setSelection(0.5d); } /** * Adds a selection listener * @param listener */ public void addSelectionListener(SelectionListener listener) { this.slider.addSelectionListener(listener); this.button.addSelectionListener(listener); } /** * Gets the selection * @return */ public double getSelection() { return ((double)slider.getSelection() - MINIMUM) / (double)(MAXIMUM - MINIMUM); } /** * Sets layout data * @param data */ public void setLayoutData(Object data) { this.root.setLayoutData(data); } /** * Sets the selection * @param selection */ public void setSelection(double selection) { if (selection > 1d) { selection = 1d; } if (selection < 0d) { selection = 0d; } int value = (int)(MINIMUM + selection * (double)(MAXIMUM - MINIMUM)); if (!this.root.isDisposed()) this.root.setRedraw(false); if (!this.slider.isDisposed()) this.slider.setSelection(value); if (!this.canvas.isDisposed()) this.canvas.redraw(); if (!this.root.isDisposed()) this.root.setRedraw(true); } }
569d744e1d3bb6e9a4178c677bf76b4d391abd08
53612725cef09779f728ff547914740840ff2f00
/Parcial2.1/src/main/java/com/uca/capas/dao/LibroDAO.java
450c6356fac94e4b545c38f30b63345062c2c243
[]
no_license
D1egoPolanco/parcial-capas
57adc0ef0a56011a1d166e589796e527a0baef9a
9b19004b2f6c9b60fef81cc390ae0d10078ec377
refs/heads/master
2022-08-21T13:08:52.518559
2020-05-26T05:27:42
2020-05-26T05:27:42
266,940,270
0
0
null
null
null
null
UTF-8
Java
false
false
424
java
package com.uca.capas.dao; import java.util.List; import org.springframework.dao.DataAccessException; import com.uca.capas.domain.Libro; public interface LibroDAO { public List<Libro> findAll() throws DataAccessException; public Libro findOne(Integer codigo) throws DataAccessException; public void insert(Libro libro) throws DataAccessException; public void delete(Libro libro) throws DataAccessException; }
46b851c94bbce35c84f714c1df8c6a4d58cb7afe
d6c4366b29df019500921706dc0e19ecd13f8971
/src/main/java/com/callhub/flipkart/pages/LoginPage.java
ab65508d8c658f4846ed17245cbba4cb1c8eb387
[]
no_license
swethaplexasys/FlipcartAutomation
74f35ceef694894f5edd116ebe41cdf79e19f682
56922dfcfa0a286b8e0bc570e0f2a8edf73363ad
refs/heads/master
2022-12-04T11:26:07.992399
2020-08-27T08:06:01
2020-08-27T08:06:01
290,710,499
0
0
null
null
null
null
UTF-8
Java
false
false
2,424
java
package com.callhub.flipkart.pages; import java.util.concurrent.TimeUnit; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.openqa.selenium.NoSuchElementException; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import org.testng.SkipException; import com.callhub.flipkart.base.Driver; public class LoginPage extends Driver { public static Logger log=LogManager.getLogger(LoginPage.class.getName()); @FindBy(xpath="//span[contains(text(),'CONTINUE')]") WebElement conti; @FindBy(xpath="//button[contains(text(),'Login with Password')]") WebElement loginwithpass; @FindBy(xpath="//input[@class='_2zrpKA _1dBPDZ']") WebElement email; @FindBy(xpath="//input[@class='_2zrpKA _3v41xv _1dBPDZ']") WebElement password; @FindBy(xpath="//button[@class='_2AkmmA _1LctnI _7UHT_c']") WebElement loginButton; @FindBy(xpath="//*[@class='ZAtlA-']") WebElement errorLabel; public LoginPage() { log.info("initializing driver"); PageFactory.initElements(driver, this); } public Homepage LoginToHome(String username,String pass) throws Exception { log.info("clicking on email"); email.click(); log.info("clicked"); log.info("Typing username"); email.sendKeys(username); try { driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS); conti.click(); log.info("Continue button Found! Clicking Continue!"); loginwithpass.click(); log.info("Clicking Login with Password"); password.click(); password.sendKeys(pass); log.info("Password typed"); } catch(NoSuchElementException e) { log.info("Exception thrown: Continue button not present. Proceeding with normal login. "); password.click(); password.sendKeys(pass); log.info("Password entered."); } loginButton.click(); log.info("Login button clicked."); try { if(!errorLabel.isDisplayed()) { log.info("Username and Password verified!..Loading HomePage..."); return new Homepage(); } else { log.error("Your username or password is incorrect"); throw new Exception("Your username or password is incorrect"); } }catch(NoSuchElementException e) { log.info("Username and Password verified!..Loading to HomePage."); return new Homepage(); } } }
521145210553452454e858b1872a00e352411b20
98b13e9eb7ee07c682bd74a287bc75571804136a
/MySharedPreferences/app/src/main/java/com/example/mysharedpreferences/UserPreference.java
2032676c4b1c63db2a2d5c3f11a7ad2b8bb0d642
[]
no_license
ddhira123/Belajar-Android-Development
3961eea8060ef11ea1efeb8cd160235e6536a342
51b0c8fe1eb634d66c4409b59b09b2f60b9619db
refs/heads/master
2023-01-23T01:33:22.671453
2020-10-07T04:15:20
2020-10-07T04:15:20
276,830,281
0
0
null
null
null
null
UTF-8
Java
false
false
1,451
java
package com.example.mysharedpreferences; import android.content.Context; import android.content.SharedPreferences; import com.example.mysharedpreferences.UserModel; class UserPreference { private static final String PREFS_NAME = "user_pref"; private static final String NAME = "name"; private static final String EMAIL = "email"; private static final String AGE = "age"; private static final String PHONE_NUMBER = "phone"; private static final String LOVE_MU = "islove"; private final SharedPreferences preferences; UserPreference(Context context) { preferences = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE); } UserModel getUser() { UserModel model = new UserModel(); model.setName(preferences.getString(NAME, "")); model.setEmail(preferences.getString(EMAIL, "")); model.setAge(preferences.getInt(AGE, 0)); model.setPhoneNumber(preferences.getString(PHONE_NUMBER, "")); model.setLove(preferences.getBoolean(LOVE_MU, false)); return model; } public void setUser(UserModel value) { SharedPreferences.Editor editor = preferences.edit(); editor.putString(NAME, value.name); editor.putString(EMAIL, value.email); editor.putInt(AGE, value.age); editor.putString(PHONE_NUMBER, value.phoneNumber); editor.putBoolean(LOVE_MU, value.isLove); editor.apply(); } }
b3cab38bdc6decb72a87e01c807c3537004f91f2
e586caf984cf3aee4f13e7043c69ef6937bd345d
/SMSAutomation/smsautomation/src/main/java/pageObjects/thrive/ManageImageGalleryPage.java
6b0c434dab0fe30811a0206f0849c65b32277d22
[]
no_license
oludarebusari/SMSAutomation
10386d7bb9428b3a7d28e066d50f8500df20b7b0
9a527f3cf2dec27961b517c8a02ad38eeef9da18
refs/heads/master
2023-04-27T16:41:01.437698
2020-07-11T02:03:59
2020-07-11T02:03:59
232,227,629
0
0
null
null
null
null
UTF-8
Java
false
false
1,180
java
package pageObjects.thrive; import java.io.IOException; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import pageObjects.BasePage; public class ManageImageGalleryPage extends BasePage { public ManageImageGalleryPage() throws IOException { super(); } public @FindBy(xpath = "//a[normalize-space()=\"Name\"]") WebElement col_Name; public @FindBy(xpath = "//th[normalize-space()=\"Count\"]") WebElement col_Count; public @FindBy(xpath = "//th[normalize-space()=\"Actions\"]") WebElement col_Actions; public @FindBy(xpath = "//tbody") WebElement par_ManageElement; public WebElement btn_Manage(String name) { return par_ManageElement.findElement(By.xpath("//tr[td[text()=\'" + name + "']]//a[normalize-space()=\"Manage\"]")); } public WebElement btn_Manage(int value, String name) { return par_ManageElement.findElement(By.xpath("//tr[td[text()=\'" + name + "']][" + value + "]//a[normalize-space()=\"Manage\"]")); } public WebElement countValue(String name) { return par_ManageElement.findElement(By.xpath("//tr[td[text()=\'" + name + "']]//td[2]")); } }
234c54867c6d9a9c2e85d35cff92e137f962b029
0b666255a6945aa84281e5f64f6ccaab45c4ca13
/cmsv2.0.0/src/com/app/cms/dao/main/CmsModelDao.java
892ebdc18445dd2329207ca1ea05a45b3ece6d54
[]
no_license
zhangygit/cmsv2.0.0
a8cdc77ceb99b50bdf5b8ac7c99244c3ecc7e43a
d54ae6bc9855860c7d447629d31d22e2c9417d31
refs/heads/master
2021-01-17T21:28:52.841407
2014-08-25T02:13:00
2014-08-25T02:13:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
507
java
package com.app.cms.dao.main; import java.util.List; import com.app.cms.entity.main.CmsModel; import com.app.common.hibernate3.Updater; public interface CmsModelDao { public List<CmsModel> getList(boolean containDisabled,Boolean hasContent); public CmsModel getDefModel(); public CmsModel findById(Integer id); public CmsModel findByPath(String path); public CmsModel save(CmsModel bean); public CmsModel updateByUpdater(Updater<CmsModel> updater); public CmsModel deleteById(Integer id); }
81bb320ade55d9d8422677d23581b7085a39cb32
6585b0799baf28828e4867c994e98fb23a9c2ff3
/OperasiString.java
6184bb745792679d0b4a4c0e99132dcba841b95b
[]
no_license
haekiyo/E41202305_NurHakikiDamayanti_GolonganD
5119c3ce51c6cef4a8f8fdac6adb0842432d6d2a
1e42f5c54de03fdd89afa93d02efba33e544a066
refs/heads/main
2023-06-07T10:27:42.096503
2021-07-08T03:20:19
2021-07-08T03:20:19
347,871,818
0
0
null
null
null
null
UTF-8
Java
false
false
655
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 wsibd3; /** * * @author LENOVO */ public class OperasiString { public static void main(String[] args) { String s1 = "ABC"; String s2 = new String("DEF"); String s3 = "AB" + "C"; System.out.println(s1.compareTo(s2)); System.out.println(s2.equals(s3)); System.out.println(s3 == s1); System.out.println(s2.compareTo(s3)); System.out.println(s3.equals(s1)); } }
31f778e21bd0dc3282ae490652103670803663d8
0ac8b10d1a8e5c41ed32153eece5fcef9a5911d3
/SpringBoot/Muzix/src/test/java/com/stackroute/Muzix/repository/TrackRepositoryTest.java
e05d572aa7ad8bc111dde5970b873127184d677f
[]
no_license
DipaliRShinde/Backup
083d6e315f1b4d309b3e7528be695910fbb4764d
b74f00894d09d2b6c435280288f6bda1c9775b2b
refs/heads/master
2023-01-07T23:24:51.786015
2019-06-26T11:28:07
2019-06-26T11:28:07
193,877,853
0
0
null
null
null
null
UTF-8
Java
false
false
1,714
java
package com.stackroute.Muzix.repository; import com.stackroute.Muzix.domain.Track; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest; import org.springframework.test.context.junit4.SpringRunner; import java.util.List; @RunWith(SpringRunner.class) @DataJpaTest public class TrackRepositoryTest { @Autowired private TrackRepository trackRepository; private Track track; @Before public void setUp() { track = new Track(); track.setTrackID(4); track.setTrackName("Fourth"); track.setTrackComments("Good Song"); } @After public void tearDown(){ trackRepository.deleteAll(); } @Test public void testSaveTrack(){ trackRepository.save(track); Track fetchUser = trackRepository.findById(track.getTrackID()).get(); Assert.assertEquals(4,fetchUser.getTrackID()); } @Test public void testSaveTrackFailure(){ Track testUser = new Track(5,"Fifth","Gud"); trackRepository.save(track); Track fetchUser = trackRepository.findById(track.getTrackID()).get(); Assert.assertNotSame(testUser,track); } @Test public void testGetAllTrack(){ Track u = new Track(6,"Sixth","Bad"); Track u1 = new Track(7,"Seventh","Gud"); trackRepository.save(u); trackRepository.save(u1); List<Track> list = (List<Track>) trackRepository.findAll(); Assert.assertEquals("Sixth",list.get(0).getTrackName()); } }
e444294084d0993a3cef6a1b0da9c874c110cd64
ae5eb1a38b4d22c82dfd67c86db73592094edc4b
/project398/src/main/java/org/gradle/test/performance/largejavamultiproject/project398/p1990/Production39816.java
11a156cb3e19403ef352932357cf490e06b98be7
[]
no_license
big-guy/largeJavaMultiProject
405cc7f55301e1fd87cee5878a165ec5d4a071aa
1cd6a3f9c59e9b13dffa35ad27d911114f253c33
refs/heads/main
2023-03-17T10:59:53.226128
2021-03-04T01:01:39
2021-03-04T01:01:39
344,307,977
0
0
null
null
null
null
UTF-8
Java
false
false
1,971
java
package org.gradle.test.performance.largejavamultiproject.project398.p1990; public class Production39816 { private Production39813 property0; public Production39813 getProperty0() { return property0; } public void setProperty0(Production39813 value) { property0 = value; } private Production39814 property1; public Production39814 getProperty1() { return property1; } public void setProperty1(Production39814 value) { property1 = value; } private Production39815 property2; public Production39815 getProperty2() { return property2; } public void setProperty2(Production39815 value) { property2 = value; } private String property3; public String getProperty3() { return property3; } public void setProperty3(String value) { property3 = value; } private String property4; public String getProperty4() { return property4; } public void setProperty4(String value) { property4 = value; } private String property5; public String getProperty5() { return property5; } public void setProperty5(String value) { property5 = value; } private String property6; public String getProperty6() { return property6; } public void setProperty6(String value) { property6 = value; } private String property7; public String getProperty7() { return property7; } public void setProperty7(String value) { property7 = value; } private String property8; public String getProperty8() { return property8; } public void setProperty8(String value) { property8 = value; } private String property9; public String getProperty9() { return property9; } public void setProperty9(String value) { property9 = value; } }
b5cdf4684dc6a26111bdbb4e656a7579081860e3
c1f48c616d67becfc0a26b80da79ef607dfb0f58
/app/src/main/java/madroid/chillaaxcaptain/model/Restaurant.java
721c091a45aea1030c98bd15d5c7aac5119f80d4
[]
no_license
madroidpro/ChillaaxCaptain
f9f503284f8a47d36cc39cbaf5696d36dda98cde
05543c455646a023dbbfb817d13b9cfdea2c2d63
refs/heads/master
2021-07-04T08:21:34.714334
2021-02-12T16:57:30
2021-02-12T16:57:30
65,960,545
0
0
null
null
null
null
UTF-8
Java
false
false
4,307
java
package madroid.chillaaxcaptain.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Restaurant { @SerializedName("id") @Expose private String id; @SerializedName("name") @Expose private String name; @SerializedName("location") @Expose private String location; @SerializedName("lat_lng") @Expose private String latLng; @SerializedName("address") @Expose private String address; @SerializedName("parent") @Expose private String parent; @SerializedName("admin_id") @Expose private String adminId; @SerializedName("brand_id") @Expose private String brandId; @SerializedName("username") @Expose private String username; @SerializedName("password") @Expose private String password; @SerializedName("created") @Expose private String created; @SerializedName("modified") @Expose private String modified; /** * * @return * The id */ public String getId() { return id; } /** * * @param id * The id */ public void setId(String id) { this.id = id; } /** * * @return * The name */ public String getName() { return name; } /** * * @param name * The name */ public void setName(String name) { this.name = name; } /** * * @return * The location */ public String getLocation() { return location; } /** * * @param location * The location */ public void setLocation(String location) { this.location = location; } /** * * @return * The latLng */ public String getLatLng() { return latLng; } /** * * @param latLng * The lat_lng */ public void setLatLng(String latLng) { this.latLng = latLng; } /** * * @return * The address */ public String getAddress() { return address; } /** * * @param address * The address */ public void setAddress(String address) { this.address = address; } /** * * @return * The parent */ public String getParent() { return parent; } /** * * @param parent * The parent */ public void setParent(String parent) { this.parent = parent; } /** * * @return * The adminId */ public String getAdminId() { return adminId; } /** * * @param adminId * The admin_id */ public void setAdminId(String adminId) { this.adminId = adminId; } /** * * @return * The brandId */ public String getBrandId() { return brandId; } /** * * @param brandId * The brand_id */ public void setBrandId(String brandId) { this.brandId = brandId; } /** * * @return * The username */ public String getUsername() { return username; } /** * * @param username * The username */ public void setUsername(String username) { this.username = username; } /** * * @return * The password */ public String getPassword() { return password; } /** * * @param password * The password */ public void setPassword(String password) { this.password = password; } /** * * @return * The created */ public String getCreated() { return created; } /** * * @param created * The created */ public void setCreated(String created) { this.created = created; } /** * * @return * The modified */ public String getModified() { return modified; } /** * * @param modified * The modified */ public void setModified(String modified) { this.modified = modified; } }
19f49dad8b8f2c666999a623deb90eb48ac11ec5
d2422b975fd36c4bd412412b0794adf84621b3ee
/JAX-WS/correios-cliente/src/br/com/malgaxe/correios/soap/ArrayOfCServico.java
a219f4f7a1debb5a254d165efc930e801e135092
[]
no_license
carlosfrancelinos/malgaxe
e3897c3cf834857af8bf770bfdc9ee5e6f156968
5c011e6ed933997fcb4e37b17da8c4b5f44ec5ed
refs/heads/master
2020-12-08T12:38:01.526023
2020-01-10T11:26:56
2020-01-10T11:26:56
232,982,729
0
0
null
null
null
null
UTF-8
Java
false
false
1,781
java
package br.com.malgaxe.correios.soap; 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.XmlType; /** * <p>Classe Java de ArrayOfCServico complex type. * * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. * * <pre> * &lt;complexType name="ArrayOfCServico"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element name="cServico" type="{http://tempuri.org/}cServico" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrayOfCServico", propOrder = { "cServico" }) public class ArrayOfCServico { protected List<CServico> cServico; /** * Gets the value of the cServico 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 cServico property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCServico().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CServico } * * */ public List<CServico> getCServico() { if (cServico == null) { cServico = new ArrayList<CServico>(); } return this.cServico; } }
63d42c625e071c90357aa06b6bf598a476567256
1c53d5257ea7be9450919e6b9e0491944a93ba80
/merge-scenarios/dubbo/68fa9c189-dubbo-config-dubbo-config-api-src-test-java-org-apache-dubbo-config-AbstractConfigTest/left.java
e93478b9efe98741500763c474cddb89e84097ff
[]
no_license
anonyFVer/mastery-material
89062928807a1f859e9e8b9a113b2d2d123dc3f1
db76ee571b84be5db2d245f3b593b29ebfaaf458
refs/heads/master
2023-03-16T13:13:49.798374
2021-02-26T04:19:19
2021-02-26T04:19:19
342,556,129
0
0
null
null
null
null
UTF-8
Java
false
false
22,939
java
package org.apache.dubbo.config; import org.apache.dubbo.common.config.Environment; import org.apache.dubbo.config.api.Greeting; import org.apache.dubbo.config.support.Parameter; import org.hamcrest.Matchers; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.util.Collections; import java.util.HashMap; import java.util.Map; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; public class AbstractConfigTest { @Test public void testAppendParameters1() throws Exception { Map<String, String> parameters = new HashMap<String, String>(); parameters.put("default.num", "one"); parameters.put("num", "ONE"); AbstractConfig.appendParameters(parameters, new ParameterConfig(1, "hello/world", 30, "password"), "prefix"); Assertions.assertEquals("one", parameters.get("prefix.key.1")); Assertions.assertEquals("two", parameters.get("prefix.key.2")); Assertions.assertEquals("ONE,one,1", parameters.get("prefix.num")); Assertions.assertEquals("hello%2Fworld", parameters.get("prefix.naming")); Assertions.assertEquals("30", parameters.get("prefix.age")); Assertions.assertFalse(parameters.containsKey("prefix.key-2")); Assertions.assertFalse(parameters.containsKey("prefix.secret")); } @Test public void testAppendParameters2() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> { Map<String, String> parameters = new HashMap<String, String>(); AbstractConfig.appendParameters(parameters, new ParameterConfig()); }); } @Test public void testAppendParameters3() throws Exception { Map<String, String> parameters = new HashMap<String, String>(); AbstractConfig.appendParameters(parameters, null); assertTrue(parameters.isEmpty()); } @Test public void testAppendParameters4() throws Exception { Map<String, String> parameters = new HashMap<String, String>(); AbstractConfig.appendParameters(parameters, new ParameterConfig(1, "hello/world", 30, "password")); Assertions.assertEquals("one", parameters.get("key.1")); Assertions.assertEquals("two", parameters.get("key.2")); Assertions.assertEquals("1", parameters.get("num")); Assertions.assertEquals("hello%2Fworld", parameters.get("naming")); Assertions.assertEquals("30", parameters.get("age")); } @Test public void testAppendAttributes1() throws Exception { Map<String, Object> parameters = new HashMap<String, Object>(); AbstractConfig.appendAttributes(parameters, new AttributeConfig('l', true, (byte) 0x01), "prefix"); Assertions.assertEquals('l', parameters.get("prefix.let")); Assertions.assertEquals(true, parameters.get("prefix.activate")); Assertions.assertFalse(parameters.containsKey("prefix.flag")); } @Test public void testAppendAttributes2() throws Exception { Map<String, Object> parameters = new HashMap<String, Object>(); AbstractConfig.appendAttributes(parameters, new AttributeConfig('l', true, (byte) 0x01)); Assertions.assertEquals('l', parameters.get("let")); Assertions.assertEquals(true, parameters.get("activate")); Assertions.assertFalse(parameters.containsKey("flag")); } @Test public void checkExtension() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> AbstractConfig.checkExtension(Greeting.class, "hello", "world")); } @Test public void checkMultiExtension1() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> AbstractConfig.checkMultiExtension(Greeting.class, "hello", "default,world")); } @Test public void checkMultiExtension2() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> AbstractConfig.checkMultiExtension(Greeting.class, "hello", "default,-world")); } @Test public void checkLength() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> { StringBuilder builder = new StringBuilder(); for (int i = 0; i <= 200; i++) { builder.append("a"); } AbstractConfig.checkLength("hello", builder.toString()); }); } @Test public void checkPathLength() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> { StringBuilder builder = new StringBuilder(); for (int i = 0; i <= 200; i++) { builder.append("a"); } AbstractConfig.checkPathLength("hello", builder.toString()); }); } @Test public void checkName() throws Exception { Assertions.assertThrows(IllegalStateException.class, () -> AbstractConfig.checkName("hello", "world%")); } @Test public void checkNameHasSymbol() throws Exception { try { AbstractConfig.checkNameHasSymbol("hello", ":*,/ -0123\tabcdABCD"); AbstractConfig.checkNameHasSymbol("mock", "force:return world"); } catch (Exception e) { fail("the value should be legal."); } } @Test public void checkKey() throws Exception { try { AbstractConfig.checkKey("hello", "*,-0123abcdABCD"); } catch (Exception e) { fail("the value should be legal."); } } @Test public void checkMultiName() throws Exception { try { AbstractConfig.checkMultiName("hello", ",-._0123abcdABCD"); } catch (Exception e) { fail("the value should be legal."); } } @Test public void checkPathName() throws Exception { try { AbstractConfig.checkPathName("hello", "/-$._0123abcdABCD"); } catch (Exception e) { fail("the value should be legal."); } } @Test public void checkMethodName() throws Exception { try { AbstractConfig.checkMethodName("hello", "abcdABCD0123abcd"); } catch (Exception e) { fail("the value should be legal."); } try { AbstractConfig.checkMethodName("hello", "0a"); fail("the value should be illegal."); } catch (Exception e) { } } @Test public void checkParameterName() throws Exception { Map<String, String> parameters = Collections.singletonMap("hello", ":*,/-._0123abcdABCD"); try { AbstractConfig.checkParameterName(parameters); } catch (Exception e) { fail("the value should be legal."); } } @Test @Config(interfaceClass = Greeting.class, filter = { "f1, f2" }, listener = { "l1, l2" }, parameters = { "k1", "v1", "k2", "v2" }) public void appendAnnotation() throws Exception { Config config = getClass().getMethod("appendAnnotation").getAnnotation(Config.class); AnnotationConfig annotationConfig = new AnnotationConfig(); annotationConfig.appendAnnotation(Config.class, config); Assertions.assertSame(Greeting.class, annotationConfig.getInterface()); Assertions.assertEquals("f1, f2", annotationConfig.getFilter()); Assertions.assertEquals("l1, l2", annotationConfig.getListener()); Assertions.assertEquals(2, annotationConfig.getParameters().size()); Assertions.assertEquals("v1", annotationConfig.getParameters().get("k1")); Assertions.assertEquals("v2", annotationConfig.getParameters().get("k2")); assertThat(annotationConfig.toString(), Matchers.containsString("filter=\"f1, f2\" ")); assertThat(annotationConfig.toString(), Matchers.containsString("listener=\"l1, l2\" ")); } @Test public void testRefreshAll() { try { OverrideConfig overrideConfig = new OverrideConfig(); overrideConfig.setAddress("override-config://127.0.0.1:2181"); overrideConfig.setProtocol("override-config"); overrideConfig.setEscape("override-config://"); overrideConfig.setExclude("override-config"); Map<String, String> external = new HashMap<>(); external.put("dubbo.override.address", "external://127.0.0.1:2181"); external.put("dubbo.override.exclude", "external"); external.put("dubbo.override.key", "external"); external.put("dubbo.override.key2", "external"); Environment.getInstance().setExternalConfigMap(external); System.setProperty("dubbo.override.address", "system://127.0.0.1:2181"); System.setProperty("dubbo.override.protocol", "system"); System.setProperty("dubbo.override.key1", "system"); System.setProperty("dubbo.override.key2", "system"); overrideConfig.refresh(); Assertions.assertEquals("system://127.0.0.1:2181", overrideConfig.getAddress()); Assertions.assertEquals("system", overrideConfig.getProtocol()); Assertions.assertEquals("override-config://", overrideConfig.getEscape()); Assertions.assertEquals("external", overrideConfig.getKey()); Assertions.assertEquals("system", overrideConfig.getUseKeyAsProperty()); } finally { System.clearProperty("dubbo.override.address"); System.clearProperty("dubbo.override.protocol"); System.clearProperty("dubbo.override.key1"); System.clearProperty("dubbo.override.key2"); Environment.getInstance().clearExternalConfigs(); } } @Test public void testRefreshSystem() { try { OverrideConfig overrideConfig = new OverrideConfig(); overrideConfig.setAddress("override-config://127.0.0.1:2181"); overrideConfig.setProtocol("override-config"); overrideConfig.setEscape("override-config://"); overrideConfig.setExclude("override-config"); System.setProperty("dubbo.override.address", "system://127.0.0.1:2181"); System.setProperty("dubbo.override.protocol", "system"); System.setProperty("dubbo.override.key", "system"); overrideConfig.refresh(); Assertions.assertEquals("system://127.0.0.1:2181", overrideConfig.getAddress()); Assertions.assertEquals("system", overrideConfig.getProtocol()); Assertions.assertEquals("override-config://", overrideConfig.getEscape()); Assertions.assertEquals("system", overrideConfig.getKey()); } finally { System.clearProperty("dubbo.override.address"); System.clearProperty("dubbo.override.protocol"); System.clearProperty("dubbo.override.key1"); Environment.getInstance().clearExternalConfigs(); } } @Test public void testRefreshProperties() { try { Environment.getInstance().setExternalConfigMap(new HashMap<>()); OverrideConfig overrideConfig = new OverrideConfig(); overrideConfig.setAddress("override-config://127.0.0.1:2181"); overrideConfig.setProtocol("override-config"); overrideConfig.setEscape("override-config://"); overrideConfig.refresh(); Assertions.assertEquals("override-config://127.0.0.1:2181", overrideConfig.getAddress()); Assertions.assertEquals("override-config", overrideConfig.getProtocol()); Assertions.assertEquals("override-config://", overrideConfig.getEscape()); } finally { Environment.getInstance().clearExternalConfigs(); } } @Test public void testRefreshExternal() { try { OverrideConfig overrideConfig = new OverrideConfig(); overrideConfig.setAddress("override-config://127.0.0.1:2181"); overrideConfig.setProtocol("override-config"); overrideConfig.setEscape("override-config://"); overrideConfig.setExclude("override-config"); Map<String, String> external = new HashMap<>(); external.put("dubbo.override.address", "external://127.0.0.1:2181"); external.put("dubbo.override.protocol", "external"); external.put("dubbo.override.escape", "external://"); external.put("dubbo.override.exclude", "external"); external.put("dubbo.override.key", "external"); external.put("dubbo.override.key2", "external"); Environment.getInstance().setExternalConfigMap(external); overrideConfig.refresh(); Assertions.assertEquals("external://127.0.0.1:2181", overrideConfig.getAddress()); Assertions.assertEquals("external", overrideConfig.getProtocol()); Assertions.assertEquals("external://", overrideConfig.getEscape()); Assertions.assertEquals("external", overrideConfig.getExclude()); Assertions.assertEquals("external", overrideConfig.getKey()); Assertions.assertEquals("external", overrideConfig.getUseKeyAsProperty()); } finally { Environment.getInstance().clearExternalConfigs(); } } @Test public void testRefreshId() { try { OverrideConfig overrideConfig = new OverrideConfig(); overrideConfig.setId("override-id"); overrideConfig.setAddress("override-config://127.0.0.1:2181"); overrideConfig.setProtocol("override-config"); overrideConfig.setEscape("override-config://"); overrideConfig.setExclude("override-config"); Map<String, String> external = new HashMap<>(); external.put("dubbo.override.override-id.address", "external-override-id://127.0.0.1:2181"); external.put("dubbo.override.address", "external://127.0.0.1:2181"); external.put("dubbo.override.exclude", "external"); external.put("dubbo.override.key", "external"); external.put("dubbo.override.key2", "external"); Environment.getInstance().setExternalConfigMap(external); ConfigCenterConfig configCenter = new ConfigCenterConfig(); configCenter.init(); overrideConfig.refresh(); Assertions.assertEquals("external-override-id://127.0.0.1:2181", overrideConfig.getAddress()); Assertions.assertEquals("override-config", overrideConfig.getProtocol()); Assertions.assertEquals("override-config://", overrideConfig.getEscape()); Assertions.assertEquals("external", overrideConfig.getKey()); Assertions.assertEquals("external", overrideConfig.getUseKeyAsProperty()); } finally { Environment.getInstance().clearExternalConfigs(); } } @Test public void tetMetaData() { OverrideConfig overrideConfig = new OverrideConfig(); overrideConfig.setId("override-id"); overrideConfig.setAddress("override-config://127.0.0.1:2181"); overrideConfig.setProtocol("override-config"); overrideConfig.setEscape("override-config://"); overrideConfig.setExclude("override-config"); Map<String, String> metaData = overrideConfig.getMetaData(); Assertions.assertEquals("override-config://127.0.0.1:2181", metaData.get("address")); Assertions.assertEquals("override-config", metaData.get("protocol")); Assertions.assertEquals("override-config://", metaData.get("escape")); Assertions.assertEquals("override-config", metaData.get("exclude")); Assertions.assertNull(metaData.get("key")); Assertions.assertNull(metaData.get("key2")); } @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD, ElementType.METHOD, ElementType.ANNOTATION_TYPE }) public @interface Config { Class<?> interfaceClass() default void.class; String interfaceName() default ""; String[] filter() default {}; String[] listener() default {}; String[] parameters() default {}; } private static class OverrideConfig extends AbstractConfig { public String address; public String protocol; public String exclude; public String key; public String useKeyAsProperty; public String escape; public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } @Parameter(excluded = true) public String getExclude() { return exclude; } public void setExclude(String exclude) { this.exclude = exclude; } @Parameter(key = "key1", useKeyAsProperty = false) public String getKey() { return key; } public void setKey(String key) { this.key = key; } @Parameter(key = "key2", useKeyAsProperty = true) public String getUseKeyAsProperty() { return useKeyAsProperty; } public void setUseKeyAsProperty(String useKeyAsProperty) { this.useKeyAsProperty = useKeyAsProperty; } @Parameter(escaped = true) public String getEscape() { return escape; } public void setEscape(String escape) { this.escape = escape; } } private static class PropertiesConfig extends AbstractConfig { private char c; private boolean bool; private byte b; private int i; private long l; private float f; private double d; private short s; private String str; PropertiesConfig() { } PropertiesConfig(String id) { this.id = id; } public char getC() { return c; } public void setC(char c) { this.c = c; } public boolean isBool() { return bool; } public void setBool(boolean bool) { this.bool = bool; } public byte getB() { return b; } public void setB(byte b) { this.b = b; } public int getI() { return i; } public void setI(int i) { this.i = i; } public long getL() { return l; } public void setL(long l) { this.l = l; } public float getF() { return f; } public void setF(float f) { this.f = f; } public double getD() { return d; } public void setD(double d) { this.d = d; } public String getStr() { return str; } public void setStr(String str) { this.str = str; } public short getS() { return s; } public void setS(short s) { this.s = s; } } private static class ParameterConfig { private int number; private String name; private int age; private String secret; ParameterConfig() { } ParameterConfig(int number, String name, int age, String secret) { this.number = number; this.name = name; this.age = age; this.secret = secret; } @Parameter(key = "num", append = true) public int getNumber() { return number; } public void setNumber(int number) { this.number = number; } @Parameter(key = "naming", append = true, escaped = true, required = true) public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } @Parameter(excluded = true) public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public Map getParameters() { Map<String, String> map = new HashMap<String, String>(); map.put("key.1", "one"); map.put("key-2", "two"); return map; } } private static class AttributeConfig { private char letter; private boolean activate; private byte flag; public AttributeConfig(char letter, boolean activate, byte flag) { this.letter = letter; this.activate = activate; this.flag = flag; } @Parameter(attribute = true, key = "let") public char getLetter() { return letter; } public void setLetter(char letter) { this.letter = letter; } @Parameter(attribute = true) public boolean isActivate() { return activate; } public void setActivate(boolean activate) { this.activate = activate; } public byte getFlag() { return flag; } public void setFlag(byte flag) { this.flag = flag; } } private static class AnnotationConfig extends AbstractConfig { private Class interfaceClass; private String filter; private String listener; private Map<String, String> parameters; public Class getInterface() { return interfaceClass; } public void setInterface(Class interfaceName) { this.interfaceClass = interfaceName; } public String getFilter() { return filter; } public void setFilter(String filter) { this.filter = filter; } public String getListener() { return listener; } public void setListener(String listener) { this.listener = listener; } public Map<String, String> getParameters() { return parameters; } public void setParameters(Map<String, String> parameters) { this.parameters = parameters; } } }
cf37fba71256e97f81fa8ff713eefbddc1fd99c2
254e96e74a02136ca1ba2cddd9f289c2c7fa0f15
/ForexSim/src/main/java/pack_forexSim/model/finantialModellingPrepForex/Historical.java
aa1e42360378e84c81583d192b3f322c719b65ea
[]
no_license
geniusbat/ForexSim
caaf93214b62d050b56346a45c29f135bde87435
343d5a8cba6c5052d4c73325b4f6d7c482264c50
refs/heads/master
2021-02-10T15:14:26.400544
2020-05-24T16:19:07
2020-05-24T16:19:07
244,393,103
0
0
null
2020-10-13T22:15:22
2020-03-02T14:35:45
Java
UTF-8
Java
false
false
3,212
java
package pack_forexSim.model.finantialModellingPrepForex; import java.util.HashMap; import java.util.Map; import com.fasterxml.jackson.annotation.JsonAnyGetter; import com.fasterxml.jackson.annotation.JsonAnySetter; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyOrder; @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "date", "open", "low", "high", "close", "volume" }) public class Historical { @JsonProperty("date") private String date; @JsonProperty("open") private Double open; @JsonProperty("low") private Double low; @JsonProperty("high") private Double high; @JsonProperty("close") private Double close; @JsonProperty("volume") private Integer volume; @JsonIgnore private Map<String, Object> additionalProperties = new HashMap<String, Object>(); /** * No args constructor for use in serialization * */ public Historical() { } /** * * @param date * @param volume * @param high * @param low * @param close * @param open */ public Historical(String date, Double open, Double low, Double high, Double close, Integer volume) { super(); this.date = date; this.open = open; this.low = low; this.high = high; this.close = close; this.volume = volume; } @JsonProperty("date") public String getDate() { return date; } @JsonProperty("date") public void setDate(String date) { this.date = date; } public Historical withDate(String date) { this.date = date; return this; } @JsonProperty("open") public Double getOpen() { return open; } @JsonProperty("open") public void setOpen(Double open) { this.open = open; } public Historical withOpen(Double open) { this.open = open; return this; } @JsonProperty("low") public Double getLow() { return low; } @JsonProperty("low") public void setLow(Double low) { this.low = low; } public Historical withLow(Double low) { this.low = low; return this; } @JsonProperty("high") public Double getHigh() { return high; } @JsonProperty("high") public void setHigh(Double high) { this.high = high; } public Historical withHigh(Double high) { this.high = high; return this; } @JsonProperty("close") public Double getClose() { return close; } @JsonProperty("close") public void setClose(Double close) { this.close = close; } public Historical withClose(Double close) { this.close = close; return this; } @JsonProperty("volume") public Integer getVolume() { return volume; } @JsonProperty("volume") public void setVolume(Integer volume) { this.volume = volume; } public Historical withVolume(Integer volume) { this.volume = volume; return this; } @JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } public Historical withAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); return this; } }
098e70be38034efc1c6af1054ac4d220369e8a08
c9ed853df4fc75f21972184e4f410970bc33311a
/app/src/main/java/br/com/sindquimicace/activity/SplashScreen.java
90fc0f09521fdb574961fb81024f9a86e35a53cd
[]
no_license
dfredmota/sinquimica_mobile
f235f0cf574efc3d8288094ccea8543e4631d19a
778928ae46bd77d43a0ef1c4bd1ea7800fcac9af
refs/heads/master
2020-06-10T01:26:11.096486
2018-06-24T08:19:22
2018-06-24T08:19:22
193,544,852
1
0
null
null
null
null
UTF-8
Java
false
false
2,898
java
package br.com.sindquimicace.activity; import android.app.ProgressDialog; import android.content.Intent; import android.preference.PreferenceManager; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import br.com.sindquimicace.R; import br.com.sindquimicace.delegate.AtualizaTokenDelegate; import br.com.sindquimicace.task.AtualizaTokenTask; import br.com.sindquimicace.util.Data; import br.com.sindquimicace.ws.Usuario; public class SplashScreen extends AppCompatActivity implements AtualizaTokenDelegate { Usuario usuarioLogado; ProgressDialog ringProgressDialog; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash_screen); usuarioLogado = Data.getUsuario(PreferenceManager.getDefaultSharedPreferences(this)); // se usuario for nulo redireciona pra tela de inicio para cadastro ou login if(usuarioLogado == null) navToInicio(); // se não for nulo e o status for true redireciona para a home caso contrario para a tela de login if(usuarioLogado != null){ if(usuarioLogado.getStatus()){ String token = Data.getToken(PreferenceManager.getDefaultSharedPreferences(this)); if(usuarioLogado.getToken() != null && token.equals(usuarioLogado.getToken())) { navToHome(); }else{ usuarioLogado.setToken(token); atualizaTokenApp(); } }else{ navToLogin(); } } } @Override public void carregaDialog() { ringProgressDialog= ProgressDialog.show(this,"Aguarde...",""); ringProgressDialog.show(); } @Override public void tokenAtualizado(Boolean retorno) { ringProgressDialog.dismiss(); if(retorno){ Data.insertUsuario(PreferenceManager.getDefaultSharedPreferences(this),usuarioLogado); navToHome(); }else{ navToHome(); } } private void atualizaTokenApp(){ AtualizaTokenTask task = new AtualizaTokenTask(this); task.execute(usuarioLogado); } private void navToInicio(){ Intent i = new Intent(this, LoginAct.class); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); this.startActivity(i); } private void navToHome(){ Intent i = new Intent(this, HomeAct.class); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); this.startActivity(i); } private void navToLogin(){ Intent i = new Intent(this, LoginAct.class); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); this.startActivity(i); } }
c030b630fffb1479ef4f86964c719a24e47e0823
354bff01b12d9435bbe1b571e8cb4486caa94861
/src/test/java/com/vytrack/tests/login_navigation/LoginTests.java
655880085920fea240f7907e24976d2616adc645
[]
no_license
Aleksandar-93/PageObjectModelSelenium
55dcdab20a8750432406466064291ae00d6d0380
56ceae1c30d685c8c267e9e994393d84098edb53
refs/heads/main
2023-01-29T15:31:14.806661
2020-12-12T20:11:50
2020-12-12T20:11:50
320,913,568
0
0
null
null
null
null
UTF-8
Java
false
false
548
java
package com.vytrack.tests.login_navigation; import com.vytrack.pages.LoginPage; import com.vytrack.utilities.ConfigurationReader; import com.vytrack.utilities.TestBase; import org.testng.annotations.Test; public class LoginTests extends TestBase { LoginPage loginPage = new LoginPage(); @Test public void login(){ String userName = ConfigurationReader.getProperty("stormanagerusername"); String password = ConfigurationReader.getProperty("stormanagerpassword"); loginPage.login(userName, password); } }
e2d5a7a8768994204625a5277b0f04e6788e53dd
ed68700b9188457c73d05a998aedc8643d20c611
/Logical/src/test/java/logics/StrongNumber.java
ab8c8e1c32d6c1cd8f485b768c8ca18db3218c6f
[]
no_license
mekalareddy/Logical
b0397949b6fa8d2956937f52d04098a1384e60ec
b86e523a2876e269a85403fa26ca3e3ef09da5d1
refs/heads/master
2022-11-21T00:52:21.783842
2020-07-21T09:10:58
2020-07-21T09:10:58
264,177,845
0
0
null
null
null
null
UTF-8
Java
false
false
889
java
//Write a java program to check even number is strong (or) not? //Strong Number : Sum of factorial of individual digits is equal to that number. //---> 145 //---> 1!+4!+5! //---> 1+24+120 //---> 145 package logics; import java.util.Scanner; public class StrongNumber { public static int fact(int n) { int f = 1; while(n>0) { f=f*n; n--; } return f; } public static boolean isStrong(int n) { int t = n; int sum = 0; while(n>0) { int r = n%10; sum = sum + fact(r); n=n/10; } /* if(t==sum) return true; else return false; */ return t==sum; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter Number:"); int num = sc.nextInt(); boolean res = isStrong(num); if(res) System.out.println("Strong Number"); else System.out.println("Not a Strong Number"); } }
bfc14b4217c3e0f61846e0d4f9caac1606894d56
e17c3a66099d9614e93113bac0712401f8831fad
/mobile/src/main/java/com/github/ayltai/newspaper/app/view/SourcesPresenter.java
a824bddf519a2d2361dc72e88392d49f05871193
[ "Apache-2.0" ]
permissive
kaomiao/Newspaper
91c9aada88ee530248cc7edc6af1aba0657ed1f6
4ed7e5488cd40dfe547e9981dfe345d8d657ef89
refs/heads/master
2022-05-05T20:55:34.623434
2018-05-22T13:39:03
2018-05-22T13:39:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,787
java
package com.github.ayltai.newspaper.app.view; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Set; import android.app.Activity; import android.support.annotation.NonNull; import android.support.v4.util.ArraySet; import android.util.Log; import com.akaita.java.rxjava2debug.RxJava2Debug; import com.github.ayltai.newspaper.app.ComponentFactory; import com.github.ayltai.newspaper.app.config.UserConfig; import com.github.ayltai.newspaper.app.data.model.Source; import com.github.ayltai.newspaper.util.DevUtils; import com.github.ayltai.newspaper.util.RxUtils; import com.github.ayltai.newspaper.view.OptionsPresenter; import io.reactivex.Single; public class SourcesPresenter extends OptionsPresenter<String, OptionsPresenter.View> { private final List<Boolean> selectedSources = new ArrayList<>(); private List<String> sources; @NonNull @Override protected Single<List<String>> load() { if (this.getView() == null) return Single.just(Collections.emptyList()); final Activity activity = this.getView().getActivity(); if (activity == null) return Single.just(Collections.emptyList()); return Single.create(emitter -> { final List<String> sources = new ArrayList<>(ComponentFactory.getInstance().getConfigComponent(activity).userConfig().getDefaultSources()); final Set<String> displayNames = new ArraySet<>(); for (final String source : sources) displayNames.add(Source.toDisplayName(source)); if (!emitter.isDisposed()) emitter.onSuccess(new ArrayList<>(displayNames)); }); } @Override public void onViewAttached(@NonNull final OptionsPresenter.View view, final boolean isFirstTimeAttachment) { super.onViewAttached(view, isFirstTimeAttachment); final Activity activity = view.getActivity(); final UserConfig userConfig = activity == null ? null : ComponentFactory.getInstance() .getConfigComponent(activity) .userConfig(); this.manageDisposable(view.optionsChanges().subscribe( index -> { this.selectedSources.set(index, !this.selectedSources.get(index)); final Set<String> sources = new ArraySet<>(); for (int i = 0; i < this.sources.size(); i++) { if (this.selectedSources.get(i)) sources.addAll(Source.fromDisplayName(this.sources.get(i))); } if (userConfig != null) userConfig.setSources(sources); }, error -> { if (DevUtils.isLoggable()) Log.w(this.getClass().getSimpleName(), error.getMessage(), RxJava2Debug.getEnhancedStackTrace(error)); } )); if (isFirstTimeAttachment) { this.load() .compose(RxUtils.applySingleBackgroundToMainSchedulers()) .subscribe( sources -> { this.sources = sources; this.selectedSources.clear(); final Set<String> selectedSources = userConfig == null ? Collections.emptySet() : userConfig.getSources(); for (int i = 0; i < sources.size(); i++) { this.selectedSources.add(selectedSources.contains(sources.get(i))); view.addOption(sources.get(i), this.selectedSources.get(i)); } }, error -> { if (DevUtils.isLoggable()) Log.w(this.getClass().getSimpleName(), error.getMessage(), RxJava2Debug.getEnhancedStackTrace(error)); } ); } } }
c0c3713c50360def185fb901aa63e450532906a3
8143ec030464c4941be1915a501ac882a0beed16
/springioc/src/main/java/bean/defination/package-info.java
db2a1fcf693f15d5ed7e156c513f686a66a4551c
[]
no_license
wxq1231987/SpringFrameworkTest
92fc778cd6aefb2cbe8eb1c3970690ebcb539bbe
53cf22a083c5cb80f3384cef415e47b35d927ad4
refs/heads/master
2022-12-23T13:10:58.441931
2019-09-16T00:34:19
2019-09-16T00:34:19
183,125,994
0
0
null
2022-12-16T03:37:04
2019-04-24T01:50:15
Java
UTF-8
Java
false
false
63
java
/** * */ /** * @author Tina * */ package bean.defination;
cd13aa77f8f841f2ee85a099ce91b18b2ed2e75c
f64f144d7b5a01262e8a3efcdfe713dfc432886a
/MyOptionMenu/app/src/main/java/com/example/myoptionmenu/MainAc.java
253fba106546063d89462151ec3ed2f210b3ccd8
[]
no_license
KIMSG/AndroidProject
724ed37e5ac0001d22d6410b09b15c49dfcfe26c
184496a20a3a011b75eb9d082618e6017922a0d1
refs/heads/master
2020-12-23T03:49:23.602749
2020-06-14T05:43:55
2020-06-14T05:43:55
237,022,681
1
0
null
null
null
null
UTF-8
Java
false
false
59
java
package com.example.myoptionmenu; public class MainAc { }
d9586ab831ff5396cb88b2afdfaa4acecfbc3083
bf2966abae57885c29e70852243a22abc8ba8eb0
/aws-java-sdk-storagegateway/src/main/java/com/amazonaws/services/storagegateway/model/DeleteTapePoolResult.java
6401ed4a20ef0a1b5d949f5272f1fb51e37cc8d7
[ "Apache-2.0" ]
permissive
kmbotts/aws-sdk-java
ae20b3244131d52b9687eb026b9c620da8b49935
388f6427e00fb1c2f211abda5bad3a75d29eef62
refs/heads/master
2021-12-23T14:39:26.369661
2021-07-26T20:09:07
2021-07-26T20:09:07
246,296,939
0
0
Apache-2.0
2020-03-10T12:37:34
2020-03-10T12:37:33
null
UTF-8
Java
false
false
3,930
java
/* * Copyright 2016-2021 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.storagegateway.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DeleteTapePool" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DeleteTapePoolResult extends com.amazonaws.AmazonWebServiceResult<com.amazonaws.ResponseMetadata> implements Serializable, Cloneable { /** * <p> * The Amazon Resource Name (ARN) of the custom tape pool being deleted. * </p> */ private String poolARN; /** * <p> * The Amazon Resource Name (ARN) of the custom tape pool being deleted. * </p> * * @param poolARN * The Amazon Resource Name (ARN) of the custom tape pool being deleted. */ public void setPoolARN(String poolARN) { this.poolARN = poolARN; } /** * <p> * The Amazon Resource Name (ARN) of the custom tape pool being deleted. * </p> * * @return The Amazon Resource Name (ARN) of the custom tape pool being deleted. */ public String getPoolARN() { return this.poolARN; } /** * <p> * The Amazon Resource Name (ARN) of the custom tape pool being deleted. * </p> * * @param poolARN * The Amazon Resource Name (ARN) of the custom tape pool being deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteTapePoolResult withPoolARN(String poolARN) { setPoolARN(poolARN); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getPoolARN() != null) sb.append("PoolARN: ").append(getPoolARN()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeleteTapePoolResult == false) return false; DeleteTapePoolResult other = (DeleteTapePoolResult) obj; if (other.getPoolARN() == null ^ this.getPoolARN() == null) return false; if (other.getPoolARN() != null && other.getPoolARN().equals(this.getPoolARN()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPoolARN() == null) ? 0 : getPoolARN().hashCode()); return hashCode; } @Override public DeleteTapePoolResult clone() { try { return (DeleteTapePoolResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }
[ "" ]
db17ca7376bae200c9edab903cfff7ea31a8dbab
098ed5e060ffd3da1c95d103b1c471408083c7cc
/bootcamp2020cucumberproejct-master/src/main/java/utilities/ConfigurationReader.java
edd952e6a59491b0f6c6155be1297efd8f7b7372
[]
no_license
JuliaAristova/CucumberProject
a028fd27af877d58f5623a6829103656e1f253e6
affc558a1556370c221638e0f0e9a39fbe123dc4
refs/heads/main
2023-04-03T20:15:29.077930
2021-03-29T19:45:59
2021-03-29T19:45:59
352,760,865
0
0
null
null
null
null
UTF-8
Java
false
false
551
java
package utilities; import java.io.FileInputStream; import java.io.FileReader; import java.io.IOException; import java.util.Properties; public class ConfigurationReader { private static Properties properties; static { try { properties = new Properties(); properties.load(new FileInputStream("configuration.properties")); } catch (IOException e) { e.printStackTrace(); } } public static String getProperty(String key) { return properties.getProperty(key); } }
3f0018697bd3057271cae318333de1c9dab4c577
1904d54c33d7e40111cad39e58e155493061fd95
/app/src/main/java/opener/app/spaxsoftware/com/appopener/Receiver/MyReceiver.java
a1534f8510baab41362574f9e79000718daae7d6
[ "Apache-2.0" ]
permissive
johnspax/AppOpener
bf5adb4ea655101bde8094995762b45daec73acc
c0b66f56fe9590cb5377036846d10850d68b7394
refs/heads/master
2021-06-07T10:43:05.391448
2021-05-08T13:53:36
2021-05-08T13:53:36
158,383,681
7
1
null
null
null
null
UTF-8
Java
false
false
858
java
package opener.app.spaxsoftware.com.appopener.Receiver; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import opener.app.spaxsoftware.com.appopener.Alarm.Alarm; import opener.app.spaxsoftware.com.appopener.Util.MyConstants; import static android.content.Context.MODE_PRIVATE; public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { SharedPreferences prefs = context.getSharedPreferences(MyConstants.MY_PREFERENCES, MODE_PRIVATE); if(prefs.getBoolean(MyConstants.BOOT_ALARM_SET, true)) { String time = prefs.getString(MyConstants.SET_SLEEP_TIME, "06:01"); Alarm alarm = new Alarm(); alarm.setAlarm(context, time); } } }
41d5cf6bd9b1dffa0605954912ecde870a7a19cf
fa6f3072bb36212e51eff8bfd18e5a3b1d443ad6
/src/main/java/br/com/animati/gestao/security/LoginForm.java
66c11e76246e1759a11b9d59c82b2876aef7bf26
[]
no_license
edersonlcaldatto/gestao-api
7584bad10c10926fa35845d239dfb797ce50b3d9
f8d75a7acccdb5b9ae4a683e4637b2b6a9e6b736
refs/heads/main
2023-01-22T21:44:39.722552
2020-12-09T11:49:37
2020-12-09T11:49:37
319,731,121
0
0
null
null
null
null
UTF-8
Java
false
false
415
java
package br.com.animati.gestao.security; import lombok.Getter; import lombok.Setter; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; @Getter @Setter public class LoginForm { private String login; private String password; public UsernamePasswordAuthenticationToken converter(){ return new UsernamePasswordAuthenticationToken(login, password); } }
9b16b4749853a650ff43a88d79a263b3eaa3f9ab
3a71bb6fd879bc3ce8a051760e827cf7b3e42fbc
/src/main/java/mx/edu/utng/orders/model/Figure.java
fbe14da424a23e0528732f14f190676a326e7880
[]
no_license
karlasoria97/Recuperacion-1-_-Unidad-3
f7343679484aa5d1e4412c5be5bee568427d94e9
c4631782a37f7b6a0f76711cefac7151822b79aa
refs/heads/master
2021-01-20T00:37:05.327818
2017-03-03T13:19:41
2017-03-03T13:19:41
83,799,891
0
0
null
null
null
null
UTF-8
Java
false
false
2,529
java
package mx.edu.utng.orders.model; /** * Created by Karla on 02/03/2017. */ public class Figure { private String idFigure; private String teo; private String code; private String drawer; private String figure; private String user; private String bibref; private String dateSubmission; public Figure(String idFigure, String teo, String code, String drawer, String figure, String user, String bibref, String dateSubmission) { this.idFigure = idFigure; this.teo = teo; this.code = code; this.drawer = drawer; this.figure = figure; this.user = user; this.bibref = bibref; this.dateSubmission = dateSubmission; } public Figure() { this("","","","","","","",""); } public String getIdFigure() { return idFigure; } public void setIdFigure(String idFigure) { this.idFigure = idFigure; } public String getTeo() { return teo; } public void setTeo(String teo) { this.teo = teo; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getDrawer() { return drawer; } public void setDrawer(String drawer) { this.drawer = drawer; } public String getFigure() { return figure; } public void setFigure(String figure) { this.figure = figure; } public String getUser() { return user; } public void setUser(String user) { this.user = user; } public String getBibref() { return bibref; } public void setBibref(String bibref) { this.bibref = bibref; } public String getDateSubmission() { return dateSubmission; } public void setDateSubmission(String dateSubmission) { this.dateSubmission = dateSubmission; } @Override public String toString() { return "Figure{" + "idFigure='" + idFigure + '\'' + ", teo='" + teo + '\'' + ", code='" + code + '\'' + ", drawer='" + drawer + '\'' + ", figure='" + figure + '\'' + ", user='" + user + '\'' + ", bibref='" + bibref + '\'' + ", dateSubmission='" + dateSubmission + '\'' + '}'; } }
8f67477b1537a303df7a3187f77c83f9665a83c8
4a3b9d1018097eb2645806e8d90259c703c3fe9b
/app/src/main/java/com/rongfeng/speedclient/common/LoggingInterceptor.java
4211cd83d87faace1b3e18d6af1d26182a6f866c
[]
no_license
linuxcjh/SpeedClient
277f17a9b54947ca8214bc84b5cb410336ef8c3f
22c474c1cea56b76edc6e18e22496751ee1ec79c
refs/heads/master
2021-01-13T09:19:41.543981
2017-11-20T15:54:27
2017-11-20T15:54:27
72,325,994
2
0
null
null
null
null
UTF-8
Java
false
false
2,016
java
package com.rongfeng.speedclient.common; import android.util.Log; import com.rongfeng.speedclient.BuildConfig; import com.squareup.okhttp.Interceptor; import com.squareup.okhttp.Request; import com.squareup.okhttp.Response; import com.squareup.okhttp.ResponseBody; import java.io.IOException; import okio.Buffer; /**https://packages-gitlab-com.s3.amazonaws.com/7/8/el/6/package_files/666.rpm?AWSAccessKeyId=AKIAJ74R7IHMTQVGFCEA&Signature=ySPwdqUxd1Tg7M2LafxEbazc0WA%3D&Expires=1445655058 * Print log in Logcat */ public class LoggingInterceptor implements Interceptor { @Override public Response intercept(Chain chain) throws IOException { Request request = chain.request(); long t1 = System.nanoTime(); String requestLog = String.format("Sending request %s on %s%n%s", request.url(), chain.connection(), request.headers()); if(BuildConfig.DEBUG){ Log.d("-- Retrofit --", requestLog); Log.d("-- Retrofit --", bodyToString(request)); } Response response = chain.proceed(request); long t2 = System.nanoTime(); String responseLog = String.format("Received response for %s in %.1fms%n%s", response.request().url(), (t2 - t1) / 1e6d, response.headers()); String bodyString = response.body().string(); if(BuildConfig.DEBUG){ Log.d("-- Retrofit --", responseLog); Log.d("-- Retrofit --", bodyString); } return response.newBuilder() .body(ResponseBody.create(response.body().contentType(), bodyString)) .build(); } public static String bodyToString(final Request request) { try { final Request copy = request.newBuilder().build(); final Buffer buffer = new Buffer(); copy.body().writeTo(buffer); return buffer.readUtf8().replaceAll("&","\n"); } catch (final IOException e) { return "did not work"; } } }
35338203956f028affbf5be7808b556a4389b342
87c3770b7bbcc2c3c6f2ce53c19535bfb2bf267d
/src/com/ashish/exception/NestedTry.java
5beb4c47bbd97de7f50fc19db5dd4234bbfe75be
[]
no_license
ashgit1/ASH_UCF_L2.2
6abe8e81a257456b40bff6f303d963f21602e93c
421de6e8e64a52776f11f0bfcbe0e43da3fd4782
refs/heads/master
2021-01-17T13:12:07.840398
2017-10-10T17:33:49
2017-10-10T17:33:49
42,356,588
0
0
null
null
null
null
UTF-8
Java
false
false
533
java
package com.ashish.exception; public class NestedTry { public static void main(String[] args) { try { try { System.out.println("going to divide"); int b = 39 / 0; } catch (ArithmeticException e) { System.out.println(e); } try { int a[] = new int[5]; a[5] = 4; } catch (ArrayIndexOutOfBoundsException e) { System.out.println(e); } System.out.println("other statement"); } catch (Exception e) { System.out.println("handeled"); } System.out.println("normal flow.."); } }
d78ec260922e3eedf248397c4c58909c35ea1aa7
c585888f406869d0e0182be8557b3e33ce743ff0
/src/main/java/com/android/tools/r8/graph/AppView.java
59c7b8e6f7f4f7ab380c69a6c1bb94a0438e41a9
[ "BSD-3-Clause", "MIT", "Apache-2.0", "LicenseRef-scancode-generic-cla", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Yinkozi/R8
25623bfa8d67f553ea737472d6835740f9fc8099
af71090436ca05106ff3ac08c9533ed524163029
refs/heads/main
2023-01-04T00:13:30.647859
2020-10-21T10:40:00
2020-10-21T10:40:00
305,987,826
0
0
null
null
null
null
UTF-8
Java
false
false
22,676
java
// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. package com.android.tools.r8.graph; import com.android.tools.r8.features.ClassToFeatureSplitMap; import com.android.tools.r8.graph.DexValue.DexValueString; import com.android.tools.r8.graph.GraphLens.NonIdentityGraphLens; import com.android.tools.r8.graph.analysis.InitializedClassesInInstanceMethodsAnalysis.InitializedClassesInInstanceMethods; import com.android.tools.r8.graph.classmerging.HorizontallyMergedLambdaClasses; import com.android.tools.r8.graph.classmerging.MergedClasses; import com.android.tools.r8.graph.classmerging.MergedClassesCollection; import com.android.tools.r8.graph.classmerging.VerticallyMergedClasses; import com.android.tools.r8.horizontalclassmerging.HorizontallyMergedClasses; import com.android.tools.r8.ir.analysis.proto.GeneratedExtensionRegistryShrinker; import com.android.tools.r8.ir.analysis.proto.GeneratedMessageLiteBuilderShrinker; import com.android.tools.r8.ir.analysis.proto.GeneratedMessageLiteShrinker; import com.android.tools.r8.ir.analysis.proto.ProtoShrinker; import com.android.tools.r8.ir.analysis.value.AbstractValueFactory; import com.android.tools.r8.ir.conversion.MethodProcessingId; import com.android.tools.r8.ir.desugar.PrefixRewritingMapper; import com.android.tools.r8.ir.optimize.CallSiteOptimizationInfoPropagator; import com.android.tools.r8.ir.optimize.info.field.InstanceFieldInitializationInfoFactory; import com.android.tools.r8.ir.optimize.library.LibraryMemberOptimizer; import com.android.tools.r8.shaking.AppInfoWithLiveness; import com.android.tools.r8.shaking.KeepInfoCollection; import com.android.tools.r8.shaking.LibraryModeledPredicate; import com.android.tools.r8.shaking.MainDexClasses; import com.android.tools.r8.shaking.RootSetBuilder.RootSet; import com.android.tools.r8.synthesis.SyntheticItems; import com.android.tools.r8.utils.InternalOptions; import com.android.tools.r8.utils.InternalOptions.TestingOptions; import com.android.tools.r8.utils.OptionalBool; import com.android.tools.r8.utils.ThrowingConsumer; import com.google.common.base.Predicates; import com.google.common.collect.ImmutableSet; import java.util.Collection; import java.util.Collections; import java.util.IdentityHashMap; import java.util.Map; import java.util.Set; import java.util.function.Function; import java.util.function.Predicate; public class AppView<T extends AppInfo> implements DexDefinitionSupplier, LibraryModeledPredicate { private enum WholeProgramOptimizations { ON, OFF } private T appInfo; private AppInfoWithClassHierarchy appInfoForDesugaring; private AppServices appServices; private final WholeProgramOptimizations wholeProgramOptimizations; private GraphLens graphLens; private InitClassLens initClassLens; private RootSet rootSet; // This should perferably always be obtained via AppInfoWithLiveness. // Currently however the liveness may be downgraded thus loosing the computed keep info. private KeepInfoCollection keepInfo = null; private final AbstractValueFactory abstractValueFactory = new AbstractValueFactory(); private final InstanceFieldInitializationInfoFactory instanceFieldInitializationInfoFactory = new InstanceFieldInitializationInfoFactory(); private final MethodProcessingId.Factory methodProcessingIdFactory; // Desugared library prefix rewriter. public final PrefixRewritingMapper rewritePrefix; // Optimizations. private final CallSiteOptimizationInfoPropagator callSiteOptimizationInfoPropagator; private final LibraryMemberOptimizer libraryMemberOptimizer; private final ProtoShrinker protoShrinker; // Optimization results. private boolean allCodeProcessed = false; private Predicate<DexType> classesEscapingIntoLibrary = Predicates.alwaysTrue(); private InitializedClassesInInstanceMethods initializedClassesInInstanceMethods; private HorizontallyMergedLambdaClasses horizontallyMergedLambdaClasses; private HorizontallyMergedClasses horizontallyMergedClasses; private VerticallyMergedClasses verticallyMergedClasses; private EnumValueInfoMapCollection unboxedEnums = EnumValueInfoMapCollection.empty(); // TODO(b/169115389): Remove private Set<DexMethod> cfByteCodePassThrough = ImmutableSet.of(); private Map<DexClass, DexValueString> sourceDebugExtensions = new IdentityHashMap<>(); private AppView( T appInfo, WholeProgramOptimizations wholeProgramOptimizations, PrefixRewritingMapper mapper) { assert appInfo != null; this.appInfo = appInfo; this.wholeProgramOptimizations = wholeProgramOptimizations; this.graphLens = GraphLens.getIdentityLens(); this.initClassLens = InitClassLens.getDefault(); this.methodProcessingIdFactory = new MethodProcessingId.Factory(options().testing.methodProcessingIdConsumer); this.rewritePrefix = mapper; if (enableWholeProgramOptimizations() && options().callSiteOptimizationOptions().isEnabled()) { this.callSiteOptimizationInfoPropagator = new CallSiteOptimizationInfoPropagator(withLiveness()); } else { this.callSiteOptimizationInfoPropagator = null; } this.libraryMemberOptimizer = new LibraryMemberOptimizer(this); if (enableWholeProgramOptimizations() && options().protoShrinking().isProtoShrinkingEnabled()) { this.protoShrinker = new ProtoShrinker(withLiveness()); } else { this.protoShrinker = null; } } @Override public boolean isModeled(DexType type) { return libraryMemberOptimizer.isModeled(type); } private static <T extends AppInfo> PrefixRewritingMapper defaultPrefixRewritingMapper(T appInfo) { InternalOptions options = appInfo.options(); return options.desugaredLibraryConfiguration.createPrefixRewritingMapper(options); } public static <T extends AppInfo> AppView<T> createForD8(T appInfo) { return new AppView<>( appInfo, WholeProgramOptimizations.OFF, defaultPrefixRewritingMapper(appInfo)); } public static <T extends AppInfo> AppView<T> createForD8( T appInfo, PrefixRewritingMapper mapper) { return new AppView<>(appInfo, WholeProgramOptimizations.OFF, mapper); } public static AppView<AppInfoWithClassHierarchy> createForR8(DexApplication application) { return createForR8(application, MainDexClasses.createEmptyMainDexClasses()); } public static AppView<AppInfoWithClassHierarchy> createForR8( DexApplication application, MainDexClasses mainDexClasses) { ClassToFeatureSplitMap classToFeatureSplitMap = ClassToFeatureSplitMap.createInitialClassToFeatureSplitMap(application.options); AppInfoWithClassHierarchy appInfo = AppInfoWithClassHierarchy.createInitialAppInfoWithClassHierarchy( application, classToFeatureSplitMap, mainDexClasses); return new AppView<>( appInfo, WholeProgramOptimizations.ON, defaultPrefixRewritingMapper(appInfo)); } public static <T extends AppInfo> AppView<T> createForL8( T appInfo, PrefixRewritingMapper mapper) { return new AppView<>(appInfo, WholeProgramOptimizations.OFF, mapper); } public static <T extends AppInfo> AppView<T> createForRelocator(T appInfo) { return new AppView<>( appInfo, WholeProgramOptimizations.OFF, defaultPrefixRewritingMapper(appInfo)); } public AbstractValueFactory abstractValueFactory() { return abstractValueFactory; } public InstanceFieldInitializationInfoFactory instanceFieldInitializationInfoFactory() { return instanceFieldInitializationInfoFactory; } public MethodProcessingId.Factory methodProcessingIdFactory() { return methodProcessingIdFactory; } public T appInfo() { assert !appInfo.hasClassHierarchy() || enableWholeProgramOptimizations(); return appInfo; } public AppInfoWithClassHierarchy appInfoForDesugaring() { if (enableWholeProgramOptimizations()) { assert appInfo.hasClassHierarchy(); return appInfo.withClassHierarchy(); } assert !appInfo.hasClassHierarchy(); if (appInfoForDesugaring == null) { appInfoForDesugaring = AppInfoWithClassHierarchy.createForDesugaring(appInfo()); } return appInfoForDesugaring; } private void unsetAppInfoForDesugaring() { appInfoForDesugaring = null; } public <U extends T> AppView<U> setAppInfo(U appInfo) { assert !appInfo.isObsolete(); AppInfo previous = this.appInfo; this.appInfo = appInfo; unsetAppInfoForDesugaring(); if (appInfo != previous) { previous.markObsolete(); } if (appInfo.hasLiveness()) { keepInfo = appInfo.withLiveness().getKeepInfo(); } @SuppressWarnings("unchecked") AppView<U> appViewWithSpecializedAppInfo = (AppView<U>) this; return appViewWithSpecializedAppInfo; } public boolean isAllCodeProcessed() { return allCodeProcessed; } public void setAllCodeProcessed() { allCodeProcessed = true; } public GraphLens clearCodeRewritings() { return graphLens = graphLens.withCodeRewritingsApplied(dexItemFactory()); } public AppServices appServices() { return appServices; } public void setAppServices(AppServices appServices) { this.appServices = appServices; } public boolean isClassEscapingIntoLibrary(DexType type) { assert type.isClassType(); return classesEscapingIntoLibrary.test(type); } public void setClassesEscapingIntoLibrary(Predicate<DexType> classesEscapingIntoLibrary) { this.classesEscapingIntoLibrary = classesEscapingIntoLibrary; } public void setSourceDebugExtensionForType(DexClass clazz, DexValueString sourceDebugExtension) { this.sourceDebugExtensions.put(clazz, sourceDebugExtension); } public DexValueString getSourceDebugExtensionForType(DexClass clazz) { return this.sourceDebugExtensions.get(clazz); } @Override public final DexClass definitionFor(DexType type) { return appInfo().definitionFor(type); } public OptionalBool isInterface(DexType type) { assert type.isClassType(); // Without whole program information we should not assume anything about any other class than // the current holder in a given context. if (enableWholeProgramOptimizations()) { DexClass clazz = definitionFor(type); if (clazz == null) { return OptionalBool.unknown(); } return OptionalBool.of(clazz.isInterface()); } return OptionalBool.unknown(); } @Override public DexItemFactory dexItemFactory() { return appInfo.dexItemFactory(); } public boolean enableWholeProgramOptimizations() { return wholeProgramOptimizations == WholeProgramOptimizations.ON; } public SyntheticItems getSyntheticItems() { return appInfo.getSyntheticItems(); } public CallSiteOptimizationInfoPropagator callSiteOptimizationInfoPropagator() { return callSiteOptimizationInfoPropagator; } public LibraryMemberOptimizer libraryMethodOptimizer() { return libraryMemberOptimizer; } public ProtoShrinker protoShrinker() { return protoShrinker; } public <E extends Throwable> void withProtoShrinker(ThrowingConsumer<ProtoShrinker, E> consumer) throws E { if (protoShrinker != null) { consumer.accept(protoShrinker); } } public <U> U withProtoShrinker(Function<ProtoShrinker, U> consumer, U defaultValue) { if (protoShrinker != null) { return consumer.apply(protoShrinker); } return defaultValue; } public <E extends Throwable> void withGeneratedExtensionRegistryShrinker( ThrowingConsumer<GeneratedExtensionRegistryShrinker, E> consumer) throws E { if (protoShrinker != null && protoShrinker.generatedExtensionRegistryShrinker != null) { consumer.accept(protoShrinker.generatedExtensionRegistryShrinker); } } public <U> U withGeneratedExtensionRegistryShrinker( Function<GeneratedExtensionRegistryShrinker, U> fn, U defaultValue) { if (protoShrinker != null && protoShrinker.generatedExtensionRegistryShrinker != null) { return fn.apply(protoShrinker.generatedExtensionRegistryShrinker); } return defaultValue; } public <E extends Throwable> void withGeneratedMessageLiteShrinker( ThrowingConsumer<GeneratedMessageLiteShrinker, E> consumer) throws E { if (protoShrinker != null && protoShrinker.generatedMessageLiteShrinker != null) { consumer.accept(protoShrinker.generatedMessageLiteShrinker); } } public <E extends Throwable> void withGeneratedMessageLiteBuilderShrinker( ThrowingConsumer<GeneratedMessageLiteBuilderShrinker, E> consumer) throws E { if (protoShrinker != null && protoShrinker.generatedMessageLiteBuilderShrinker != null) { consumer.accept(protoShrinker.generatedMessageLiteBuilderShrinker); } } public <U> U withGeneratedMessageLiteShrinker( Function<GeneratedMessageLiteShrinker, U> fn, U defaultValue) { if (protoShrinker != null && protoShrinker.generatedMessageLiteShrinker != null) { return fn.apply(protoShrinker.generatedMessageLiteShrinker); } return defaultValue; } public <U> U withGeneratedMessageLiteBuilderShrinker( Function<GeneratedMessageLiteBuilderShrinker, U> fn, U defaultValue) { if (protoShrinker != null && protoShrinker.generatedMessageLiteBuilderShrinker != null) { return fn.apply(protoShrinker.generatedMessageLiteBuilderShrinker); } return defaultValue; } public GraphLens graphLens() { return graphLens; } /** @return true if the graph lens changed, otherwise false. */ public boolean setGraphLens(GraphLens graphLens) { if (graphLens != this.graphLens) { this.graphLens = graphLens; return true; } return false; } public boolean canUseInitClass() { return options().isShrinking() && !initClassLens.isFinal(); } public InitClassLens initClassLens() { return initClassLens; } public boolean hasInitClassLens() { return initClassLens != null; } public void setInitClassLens(InitClassLens initClassLens) { this.initClassLens = initClassLens; } public void setInitializedClassesInInstanceMethods( InitializedClassesInInstanceMethods initializedClassesInInstanceMethods) { this.initializedClassesInInstanceMethods = initializedClassesInInstanceMethods; } public void setCfByteCodePassThrough(Set<DexMethod> cfByteCodePassThrough) { this.cfByteCodePassThrough = cfByteCodePassThrough; } public <U> U withInitializedClassesInInstanceMethods( Function<InitializedClassesInInstanceMethods, U> fn, U defaultValue) { if (initializedClassesInInstanceMethods != null) { return fn.apply(initializedClassesInInstanceMethods); } return defaultValue; } public InternalOptions options() { return appInfo.options(); } public TestingOptions testing() { return options().testing; } public RootSet rootSet() { return rootSet; } public void setRootSet(RootSet rootSet) { assert this.rootSet == null : "Root set should never be recomputed"; this.rootSet = rootSet; } public KeepInfoCollection getKeepInfo() { return keepInfo; } public MergedClassesCollection allMergedClasses() { MergedClassesCollection collection = new MergedClassesCollection(); if (horizontallyMergedLambdaClasses != null) { collection.add(horizontallyMergedLambdaClasses); } if (verticallyMergedClasses != null) { collection.add(verticallyMergedClasses); } return collection; } public boolean hasBeenMerged(DexProgramClass clazz) { return MergedClasses.hasBeenMerged(horizontallyMergedClasses, clazz) || MergedClasses.hasBeenMerged(horizontallyMergedLambdaClasses, clazz) || MergedClasses.hasBeenMerged(verticallyMergedClasses, clazz); } /** * Get the result of horizontal lambda class merging. Returns null if horizontal lambda class * merging has not been run. */ public HorizontallyMergedLambdaClasses horizontallyMergedLambdaClasses() { return horizontallyMergedLambdaClasses; } public void setHorizontallyMergedLambdaClasses( HorizontallyMergedLambdaClasses horizontallyMergedLambdaClasses) { assert this.horizontallyMergedLambdaClasses == null; this.horizontallyMergedLambdaClasses = horizontallyMergedLambdaClasses; } /** * Get the result of horizontal class merging. Returns null if horizontal lambda class merging has * not been run. */ public HorizontallyMergedClasses horizontallyMergedClasses() { return horizontallyMergedClasses; } public void setHorizontallyMergedClasses(HorizontallyMergedClasses horizontallyMergedClasses) { assert this.horizontallyMergedClasses == null; this.horizontallyMergedClasses = horizontallyMergedClasses; } /** * Get the result of vertical class merging. Returns null if vertical class merging has not been * run. */ public VerticallyMergedClasses verticallyMergedClasses() { return verticallyMergedClasses; } public void setVerticallyMergedClasses(VerticallyMergedClasses verticallyMergedClasses) { assert this.verticallyMergedClasses == null; this.verticallyMergedClasses = verticallyMergedClasses; if (testing().verticallyMergedClassesConsumer != null) { testing().verticallyMergedClassesConsumer.accept(dexItemFactory(), verticallyMergedClasses); } } public EnumValueInfoMapCollection unboxedEnums() { return unboxedEnums; } public void setUnboxedEnums(EnumValueInfoMapCollection unboxedEnums) { this.unboxedEnums = unboxedEnums; } public boolean validateUnboxedEnumsHaveBeenPruned() { for (DexType unboxedEnum : unboxedEnums.enumSet()) { assert appInfo.definitionForWithoutExistenceAssert(unboxedEnum) == null : "Enum " + unboxedEnum + " has been unboxed but is still in the program."; assert appInfo().withLiveness().wasPruned(unboxedEnum) : "Enum " + unboxedEnum + " has been unboxed but was not pruned."; } return true; } @SuppressWarnings("unchecked") public AppView<AppInfoWithClassHierarchy> withClassHierarchy() { return appInfo.hasClassHierarchy() ? (AppView<AppInfoWithClassHierarchy>) this : null; } public AppView<AppInfoWithLiveness> withLiveness() { @SuppressWarnings("unchecked") AppView<AppInfoWithLiveness> appViewWithLiveness = (AppView<AppInfoWithLiveness>) this; return appViewWithLiveness; } public OptionalBool isSubtype(DexType subtype, DexType supertype) { // Even if we can compute isSubtype by having class hierarchy we may not be allowed to ask the // question for all code paths in D8. Having the check for liveness ensure that we are in R8 // territory. return appInfo().hasLiveness() ? OptionalBool.of(appInfo().withLiveness().isSubtype(subtype, supertype)) : OptionalBool.unknown(); } public boolean isCfByteCodePassThrough(DexEncodedMethod method) { if (!options().isGeneratingClassFiles()) { return false; } if (cfByteCodePassThrough.contains(method.method)) { return true; } return options().testing.cfByteCodePassThrough != null && options().testing.cfByteCodePassThrough.test(method.method); } public boolean hasCfByteCodePassThroughMethods() { return !cfByteCodePassThrough.isEmpty(); } public void removePrunedClasses( DirectMappedDexApplication prunedApp, Set<DexType> removedClasses) { removePrunedClasses(prunedApp, removedClasses, Collections.emptySet()); } public void removePrunedClasses( DirectMappedDexApplication prunedApp, Set<DexType> removedClasses, Collection<DexMethod> methodsToKeepForConfigurationDebugging) { assert enableWholeProgramOptimizations(); assert appInfo().hasLiveness(); removePrunedClasses( prunedApp, removedClasses, methodsToKeepForConfigurationDebugging, withLiveness()); } private static void removePrunedClasses( DirectMappedDexApplication prunedApp, Set<DexType> removedClasses, Collection<DexMethod> methodsToKeepForConfigurationDebugging, AppView<AppInfoWithLiveness> appView) { if (removedClasses.isEmpty() && !appView.options().configurationDebugging) { assert appView.appInfo.app() == prunedApp; return; } appView.setAppInfo( appView .appInfo() .prunedCopyFrom(prunedApp, removedClasses, methodsToKeepForConfigurationDebugging)); appView.setAppServices(appView.appServices().prunedCopy(removedClasses)); } public void rewriteWithLens(NonIdentityGraphLens lens) { if (lens != null) { rewriteWithLens(lens, appInfo().app().asDirect(), withLiveness(), lens.getPrevious()); } } public void rewriteWithLensAndApplication( NonIdentityGraphLens lens, DirectMappedDexApplication application) { rewriteWithLensAndApplication(lens, application, lens.getPrevious()); } public void rewriteWithLensAndApplication( NonIdentityGraphLens lens, DirectMappedDexApplication application, GraphLens appliedLens) { assert lens != null; assert application != null; rewriteWithLens(lens, application, withLiveness(), appliedLens); } private static void rewriteWithLens( NonIdentityGraphLens lens, DirectMappedDexApplication application, AppView<AppInfoWithLiveness> appView, GraphLens appliedLens) { if (lens == null) { return; } boolean changed = appView.setGraphLens(lens); assert changed; assert application.verifyWithLens(lens); // The application has already been rewritten with the given applied lens. Therefore, we // temporarily replace that lens with the identity lens to avoid the overhead of traversing // the entire lens chain upon each lookup during the rewriting. NonIdentityGraphLens temporaryRootLens = lens; while (temporaryRootLens.getPrevious() != appliedLens) { GraphLens previousLens = temporaryRootLens.getPrevious(); assert previousLens.isNonIdentityLens(); temporaryRootLens = previousLens.asNonIdentityLens(); } temporaryRootLens.withAlternativeParentLens( GraphLens.getIdentityLens(), () -> { appView.setAppInfo(appView.appInfo().rewrittenWithLens(application, lens)); appView.setAppServices(appView.appServices().rewrittenWithLens(lens)); if (appView.hasInitClassLens()) { appView.setInitClassLens(appView.initClassLens().rewrittenWithLens(lens)); } }); } }
81861c973d70aa51cbe2cd0e1c8e9eca8aee1cbc
38a2ebfc29e7c0e038712239ed64de5402af3123
/mall-order/src/main/java/org/zrclass/mall/order/vo/OrderItemVo.java
bae63186f4e865db149428f172d7a83f1f4f69f3
[]
no_license
zrclass/tx-delayqueue-demo
b3f9f0176474e6f2095cad81f62484a977be9714
b39a04de3a177d545e98daeb9172a5972087e417
refs/heads/master
2023-06-03T06:48:28.532007
2021-06-15T15:00:49
2021-06-15T15:00:49
377,151,237
2
1
null
null
null
null
UTF-8
Java
false
false
625
java
package org.zrclass.mall.order.vo; import lombok.Data; import java.math.BigDecimal; import java.util.List; /** * <p>Title: OrderItemVo</p> * Description: * date:2020/6/30 16:38 */ @Data public class OrderItemVo { private Long skuId; /** * 是否被选中 */ private Boolean check = true; private String title; private String image; private List<String> skuAttr; /** * 价格 */ private BigDecimal price; /** * 数量 */ private Integer count; private BigDecimal totalPrice; /** * 是否有货 */ // private boolean hasStock; /** * 重量 */ private BigDecimal weight; }
ecacfb89d86fd66b2273447ad1b7ace0cad2bb61
8053a36c00978fc8b5a0c64698844ab8ef9bf4fc
/src/main/java/ru/synthet/telegrambot/component/action/handler/AbstractActionHandler.java
c8ae329bf07018dcdfcb28c3d47b3e2a7f7a78ab
[]
no_license
synthet/telegrambot
b3c8b75b4d47400a8de57fd58b28d525dcf4f0e8
bd6cbf228d450ab24c71ee8e34ae57f2b57cc2c5
refs/heads/master
2023-01-14T06:09:43.235019
2020-11-10T18:51:45
2020-11-10T18:51:45
307,774,359
0
0
null
null
null
null
UTF-8
Java
false
false
363
java
package ru.synthet.telegrambot.component.action.handler; import org.springframework.beans.factory.annotation.Autowired; import ru.synthet.telegrambot.component.SynthetBot; import ru.synthet.telegrambot.component.action.ActionHandler; public abstract class AbstractActionHandler implements ActionHandler { @Autowired protected SynthetBot synthetBot; }
480ec7e8a96a4a5acb21479614a59ee2034443de
66a48e3a716119daa33d1d84940a9f5a1c12d664
/app/src/main/java/cat/flx/plataformes/GameEngine.java
e0108da2be4193cc06eaceff96f665880d278383
[]
no_license
sergio-27/Plataformes
7c4c72dce39ff356378682797d2d90bab36dce9e
698b2fecbc0b0c218f39b2faa5a289acd460941f
refs/heads/master
2021-04-29T14:13:42.883385
2018-02-16T15:50:04
2018-02-16T15:50:04
121,768,764
0
0
null
null
null
null
UTF-8
Java
false
false
2,323
java
package cat.flx.plataformes; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.os.Handler; import android.view.MotionEvent; class GameEngine { private static final int UPDATE_DELAY = 50; private Context context; private GameView gameView; private BitmapSet bitmapSet; private Audio audio; private Handler handler; GameEngine(Context context, GameView gameView) { // Initialize everything this.context = context; bitmapSet = new BitmapSet(context); audio = new Audio(context); // Relate to the game view this.gameView = gameView; gameView.setGameEngine(this); // Program the Handler for engine refresh (physics et al) handler = new Handler(); handler.postDelayed(runnable, UPDATE_DELAY); } // Refresh process private Runnable runnable = new Runnable() { @Override public void run() { handler.postDelayed(this, UPDATE_DELAY); physics(); gameView.invalidate(); } }; // For activity start void start() { audio.startMusic(); } // For activity stop void stop() { audio.stopMusic(); } // For activity pause void pause() { audio.stopMusic(); } // For activity resume void resume() { audio.startMusic(); } // Attend user input boolean onTouchEvent(MotionEvent motionEvent) { return true; } // Perform physics on all game objects private void physics() { x++; x %= 100; count++; count %= 4; } private Paint paint; private int count = 0, x = 0; private int screenWidth, screenHeight; // Screen redraw void redraw(Canvas canvas) { if (paint == null) paint = new Paint(); screenWidth = canvas.getWidth(); screenHeight = canvas.getHeight(); if (screenWidth * screenHeight == 0) return; // 0 px on screen (not fully loaded) // Background canvas.drawColor(Color.LTGRAY); // Test canvas.scale(8,8); Bitmap bitmap = bitmapSet.getBitmap(count); canvas.drawBitmap(bitmap, x, 0, paint); } }
1f68d5a9e0122d234424076feeb9974f97f4ebd4
e2d3a2836381b201eb735dff36dc35a9f537d03f
/src/com/Y0424/IfEx.java
3b0c38e503c7cf6399c8d2cbb8fad4b731b75004
[]
no_license
SeongHwan2/Y201904
734ad04c9b892a3d0f9e26b0e1441acb7ae09634
105ad53288311124ad013c56648ccb614f7464fa
refs/heads/master
2020-05-16T03:02:24.226689
2019-05-31T06:59:43
2019-05-31T06:59:43
182,647,895
0
0
null
null
null
null
UTF-8
Java
false
false
337
java
package com.Y0424; public class IfEx { public void IfEx1(int score) { if(score >= 60) { System.out.println("합격을 축하합니다."); } } public void IfEx2(int score) { if(score >= 60) { System.out.println("합격을 축하 합니다."); }else { System.out.println("다음에 다시 오세요."); } } }
[ "GD3@DESKTOP-TQ15C6N" ]
GD3@DESKTOP-TQ15C6N
469f4696c7fac1f8468a4ecb6f589aaef4378adb
9131ee7e770d14993e54e16db24623f0641bcb3a
/src/test/java/org/frekele/elasticsearch/mapping/entities/model/EmployeeEntity.java
d35528b22c134594dc9157f2b180a4d3f734ba81
[ "Apache-2.0" ]
permissive
frekele/elasticsearch-mapping-builder
6c0c4cd41ad1fbef0c94b825fe8aa49fa33ab42a
4d9ce0e248c96e6039a5747b0f8dd8b7876a5d8d
refs/heads/master
2023-05-13T13:56:24.661100
2022-09-15T01:46:24
2022-09-15T01:46:24
100,449,942
10
5
Apache-2.0
2023-05-09T18:13:33
2017-08-16T05:11:40
Java
UTF-8
Java
false
false
659
java
package org.frekele.elasticsearch.mapping.entities.model; import org.frekele.elasticsearch.mapping.annotations.ElasticDocument; import org.frekele.elasticsearch.mapping.annotations.ElasticKeywordField; import org.frekele.elasticsearch.mapping.annotations.ElasticLongField; import org.frekele.elasticsearch.mapping.annotations.ElasticTextField; @ElasticDocument(value = "employee", parent = "person") public class EmployeeEntity { @ElasticLongField private Long id; @ElasticKeywordField private String documentNumber; @ElasticTextField @ElasticKeywordField private String registerNumber; public EmployeeEntity() { } }
32efa1b8a44d2f020962dc9e30d53a9ff269af26
6dc524e00003d13788ecfb9a33b4387228203c16
/VariableCounter/src/VarCount.java
4d4494f71fafe032b8cb640a57262869d9da06d2
[]
no_license
Eminaae/Killer
d67bdc97b83fe5662e2139b00b9cda34f93b4123
0011b18fb44fb523b228cc5397ea4c3ef4ed8d54
refs/heads/master
2021-01-02T08:45:33.054983
2015-11-16T12:12:35
2015-11-16T12:12:35
37,134,907
0
0
null
null
null
null
UTF-8
Java
false
false
1,137
java
import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; public class VarCount { private String path; private static String DECLARATION_REGEX = "(?:(?:private|protected|public)\\s+)?(?:static\\s+)?(?:final\\s+)?([^-+\\s]+)\\s+(?:[^-+\\s]+)\\s*(?:;|=*)"; private static final Pattern DECLARATION_PATTERN = Pattern.compile(DECLARATION_REGEX); public VarCount(String path){ this.path = path; } public Map<String, Integer> count() throws IOException { Map<String, Integer> counts = new HashMap<String, Integer>(); try(BufferedReader br = new BufferedReader(new FileReader(path))){ String line = null; while((line = br.readLine())!= null){ line = line.trim(); if(line.length() >3){ Matcher m = DECLARATION_PATTERN.matcher(line); if(m.matches()){ String type = m.group(1); Integer typeCount = counts.get(type); if(typeCount == null){ typeCount = 1; } else { typeCount += 1; } } } } return counts; } } }
e845e1e1eb4662fa316290df29c512c6466a1e6e
ca181136a656e9cdd372da4d10b59ebb80d1a7e1
/src/Basics/Lesson4/Exercise3DemoOverload.java
004c88c4ff3d1122788aa9d5c3e5dbaa2dcc8682
[]
no_license
jamesnuguid44/Jamesjames1
210bb960e53a8a3356b4e61ac70753d6e68af451
4d2cbf22b4d2a818a8298ea6aa00c9b410bf68c2
refs/heads/master
2023-03-27T11:46:16.451452
2021-03-28T18:15:53
2021-03-28T18:15:53
284,573,257
0
0
null
null
null
null
UTF-8
Java
false
false
639
java
package Basics.Lesson4; public class Exercise3DemoOverload { public static void main(String[] args) { int month = 6, day = 24, year = 2019; displayDate(month); displayDate(month,day); displayDate(month,day,year); } //overloaded method public static void displayDate(int mm){ System.out.println("Event date: "+ mm +"/1/2018"); } public static void displayDate(int mm, int dd){ System.out.println("Event date: "+mm+"/"+dd+"/2018"); } public static void displayDate(int mm, int dd, int yy){ System.out.println("Event date: "+mm+"/"+dd+"/"+yy); } }
b9b5db427e603e643ba6751321ffa0fb257cde03
6b343ef71f3bfa372903119982bf09a85715d2cf
/app/build/generated/source/r/debug/com/example/android/droidcafeoptions/R.java
4aa45560ea6967a68874d60b733f9046c505693a
[ "Apache-2.0" ]
permissive
TanYihYen/practical5
1c5d66e6f1f1e0acb00cbdebb282f569fb323569
4004de4d6f689c6d636f49a2cd2d79b64af97aee
refs/heads/master
2022-11-15T22:38:19.162695
2020-07-16T07:03:57
2020-07-16T07:03:57
280,079,647
0
0
null
null
null
null
UTF-8
Java
false
false
729,710
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 com.example.android.droidcafeoptions; public final class R { public static final class anim { public static final int abc_fade_in=0x7f010000; public static final int abc_fade_out=0x7f010001; public static final int abc_grow_fade_in_from_bottom=0x7f010002; public static final int abc_popup_enter=0x7f010003; public static final int abc_popup_exit=0x7f010004; public static final int abc_shrink_fade_out_from_bottom=0x7f010005; public static final int abc_slide_in_bottom=0x7f010006; public static final int abc_slide_in_top=0x7f010007; public static final int abc_slide_out_bottom=0x7f010008; public static final int abc_slide_out_top=0x7f010009; public static final int design_bottom_sheet_slide_in=0x7f01000a; public static final int design_bottom_sheet_slide_out=0x7f01000b; public static final int design_snackbar_in=0x7f01000c; public static final int design_snackbar_out=0x7f01000d; public static final int tooltip_enter=0x7f01000e; public static final int tooltip_exit=0x7f01000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f020000; } public static final class attr { /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarDivider=0x7f030000; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f030001; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f030002; /** * <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), and * mm (millimeters). * <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>wrap_content</td><td>0</td><td></td></tr> * </table> */ public static final int actionBarSize=0x7f030003; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f030004; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarStyle=0x7f030005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f030006; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f030007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f030008; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTheme=0x7f030009; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f03000a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionButtonStyle=0x7f03000b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f03000c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionLayout=0x7f03000d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f03000e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f03000f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeBackground=0x7f030010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f030011; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f030012; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f030013; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f030014; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f030015; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f030016; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f030017; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f030018; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f030019; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f03001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeStyle=0x7f03001b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f03001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f03001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f03001e; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f03001f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f030020; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f030021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f030022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f030023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogStyle=0x7f030024; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogTheme=0x7f030025; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f030026; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f030027; /** * <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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int alphabeticModifiers=0x7f030028; /** * <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), and * mm (millimeters). */ public static final int arrowHeadLength=0x7f030029; /** * <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), and * mm (millimeters). */ public static final int arrowShaftLength=0x7f03002a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f03002b; /** * <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), and * mm (millimeters). */ public static final int autoSizeMaxTextSize=0x7f03002c; /** * <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), and * mm (millimeters). */ public static final int autoSizeMinTextSize=0x7f03002d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f03002e; /** * <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), and * mm (millimeters). */ public static final int autoSizeStepGranularity=0x7f03002f; /** * <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>none</td><td>0</td><td></td></tr> * <tr><td>uniform</td><td>1</td><td></td></tr> * </table> */ public static final int autoSizeTextType=0x7f030030; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int background=0x7f030031; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f030032; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f030033; /** * <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 backgroundTint=0x7f030034; /** * <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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int backgroundTintMode=0x7f030035; /** * <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), and * mm (millimeters). */ public static final int barLength=0x7f030036; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_autoHide=0x7f030037; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_hideable=0x7f030038; /** * <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), and * mm (millimeters). */ public static final int behavior_overlapTop=0x7f030039; /** * <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), and * mm (millimeters). * <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>auto</td><td>ffffffff</td><td></td></tr> * </table> */ public static final int behavior_peekHeight=0x7f03003a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_skipCollapsed=0x7f03003b; /** * <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), and * mm (millimeters). */ public static final int borderWidth=0x7f03003c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f03003d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f03003e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f03003f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f030040; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f030041; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f030042; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f030043; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarStyle=0x7f030044; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int buttonGravity=0x7f030045; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f030046; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyle=0x7f030047; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f030048; /** * <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 buttonTint=0x7f030049; /** * <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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int buttonTintMode=0x7f03004a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkboxStyle=0x7f03004b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f03004c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeIcon=0x7f03004d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeItemLayout=0x7f03004e; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f03004f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapseIcon=0x7f030050; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int collapsedTitleGravity=0x7f030051; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f030052; /** * <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 color=0x7f030053; /** * <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 colorAccent=0x7f030054; /** * <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 colorBackgroundFloating=0x7f030055; /** * <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 colorButtonNormal=0x7f030056; /** * <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 colorControlActivated=0x7f030057; /** * <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 colorControlHighlight=0x7f030058; /** * <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 colorControlNormal=0x7f030059; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 colorError=0x7f03005a; /** * <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 colorPrimary=0x7f03005b; /** * <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 colorPrimaryDark=0x7f03005c; /** * <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 colorSwitchThumbNormal=0x7f03005d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int commitIcon=0x7f03005e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int constraintSet=0x7f03005f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f030060; /** * <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), and * mm (millimeters). */ public static final int contentInsetEnd=0x7f030061; /** * <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), and * mm (millimeters). */ public static final int contentInsetEndWithActions=0x7f030062; /** * <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), and * mm (millimeters). */ public static final int contentInsetLeft=0x7f030063; /** * <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), and * mm (millimeters). */ public static final int contentInsetRight=0x7f030064; /** * <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), and * mm (millimeters). */ public static final int contentInsetStart=0x7f030065; /** * <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), and * mm (millimeters). */ public static final int contentInsetStartWithNavigation=0x7f030066; /** * <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 contentScrim=0x7f030067; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int controlBackground=0x7f030068; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int counterEnabled=0x7f030069; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int counterMaxLength=0x7f03006a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f03006b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterTextAppearance=0x7f03006c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int customNavigationLayout=0x7f03006d; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f03006e; /** * <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), and * mm (millimeters). */ public static final int dialogPreferredPadding=0x7f03006f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dialogTheme=0x7f030070; /** * <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>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> */ public static final int displayOptions=0x7f030071; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int divider=0x7f030072; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerHorizontal=0x7f030073; /** * <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), and * mm (millimeters). */ public static final int dividerPadding=0x7f030074; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerVertical=0x7f030075; /** * <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), and * mm (millimeters). */ public static final int drawableSize=0x7f030076; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f030077; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f030078; /** * <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), and * mm (millimeters). */ public static final int dropdownListPreferredItemHeight=0x7f030079; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextBackground=0x7f03007a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f03007b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextStyle=0x7f03007c; /** * <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), and * mm (millimeters). */ public static final int elevation=0x7f03007d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int errorEnabled=0x7f03007e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int errorTextAppearance=0x7f03007f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f030080; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int expanded=0x7f030081; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int expandedTitleGravity=0x7f030082; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMargin=0x7f030083; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginBottom=0x7f030084; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginEnd=0x7f030085; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginStart=0x7f030086; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginTop=0x7f030087; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f030088; /** * <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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fabSize=0x7f030089; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int fastScrollEnabled=0x7f03008a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f03008b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f03008c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f03008d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f03008e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int font=0x7f03008f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f030090; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f030091; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fontProviderCerts=0x7f030092; /** * <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>async</td><td>1</td><td></td></tr> * <tr><td>blocking</td><td>0</td><td></td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f030093; /** * <p>May be an integer value, such as "<code>100</code>". * <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>forever</td><td>ffffffff</td><td></td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f030094; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f030095; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f030096; /** * <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>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fontStyle=0x7f030097; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f030098; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int foregroundInsidePadding=0x7f030099; /** * <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), and * mm (millimeters). */ public static final int gapBetweenBars=0x7f03009a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int goIcon=0x7f03009b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int headerLayout=0x7f03009c; /** * <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), and * mm (millimeters). */ public static final int height=0x7f03009d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f03009e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintAnimationEnabled=0x7f03009f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintEnabled=0x7f0300a0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hintTextAppearance=0x7f0300a1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f0300a2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeLayout=0x7f0300a3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int icon=0x7f0300a4; /** * <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 iconTint=0x7f0300a5; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int iconTintMode=0x7f0300a6; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f0300a7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int imageButtonStyle=0x7f0300a8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f0300a9; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f0300aa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f0300ab; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f0300ac; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemBackground=0x7f0300ad; /** * <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 itemIconTint=0x7f0300ae; /** * <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), and * mm (millimeters). */ public static final int itemPadding=0x7f0300af; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearance=0x7f0300b0; /** * <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 itemTextColor=0x7f0300b1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int keylines=0x7f0300b2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout=0x7f0300b3; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layoutManager=0x7f0300b4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_anchor=0x7f0300b5; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int layout_anchorGravity=0x7f0300b6; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_behavior=0x7f0300b7; /** * <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>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> */ public static final int layout_collapseMode=0x7f0300b8; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_collapseParallaxMultiplier=0x7f0300b9; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBaseline_creator=0x7f0300ba; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBaseline_toBaselineOf=0x7f0300bb; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBottom_creator=0x7f0300bc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toBottomOf=0x7f0300bd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toTopOf=0x7f0300be; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_constraintDimensionRatio=0x7f0300bf; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toEndOf=0x7f0300c0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toStartOf=0x7f0300c1; /** * <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), and * mm (millimeters). */ public static final int layout_constraintGuide_begin=0x7f0300c2; /** * <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), and * mm (millimeters). */ public static final int layout_constraintGuide_end=0x7f0300c3; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintGuide_percent=0x7f0300c4; /** * <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>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_default=0x7f0300c5; /** * <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), and * mm (millimeters). */ public static final int layout_constraintHeight_max=0x7f0300c6; /** * <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), and * mm (millimeters). */ public static final int layout_constraintHeight_min=0x7f0300c7; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_bias=0x7f0300c8; /** * <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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHorizontal_chainStyle=0x7f0300c9; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_weight=0x7f0300ca; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintLeft_creator=0x7f0300cb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toLeftOf=0x7f0300cc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toRightOf=0x7f0300cd; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintRight_creator=0x7f0300ce; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toLeftOf=0x7f0300cf; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toRightOf=0x7f0300d0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toEndOf=0x7f0300d1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toStartOf=0x7f0300d2; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintTop_creator=0x7f0300d3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toBottomOf=0x7f0300d4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toTopOf=0x7f0300d5; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_bias=0x7f0300d6; /** * <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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintVertical_chainStyle=0x7f0300d7; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_weight=0x7f0300d8; /** * <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>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_default=0x7f0300d9; /** * <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), and * mm (millimeters). */ public static final int layout_constraintWidth_max=0x7f0300da; /** * <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), and * mm (millimeters). */ public static final int layout_constraintWidth_min=0x7f0300db; /** * <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>all</td><td>77</td><td></td></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>3</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int layout_dodgeInsetEdges=0x7f0300dc; /** * <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), and * mm (millimeters). */ public static final int layout_editor_absoluteX=0x7f0300dd; /** * <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), and * mm (millimeters). */ public static final int layout_editor_absoluteY=0x7f0300de; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginBottom=0x7f0300df; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginEnd=0x7f0300e0; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginLeft=0x7f0300e1; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginRight=0x7f0300e2; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginStart=0x7f0300e3; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginTop=0x7f0300e4; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>3</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int layout_insetEdge=0x7f0300e5; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_keyline=0x7f0300e6; /** * <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>all</td><td>2</td><td></td></tr> * <tr><td>basic</td><td>4</td><td></td></tr> * <tr><td>chains</td><td>8</td><td></td></tr> * <tr><td>none</td><td>1</td><td></td></tr> * </table> */ public static final int layout_optimizationLevel=0x7f0300e7; /** * <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>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * </table> */ public static final int layout_scrollFlags=0x7f0300e8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f0300e9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0300ea; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f0300eb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listItemLayout=0x7f0300ec; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listLayout=0x7f0300ed; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0300ee; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0300ef; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemHeight=0x7f0300f0; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemHeightLarge=0x7f0300f1; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemHeightSmall=0x7f0300f2; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemPaddingLeft=0x7f0300f3; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemPaddingRight=0x7f0300f4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int logo=0x7f0300f5; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f0300f6; /** * <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), and * mm (millimeters). */ public static final int maxActionInlineWidth=0x7f0300f7; /** * <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), and * mm (millimeters). */ public static final int maxButtonHeight=0x7f0300f8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f0300f9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int menu=0x7f0300fa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f0300fb; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f0300fc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationIcon=0x7f0300fd; /** * <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>listMode</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>tabMode</td><td>2</td><td></td></tr> * </table> */ public static final int navigationMode=0x7f0300fe; /** * <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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int numericModifiers=0x7f0300ff; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f030100; /** * <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), and * mm (millimeters). */ public static final int paddingBottomNoButtons=0x7f030101; /** * <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), and * mm (millimeters). */ public static final int paddingEnd=0x7f030102; /** * <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), and * mm (millimeters). */ public static final int paddingStart=0x7f030103; /** * <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), and * mm (millimeters). */ public static final int paddingTopNoTitle=0x7f030104; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelBackground=0x7f030105; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f030106; /** * <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), and * mm (millimeters). */ public static final int panelMenuListWidth=0x7f030107; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int passwordToggleContentDescription=0x7f030108; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f030109; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int passwordToggleEnabled=0x7f03010a; /** * <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 passwordToggleTint=0x7f03010b; /** * <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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int passwordToggleTintMode=0x7f03010c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupMenuStyle=0x7f03010d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupTheme=0x7f03010e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupWindowStyle=0x7f03010f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f030110; /** * <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), and * mm (millimeters). */ public static final int pressedTranslationZ=0x7f030111; /** * <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), and * mm (millimeters). */ public static final int progressBarPadding=0x7f030112; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int progressBarStyle=0x7f030113; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int queryBackground=0x7f030114; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f030115; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int radioButtonStyle=0x7f030116; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyle=0x7f030117; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f030118; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f030119; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int reverseLayout=0x7f03011a; /** * <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 rippleColor=0x7f03011b; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int scrimAnimationDuration=0x7f03011c; /** * <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), and * mm (millimeters). */ public static final int scrimVisibleHeightTrigger=0x7f03011d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchHintIcon=0x7f03011e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchIcon=0x7f03011f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchViewStyle=0x7f030120; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int seekBarStyle=0x7f030121; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackground=0x7f030122; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f030123; /** * <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>always</td><td>2</td><td></td></tr> * <tr><td>collapseActionView</td><td>8</td><td></td></tr> * <tr><td>ifRoom</td><td>1</td><td></td></tr> * <tr><td>never</td><td>0</td><td></td></tr> * <tr><td>withText</td><td>4</td><td></td></tr> * </table> */ public static final int showAsAction=0x7f030124; /** * <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>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int showDividers=0x7f030125; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f030126; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f030127; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f030128; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int spanCount=0x7f030129; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f03012a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f03012b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerStyle=0x7f03012c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f03012d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int srcCompat=0x7f03012e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int stackFromEnd=0x7f03012f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f030130; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsed=0x7f030131; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsible=0x7f030132; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int statusBarBackground=0x7f030133; /** * <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 statusBarScrim=0x7f030134; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subMenuArrow=0x7f030135; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int submitBackground=0x7f030136; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f030137; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f030138; /** * <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 subtitleTextColor=0x7f030139; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f03013a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f03013b; /** * <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), and * mm (millimeters). */ public static final int switchMinWidth=0x7f03013c; /** * <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), and * mm (millimeters). */ public static final int switchPadding=0x7f03013d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchStyle=0x7f03013e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchTextAppearance=0x7f03013f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabBackground=0x7f030140; /** * <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), and * mm (millimeters). */ public static final int tabContentStart=0x7f030141; /** * <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>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> */ public static final int tabGravity=0x7f030142; /** * <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 tabIndicatorColor=0x7f030143; /** * <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), and * mm (millimeters). */ public static final int tabIndicatorHeight=0x7f030144; /** * <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), and * mm (millimeters). */ public static final int tabMaxWidth=0x7f030145; /** * <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), and * mm (millimeters). */ public static final int tabMinWidth=0x7f030146; /** * <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>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> */ public static final int tabMode=0x7f030147; /** * <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), and * mm (millimeters). */ public static final int tabPadding=0x7f030148; /** * <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), and * mm (millimeters). */ public static final int tabPaddingBottom=0x7f030149; /** * <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), and * mm (millimeters). */ public static final int tabPaddingEnd=0x7f03014a; /** * <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), and * mm (millimeters). */ public static final int tabPaddingStart=0x7f03014b; /** * <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), and * mm (millimeters). */ public static final int tabPaddingTop=0x7f03014c; /** * <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 tabSelectedTextColor=0x7f03014d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabTextAppearance=0x7f03014e; /** * <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 tabTextColor=0x7f03014f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int textAllCaps=0x7f030150; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f030151; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f030152; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f030153; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f030154; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f030155; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f030156; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f030157; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f030158; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f030159; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 textColorError=0x7f03015a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f03015b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int theme=0x7f03015c; /** * <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), and * mm (millimeters). */ public static final int thickness=0x7f03015d; /** * <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), and * mm (millimeters). */ public static final int thumbTextPadding=0x7f03015e; /** * <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 thumbTint=0x7f03015f; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int thumbTintMode=0x7f030160; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tickMark=0x7f030161; /** * <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 tickMarkTint=0x7f030162; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tickMarkTintMode=0x7f030163; /** * <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 tint=0x7f030164; /** * <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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tintMode=0x7f030165; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f030166; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int titleEnabled=0x7f030167; /** * <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), and * mm (millimeters). */ public static final int titleMargin=0x7f030168; /** * <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), and * mm (millimeters). */ public static final int titleMarginBottom=0x7f030169; /** * <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), and * mm (millimeters). */ public static final int titleMarginEnd=0x7f03016a; /** * <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), and * mm (millimeters). */ public static final int titleMarginStart=0x7f03016b; /** * <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), and * mm (millimeters). */ public static final int titleMarginTop=0x7f03016c; /** * <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), and * mm (millimeters). */ public static final int titleMargins=0x7f03016d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextAppearance=0x7f03016e; /** * <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 titleTextColor=0x7f03016f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextStyle=0x7f030170; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarId=0x7f030171; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f030172; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarStyle=0x7f030173; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 tooltipForegroundColor=0x7f030174; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f030175; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f030176; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int track=0x7f030177; /** * <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 trackTint=0x7f030178; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int trackTintMode=0x7f030179; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int useCompatPadding=0x7f03017a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int voiceIcon=0x7f03017b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f03017c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f03017d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f03017e; /** * <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), and * 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. */ public static final int windowFixedHeightMajor=0x7f03017f; /** * <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), and * 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. */ public static final int windowFixedHeightMinor=0x7f030180; /** * <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), and * 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. */ public static final int windowFixedWidthMajor=0x7f030181; /** * <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), and * 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. */ public static final int windowFixedWidthMinor=0x7f030182; /** * <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), and * 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. */ public static final int windowMinWidthMajor=0x7f030183; /** * <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), and * 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. */ public static final int windowMinWidthMinor=0x7f030184; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f030185; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f040000; public static final int abc_allow_stacked_button_bar=0x7f040001; public static final int abc_config_actionMenuItemAllCaps=0x7f040002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f040003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f040004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; public static final int abc_background_cache_hint_selector_material_light=0x7f050001; public static final int abc_btn_colored_borderless_text_material=0x7f050002; public static final int abc_btn_colored_text_material=0x7f050003; public static final int abc_color_highlight_material=0x7f050004; public static final int abc_hint_foreground_material_dark=0x7f050005; public static final int abc_hint_foreground_material_light=0x7f050006; public static final int abc_input_method_navigation_guard=0x7f050007; public static final int abc_primary_text_disable_only_material_dark=0x7f050008; public static final int abc_primary_text_disable_only_material_light=0x7f050009; public static final int abc_primary_text_material_dark=0x7f05000a; public static final int abc_primary_text_material_light=0x7f05000b; public static final int abc_search_url_text=0x7f05000c; public static final int abc_search_url_text_normal=0x7f05000d; public static final int abc_search_url_text_pressed=0x7f05000e; public static final int abc_search_url_text_selected=0x7f05000f; public static final int abc_secondary_text_material_dark=0x7f050010; public static final int abc_secondary_text_material_light=0x7f050011; public static final int abc_tint_btn_checkable=0x7f050012; public static final int abc_tint_default=0x7f050013; public static final int abc_tint_edittext=0x7f050014; public static final int abc_tint_seek_thumb=0x7f050015; public static final int abc_tint_spinner=0x7f050016; public static final int abc_tint_switch_track=0x7f050017; public static final int accent_material_dark=0x7f050018; public static final int accent_material_light=0x7f050019; public static final int background_floating_material_dark=0x7f05001a; public static final int background_floating_material_light=0x7f05001b; public static final int background_material_dark=0x7f05001c; public static final int background_material_light=0x7f05001d; public static final int bright_foreground_disabled_material_dark=0x7f05001e; public static final int bright_foreground_disabled_material_light=0x7f05001f; public static final int bright_foreground_inverse_material_dark=0x7f050020; public static final int bright_foreground_inverse_material_light=0x7f050021; public static final int bright_foreground_material_dark=0x7f050022; public static final int bright_foreground_material_light=0x7f050023; public static final int button_material_dark=0x7f050024; public static final int button_material_light=0x7f050025; public static final int colorAccent=0x7f050026; public static final int colorPrimary=0x7f050027; public static final int colorPrimaryDark=0x7f050028; public static final int design_bottom_navigation_shadow_color=0x7f050029; public static final int design_error=0x7f05002a; public static final int design_fab_shadow_end_color=0x7f05002b; public static final int design_fab_shadow_mid_color=0x7f05002c; public static final int design_fab_shadow_start_color=0x7f05002d; public static final int design_fab_stroke_end_inner_color=0x7f05002e; public static final int design_fab_stroke_end_outer_color=0x7f05002f; public static final int design_fab_stroke_top_inner_color=0x7f050030; public static final int design_fab_stroke_top_outer_color=0x7f050031; public static final int design_snackbar_background_color=0x7f050032; public static final int design_tint_password_toggle=0x7f050033; public static final int dim_foreground_disabled_material_dark=0x7f050034; public static final int dim_foreground_disabled_material_light=0x7f050035; public static final int dim_foreground_material_dark=0x7f050036; public static final int dim_foreground_material_light=0x7f050037; public static final int error_color_material=0x7f050038; public static final int foreground_material_dark=0x7f050039; public static final int foreground_material_light=0x7f05003a; public static final int highlighted_text_material_dark=0x7f05003b; public static final int highlighted_text_material_light=0x7f05003c; public static final int material_blue_grey_800=0x7f05003d; public static final int material_blue_grey_900=0x7f05003e; public static final int material_blue_grey_950=0x7f05003f; public static final int material_deep_teal_200=0x7f050040; public static final int material_deep_teal_500=0x7f050041; public static final int material_grey_100=0x7f050042; public static final int material_grey_300=0x7f050043; public static final int material_grey_50=0x7f050044; public static final int material_grey_600=0x7f050045; public static final int material_grey_800=0x7f050046; public static final int material_grey_850=0x7f050047; public static final int material_grey_900=0x7f050048; public static final int notification_action_color_filter=0x7f050049; public static final int notification_icon_bg_color=0x7f05004a; public static final int notification_material_background_media_default_color=0x7f05004b; public static final int primary_dark_material_dark=0x7f05004c; public static final int primary_dark_material_light=0x7f05004d; public static final int primary_material_dark=0x7f05004e; public static final int primary_material_light=0x7f05004f; public static final int primary_text_default_material_dark=0x7f050050; public static final int primary_text_default_material_light=0x7f050051; public static final int primary_text_disabled_material_dark=0x7f050052; public static final int primary_text_disabled_material_light=0x7f050053; public static final int ripple_material_dark=0x7f050054; public static final int ripple_material_light=0x7f050055; public static final int secondary_text_default_material_dark=0x7f050056; public static final int secondary_text_default_material_light=0x7f050057; public static final int secondary_text_disabled_material_dark=0x7f050058; public static final int secondary_text_disabled_material_light=0x7f050059; public static final int switch_thumb_disabled_material_dark=0x7f05005a; public static final int switch_thumb_disabled_material_light=0x7f05005b; public static final int switch_thumb_material_dark=0x7f05005c; public static final int switch_thumb_material_light=0x7f05005d; public static final int switch_thumb_normal_material_dark=0x7f05005e; public static final int switch_thumb_normal_material_light=0x7f05005f; public static final int tooltip_background_dark=0x7f050060; public static final int tooltip_background_light=0x7f050061; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f060000; public static final int abc_action_bar_content_inset_with_nav=0x7f060001; public static final int abc_action_bar_default_height_material=0x7f060002; public static final int abc_action_bar_default_padding_end_material=0x7f060003; public static final int abc_action_bar_default_padding_start_material=0x7f060004; public static final int abc_action_bar_elevation_material=0x7f060005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; public static final int abc_action_bar_progress_bar_size=0x7f060009; public static final int abc_action_bar_stacked_max_height=0x7f06000a; public static final int abc_action_bar_stacked_tab_max_width=0x7f06000b; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000c; public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000d; public static final int abc_action_button_min_height_material=0x7f06000e; public static final int abc_action_button_min_width_material=0x7f06000f; public static final int abc_action_button_min_width_overflow_material=0x7f060010; public static final int abc_alert_dialog_button_bar_height=0x7f060011; public static final int abc_button_inset_horizontal_material=0x7f060012; public static final int abc_button_inset_vertical_material=0x7f060013; public static final int abc_button_padding_horizontal_material=0x7f060014; public static final int abc_button_padding_vertical_material=0x7f060015; public static final int abc_cascading_menus_min_smallest_width=0x7f060016; public static final int abc_config_prefDialogWidth=0x7f060017; public static final int abc_control_corner_material=0x7f060018; public static final int abc_control_inset_material=0x7f060019; public static final int abc_control_padding_material=0x7f06001a; public static final int abc_dialog_fixed_height_major=0x7f06001b; public static final int abc_dialog_fixed_height_minor=0x7f06001c; public static final int abc_dialog_fixed_width_major=0x7f06001d; public static final int abc_dialog_fixed_width_minor=0x7f06001e; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f06001f; public static final int abc_dialog_list_padding_top_no_title=0x7f060020; public static final int abc_dialog_min_width_major=0x7f060021; public static final int abc_dialog_min_width_minor=0x7f060022; public static final int abc_dialog_padding_material=0x7f060023; public static final int abc_dialog_padding_top_material=0x7f060024; public static final int abc_dialog_title_divider_material=0x7f060025; public static final int abc_disabled_alpha_material_dark=0x7f060026; public static final int abc_disabled_alpha_material_light=0x7f060027; public static final int abc_dropdownitem_icon_width=0x7f060028; public static final int abc_dropdownitem_text_padding_left=0x7f060029; public static final int abc_dropdownitem_text_padding_right=0x7f06002a; public static final int abc_edit_text_inset_bottom_material=0x7f06002b; public static final int abc_edit_text_inset_horizontal_material=0x7f06002c; public static final int abc_edit_text_inset_top_material=0x7f06002d; public static final int abc_floating_window_z=0x7f06002e; public static final int abc_list_item_padding_horizontal_material=0x7f06002f; public static final int abc_panel_menu_list_width=0x7f060030; public static final int abc_progress_bar_height_material=0x7f060031; public static final int abc_search_view_preferred_height=0x7f060032; public static final int abc_search_view_preferred_width=0x7f060033; public static final int abc_seekbar_track_background_height_material=0x7f060034; public static final int abc_seekbar_track_progress_height_material=0x7f060035; public static final int abc_select_dialog_padding_start_material=0x7f060036; public static final int abc_switch_padding=0x7f060037; public static final int abc_text_size_body_1_material=0x7f060038; public static final int abc_text_size_body_2_material=0x7f060039; public static final int abc_text_size_button_material=0x7f06003a; public static final int abc_text_size_caption_material=0x7f06003b; public static final int abc_text_size_display_1_material=0x7f06003c; public static final int abc_text_size_display_2_material=0x7f06003d; public static final int abc_text_size_display_3_material=0x7f06003e; public static final int abc_text_size_display_4_material=0x7f06003f; public static final int abc_text_size_headline_material=0x7f060040; public static final int abc_text_size_large_material=0x7f060041; public static final int abc_text_size_medium_material=0x7f060042; public static final int abc_text_size_menu_header_material=0x7f060043; public static final int abc_text_size_menu_material=0x7f060044; public static final int abc_text_size_small_material=0x7f060045; public static final int abc_text_size_subhead_material=0x7f060046; public static final int abc_text_size_subtitle_material_toolbar=0x7f060047; public static final int abc_text_size_title_material=0x7f060048; public static final int abc_text_size_title_material_toolbar=0x7f060049; public static final int compat_button_inset_horizontal_material=0x7f06004a; public static final int compat_button_inset_vertical_material=0x7f06004b; public static final int compat_button_padding_horizontal_material=0x7f06004c; public static final int compat_button_padding_vertical_material=0x7f06004d; public static final int compat_control_corner_material=0x7f06004e; public static final int design_appbar_elevation=0x7f06004f; public static final int design_bottom_navigation_active_item_max_width=0x7f060050; public static final int design_bottom_navigation_active_text_size=0x7f060051; public static final int design_bottom_navigation_elevation=0x7f060052; public static final int design_bottom_navigation_height=0x7f060053; public static final int design_bottom_navigation_item_max_width=0x7f060054; public static final int design_bottom_navigation_item_min_width=0x7f060055; public static final int design_bottom_navigation_margin=0x7f060056; public static final int design_bottom_navigation_shadow_height=0x7f060057; public static final int design_bottom_navigation_text_size=0x7f060058; public static final int design_bottom_sheet_modal_elevation=0x7f060059; public static final int design_bottom_sheet_peek_height_min=0x7f06005a; public static final int design_fab_border_width=0x7f06005b; public static final int design_fab_elevation=0x7f06005c; public static final int design_fab_image_size=0x7f06005d; public static final int design_fab_size_mini=0x7f06005e; public static final int design_fab_size_normal=0x7f06005f; public static final int design_fab_translation_z_pressed=0x7f060060; public static final int design_navigation_elevation=0x7f060061; public static final int design_navigation_icon_padding=0x7f060062; public static final int design_navigation_icon_size=0x7f060063; public static final int design_navigation_max_width=0x7f060064; public static final int design_navigation_padding_bottom=0x7f060065; public static final int design_navigation_separator_vertical_padding=0x7f060066; public static final int design_snackbar_action_inline_max_width=0x7f060067; public static final int design_snackbar_background_corner_radius=0x7f060068; public static final int design_snackbar_elevation=0x7f060069; public static final int design_snackbar_extra_spacing_horizontal=0x7f06006a; public static final int design_snackbar_max_width=0x7f06006b; public static final int design_snackbar_min_width=0x7f06006c; public static final int design_snackbar_padding_horizontal=0x7f06006d; public static final int design_snackbar_padding_vertical=0x7f06006e; public static final int design_snackbar_padding_vertical_2lines=0x7f06006f; public static final int design_snackbar_text_size=0x7f060070; public static final int design_tab_max_width=0x7f060071; public static final int design_tab_scrollable_min_width=0x7f060072; public static final int design_tab_text_size=0x7f060073; public static final int design_tab_text_size_2line=0x7f060074; public static final int disabled_alpha_material_dark=0x7f060075; public static final int disabled_alpha_material_light=0x7f060076; public static final int fastscroll_default_thickness=0x7f060077; public static final int fastscroll_margin=0x7f060078; public static final int fastscroll_minimum_range=0x7f060079; public static final int highlight_alpha_material_colored=0x7f06007a; public static final int highlight_alpha_material_dark=0x7f06007b; public static final int highlight_alpha_material_light=0x7f06007c; public static final int hint_alpha_material_dark=0x7f06007d; public static final int hint_alpha_material_light=0x7f06007e; public static final int hint_pressed_alpha_material_dark=0x7f06007f; public static final int hint_pressed_alpha_material_light=0x7f060080; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f060081; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f060082; public static final int item_touch_helper_swipe_escape_velocity=0x7f060083; public static final int notification_action_icon_size=0x7f060084; public static final int notification_action_text_size=0x7f060085; public static final int notification_big_circle_margin=0x7f060086; public static final int notification_content_margin_start=0x7f060087; public static final int notification_large_icon_height=0x7f060088; public static final int notification_large_icon_width=0x7f060089; public static final int notification_main_column_padding_top=0x7f06008a; public static final int notification_media_narrow_margin=0x7f06008b; public static final int notification_right_icon_size=0x7f06008c; public static final int notification_right_side_padding_top=0x7f06008d; public static final int notification_small_icon_background_padding=0x7f06008e; public static final int notification_small_icon_size_as_large=0x7f06008f; public static final int notification_subtext_size=0x7f060090; public static final int notification_top_pad=0x7f060091; public static final int notification_top_pad_large_text=0x7f060092; public static final int tooltip_corner_radius=0x7f060093; public static final int tooltip_horizontal_padding=0x7f060094; public static final int tooltip_margin=0x7f060095; public static final int tooltip_precise_anchor_extra_offset=0x7f060096; public static final int tooltip_precise_anchor_threshold=0x7f060097; public static final int tooltip_vertical_padding=0x7f060098; public static final int tooltip_y_offset_non_touch=0x7f060099; public static final int tooltip_y_offset_touch=0x7f06009a; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f070007; public static final int abc_action_bar_item_background_material=0x7f070008; public static final int abc_btn_borderless_material=0x7f070009; public static final int abc_btn_check_material=0x7f07000a; public static final int abc_btn_check_to_on_mtrl_000=0x7f07000b; public static final int abc_btn_check_to_on_mtrl_015=0x7f07000c; public static final int abc_btn_colored_material=0x7f07000d; public static final int abc_btn_default_mtrl_shape=0x7f07000e; public static final int abc_btn_radio_material=0x7f07000f; public static final int abc_btn_radio_to_on_mtrl_000=0x7f070010; public static final int abc_btn_radio_to_on_mtrl_015=0x7f070011; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070012; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070013; public static final int abc_cab_background_internal_bg=0x7f070014; public static final int abc_cab_background_top_material=0x7f070015; public static final int abc_cab_background_top_mtrl_alpha=0x7f070016; public static final int abc_control_background_material=0x7f070017; public static final int abc_dialog_material_background=0x7f070018; public static final int abc_edit_text_material=0x7f070019; public static final int abc_ic_ab_back_material=0x7f07001a; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001b; public static final int abc_ic_clear_material=0x7f07001c; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001d; public static final int abc_ic_go_search_api_material=0x7f07001e; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001f; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f070020; public static final int abc_ic_menu_overflow_material=0x7f070021; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070022; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070023; public static final int abc_ic_menu_share_mtrl_alpha=0x7f070024; public static final int abc_ic_search_api_material=0x7f070025; public static final int abc_ic_star_black_16dp=0x7f070026; public static final int abc_ic_star_black_36dp=0x7f070027; public static final int abc_ic_star_black_48dp=0x7f070028; public static final int abc_ic_star_half_black_16dp=0x7f070029; public static final int abc_ic_star_half_black_36dp=0x7f07002a; public static final int abc_ic_star_half_black_48dp=0x7f07002b; public static final int abc_ic_voice_search_api_material=0x7f07002c; public static final int abc_item_background_holo_dark=0x7f07002d; public static final int abc_item_background_holo_light=0x7f07002e; public static final int abc_list_divider_mtrl_alpha=0x7f07002f; public static final int abc_list_focused_holo=0x7f070030; public static final int abc_list_longpressed_holo=0x7f070031; public static final int abc_list_pressed_holo_dark=0x7f070032; public static final int abc_list_pressed_holo_light=0x7f070033; public static final int abc_list_selector_background_transition_holo_dark=0x7f070034; public static final int abc_list_selector_background_transition_holo_light=0x7f070035; public static final int abc_list_selector_disabled_holo_dark=0x7f070036; public static final int abc_list_selector_disabled_holo_light=0x7f070037; public static final int abc_list_selector_holo_dark=0x7f070038; public static final int abc_list_selector_holo_light=0x7f070039; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003a; public static final int abc_popup_background_mtrl_mult=0x7f07003b; public static final int abc_ratingbar_indicator_material=0x7f07003c; public static final int abc_ratingbar_material=0x7f07003d; public static final int abc_ratingbar_small_material=0x7f07003e; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003f; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070040; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070041; public static final int abc_scrubber_primary_mtrl_alpha=0x7f070042; public static final int abc_scrubber_track_mtrl_alpha=0x7f070043; public static final int abc_seekbar_thumb_material=0x7f070044; public static final int abc_seekbar_tick_mark_material=0x7f070045; public static final int abc_seekbar_track_material=0x7f070046; public static final int abc_spinner_mtrl_am_alpha=0x7f070047; public static final int abc_spinner_textfield_background_material=0x7f070048; public static final int abc_switch_thumb_material=0x7f070049; public static final int abc_switch_track_mtrl_alpha=0x7f07004a; public static final int abc_tab_indicator_material=0x7f07004b; public static final int abc_tab_indicator_mtrl_alpha=0x7f07004c; public static final int abc_text_cursor_material=0x7f07004d; public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004e; public static final int abc_text_select_handle_left_mtrl_light=0x7f07004f; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070050; public static final int abc_text_select_handle_middle_mtrl_light=0x7f070051; public static final int abc_text_select_handle_right_mtrl_dark=0x7f070052; public static final int abc_text_select_handle_right_mtrl_light=0x7f070053; public static final int abc_textfield_activated_mtrl_alpha=0x7f070054; public static final int abc_textfield_default_mtrl_alpha=0x7f070055; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070056; public static final int abc_textfield_search_default_mtrl_alpha=0x7f070057; public static final int abc_textfield_search_material=0x7f070058; public static final int abc_vector_test=0x7f070059; public static final int avd_hide_password=0x7f07005a; public static final int avd_show_password=0x7f07005b; public static final int design_bottom_navigation_item_background=0x7f07005c; public static final int design_fab_background=0x7f07005d; public static final int design_ic_visibility=0x7f07005e; public static final int design_ic_visibility_off=0x7f07005f; public static final int design_password_eye=0x7f070060; public static final int design_snackbar_background=0x7f070061; public static final int donut_circle=0x7f070062; public static final int froyo_circle=0x7f070063; public static final int ic_favorite=0x7f070064; public static final int ic_launcher_background=0x7f070065; public static final int ic_launcher_foreground=0x7f070066; public static final int ic_map=0x7f070067; public static final int ic_shopping_cart=0x7f070068; public static final int ic_status_info=0x7f070069; public static final int icecream_circle=0x7f07006a; public static final int navigation_empty_icon=0x7f07006b; public static final int notification_action_background=0x7f07006c; public static final int notification_bg=0x7f07006d; public static final int notification_bg_low=0x7f07006e; public static final int notification_bg_low_normal=0x7f07006f; public static final int notification_bg_low_pressed=0x7f070070; public static final int notification_bg_normal=0x7f070071; public static final int notification_bg_normal_pressed=0x7f070072; public static final int notification_icon_background=0x7f070073; public static final int notification_template_icon_bg=0x7f070074; public static final int notification_template_icon_low_bg=0x7f070075; public static final int notification_tile_bg=0x7f070076; public static final int notify_panel_notification_icon_bg=0x7f070077; public static final int tooltip_frame_dark=0x7f070078; public static final int tooltip_frame_light=0x7f070079; } public static final class id { public static final int ALT=0x7f080000; public static final int CTRL=0x7f080001; public static final int DatePicker=0x7f080002; public static final int FUNCTION=0x7f080003; public static final int META=0x7f080004; public static final int SHIFT=0x7f080005; public static final int SYM=0x7f080006; public static final int action0=0x7f080007; public static final int action_bar=0x7f080008; public static final int action_bar_activity_content=0x7f080009; public static final int action_bar_container=0x7f08000a; public static final int action_bar_root=0x7f08000b; public static final int action_bar_spinner=0x7f08000c; public static final int action_bar_subtitle=0x7f08000d; public static final int action_bar_title=0x7f08000e; public static final int action_contact=0x7f08000f; public static final int action_container=0x7f080010; public static final int action_context_bar=0x7f080011; public static final int action_divider=0x7f080012; public static final int action_favorites=0x7f080013; public static final int action_image=0x7f080014; public static final int action_menu_divider=0x7f080015; public static final int action_menu_presenter=0x7f080016; public static final int action_mode_bar=0x7f080017; public static final int action_mode_bar_stub=0x7f080018; public static final int action_mode_close_button=0x7f080019; public static final int action_order=0x7f08001a; public static final int action_status=0x7f08001b; public static final int action_text=0x7f08001c; public static final int actions=0x7f08001d; public static final int activity_chooser_view_content=0x7f08001e; public static final int add=0x7f08001f; public static final int address_label=0x7f080020; public static final int address_text=0x7f080021; public static final int alertTitle=0x7f080022; public static final int all=0x7f080023; public static final int always=0x7f080024; public static final int async=0x7f080025; public static final int auto=0x7f080026; public static final int basic=0x7f080027; public static final int beginning=0x7f080028; public static final int blocking=0x7f080029; public static final int bottom=0x7f08002a; public static final int buttonPanel=0x7f08002b; public static final int cancel_action=0x7f08002c; public static final int center=0x7f08002d; public static final int center_horizontal=0x7f08002e; public static final int center_vertical=0x7f08002f; public static final int chains=0x7f080030; public static final int checkbox=0x7f080031; public static final int chronometer=0x7f080032; public static final int clip_horizontal=0x7f080033; public static final int clip_vertical=0x7f080034; public static final int collapseActionView=0x7f080035; public static final int container=0x7f080036; public static final int contentPanel=0x7f080037; public static final int coordinator=0x7f080038; public static final int custom=0x7f080039; public static final int customPanel=0x7f08003a; public static final int decor_content_parent=0x7f08003b; public static final int default_activity_button=0x7f08003c; public static final int delivery_label=0x7f08003d; public static final int design_bottom_sheet=0x7f08003e; public static final int design_menu_item_action_area=0x7f08003f; public static final int design_menu_item_action_area_stub=0x7f080040; public static final int design_menu_item_text=0x7f080041; public static final int design_navigation_view=0x7f080042; public static final int disableHome=0x7f080043; public static final int donut=0x7f080044; public static final int donut_description=0x7f080045; public static final int edit_query=0x7f080046; public static final int end=0x7f080047; public static final int end_padder=0x7f080048; public static final int enterAlways=0x7f080049; public static final int enterAlwaysCollapsed=0x7f08004a; public static final int exitUntilCollapsed=0x7f08004b; public static final int expand_activities_button=0x7f08004c; public static final int expanded_menu=0x7f08004d; public static final int fab=0x7f08004e; public static final int fill=0x7f08004f; public static final int fill_horizontal=0x7f080050; public static final int fill_vertical=0x7f080051; public static final int fixed=0x7f080052; public static final int forever=0x7f080053; public static final int froyo=0x7f080054; public static final int froyo_description=0x7f080055; public static final int ghost_view=0x7f080056; public static final int home=0x7f080057; public static final int homeAsUp=0x7f080058; public static final int ice_cream=0x7f080059; public static final int ice_cream_description=0x7f08005a; public static final int icon=0x7f08005b; public static final int icon_group=0x7f08005c; public static final int ifRoom=0x7f08005d; public static final int image=0x7f08005e; public static final int info=0x7f08005f; public static final int italic=0x7f080060; public static final int item_touch_helper_previous_elevation=0x7f080061; public static final int largeLabel=0x7f080062; public static final int left=0x7f080063; public static final int line1=0x7f080064; public static final int line3=0x7f080065; public static final int listMode=0x7f080066; public static final int list_item=0x7f080067; public static final int masked=0x7f080068; public static final int media_actions=0x7f080069; public static final int message=0x7f08006a; public static final int middle=0x7f08006b; public static final int mini=0x7f08006c; public static final int multiply=0x7f08006d; public static final int name_label=0x7f08006e; public static final int name_text=0x7f08006f; public static final int navigation_header_container=0x7f080070; public static final int never=0x7f080071; public static final int nextday=0x7f080072; public static final int none=0x7f080073; public static final int normal=0x7f080074; public static final int note_label=0x7f080075; public static final int note_text=0x7f080076; public static final int notification_background=0x7f080077; public static final int notification_main_column=0x7f080078; public static final int notification_main_column_container=0x7f080079; public static final int order_textview=0x7f08007a; public static final int packed=0x7f08007b; public static final int parallax=0x7f08007c; public static final int parent=0x7f08007d; public static final int parentPanel=0x7f08007e; public static final int parent_matrix=0x7f08007f; public static final int phone_label=0x7f080080; public static final int phone_text=0x7f080081; public static final int pickup=0x7f080082; public static final int pin=0x7f080083; public static final int progress_circular=0x7f080084; public static final int progress_horizontal=0x7f080085; public static final int radio=0x7f080086; public static final int radioGroup=0x7f080087; public static final int right=0x7f080088; public static final int right_icon=0x7f080089; public static final int right_side=0x7f08008a; public static final int sameday=0x7f08008b; public static final int save_image_matrix=0x7f08008c; public static final int save_non_transition_alpha=0x7f08008d; public static final int save_scale_type=0x7f08008e; public static final int screen=0x7f08008f; public static final int scroll=0x7f080090; public static final int scrollIndicatorDown=0x7f080091; public static final int scrollIndicatorUp=0x7f080092; public static final int scrollView=0x7f080093; public static final int scrollable=0x7f080094; public static final int search_badge=0x7f080095; public static final int search_bar=0x7f080096; public static final int search_button=0x7f080097; public static final int search_close_btn=0x7f080098; public static final int search_edit_frame=0x7f080099; public static final int search_go_btn=0x7f08009a; public static final int search_mag_icon=0x7f08009b; public static final int search_plate=0x7f08009c; public static final int search_src_text=0x7f08009d; public static final int search_voice_btn=0x7f08009e; public static final int select_dialog_listview=0x7f08009f; public static final int shortcut=0x7f0800a0; public static final int showCustom=0x7f0800a1; public static final int showHome=0x7f0800a2; public static final int showTitle=0x7f0800a3; public static final int smallLabel=0x7f0800a4; public static final int snackbar_action=0x7f0800a5; public static final int snackbar_text=0x7f0800a6; public static final int snap=0x7f0800a7; public static final int spacer=0x7f0800a8; public static final int split_action_bar=0x7f0800a9; public static final int spread=0x7f0800aa; public static final int spread_inside=0x7f0800ab; public static final int src_atop=0x7f0800ac; public static final int src_in=0x7f0800ad; public static final int src_over=0x7f0800ae; public static final int start=0x7f0800af; public static final int status_bar_latest_event_content=0x7f0800b0; public static final int submenuarrow=0x7f0800b1; public static final int submit_area=0x7f0800b2; public static final int tabMode=0x7f0800b3; public static final int text=0x7f0800b4; public static final int text2=0x7f0800b5; public static final int textSpacerNoButtons=0x7f0800b6; public static final int textSpacerNoTitle=0x7f0800b7; public static final int text_input_password_toggle=0x7f0800b8; public static final int textinput_counter=0x7f0800b9; public static final int textinput_error=0x7f0800ba; public static final int textintro=0x7f0800bb; public static final int time=0x7f0800bc; public static final int title=0x7f0800bd; public static final int titleDividerNoCustom=0x7f0800be; public static final int title_template=0x7f0800bf; public static final int toolbar=0x7f0800c0; public static final int top=0x7f0800c1; public static final int topPanel=0x7f0800c2; public static final int touch_outside=0x7f0800c3; public static final int transition_current_scene=0x7f0800c4; public static final int transition_layout_save=0x7f0800c5; public static final int transition_position=0x7f0800c6; public static final int transition_scene_layoutid_cache=0x7f0800c7; public static final int transition_transform=0x7f0800c8; public static final int uniform=0x7f0800c9; public static final int up=0x7f0800ca; public static final int useLogo=0x7f0800cb; public static final int view_offset_helper=0x7f0800cc; public static final int visible=0x7f0800cd; public static final int withText=0x7f0800ce; public static final int wrap=0x7f0800cf; public static final int wrap_content=0x7f0800d0; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f090000; public static final int abc_config_activityShortDur=0x7f090001; public static final int app_bar_elevation_anim_duration=0x7f090002; public static final int bottom_sheet_slide_duration=0x7f090003; public static final int cancel_button_image_alpha=0x7f090004; public static final int config_tooltipAnimTime=0x7f090005; public static final int design_snackbar_text_max_lines=0x7f090006; public static final int hide_password_duration=0x7f090007; public static final int show_password_duration=0x7f090008; public static final int status_bar_notification_info_maxnum=0x7f090009; } public static final class layout { public static final int abc_action_bar_title_item=0x7f0a0000; public static final int abc_action_bar_up_container=0x7f0a0001; public static final int abc_action_bar_view_list_nav_layout=0x7f0a0002; public static final int abc_action_menu_item_layout=0x7f0a0003; public static final int abc_action_menu_layout=0x7f0a0004; public static final int abc_action_mode_bar=0x7f0a0005; public static final int abc_action_mode_close_item_material=0x7f0a0006; public static final int abc_activity_chooser_view=0x7f0a0007; public static final int abc_activity_chooser_view_list_item=0x7f0a0008; public static final int abc_alert_dialog_button_bar_material=0x7f0a0009; public static final int abc_alert_dialog_material=0x7f0a000a; public static final int abc_alert_dialog_title_material=0x7f0a000b; public static final int abc_dialog_title_material=0x7f0a000c; public static final int abc_expanded_menu_layout=0x7f0a000d; public static final int abc_list_menu_item_checkbox=0x7f0a000e; public static final int abc_list_menu_item_icon=0x7f0a000f; public static final int abc_list_menu_item_layout=0x7f0a0010; public static final int abc_list_menu_item_radio=0x7f0a0011; public static final int abc_popup_menu_header_item_layout=0x7f0a0012; public static final int abc_popup_menu_item_layout=0x7f0a0013; public static final int abc_screen_content_include=0x7f0a0014; public static final int abc_screen_simple=0x7f0a0015; public static final int abc_screen_simple_overlay_action_mode=0x7f0a0016; public static final int abc_screen_toolbar=0x7f0a0017; public static final int abc_search_dropdown_item_icons_2line=0x7f0a0018; public static final int abc_search_view=0x7f0a0019; public static final int abc_select_dialog_material=0x7f0a001a; public static final int activity_main=0x7f0a001b; public static final int activity_order=0x7f0a001c; public static final int content_main=0x7f0a001d; public static final int design_bottom_navigation_item=0x7f0a001e; public static final int design_bottom_sheet_dialog=0x7f0a001f; public static final int design_layout_snackbar=0x7f0a0020; public static final int design_layout_snackbar_include=0x7f0a0021; public static final int design_layout_tab_icon=0x7f0a0022; public static final int design_layout_tab_text=0x7f0a0023; public static final int design_menu_item_action_area=0x7f0a0024; public static final int design_navigation_item=0x7f0a0025; public static final int design_navigation_item_header=0x7f0a0026; public static final int design_navigation_item_separator=0x7f0a0027; public static final int design_navigation_item_subheader=0x7f0a0028; public static final int design_navigation_menu=0x7f0a0029; public static final int design_navigation_menu_item=0x7f0a002a; public static final int design_text_input_password_icon=0x7f0a002b; public static final int notification_action=0x7f0a002c; public static final int notification_action_tombstone=0x7f0a002d; public static final int notification_media_action=0x7f0a002e; public static final int notification_media_cancel_action=0x7f0a002f; public static final int notification_template_big_media=0x7f0a0030; public static final int notification_template_big_media_custom=0x7f0a0031; public static final int notification_template_big_media_narrow=0x7f0a0032; public static final int notification_template_big_media_narrow_custom=0x7f0a0033; public static final int notification_template_custom_big=0x7f0a0034; public static final int notification_template_icon_group=0x7f0a0035; public static final int notification_template_lines_media=0x7f0a0036; public static final int notification_template_media=0x7f0a0037; public static final int notification_template_media_custom=0x7f0a0038; public static final int notification_template_part_chronometer=0x7f0a0039; public static final int notification_template_part_time=0x7f0a003a; public static final int select_dialog_item_material=0x7f0a003b; public static final int select_dialog_multichoice_material=0x7f0a003c; public static final int select_dialog_singlechoice_material=0x7f0a003d; public static final int support_simple_spinner_dropdown_item=0x7f0a003e; public static final int tooltip=0x7f0a003f; } public static final class menu { public static final int menu_main=0x7f0b0000; } public static final class mipmap { public static final int ic_launcher=0x7f0c0000; public static final int ic_launcher_round=0x7f0c0001; } public static final class string { public static final int abc_action_bar_home_description=0x7f0d0000; public static final int abc_action_bar_home_description_format=0x7f0d0001; public static final int abc_action_bar_home_subtitle_description_format=0x7f0d0002; public static final int abc_action_bar_up_description=0x7f0d0003; public static final int abc_action_menu_overflow_description=0x7f0d0004; public static final int abc_action_mode_done=0x7f0d0005; public static final int abc_activity_chooser_view_see_all=0x7f0d0006; public static final int abc_activitychooserview_choose_application=0x7f0d0007; public static final int abc_capital_off=0x7f0d0008; public static final int abc_capital_on=0x7f0d0009; public static final int abc_font_family_body_1_material=0x7f0d000a; public static final int abc_font_family_body_2_material=0x7f0d000b; public static final int abc_font_family_button_material=0x7f0d000c; public static final int abc_font_family_caption_material=0x7f0d000d; public static final int abc_font_family_display_1_material=0x7f0d000e; public static final int abc_font_family_display_2_material=0x7f0d000f; public static final int abc_font_family_display_3_material=0x7f0d0010; public static final int abc_font_family_display_4_material=0x7f0d0011; public static final int abc_font_family_headline_material=0x7f0d0012; public static final int abc_font_family_menu_material=0x7f0d0013; public static final int abc_font_family_subhead_material=0x7f0d0014; public static final int abc_font_family_title_material=0x7f0d0015; public static final int abc_search_hint=0x7f0d0016; public static final int abc_searchview_description_clear=0x7f0d0017; public static final int abc_searchview_description_query=0x7f0d0018; public static final int abc_searchview_description_search=0x7f0d0019; public static final int abc_searchview_description_submit=0x7f0d001a; public static final int abc_searchview_description_voice=0x7f0d001b; public static final int abc_shareactionprovider_share_with=0x7f0d001c; public static final int abc_shareactionprovider_share_with_application=0x7f0d001d; public static final int abc_toolbar_collapse_description=0x7f0d001e; public static final int action_contact=0x7f0d001f; public static final int action_contact_message=0x7f0d0020; public static final int action_favorites=0x7f0d0021; public static final int action_favorites_message=0x7f0d0022; public static final int action_order=0x7f0d0023; public static final int action_order_message=0x7f0d0024; public static final int action_settings=0x7f0d0025; public static final int action_status=0x7f0d0026; public static final int action_status_message=0x7f0d0027; public static final int address_label_text=0x7f0d0028; public static final int app_name=0x7f0d0029; public static final int appbar_scrolling_view_behavior=0x7f0d002a; public static final int bottom_sheet_behavior=0x7f0d002b; public static final int change_dessert=0x7f0d002c; public static final int character_counter_pattern=0x7f0d002d; public static final int choose_delivery_method=0x7f0d002e; public static final int donut_order_message=0x7f0d002f; public static final int donuts=0x7f0d0030; public static final int enter_address_hint=0x7f0d0031; public static final int enter_name_hint=0x7f0d0032; public static final int enter_note_hint=0x7f0d0033; public static final int enter_phone_hint=0x7f0d0034; public static final int froyo=0x7f0d0035; public static final int froyo_order_message=0x7f0d0036; public static final int ice_cream_order_message=0x7f0d0037; public static final int ice_cream_sandwiches=0x7f0d0038; public static final int intro_text=0x7f0d0039; public static final int name_label_text=0x7f0d003a; public static final int next_day_ground_delivery=0x7f0d003b; public static final int note_label_text=0x7f0d003c; public static final int order_label_text=0x7f0d003d; public static final int password_toggle_content_description=0x7f0d003e; public static final int path_password_eye=0x7f0d003f; public static final int path_password_eye_mask_strike_through=0x7f0d0040; public static final int path_password_eye_mask_visible=0x7f0d0041; public static final int path_password_strike_through=0x7f0d0042; public static final int phone_label_string=0x7f0d0043; public static final int pick_up=0x7f0d0044; public static final int same_day_messenger_service=0x7f0d0045; public static final int search_menu_title=0x7f0d0046; public static final int status_bar_notification_info_overflow=0x7f0d0047; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0e0000; public static final int AlertDialog_AppCompat_Light=0x7f0e0001; public static final int Animation_AppCompat_Dialog=0x7f0e0002; public static final int Animation_AppCompat_DropDownUp=0x7f0e0003; public static final int Animation_AppCompat_Tooltip=0x7f0e0004; public static final int Animation_Design_BottomSheetDialog=0x7f0e0005; public static final int AppTheme=0x7f0e0006; public static final int AppTheme_AppBarOverlay=0x7f0e0007; public static final int AppTheme_NoActionBar=0x7f0e0008; public static final int AppTheme_PopupOverlay=0x7f0e0009; public static final int Base_AlertDialog_AppCompat=0x7f0e000a; public static final int Base_AlertDialog_AppCompat_Light=0x7f0e000b; public static final int Base_Animation_AppCompat_Dialog=0x7f0e000c; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000d; public static final int Base_Animation_AppCompat_Tooltip=0x7f0e000e; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e0010; public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000f; public static final int Base_TextAppearance_AppCompat=0x7f0e0011; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0012; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0013; public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0014; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0015; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0016; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0017; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0018; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0019; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e001a; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e001b; public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001c; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001d; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001e; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001f; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e0020; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e0021; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0022; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0023; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0024; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0025; public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0026; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0027; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0028; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0029; public static final int Base_TextAppearance_AppCompat_Title=0x7f0e002a; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e002b; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0e002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002f; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0030; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0031; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0032; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0033; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0034; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0035; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0036; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0037; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0038; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0039; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e003a; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e003b; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e003c; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003d; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003e; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003f; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0040; public static final int Base_ThemeOverlay_AppCompat=0x7f0e004f; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e0050; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e0051; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0052; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0053; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0054; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0055; public static final int Base_Theme_AppCompat=0x7f0e0041; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e0042; public static final int Base_Theme_AppCompat_Dialog=0x7f0e0043; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0047; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0044; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0045; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0046; public static final int Base_Theme_AppCompat_Light=0x7f0e0048; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0049; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e004a; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004e; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e004b; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e004c; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004d; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0e0058; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0e0056; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0e0057; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0e0059; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0e005a; public static final int Base_V14_Widget_Design_AppBarLayout=0x7f0e005b; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e0060; public static final int Base_V21_Theme_AppCompat=0x7f0e005c; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e005d; public static final int Base_V21_Theme_AppCompat_Light=0x7f0e005e; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e005f; public static final int Base_V21_Widget_Design_AppBarLayout=0x7f0e0061; public static final int Base_V22_Theme_AppCompat=0x7f0e0062; public static final int Base_V22_Theme_AppCompat_Light=0x7f0e0063; public static final int Base_V23_Theme_AppCompat=0x7f0e0064; public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0065; public static final int Base_V26_Theme_AppCompat=0x7f0e0066; public static final int Base_V26_Theme_AppCompat_Light=0x7f0e0067; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0e0068; public static final int Base_V26_Widget_Design_AppBarLayout=0x7f0e0069; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e006e; public static final int Base_V7_Theme_AppCompat=0x7f0e006a; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e006b; public static final int Base_V7_Theme_AppCompat_Light=0x7f0e006c; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e006d; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e006f; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e0070; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0e0071; public static final int Base_Widget_AppCompat_ActionBar=0x7f0e0072; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e0073; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e0074; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e0075; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e0076; public static final int Base_Widget_AppCompat_ActionButton=0x7f0e0077; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e0078; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e0079; public static final int Base_Widget_AppCompat_ActionMode=0x7f0e007a; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e007b; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e007c; public static final int Base_Widget_AppCompat_Button=0x7f0e007d; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e0083; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0084; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e007e; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e007f; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0080; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e0081; public static final int Base_Widget_AppCompat_Button_Small=0x7f0e0082; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0085; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e0086; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e0087; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e0088; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e0089; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e008a; public static final int Base_Widget_AppCompat_EditText=0x7f0e008b; public static final int Base_Widget_AppCompat_ImageButton=0x7f0e008c; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e008d; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e008e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e008f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e0090; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e0091; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e0092; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e0093; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e0094; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e0095; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e0096; public static final int Base_Widget_AppCompat_ListView=0x7f0e0097; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e0098; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e0099; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e009a; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e009b; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e009c; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e009d; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e009e; public static final int Base_Widget_AppCompat_RatingBar=0x7f0e009f; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e00a0; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e00a1; public static final int Base_Widget_AppCompat_SearchView=0x7f0e00a2; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e00a3; public static final int Base_Widget_AppCompat_SeekBar=0x7f0e00a4; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e00a5; public static final int Base_Widget_AppCompat_Spinner=0x7f0e00a6; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e00a7; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e00a8; public static final int Base_Widget_AppCompat_Toolbar=0x7f0e00a9; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00aa; public static final int Base_Widget_Design_AppBarLayout=0x7f0e00ab; public static final int Base_Widget_Design_TabLayout=0x7f0e00ac; public static final int Platform_AppCompat=0x7f0e00ad; public static final int Platform_AppCompat_Light=0x7f0e00ae; public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00af; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00b0; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00b1; public static final int Platform_V11_AppCompat=0x7f0e00b2; public static final int Platform_V11_AppCompat_Light=0x7f0e00b3; public static final int Platform_V14_AppCompat=0x7f0e00b4; public static final int Platform_V14_AppCompat_Light=0x7f0e00b5; public static final int Platform_V21_AppCompat=0x7f0e00b6; public static final int Platform_V21_AppCompat_Light=0x7f0e00b7; public static final int Platform_V25_AppCompat=0x7f0e00b8; public static final int Platform_V25_AppCompat_Light=0x7f0e00b9; public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00ba; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00bb; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00bc; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00bd; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00be; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00bf; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00c0; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00c6; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00c1; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00c2; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00c3; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00c4; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00c5; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00c7; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00c8; public static final int TextAppearance_AppCompat=0x7f0e00c9; public static final int TextAppearance_AppCompat_Body1=0x7f0e00ca; public static final int TextAppearance_AppCompat_Body2=0x7f0e00cb; public static final int TextAppearance_AppCompat_Button=0x7f0e00cc; public static final int TextAppearance_AppCompat_Caption=0x7f0e00cd; public static final int TextAppearance_AppCompat_Display1=0x7f0e00ce; public static final int TextAppearance_AppCompat_Display2=0x7f0e00cf; public static final int TextAppearance_AppCompat_Display3=0x7f0e00d0; public static final int TextAppearance_AppCompat_Display4=0x7f0e00d1; public static final int TextAppearance_AppCompat_Headline=0x7f0e00d2; public static final int TextAppearance_AppCompat_Inverse=0x7f0e00d3; public static final int TextAppearance_AppCompat_Large=0x7f0e00d4; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00d5; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00d6; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00d7; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00d8; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00d9; public static final int TextAppearance_AppCompat_Medium=0x7f0e00da; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00db; public static final int TextAppearance_AppCompat_Menu=0x7f0e00dc; public static final int TextAppearance_AppCompat_Notification=0x7f0e00dd; public static final int TextAppearance_AppCompat_Notification_Info=0x7f0e00de; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0e00df; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0e00e0; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0e00e1; public static final int TextAppearance_AppCompat_Notification_Media=0x7f0e00e2; public static final int TextAppearance_AppCompat_Notification_Time=0x7f0e00e3; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0e00e4; public static final int TextAppearance_AppCompat_Notification_Title=0x7f0e00e5; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0e00e6; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00e7; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00e8; public static final int TextAppearance_AppCompat_Small=0x7f0e00e9; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00ea; public static final int TextAppearance_AppCompat_Subhead=0x7f0e00eb; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e00ec; public static final int TextAppearance_AppCompat_Title=0x7f0e00ed; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e00ee; public static final int TextAppearance_AppCompat_Tooltip=0x7f0e00ef; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e00f0; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e00f1; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e00f2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e00f3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e00f4; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e00f5; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e00f6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e00f7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e00f8; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e00f9; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e00fa; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e00fb; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e00fc; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e00fd; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e00fe; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e00ff; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0100; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e0101; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e0102; public static final int TextAppearance_Compat_Notification=0x7f0e0103; public static final int TextAppearance_Compat_Notification_Info=0x7f0e0104; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0e0105; public static final int TextAppearance_Compat_Notification_Line2=0x7f0e0106; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0e0107; public static final int TextAppearance_Compat_Notification_Media=0x7f0e0108; public static final int TextAppearance_Compat_Notification_Time=0x7f0e0109; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0e010a; public static final int TextAppearance_Compat_Notification_Title=0x7f0e010b; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0e010c; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e010d; public static final int TextAppearance_Design_Counter=0x7f0e010e; public static final int TextAppearance_Design_Counter_Overflow=0x7f0e010f; public static final int TextAppearance_Design_Error=0x7f0e0110; public static final int TextAppearance_Design_Hint=0x7f0e0111; public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0112; public static final int TextAppearance_Design_Tab=0x7f0e0113; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0114; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0115; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0116; public static final int ThemeOverlay_AppCompat=0x7f0e0132; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e0133; public static final int ThemeOverlay_AppCompat_Dark=0x7f0e0134; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0135; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e0136; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0137; public static final int ThemeOverlay_AppCompat_Light=0x7f0e0138; public static final int Theme_AppCompat=0x7f0e0117; public static final int Theme_AppCompat_CompactMenu=0x7f0e0118; public static final int Theme_AppCompat_DayNight=0x7f0e0119; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e011a; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e011b; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e011e; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e011c; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e011d; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e011f; public static final int Theme_AppCompat_Dialog=0x7f0e0120; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0123; public static final int Theme_AppCompat_Dialog_Alert=0x7f0e0121; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e0122; public static final int Theme_AppCompat_Light=0x7f0e0124; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0125; public static final int Theme_AppCompat_Light_Dialog=0x7f0e0126; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e0129; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e0127; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e0128; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e012a; public static final int Theme_AppCompat_NoActionBar=0x7f0e012b; public static final int Theme_Design=0x7f0e012c; public static final int Theme_Design_BottomSheetDialog=0x7f0e012d; public static final int Theme_Design_Light=0x7f0e012e; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e012f; public static final int Theme_Design_Light_NoActionBar=0x7f0e0130; public static final int Theme_Design_NoActionBar=0x7f0e0131; public static final int Widget_AppCompat_ActionBar=0x7f0e0139; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e013a; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e013b; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e013c; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e013d; public static final int Widget_AppCompat_ActionButton=0x7f0e013e; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e013f; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e0140; public static final int Widget_AppCompat_ActionMode=0x7f0e0141; public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0142; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0143; public static final int Widget_AppCompat_Button=0x7f0e0144; public static final int Widget_AppCompat_ButtonBar=0x7f0e014a; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e014b; public static final int Widget_AppCompat_Button_Borderless=0x7f0e0145; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e0146; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0147; public static final int Widget_AppCompat_Button_Colored=0x7f0e0148; public static final int Widget_AppCompat_Button_Small=0x7f0e0149; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e014c; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e014d; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e014e; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e014f; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e0150; public static final int Widget_AppCompat_EditText=0x7f0e0151; public static final int Widget_AppCompat_ImageButton=0x7f0e0152; public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0153; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0154; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e0155; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e0156; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e0157; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e0158; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e0159; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e015a; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e015b; public static final int Widget_AppCompat_Light_ActionButton=0x7f0e015c; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e015d; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e015e; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e015f; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e0160; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e0161; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e0162; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e0163; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e0164; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e0165; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e0166; public static final int Widget_AppCompat_Light_SearchView=0x7f0e0167; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e0168; public static final int Widget_AppCompat_ListMenuView=0x7f0e0169; public static final int Widget_AppCompat_ListPopupWindow=0x7f0e016a; public static final int Widget_AppCompat_ListView=0x7f0e016b; public static final int Widget_AppCompat_ListView_DropDown=0x7f0e016c; public static final int Widget_AppCompat_ListView_Menu=0x7f0e016d; public static final int Widget_AppCompat_PopupMenu=0x7f0e016e; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e016f; public static final int Widget_AppCompat_PopupWindow=0x7f0e0170; public static final int Widget_AppCompat_ProgressBar=0x7f0e0171; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e0172; public static final int Widget_AppCompat_RatingBar=0x7f0e0173; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e0174; public static final int Widget_AppCompat_RatingBar_Small=0x7f0e0175; public static final int Widget_AppCompat_SearchView=0x7f0e0176; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e0177; public static final int Widget_AppCompat_SeekBar=0x7f0e0178; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e0179; public static final int Widget_AppCompat_Spinner=0x7f0e017a; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e017b; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e017c; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e017d; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e017e; public static final int Widget_AppCompat_Toolbar=0x7f0e017f; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e0180; public static final int Widget_Compat_NotificationActionContainer=0x7f0e0181; public static final int Widget_Compat_NotificationActionText=0x7f0e0182; public static final int Widget_Design_AppBarLayout=0x7f0e0183; public static final int Widget_Design_BottomNavigationView=0x7f0e0184; public static final int Widget_Design_BottomSheet_Modal=0x7f0e0185; public static final int Widget_Design_CollapsingToolbar=0x7f0e0186; public static final int Widget_Design_CoordinatorLayout=0x7f0e0187; public static final int Widget_Design_FloatingActionButton=0x7f0e0188; public static final int Widget_Design_NavigationView=0x7f0e0189; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e018a; public static final int Widget_Design_Snackbar=0x7f0e018b; public static final int Widget_Design_TabLayout=0x7f0e018c; public static final int Widget_Design_TextInputLayout=0x7f0e018d; } 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 com.example.android.droidcafeoptions:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.example.android.droidcafeoptions:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.example.android.droidcafeoptions:backgroundStacked}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.android.droidcafeoptions:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.android.droidcafeoptions:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.android.droidcafeoptions:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.example.android.droidcafeoptions:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.example.android.droidcafeoptions:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.android.droidcafeoptions:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.android.droidcafeoptions:customNavigationLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.example.android.droidcafeoptions:displayOptions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_divider com.example.android.droidcafeoptions:divider}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_elevation com.example.android.droidcafeoptions:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_height com.example.android.droidcafeoptions:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.android.droidcafeoptions:hideOnContentScroll}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.android.droidcafeoptions:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.example.android.droidcafeoptions:homeLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_icon com.example.android.droidcafeoptions:icon}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.android.droidcafeoptions:indeterminateProgressStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.example.android.droidcafeoptions:itemPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_logo com.example.android.droidcafeoptions:logo}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.example.android.droidcafeoptions:navigationMode}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.example.android.droidcafeoptions:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.example.android.droidcafeoptions:progressBarPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.example.android.droidcafeoptions:progressBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.example.android.droidcafeoptions:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.android.droidcafeoptions:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_title com.example.android.droidcafeoptions:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.example.android.droidcafeoptions: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={ 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f03006d, 0x7f030071, 0x7f030072, 0x7f03007d, 0x7f03009d, 0x7f03009e, 0x7f0300a2, 0x7f0300a3, 0x7f0300a4, 0x7f0300a9, 0x7f0300af, 0x7f0300f5, 0x7f0300fe, 0x7f03010e, 0x7f030112, 0x7f030113, 0x7f030137, 0x7f03013a, 0x7f030166, 0x7f030170 }; /** * 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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#background} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:background */ public static final int ActionBar_background=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetEnd} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetEndWithActions} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetLeft} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetRight} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetStart} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetStartWithNavigation} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#customNavigationLayout} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#divider} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:divider */ public static final int ActionBar_divider=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#elevation} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:elevation */ public static final int ActionBar_elevation=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#height} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:height */ public static final int ActionBar_height=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#hideOnContentScroll} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#homeAsUpIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#homeLayout} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#icon} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:icon */ public static final int ActionBar_icon=17; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#indeterminateProgressStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemPadding} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#logo} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:logo */ public static final int ActionBar_logo=20; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>listMode</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>tabMode</td><td>2</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#popupTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#progressBarPadding} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#progressBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subtitle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:subtitle */ public static final int ActionBar_subtitle=25; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subtitleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#title} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:title */ public static final int ActionBar_title=27; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * 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. * * <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), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth=0; 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 com.example.android.droidcafeoptions:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.example.android.droidcafeoptions:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.example.android.droidcafeoptions:closeItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_height com.example.android.droidcafeoptions:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.android.droidcafeoptions:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.example.android.droidcafeoptions: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={ 0x7f030031, 0x7f030032, 0x7f03004e, 0x7f03009d, 0x7f03013a, 0x7f030170 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#background} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:background */ public static final int ActionMode_background=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#closeItemLayout} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#height} * attribute's value can be found in the {@link #ActionMode} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:height */ public static final int ActionMode_height=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subtitleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:titleTextStyle */ public static final int ActionMode_titleTextStyle=5; /** * 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 com.example.android.droidcafeoptions:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.android.droidcafeoptions:initialActivityCount}</code></td><td></td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f030080, 0x7f0300aa }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandActivityOverflowButtonDrawable} * attribute's value can be found in the {@link #ActivityChooserView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#initialActivityCount} * attribute's value can be found in the {@link #ActivityChooserView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount=1; /** * 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 com.example.android.droidcafeoptions:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.example.android.droidcafeoptions:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.example.android.droidcafeoptions:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.android.droidcafeoptions:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.example.android.droidcafeoptions:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.android.droidcafeoptions: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, 0x7f030046, 0x7f0300ec, 0x7f0300ed, 0x7f0300fb, 0x7f030127, 0x7f030128 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int AlertDialog_android_layout=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonPanelSideLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:listItemLayout */ public static final int AlertDialog_listItemLayout=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:listLayout */ public static final int AlertDialog_listLayout=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#multiChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#showTitle} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:showTitle */ public static final int AlertDialog_showTitle=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#singleChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=6; /** * 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_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_elevation com.example.android.droidcafeoptions:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_expanded com.example.android.droidcafeoptions:expanded}</code></td><td></td></tr> * </table> * @see #AppBarLayout_android_background * @see #AppBarLayout_android_touchscreenBlocksFocus * @see #AppBarLayout_android_keyboardNavigationCluster * @see #AppBarLayout_elevation * @see #AppBarLayout_expanded */ public static final int[] AppBarLayout={ 0x010100d4, 0x0101048f, 0x01010540, 0x7f03007d, 0x7f030081 }; /** * 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 com.example.android.droidcafeoptions:state_collapsed}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.example.android.droidcafeoptions:state_collapsible}</code></td><td></td></tr> * </table> * @see #AppBarLayoutStates_state_collapsed * @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates={ 0x7f030131, 0x7f030132 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#state_collapsed} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#state_collapsible} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:layout_scrollFlags}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.example.android.droidcafeoptions:layout_scrollInterpolator}</code></td><td></td></tr> * </table> * @see #AppBarLayout_Layout_layout_scrollFlags * @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout={ 0x7f0300e8, 0x7f0300e9 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_scrollInterpolator} * attribute's value can be found in the {@link #AppBarLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator=1; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 android:background */ public static final int AppBarLayout_android_background=0; /** * <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster=2; /** * <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#elevation} * attribute's value can be found in the {@link #AppBarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:elevation */ public static final int AppBarLayout_elevation=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expanded} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:expanded */ public static final int AppBarLayout_expanded=4; /** * 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 com.example.android.droidcafeoptions:srcCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.example.android.droidcafeoptions:tint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.example.android.droidcafeoptions: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, 0x7f03012e, 0x7f030164, 0x7f030165 }; /** * <p>This symbol is the offset where the {@link android.R.attr#src} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 android:src */ public static final int AppCompatImageView_android_src=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#srcCompat} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tint} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <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 com.example.android.droidcafeoptions:tint */ public static final int AppCompatImageView_tint=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:tickMark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.android.droidcafeoptions:tickMarkTint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.android.droidcafeoptions: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, 0x7f030161, 0x7f030162, 0x7f030163 }; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tickMark} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tickMarkTint} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <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 com.example.android.droidcafeoptions:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions: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_textAppearance android:textAppearance}</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_drawableBottom android:drawableBottom}</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_drawableEnd android:drawableEnd}</code></td><td></td></tr> * </table> * @see #AppCompatTextHelper_android_textAppearance * @see #AppCompatTextHelper_android_drawableTop * @see #AppCompatTextHelper_android_drawableBottom * @see #AppCompatTextHelper_android_drawableLeft * @see #AppCompatTextHelper_android_drawableRight * @see #AppCompatTextHelper_android_drawableStart * @see #AppCompatTextHelper_android_drawableEnd */ 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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_autoSizeMaxTextSize com.example.android.droidcafeoptions:autoSizeMaxTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.example.android.droidcafeoptions:autoSizeMinTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.example.android.droidcafeoptions:autoSizePresetSizes}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.example.android.droidcafeoptions:autoSizeStepGranularity}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.example.android.droidcafeoptions:autoSizeTextType}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.example.android.droidcafeoptions:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.android.droidcafeoptions:textAllCaps}</code></td><td></td></tr> * </table> * @see #AppCompatTextView_android_textAppearance * @see #AppCompatTextView_autoSizeMaxTextSize * @see #AppCompatTextView_autoSizeMinTextSize * @see #AppCompatTextView_autoSizePresetSizes * @see #AppCompatTextView_autoSizeStepGranularity * @see #AppCompatTextView_autoSizeTextType * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f030090, 0x7f030150 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#autoSizeMaxTextSize} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#autoSizeMinTextSize} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#autoSizePresetSizes} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#autoSizeStepGranularity} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#autoSizeTextType} * attribute's value can be found in the {@link #AppCompatTextView} 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>none</td><td>0</td><td></td></tr> * <tr><td>uniform</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontFamily} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:fontFamily */ public static final int AppCompatTextView_fontFamily=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:textAllCaps */ public static final int AppCompatTextView_textAllCaps=7; /** * 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_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.example.android.droidcafeoptions:actionBarDivider}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.android.droidcafeoptions:actionBarItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.android.droidcafeoptions:actionBarPopupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.android.droidcafeoptions:actionBarSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.android.droidcafeoptions:actionBarSplitStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.android.droidcafeoptions:actionBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.android.droidcafeoptions:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.android.droidcafeoptions:actionBarTabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.android.droidcafeoptions:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.android.droidcafeoptions:actionBarTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.android.droidcafeoptions:actionBarWidgetTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.android.droidcafeoptions:actionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.android.droidcafeoptions:actionDropDownStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.android.droidcafeoptions:actionMenuTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.android.droidcafeoptions:actionMenuTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.android.droidcafeoptions:actionModeBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.android.droidcafeoptions:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.android.droidcafeoptions:actionModeCloseDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.android.droidcafeoptions:actionModeCopyDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.android.droidcafeoptions:actionModeCutDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.android.droidcafeoptions:actionModeFindDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.android.droidcafeoptions:actionModePasteDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.android.droidcafeoptions:actionModePopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.android.droidcafeoptions:actionModeSelectAllDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.android.droidcafeoptions:actionModeShareDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.android.droidcafeoptions:actionModeSplitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.android.droidcafeoptions:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.android.droidcafeoptions:actionModeWebSearchDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.android.droidcafeoptions:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.android.droidcafeoptions:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.android.droidcafeoptions:activityChooserViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.android.droidcafeoptions:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.android.droidcafeoptions:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.android.droidcafeoptions:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.android.droidcafeoptions:alertDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.android.droidcafeoptions:autoCompleteTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.android.droidcafeoptions:borderlessButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.android.droidcafeoptions:buttonBarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.android.droidcafeoptions:buttonBarNegativeButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.android.droidcafeoptions:buttonBarNeutralButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.android.droidcafeoptions:buttonBarPositiveButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.android.droidcafeoptions:buttonBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.android.droidcafeoptions:buttonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.android.droidcafeoptions:buttonStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.android.droidcafeoptions:checkboxStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.android.droidcafeoptions:checkedTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.android.droidcafeoptions:colorAccent}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.android.droidcafeoptions:colorBackgroundFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.android.droidcafeoptions:colorButtonNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.android.droidcafeoptions:colorControlActivated}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.android.droidcafeoptions:colorControlHighlight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.android.droidcafeoptions:colorControlNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.example.android.droidcafeoptions:colorError}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.android.droidcafeoptions:colorPrimary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.android.droidcafeoptions:colorPrimaryDark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.android.droidcafeoptions:colorSwitchThumbNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.android.droidcafeoptions:controlBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.android.droidcafeoptions:dialogPreferredPadding}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.android.droidcafeoptions:dialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.android.droidcafeoptions:dividerHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.android.droidcafeoptions:dividerVertical}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.android.droidcafeoptions:dropDownListViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.android.droidcafeoptions:dropdownListPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.android.droidcafeoptions:editTextBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.android.droidcafeoptions:editTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.android.droidcafeoptions:editTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.android.droidcafeoptions:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.android.droidcafeoptions:imageButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.android.droidcafeoptions:listChoiceBackgroundIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.android.droidcafeoptions:listDividerAlertDialog}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.android.droidcafeoptions:listMenuViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.android.droidcafeoptions:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.android.droidcafeoptions:listPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.android.droidcafeoptions:listPreferredItemHeightLarge}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.android.droidcafeoptions:listPreferredItemHeightSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.android.droidcafeoptions:listPreferredItemPaddingLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.android.droidcafeoptions:listPreferredItemPaddingRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.android.droidcafeoptions:panelBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.android.droidcafeoptions:panelMenuListTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.android.droidcafeoptions:panelMenuListWidth}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.android.droidcafeoptions:popupMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.android.droidcafeoptions:popupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.android.droidcafeoptions:radioButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.android.droidcafeoptions:ratingBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.android.droidcafeoptions:ratingBarStyleIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.android.droidcafeoptions:ratingBarStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.android.droidcafeoptions:searchViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.android.droidcafeoptions:seekBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.android.droidcafeoptions:selectableItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.android.droidcafeoptions:selectableItemBackgroundBorderless}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.android.droidcafeoptions:spinnerDropDownItemStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.android.droidcafeoptions:spinnerStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.android.droidcafeoptions:switchStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.android.droidcafeoptions:textAppearanceLargePopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.android.droidcafeoptions:textAppearanceListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.example.android.droidcafeoptions:textAppearanceListItemSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.android.droidcafeoptions:textAppearanceListItemSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.android.droidcafeoptions:textAppearancePopupMenuHeader}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.android.droidcafeoptions:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.android.droidcafeoptions:textAppearanceSearchResultTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.android.droidcafeoptions:textAppearanceSmallPopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.android.droidcafeoptions:textColorAlertDialogListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.android.droidcafeoptions:textColorSearchUrl}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.android.droidcafeoptions:toolbarNavigationButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.android.droidcafeoptions:toolbarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.example.android.droidcafeoptions:tooltipForegroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.example.android.droidcafeoptions:tooltipFrameBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.android.droidcafeoptions:windowActionBar}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.android.droidcafeoptions:windowActionBarOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.android.droidcafeoptions:windowActionModeOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.android.droidcafeoptions:windowFixedHeightMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.android.droidcafeoptions:windowFixedHeightMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.android.droidcafeoptions:windowFixedWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.android.droidcafeoptions:windowFixedWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.android.droidcafeoptions:windowMinWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.android.droidcafeoptions:windowMinWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.android.droidcafeoptions:windowNoTitle}</code></td><td></td></tr> * </table> * @see #AppCompatTheme_android_windowIsFloating * @see #AppCompatTheme_android_windowAnimationStyle * @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_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_colorError * @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_tooltipForegroundColor * @see #AppCompatTheme_tooltipFrameBackground * @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, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003d, 0x7f030040, 0x7f030041, 0x7f030042, 0x7f030043, 0x7f030044, 0x7f030047, 0x7f030048, 0x7f03004b, 0x7f03004c, 0x7f030054, 0x7f030055, 0x7f030056, 0x7f030057, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030068, 0x7f03006f, 0x7f030070, 0x7f030073, 0x7f030075, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f0300a2, 0x7f0300a8, 0x7f0300ea, 0x7f0300eb, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2, 0x7f0300f3, 0x7f0300f4, 0x7f030105, 0x7f030106, 0x7f030107, 0x7f03010d, 0x7f03010f, 0x7f030116, 0x7f030117, 0x7f030118, 0x7f030119, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123, 0x7f03012b, 0x7f03012c, 0x7f03013e, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015b, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f030185 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarDivider} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarItemBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarPopupTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * mm (millimeters). * <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>wrap_content</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarSplitStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarTabBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarTabStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarTabTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionBarWidgetTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionDropDownStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionMenuTextAppearance} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeCloseButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeCloseDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeCopyDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeCutDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeFindDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModePasteDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModePopupWindowStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeSelectAllDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeShareDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeSplitBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionModeWebSearchDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionOverflowButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionOverflowMenuStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#activityChooserViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#alertDialogButtonGroupStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#alertDialogCenterButtons} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#alertDialogStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#alertDialogTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#autoCompleteTextViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#borderlessButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonBarButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonBarNegativeButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonBarNeutralButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonBarPositiveButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonStyleSmall} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#checkboxStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#checkedTextViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorAccent} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorBackgroundFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorButtonNormal} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorControlActivated} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorControlHighlight} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorControlNormal} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorError} * 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 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 com.example.android.droidcafeoptions:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorPrimary} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorPrimaryDark} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#colorSwitchThumbNormal} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.example.android.droidcafeoptions:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#controlBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dialogPreferredPadding} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=59; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dialogTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:dialogTheme */ public static final int AppCompatTheme_dialogTheme=60; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dividerHorizontal} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=61; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dividerVertical} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:dividerVertical */ public static final int AppCompatTheme_dividerVertical=62; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dropDownListViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=63; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dropdownListPreferredItemHeight} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=64; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#editTextBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:editTextBackground */ public static final int AppCompatTheme_editTextBackground=65; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:editTextColor */ public static final int AppCompatTheme_editTextColor=66; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#editTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:editTextStyle */ public static final int AppCompatTheme_editTextStyle=67; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#homeAsUpIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=68; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#imageButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=69; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listChoiceBackgroundIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=70; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listDividerAlertDialog} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=71; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listMenuViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=72; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listPopupWindowStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=73; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listPreferredItemHeight} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=74; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listPreferredItemHeightLarge} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=75; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listPreferredItemHeightSmall} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=76; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listPreferredItemPaddingLeft} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=77; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#listPreferredItemPaddingRight} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=78; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#panelBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:panelBackground */ public static final int AppCompatTheme_panelBackground=79; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#panelMenuListTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=80; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#panelMenuListWidth} * 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=81; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#popupMenuStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=82; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#popupWindowStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=83; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#radioButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=84; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#ratingBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=85; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#ratingBarStyleIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=86; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#ratingBarStyleSmall} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=87; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#searchViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=88; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#seekBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=89; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#selectableItemBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=90; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#selectableItemBackgroundBorderless} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=91; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#spinnerDropDownItemStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=92; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#spinnerStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=93; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#switchStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:switchStyle */ public static final int AppCompatTheme_switchStyle=94; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceLargePopupMenu} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=95; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceListItem} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=96; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceListItemSecondary} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=97; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceListItemSmall} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=98; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearancePopupMenuHeader} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=99; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceSearchResultSubtitle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceSearchResultTitle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=101; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textAppearanceSmallPopupMenu} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=103; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=104; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#toolbarNavigationButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=105; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#toolbarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=106; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tooltipForegroundColor} * 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 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 com.example.android.droidcafeoptions:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=107; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tooltipFrameBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=108; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#windowActionBar} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:windowActionBar */ public static final int AppCompatTheme_windowActionBar=109; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#windowActionBarOverlay} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=110; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#windowActionModeOverlay} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=111; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * 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. * * @attr name com.example.android.droidcafeoptions:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=112; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * 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. * * @attr name com.example.android.droidcafeoptions:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=113; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * 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. * * @attr name com.example.android.droidcafeoptions:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=114; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * 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. * * @attr name com.example.android.droidcafeoptions:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=115; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * 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. * * @attr name com.example.android.droidcafeoptions:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=116; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * 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. * * @attr name com.example.android.droidcafeoptions:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=117; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#windowNoTitle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=118; /** * 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 com.example.android.droidcafeoptions:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemBackground com.example.android.droidcafeoptions:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconTint com.example.android.droidcafeoptions:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextColor com.example.android.droidcafeoptions:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_menu com.example.android.droidcafeoptions: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={ 0x7f03007d, 0x7f0300ad, 0x7f0300ae, 0x7f0300b1, 0x7f0300fa }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#elevation} * attribute's value can be found in the {@link #BottomNavigationView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:elevation */ public static final int BottomNavigationView_elevation=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemBackground} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:itemBackground */ public static final int BottomNavigationView_itemBackground=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemIconTint} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <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 com.example.android.droidcafeoptions:itemIconTint */ public static final int BottomNavigationView_itemIconTint=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemTextColor} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <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 com.example.android.droidcafeoptions:itemTextColor */ public static final int BottomNavigationView_itemTextColor=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#menu} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:menu */ public static final int BottomNavigationView_menu=4; /** * 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 com.example.android.droidcafeoptions:behavior_hideable}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.example.android.droidcafeoptions:behavior_peekHeight}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.example.android.droidcafeoptions: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={ 0x7f030038, 0x7f03003a, 0x7f03003b }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#behavior_hideable} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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), and * mm (millimeters). * <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>auto</td><td>ffffffff</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#behavior_skipCollapsed} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:allowStacking}</code></td><td></td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f030026 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#allowStacking} * attribute's value can be found in the {@link #ButtonBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:collapsedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.example.android.droidcafeoptions:collapsedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.example.android.droidcafeoptions:contentScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.example.android.droidcafeoptions:expandedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.example.android.droidcafeoptions:expandedTitleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.example.android.droidcafeoptions:expandedTitleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.example.android.droidcafeoptions:expandedTitleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.example.android.droidcafeoptions:expandedTitleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.example.android.droidcafeoptions:expandedTitleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.example.android.droidcafeoptions:expandedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.example.android.droidcafeoptions:scrimAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.example.android.droidcafeoptions:scrimVisibleHeightTrigger}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.example.android.droidcafeoptions:statusBarScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_title com.example.android.droidcafeoptions:title}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.example.android.droidcafeoptions:titleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.example.android.droidcafeoptions: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={ 0x7f030051, 0x7f030052, 0x7f030067, 0x7f030082, 0x7f030083, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f03011c, 0x7f03011d, 0x7f030134, 0x7f030166, 0x7f030167, 0x7f030171 }; /** * 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 com.example.android.droidcafeoptions:layout_collapseMode}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.example.android.droidcafeoptions:layout_collapseParallaxMultiplier}</code></td><td></td></tr> * </table> * @see #CollapsingToolbarLayout_Layout_layout_collapseMode * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout={ 0x7f0300b8, 0x7f0300b9 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_collapseParallaxMultiplier} * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#collapsedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <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 com.example.android.droidcafeoptions:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandedTitleMargin} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandedTitleMarginBottom} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandedTitleMarginEnd} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandedTitleMarginStart} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandedTitleMarginTop} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#expandedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#scrimAnimationDuration} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#scrimVisibleHeightTrigger} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#statusBarScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <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 com.example.android.droidcafeoptions:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#title} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:title */ public static final int CollapsingToolbarLayout_title=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleEnabled} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#toolbarId} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId=15; /** * 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_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_alpha com.example.android.droidcafeoptions:alpha}</code></td><td></td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f030027 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions: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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @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. * * <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 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 com.example.android.droidcafeoptions:buttonTint}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.android.droidcafeoptions:buttonTintMode}</code></td><td></td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f030049, 0x7f03004a }; /** * <p>This symbol is the offset where the {@link android.R.attr#button} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:button */ public static final int CompoundButton_android_button=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#buttonTint} * attribute's value can be found in the {@link #CompoundButton} array. * * <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 com.example.android.droidcafeoptions:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:buttonTintMode */ public static final int CompoundButton_buttonTintMode=2; /** * Attributes that can be used with a ConstraintLayout_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 #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.example.android.droidcafeoptions:constraintSet}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.example.android.droidcafeoptions:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.example.android.droidcafeoptions:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.example.android.droidcafeoptions:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.example.android.droidcafeoptions:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.example.android.droidcafeoptions:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.example.android.droidcafeoptions:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.example.android.droidcafeoptions:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.example.android.droidcafeoptions:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.example.android.droidcafeoptions:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.example.android.droidcafeoptions:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.example.android.droidcafeoptions:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.example.android.droidcafeoptions:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.example.android.droidcafeoptions:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.example.android.droidcafeoptions:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.example.android.droidcafeoptions:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.example.android.droidcafeoptions:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.example.android.droidcafeoptions:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.example.android.droidcafeoptions:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.example.android.droidcafeoptions:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.example.android.droidcafeoptions:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.example.android.droidcafeoptions:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.example.android.droidcafeoptions:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.example.android.droidcafeoptions:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.example.android.droidcafeoptions:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.example.android.droidcafeoptions:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.example.android.droidcafeoptions:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.example.android.droidcafeoptions:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.example.android.droidcafeoptions:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.example.android.droidcafeoptions:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.example.android.droidcafeoptions:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.example.android.droidcafeoptions:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.example.android.droidcafeoptions:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.example.android.droidcafeoptions:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.example.android.droidcafeoptions:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.example.android.droidcafeoptions:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.example.android.droidcafeoptions:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.example.android.droidcafeoptions:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.example.android.droidcafeoptions:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.example.android.droidcafeoptions:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.example.android.droidcafeoptions:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.example.android.droidcafeoptions:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.example.android.droidcafeoptions:layout_goneMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.example.android.droidcafeoptions:layout_optimizationLevel}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_Layout_android_orientation * @see #ConstraintLayout_Layout_android_maxWidth * @see #ConstraintLayout_Layout_android_maxHeight * @see #ConstraintLayout_Layout_android_minWidth * @see #ConstraintLayout_Layout_android_minHeight * @see #ConstraintLayout_Layout_constraintSet * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf * @see #ConstraintLayout_Layout_layout_constraintBottom_creator * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf * @see #ConstraintLayout_Layout_layout_constraintGuide_begin * @see #ConstraintLayout_Layout_layout_constraintGuide_end * @see #ConstraintLayout_Layout_layout_constraintGuide_percent * @see #ConstraintLayout_Layout_layout_constraintHeight_default * @see #ConstraintLayout_Layout_layout_constraintHeight_max * @see #ConstraintLayout_Layout_layout_constraintHeight_min * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight * @see #ConstraintLayout_Layout_layout_constraintLeft_creator * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf * @see #ConstraintLayout_Layout_layout_constraintRight_creator * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf * @see #ConstraintLayout_Layout_layout_constraintTop_creator * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf * @see #ConstraintLayout_Layout_layout_constraintVertical_bias * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle * @see #ConstraintLayout_Layout_layout_constraintVertical_weight * @see #ConstraintLayout_Layout_layout_constraintWidth_default * @see #ConstraintLayout_Layout_layout_constraintWidth_max * @see #ConstraintLayout_Layout_layout_constraintWidth_min * @see #ConstraintLayout_Layout_layout_editor_absoluteX * @see #ConstraintLayout_Layout_layout_editor_absoluteY * @see #ConstraintLayout_Layout_layout_goneMarginBottom * @see #ConstraintLayout_Layout_layout_goneMarginEnd * @see #ConstraintLayout_Layout_layout_goneMarginLeft * @see #ConstraintLayout_Layout_layout_goneMarginRight * @see #ConstraintLayout_Layout_layout_goneMarginStart * @see #ConstraintLayout_Layout_layout_goneMarginTop * @see #ConstraintLayout_Layout_layout_optimizationLevel */ public static final int[] ConstraintLayout_Layout={ 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f03005f, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e3, 0x7f0300e4, 0x7f0300e7 }; /** * <p>This symbol is the offset where the {@link android.R.attr#maxHeight} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:maxHeight */ public static final int ConstraintLayout_Layout_android_maxHeight=2; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int ConstraintLayout_Layout_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:minHeight */ public static final int ConstraintLayout_Layout_android_minHeight=4; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ConstraintLayout_Layout_android_minWidth=3; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintLayout_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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int ConstraintLayout_Layout_android_orientation=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#constraintSet} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end=15; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=16; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintLayout_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>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default=17; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max=18; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min=19; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=20; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=21; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=22; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=23; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=24; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=25; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator=26; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=27; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=28; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=29; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=30; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator=31; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=32; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=33; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=34; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=35; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=36; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintLayout_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>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default=37; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max=38; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min=39; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX=40; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY=41; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom=42; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd=43; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft=44; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight=45; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart=46; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop=47; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_optimizationLevel} * attribute's value can be found in the {@link #ConstraintLayout_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>all</td><td>2</td><td></td></tr> * <tr><td>basic</td><td>4</td><td></td></tr> * <tr><td>chains</td><td>8</td><td></td></tr> * <tr><td>none</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_optimizationLevel */ public static final int ConstraintLayout_Layout_layout_optimizationLevel=48; /** * Attributes that can be used with a ConstraintSet. * <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 #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.example.android.droidcafeoptions:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.example.android.droidcafeoptions:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.example.android.droidcafeoptions:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.example.android.droidcafeoptions:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.example.android.droidcafeoptions:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.example.android.droidcafeoptions:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.example.android.droidcafeoptions:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.example.android.droidcafeoptions:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.example.android.droidcafeoptions:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.example.android.droidcafeoptions:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.example.android.droidcafeoptions:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.example.android.droidcafeoptions:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.example.android.droidcafeoptions:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.example.android.droidcafeoptions:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.example.android.droidcafeoptions:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.example.android.droidcafeoptions:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.example.android.droidcafeoptions:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.example.android.droidcafeoptions:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.example.android.droidcafeoptions:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.example.android.droidcafeoptions:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.example.android.droidcafeoptions:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.example.android.droidcafeoptions:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.example.android.droidcafeoptions:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.example.android.droidcafeoptions:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.example.android.droidcafeoptions:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.example.android.droidcafeoptions:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.example.android.droidcafeoptions:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.example.android.droidcafeoptions:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.example.android.droidcafeoptions:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.example.android.droidcafeoptions:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.example.android.droidcafeoptions:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.example.android.droidcafeoptions:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.example.android.droidcafeoptions:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.example.android.droidcafeoptions:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.example.android.droidcafeoptions:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.example.android.droidcafeoptions:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.example.android.droidcafeoptions:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.example.android.droidcafeoptions:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.example.android.droidcafeoptions:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.example.android.droidcafeoptions:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.example.android.droidcafeoptions:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.example.android.droidcafeoptions:layout_goneMarginTop}</code></td><td></td></tr> * </table> * @see #ConstraintSet_android_orientation * @see #ConstraintSet_android_id * @see #ConstraintSet_android_visibility * @see #ConstraintSet_android_layout_width * @see #ConstraintSet_android_layout_height * @see #ConstraintSet_android_layout_marginLeft * @see #ConstraintSet_android_layout_marginTop * @see #ConstraintSet_android_layout_marginRight * @see #ConstraintSet_android_layout_marginBottom * @see #ConstraintSet_android_alpha * @see #ConstraintSet_android_transformPivotX * @see #ConstraintSet_android_transformPivotY * @see #ConstraintSet_android_translationX * @see #ConstraintSet_android_translationY * @see #ConstraintSet_android_scaleX * @see #ConstraintSet_android_scaleY * @see #ConstraintSet_android_rotationX * @see #ConstraintSet_android_rotationY * @see #ConstraintSet_android_layout_marginStart * @see #ConstraintSet_android_layout_marginEnd * @see #ConstraintSet_android_translationZ * @see #ConstraintSet_android_elevation * @see #ConstraintSet_layout_constraintBaseline_creator * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf * @see #ConstraintSet_layout_constraintBottom_creator * @see #ConstraintSet_layout_constraintBottom_toBottomOf * @see #ConstraintSet_layout_constraintBottom_toTopOf * @see #ConstraintSet_layout_constraintDimensionRatio * @see #ConstraintSet_layout_constraintEnd_toEndOf * @see #ConstraintSet_layout_constraintEnd_toStartOf * @see #ConstraintSet_layout_constraintGuide_begin * @see #ConstraintSet_layout_constraintGuide_end * @see #ConstraintSet_layout_constraintGuide_percent * @see #ConstraintSet_layout_constraintHeight_default * @see #ConstraintSet_layout_constraintHeight_max * @see #ConstraintSet_layout_constraintHeight_min * @see #ConstraintSet_layout_constraintHorizontal_bias * @see #ConstraintSet_layout_constraintHorizontal_chainStyle * @see #ConstraintSet_layout_constraintHorizontal_weight * @see #ConstraintSet_layout_constraintLeft_creator * @see #ConstraintSet_layout_constraintLeft_toLeftOf * @see #ConstraintSet_layout_constraintLeft_toRightOf * @see #ConstraintSet_layout_constraintRight_creator * @see #ConstraintSet_layout_constraintRight_toLeftOf * @see #ConstraintSet_layout_constraintRight_toRightOf * @see #ConstraintSet_layout_constraintStart_toEndOf * @see #ConstraintSet_layout_constraintStart_toStartOf * @see #ConstraintSet_layout_constraintTop_creator * @see #ConstraintSet_layout_constraintTop_toBottomOf * @see #ConstraintSet_layout_constraintTop_toTopOf * @see #ConstraintSet_layout_constraintVertical_bias * @see #ConstraintSet_layout_constraintVertical_chainStyle * @see #ConstraintSet_layout_constraintVertical_weight * @see #ConstraintSet_layout_constraintWidth_default * @see #ConstraintSet_layout_constraintWidth_max * @see #ConstraintSet_layout_constraintWidth_min * @see #ConstraintSet_layout_editor_absoluteX * @see #ConstraintSet_layout_editor_absoluteY * @see #ConstraintSet_layout_goneMarginBottom * @see #ConstraintSet_layout_goneMarginEnd * @see #ConstraintSet_layout_goneMarginLeft * @see #ConstraintSet_layout_goneMarginRight * @see #ConstraintSet_layout_goneMarginStart * @see #ConstraintSet_layout_goneMarginTop */ public static final int[] ConstraintSet={ 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e3, 0x7f0300e4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ConstraintSet_android_alpha=9; /** * <p>This symbol is the offset where the {@link android.R.attr#elevation} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:elevation */ public static final int ConstraintSet_android_elevation=21; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ConstraintSet_android_id=1; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int ConstraintSet_android_layout_height=4; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginBottom */ public static final int ConstraintSet_android_layout_marginBottom=8; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginEnd */ public static final int ConstraintSet_android_layout_marginEnd=19; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginLeft */ public static final int ConstraintSet_android_layout_marginLeft=5; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginRight */ public static final int ConstraintSet_android_layout_marginRight=7; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginStart */ public static final int ConstraintSet_android_layout_marginStart=18; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginTop */ public static final int ConstraintSet_android_layout_marginTop=6; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int ConstraintSet_android_layout_width=3; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintSet} 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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int ConstraintSet_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationX */ public static final int ConstraintSet_android_rotationX=16; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationY */ public static final int ConstraintSet_android_rotationY=17; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleX */ public static final int ConstraintSet_android_scaleX=14; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleY */ public static final int ConstraintSet_android_scaleY=15; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotX} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:transformPivotX */ public static final int ConstraintSet_android_transformPivotX=10; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotY} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:transformPivotY */ public static final int ConstraintSet_android_transformPivotY=11; /** * <p>This symbol is the offset where the {@link android.R.attr#translationX} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:translationX */ public static final int ConstraintSet_android_translationX=12; /** * <p>This symbol is the offset where the {@link android.R.attr#translationY} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:translationY */ public static final int ConstraintSet_android_translationY=13; /** * <p>This symbol is the offset where the {@link android.R.attr#translationZ} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:translationZ */ public static final int ConstraintSet_android_translationZ=20; /** * <p>This symbol is the offset where the {@link android.R.attr#visibility} * attribute's value can be found in the {@link #ConstraintSet} 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>gone</td><td>2</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * <tr><td>visible</td><td>0</td><td></td></tr> * </table> * * @attr name android:visibility */ public static final int ConstraintSet_android_visibility=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator=22; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=23; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator=24; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf=25; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf=26; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio=27; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf=28; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf=29; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin=30; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end=31; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent=32; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintSet} 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>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default=33; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max=34; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min=35; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias=36; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} 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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=37; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight=38; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator=39; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf=40; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf=41; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator=42; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf=43; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf=44; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf=45; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf=46; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator=47; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf=48; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf=49; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias=50; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} 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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle=51; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.android.droidcafeoptions:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight=52; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintSet} 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>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default=53; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max=54; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min=55; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX=56; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY=57; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom=58; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd=59; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft=60; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight=61; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart=62; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop=63; /** * 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 com.example.android.droidcafeoptions:keylines}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.example.android.droidcafeoptions:statusBarBackground}</code></td><td></td></tr> * </table> * @see #CoordinatorLayout_keylines * @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout={ 0x7f0300b2, 0x7f030133 }; /** * 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 com.example.android.droidcafeoptions:layout_anchor}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.example.android.droidcafeoptions:layout_anchorGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.example.android.droidcafeoptions:layout_behavior}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.example.android.droidcafeoptions:layout_dodgeInsetEdges}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.example.android.droidcafeoptions:layout_insetEdge}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.example.android.droidcafeoptions: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, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300dc, 0x7f0300e5, 0x7f0300e6 }; /** * <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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_anchor} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_behavior} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>all</td><td>77</td><td></td></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>3</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>3</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout_keyline} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#keylines} * attribute's value can be found in the {@link #CoordinatorLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:keylines */ public static final int CoordinatorLayout_keylines=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#statusBarBackground} * attribute's value can be found in the {@link #CoordinatorLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground=1; /** * 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 com.example.android.droidcafeoptions:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.example.android.droidcafeoptions:bottomSheetStyle}</code></td><td></td></tr> * <tr><td><code>{@link #DesignTheme_textColorError com.example.android.droidcafeoptions:textColorError}</code></td><td></td></tr> * </table> * @see #DesignTheme_bottomSheetDialogTheme * @see #DesignTheme_bottomSheetStyle * @see #DesignTheme_textColorError */ public static final int[] DesignTheme={ 0x7f03003e, 0x7f03003f, 0x7f03015a }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#bottomSheetDialogTheme} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#bottomSheetStyle} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#textColorError} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:arrowHeadLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.android.droidcafeoptions:arrowShaftLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.android.droidcafeoptions:barLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.example.android.droidcafeoptions:color}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.android.droidcafeoptions:drawableSize}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.android.droidcafeoptions:gapBetweenBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.android.droidcafeoptions:spinBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.android.droidcafeoptions: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={ 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030053, 0x7f030076, 0x7f03009a, 0x7f03012a, 0x7f03015d }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#arrowHeadLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#arrowShaftLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#barLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#color} * attribute's value can be found in the {@link #DrawerArrowToggle} array. * * <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 com.example.android.droidcafeoptions:color */ public static final int DrawerArrowToggle_color=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#drawableSize} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#gapBetweenBars} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#spinBars} * attribute's value can be found in the {@link #DrawerArrowToggle} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#thickness} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.example.android.droidcafeoptions:backgroundTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_borderWidth com.example.android.droidcafeoptions:borderWidth}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_elevation com.example.android.droidcafeoptions:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_fabSize com.example.android.droidcafeoptions:fabSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.example.android.droidcafeoptions:pressedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_rippleColor com.example.android.droidcafeoptions:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.example.android.droidcafeoptions: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={ 0x7f030034, 0x7f030035, 0x7f03003c, 0x7f03007d, 0x7f030089, 0x7f030111, 0x7f03011b, 0x7f03017a }; /** * 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 com.example.android.droidcafeoptions:behavior_autoHide}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout={ 0x7f030037 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#behavior_autoHide} * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#backgroundTint} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <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 com.example.android.droidcafeoptions:backgroundTint */ public static final int FloatingActionButton_backgroundTint=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#borderWidth} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:borderWidth */ public static final int FloatingActionButton_borderWidth=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#elevation} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:elevation */ public static final int FloatingActionButton_elevation=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:fabSize */ public static final int FloatingActionButton_fabSize=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#pressedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#rippleColor} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <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 com.example.android.droidcafeoptions:rippleColor */ public static final int FloatingActionButton_rippleColor=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#useCompatPadding} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding=7; /** * Attributes that can be used with a FontFamily. * <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 #FontFamily_fontProviderAuthority com.example.android.droidcafeoptions:fontProviderAuthority}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.example.android.droidcafeoptions:fontProviderCerts}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.example.android.droidcafeoptions:fontProviderFetchStrategy}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.example.android.droidcafeoptions:fontProviderFetchTimeout}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.example.android.droidcafeoptions:fontProviderPackage}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.example.android.droidcafeoptions:fontProviderQuery}</code></td><td></td></tr> * </table> * @see #FontFamily_fontProviderAuthority * @see #FontFamily_fontProviderCerts * @see #FontFamily_fontProviderFetchStrategy * @see #FontFamily_fontProviderFetchTimeout * @see #FontFamily_fontProviderPackage * @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily={ 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096 }; /** * Attributes that can be used with a FontFamilyFont. * <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 #FontFamilyFont_font com.example.android.droidcafeoptions:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.example.android.droidcafeoptions:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.example.android.droidcafeoptions:fontWeight}</code></td><td></td></tr> * </table> * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont={ 0x7f03008f, 0x7f030097, 0x7f030098 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:font */ public static final int FontFamilyFont_font=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontStyle} * attribute's value can be found in the {@link #FontFamilyFont} 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>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:fontStyle */ public static final int FontFamilyFont_fontStyle=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:fontWeight */ public static final int FontFamilyFont_fontWeight=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontProviderAuthority} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontProviderCerts} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontProviderFetchStrategy} * attribute's value can be found in the {@link #FontFamily} 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>async</td><td>1</td><td></td></tr> * <tr><td>blocking</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontProviderFetchTimeout} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be an integer value, such as "<code>100</code>". * <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>forever</td><td>ffffffff</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontProviderPackage} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontProviderQuery} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * 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 com.example.android.droidcafeoptions: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, 0x7f030099 }; /** * <p>This symbol is the offset where the {@link android.R.attr#foreground} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#foregroundInsidePadding} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding=2; /** * Attributes that can be used with a LinearConstraintLayout. * <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 #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr> * </table> * @see #LinearConstraintLayout_android_orientation */ public static final int[] LinearConstraintLayout={ 0x010100c4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #LinearConstraintLayout} 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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearConstraintLayout_android_orientation=0; /** * 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_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_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_weightSum android:weightSum}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_divider com.example.android.droidcafeoptions:divider}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.android.droidcafeoptions:dividerPadding}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.android.droidcafeoptions:measureWithLargestChild}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.android.droidcafeoptions:showDividers}</code></td><td></td></tr> * </table> * @see #LinearLayoutCompat_android_gravity * @see #LinearLayoutCompat_android_orientation * @see #LinearLayoutCompat_android_baselineAligned * @see #LinearLayoutCompat_android_baselineAlignedChildIndex * @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, 0x7f030072, 0x7f030074, 0x7f0300f9, 0x7f030125 }; /** * 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_width android:layout_width}</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> * </table> * @see #LinearLayoutCompat_Layout_android_layout_gravity * @see #LinearLayoutCompat_Layout_android_layout_width * @see #LinearLayoutCompat_Layout_android_layout_height * @see #LinearLayoutCompat_Layout_android_layout_weight */ 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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @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. * * <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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @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. * * <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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width=1; /** * <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <p>May be an integer value, such as "<code>100</code>". * * @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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @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. * * <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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#divider} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#dividerPadding} * attribute's value can be found in the {@link #LinearLayoutCompat} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#measureWithLargestChild} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * 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. * * <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), and * mm (millimeters). * * @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. * * <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), and * mm (millimeters). * * @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_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_visible android:visible}</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_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> * </table> * @see #MenuGroup_android_enabled * @see #MenuGroup_android_id * @see #MenuGroup_android_visible * @see #MenuGroup_android_menuCategory * @see #MenuGroup_android_orderInCategory * @see #MenuGroup_android_checkableBehavior */ 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. * * <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>all</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>single</td><td>2</td><td></td></tr> * </table> * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <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>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @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. * * <p>May be an integer value, such as "<code>100</code>". * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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_android_icon android:icon}</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_id android:id}</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_visible android:visible}</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_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_alphabeticShortcut android:alphabeticShortcut}</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_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionLayout com.example.android.droidcafeoptions:actionLayout}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.example.android.droidcafeoptions:actionProviderClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.example.android.droidcafeoptions:actionViewClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.example.android.droidcafeoptions:alphabeticModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.example.android.droidcafeoptions:contentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.example.android.droidcafeoptions:iconTint}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.example.android.droidcafeoptions:iconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.example.android.droidcafeoptions:numericModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.example.android.droidcafeoptions:showAsAction}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.example.android.droidcafeoptions:tooltipText}</code></td><td></td></tr> * </table> * @see #MenuItem_android_icon * @see #MenuItem_android_enabled * @see #MenuItem_android_id * @see #MenuItem_android_checked * @see #MenuItem_android_visible * @see #MenuItem_android_menuCategory * @see #MenuItem_android_orderInCategory * @see #MenuItem_android_title * @see #MenuItem_android_titleCondensed * @see #MenuItem_android_alphabeticShortcut * @see #MenuItem_android_numericShortcut * @see #MenuItem_android_checkable * @see #MenuItem_android_onClick * @see #MenuItem_actionLayout * @see #MenuItem_actionProviderClass * @see #MenuItem_actionViewClass * @see #MenuItem_alphabeticModifiers * @see #MenuItem_contentDescription * @see #MenuItem_iconTint * @see #MenuItem_iconTintMode * @see #MenuItem_numericModifiers * @see #MenuItem_showAsAction * @see #MenuItem_tooltipText */ public static final int[] MenuItem={ 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030060, 0x7f0300a5, 0x7f0300a6, 0x7f0300ff, 0x7f030124, 0x7f030176 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionLayout} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionProviderClass} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#actionViewClass} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#alphabeticModifiers} * 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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <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>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be an integer value, such as "<code>100</code>". * * @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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuItem_android_visible=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentDescription} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#iconTint} * attribute's value can be found in the {@link #MenuItem} array. * * <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 com.example.android.droidcafeoptions:iconTint */ public static final int MenuItem_iconTint=18; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#iconTintMode} * attribute's value can be found in the {@link #MenuItem} 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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#numericModifiers} * 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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>always</td><td>2</td><td></td></tr> * <tr><td>collapseActionView</td><td>8</td><td></td></tr> * <tr><td>ifRoom</td><td>1</td><td></td></tr> * <tr><td>never</td><td>0</td><td></td></tr> * <tr><td>withText</td><td>4</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tooltipText} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:tooltipText */ public static final int MenuItem_tooltipText=22; /** * 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_windowAnimationStyle android:windowAnimationStyle}</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_horizontalDivider android:horizontalDivider}</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_headerBackground android:headerBackground}</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_preserveIconSpacing com.example.android.droidcafeoptions:preserveIconSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.example.android.droidcafeoptions:subMenuArrow}</code></td><td></td></tr> * </table> * @see #MenuView_android_windowAnimationStyle * @see #MenuView_android_itemTextAppearance * @see #MenuView_android_horizontalDivider * @see #MenuView_android_verticalDivider * @see #MenuView_android_headerBackground * @see #MenuView_android_itemBackground * @see #MenuView_android_itemIconDisabledAlpha * @see #MenuView_preserveIconSpacing * @see #MenuView_subMenuArrow */ public static final int[] MenuView={ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030110, 0x7f030135 }; /** * <p>This symbol is the offset where the {@link android.R.attr#headerBackground} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#preserveIconSpacing} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subMenuArrow} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_headerLayout com.example.android.droidcafeoptions:headerLayout}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemBackground com.example.android.droidcafeoptions:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconTint com.example.android.droidcafeoptions:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextAppearance com.example.android.droidcafeoptions:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextColor com.example.android.droidcafeoptions:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_menu com.example.android.droidcafeoptions: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, 0x7f03007d, 0x7f03009c, 0x7f0300ad, 0x7f0300ae, 0x7f0300b0, 0x7f0300b1, 0x7f0300fa }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#elevation} * attribute's value can be found in the {@link #NavigationView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:elevation */ public static final int NavigationView_elevation=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#headerLayout} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:headerLayout */ public static final int NavigationView_headerLayout=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemBackground} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:itemBackground */ public static final int NavigationView_itemBackground=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemIconTint} * attribute's value can be found in the {@link #NavigationView} array. * * <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 com.example.android.droidcafeoptions:itemIconTint */ public static final int NavigationView_itemIconTint=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemTextAppearance} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:itemTextAppearance */ public static final int NavigationView_itemTextAppearance=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#itemTextColor} * attribute's value can be found in the {@link #NavigationView} array. * * <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 com.example.android.droidcafeoptions:itemTextColor */ public static final int NavigationView_itemTextColor=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#menu} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:menu */ public static final int NavigationView_menu=9; /** * 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_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_overlapAnchor com.example.android.droidcafeoptions:overlapAnchor}</code></td><td></td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f030100 }; /** * 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 com.example.android.droidcafeoptions:state_above_anchor}</code></td><td></td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f030130 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#state_above_anchor} * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor=0; /** * <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 android:popupBackground */ public static final int PopupWindow_android_popupBackground=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#overlapAnchor} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:overlapAnchor */ public static final int PopupWindow_overlapAnchor=2; /** * 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 com.example.android.droidcafeoptions:paddingBottomNoButtons}</code></td><td></td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.example.android.droidcafeoptions:paddingTopNoTitle}</code></td><td></td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f030101, 0x7f030104 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#paddingBottomNoButtons} * attribute's value can be found in the {@link #RecycleListView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#paddingTopNoTitle} * attribute's value can be found in the {@link #RecycleListView} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions: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_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.example.android.droidcafeoptions:fastScrollEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.example.android.droidcafeoptions:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.example.android.droidcafeoptions:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.example.android.droidcafeoptions:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.example.android.droidcafeoptions:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_layoutManager com.example.android.droidcafeoptions:layoutManager}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_reverseLayout com.example.android.droidcafeoptions:reverseLayout}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_spanCount com.example.android.droidcafeoptions:spanCount}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_stackFromEnd com.example.android.droidcafeoptions:stackFromEnd}</code></td><td></td></tr> * </table> * @see #RecyclerView_android_orientation * @see #RecyclerView_android_descendantFocusability * @see #RecyclerView_fastScrollEnabled * @see #RecyclerView_fastScrollHorizontalThumbDrawable * @see #RecyclerView_fastScrollHorizontalTrackDrawable * @see #RecyclerView_fastScrollVerticalThumbDrawable * @see #RecyclerView_fastScrollVerticalTrackDrawable * @see #RecyclerView_layoutManager * @see #RecyclerView_reverseLayout * @see #RecyclerView_spanCount * @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView={ 0x010100c4, 0x010100f1, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008e, 0x7f0300b4, 0x7f03011a, 0x7f030129, 0x7f03012f }; /** * <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} * attribute's value can be found in the {@link #RecyclerView} 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>afterDescendants</td><td>1</td><td></td></tr> * <tr><td>beforeDescendants</td><td>0</td><td></td></tr> * <tr><td>blocksDescendants</td><td>2</td><td></td></tr> * </table> * * @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. * * <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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int RecyclerView_android_orientation=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fastScrollEnabled} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fastScrollHorizontalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fastScrollHorizontalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fastScrollVerticalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fastScrollVerticalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layoutManager} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:layoutManager */ public static final int RecyclerView_layoutManager=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#reverseLayout} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:reverseLayout */ public static final int RecyclerView_reverseLayout=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#spanCount} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:spanCount */ public static final int RecyclerView_spanCount=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#stackFromEnd} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:stackFromEnd */ public static final int RecyclerView_stackFromEnd=10; /** * 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 com.example.android.droidcafeoptions:insetForeground}</code></td><td></td></tr> * </table> * @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout={ 0x7f0300ab }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 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 com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:behavior_overlapTop}</code></td><td></td></tr> * </table> * @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout={ 0x7f030039 }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#behavior_overlapTop} * attribute's value can be found in the {@link #ScrollingViewBehavior_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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions: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_maxWidth android:maxWidth}</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_imeOptions android:imeOptions}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_closeIcon com.example.android.droidcafeoptions:closeIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.example.android.droidcafeoptions:commitIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.example.android.droidcafeoptions:defaultQueryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_goIcon com.example.android.droidcafeoptions:goIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.android.droidcafeoptions:iconifiedByDefault}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_layout com.example.android.droidcafeoptions:layout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.example.android.droidcafeoptions:queryBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryHint com.example.android.droidcafeoptions:queryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.example.android.droidcafeoptions:searchHintIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.example.android.droidcafeoptions:searchIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.example.android.droidcafeoptions:submitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.android.droidcafeoptions:suggestionRowLayout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.example.android.droidcafeoptions:voiceIcon}</code></td><td></td></tr> * </table> * @see #SearchView_android_focusable * @see #SearchView_android_maxWidth * @see #SearchView_android_inputType * @see #SearchView_android_imeOptions * @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, 0x7f03004d, 0x7f03005e, 0x7f03006e, 0x7f03009b, 0x7f0300a7, 0x7f0300b3, 0x7f030114, 0x7f030115, 0x7f03011e, 0x7f03011f, 0x7f030136, 0x7f03013b, 0x7f03017b }; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <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>auto</td><td>10</td><td></td></tr> * </table> * * @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. * * <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>actionDone</td><td>6</td><td></td></tr> * <tr><td>actionGo</td><td>2</td><td></td></tr> * <tr><td>actionNext</td><td>5</td><td></td></tr> * <tr><td>actionNone</td><td>1</td><td></td></tr> * <tr><td>actionPrevious</td><td>7</td><td></td></tr> * <tr><td>actionSearch</td><td>3</td><td></td></tr> * <tr><td>actionSend</td><td>4</td><td></td></tr> * <tr><td>actionUnspecified</td><td>0</td><td></td></tr> * <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr> * <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr> * <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr> * <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr> * <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr> * <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr> * <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr> * <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @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. * * <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>date</td><td>14</td><td></td></tr> * <tr><td>datetime</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>number</td><td>2</td><td></td></tr> * <tr><td>numberDecimal</td><td>2002</td><td></td></tr> * <tr><td>numberPassword</td><td>12</td><td></td></tr> * <tr><td>numberSigned</td><td>1002</td><td></td></tr> * <tr><td>phone</td><td>3</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * <tr><td>textAutoComplete</td><td>10001</td><td></td></tr> * <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr> * <tr><td>textCapCharacters</td><td>1001</td><td></td></tr> * <tr><td>textCapSentences</td><td>4001</td><td></td></tr> * <tr><td>textCapWords</td><td>2001</td><td></td></tr> * <tr><td>textEmailAddress</td><td>21</td><td></td></tr> * <tr><td>textEmailSubject</td><td>31</td><td></td></tr> * <tr><td>textFilter</td><td>b1</td><td></td></tr> * <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr> * <tr><td>textLongMessage</td><td>51</td><td></td></tr> * <tr><td>textMultiLine</td><td>20001</td><td></td></tr> * <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr> * <tr><td>textPassword</td><td>81</td><td></td></tr> * <tr><td>textPersonName</td><td>61</td><td></td></tr> * <tr><td>textPhonetic</td><td>c1</td><td></td></tr> * <tr><td>textPostalAddress</td><td>71</td><td></td></tr> * <tr><td>textShortMessage</td><td>41</td><td></td></tr> * <tr><td>textUri</td><td>11</td><td></td></tr> * <tr><td>textVisiblePassword</td><td>91</td><td></td></tr> * <tr><td>textWebEditText</td><td>a1</td><td></td></tr> * <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr> * <tr><td>textWebPassword</td><td>e1</td><td></td></tr> * <tr><td>time</td><td>24</td><td></td></tr> * </table> * * @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. * * <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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SearchView_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#closeIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#commitIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#defaultQueryHint} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#goIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:goIcon */ public static final int SearchView_goIcon=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#iconifiedByDefault} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#layout} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:layout */ public static final int SearchView_layout=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#queryBackground} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#queryHint} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:queryHint */ public static final int SearchView_queryHint=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#searchHintIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#searchIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#submitBackground} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#suggestionRowLayout} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#voiceIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * 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 com.example.android.droidcafeoptions:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.example.android.droidcafeoptions:maxActionInlineWidth}</code></td><td></td></tr> * </table> * @see #SnackbarLayout_android_maxWidth * @see #SnackbarLayout_elevation * @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout={ 0x0101011f, 0x7f03007d, 0x7f0300f7 }; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #SnackbarLayout} 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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#elevation} * attribute's value can be found in the {@link #SnackbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:elevation */ public static final int SnackbarLayout_elevation=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#maxActionInlineWidth} * attribute's value can be found in the {@link #SnackbarLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions: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_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_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_popupTheme com.example.android.droidcafeoptions:popupTheme}</code></td><td></td></tr> * </table> * @see #Spinner_android_entries * @see #Spinner_android_popupBackground * @see #Spinner_android_prompt * @see #Spinner_android_dropDownWidth * @see #Spinner_popupTheme */ public static final int[] Spinner={ 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f03010e }; /** * <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} * attribute's value can be found in the {@link #Spinner} 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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:prompt */ public static final int Spinner_android_prompt=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#popupTheme} * attribute's value can be found in the {@link #Spinner} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions: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_textOn android:textOn}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</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 com.example.android.droidcafeoptions:showText}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.example.android.droidcafeoptions:splitTrack}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.android.droidcafeoptions:switchMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.example.android.droidcafeoptions:switchPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.android.droidcafeoptions:switchTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.android.droidcafeoptions:thumbTextPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.example.android.droidcafeoptions:thumbTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.android.droidcafeoptions:thumbTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_track com.example.android.droidcafeoptions:track}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.example.android.droidcafeoptions:trackTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.android.droidcafeoptions:trackTintMode}</code></td><td></td></tr> * </table> * @see #SwitchCompat_android_textOn * @see #SwitchCompat_android_textOff * @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, 0x7f030126, 0x7f03012d, 0x7f03013c, 0x7f03013d, 0x7f03013f, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030177, 0x7f030178, 0x7f030179 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textOff} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int SwitchCompat_android_thumb=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#showText} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:showText */ public static final int SwitchCompat_showText=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#splitTrack} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#switchMinWidth} * attribute's value can be found in the {@link #SwitchCompat} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#switchPadding} * attribute's value can be found in the {@link #SwitchCompat} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#switchTextAppearance} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#thumbTextPadding} * attribute's value can be found in the {@link #SwitchCompat} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#thumbTint} * attribute's value can be found in the {@link #SwitchCompat} array. * * <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 com.example.android.droidcafeoptions:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#track} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:track */ public static final int SwitchCompat_track=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#trackTint} * attribute's value can be found in the {@link #SwitchCompat} array. * * <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 com.example.android.droidcafeoptions:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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 com.example.android.droidcafeoptions:tabBackground}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabContentStart com.example.android.droidcafeoptions:tabContentStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabGravity com.example.android.droidcafeoptions:tabGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorColor com.example.android.droidcafeoptions:tabIndicatorColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.example.android.droidcafeoptions:tabIndicatorHeight}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMaxWidth com.example.android.droidcafeoptions:tabMaxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMinWidth com.example.android.droidcafeoptions:tabMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMode com.example.android.droidcafeoptions:tabMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPadding com.example.android.droidcafeoptions:tabPadding}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingBottom com.example.android.droidcafeoptions:tabPaddingBottom}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingEnd com.example.android.droidcafeoptions:tabPaddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingStart com.example.android.droidcafeoptions:tabPaddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingTop com.example.android.droidcafeoptions:tabPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.example.android.droidcafeoptions:tabSelectedTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextAppearance com.example.android.droidcafeoptions:tabTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextColor com.example.android.droidcafeoptions: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={ 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f }; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabBackground} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:tabBackground */ public static final int TabLayout_tabBackground=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabContentStart} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabContentStart */ public static final int TabLayout_tabContentStart=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:tabGravity */ public static final int TabLayout_tabGravity=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabIndicatorColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.example.android.droidcafeoptions:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabIndicatorHeight} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabMaxWidth} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabMaxWidth */ public static final int TabLayout_tabMaxWidth=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabMinWidth} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabMinWidth */ public static final int TabLayout_tabMinWidth=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:tabMode */ public static final int TabLayout_tabMode=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabPadding} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabPadding */ public static final int TabLayout_tabPadding=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabPaddingBottom} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabPaddingEnd} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabPaddingStart} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabPaddingStart */ public static final int TabLayout_tabPaddingStart=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabPaddingTop} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:tabPaddingTop */ public static final int TabLayout_tabPaddingTop=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabSelectedTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.example.android.droidcafeoptions:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabTextAppearance} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:tabTextAppearance */ public static final int TabLayout_tabTextAppearance=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#tabTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.example.android.droidcafeoptions:tabTextColor */ public static final int TabLayout_tabTextColor=15; /** * 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_textSize android:textSize}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</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_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_textColorLink android:textColorLink}</code></td><td></td></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_fontFamily android:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontFamily com.example.android.droidcafeoptions:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.example.android.droidcafeoptions:textAllCaps}</code></td><td></td></tr> * </table> * @see #TextAppearance_android_textSize * @see #TextAppearance_android_typeface * @see #TextAppearance_android_textStyle * @see #TextAppearance_android_textColor * @see #TextAppearance_android_textColorHint * @see #TextAppearance_android_textColorLink * @see #TextAppearance_android_shadowColor * @see #TextAppearance_android_shadowDx * @see #TextAppearance_android_shadowDy * @see #TextAppearance_android_shadowRadius * @see #TextAppearance_android_fontFamily * @see #TextAppearance_fontFamily * @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance={ 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f030090, 0x7f030150 }; /** * <p>This symbol is the offset where the {@link android.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily=10; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <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 android:shadowColor */ public static final int TextAppearance_android_shadowColor=6; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDx} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx=7; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDy} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy=8; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius=9; /** * <p>This symbol is the offset where the {@link android.R.attr#textColor} * 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 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 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 android:textColorHint */ public static final int TextAppearance_android_textColorHint=4; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorLink} * 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 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 android:textColorLink */ public static final int TextAppearance_android_textColorLink=5; /** * <p>This symbol is the offset where the {@link android.R.attr#textSize} * attribute's value can be found in the {@link #TextAppearance} 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), and * mm (millimeters). * * @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. * * <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>bold</td><td>1</td><td></td></tr> * <tr><td>italic</td><td>2</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @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. * * <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>monospace</td><td>3</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>sans</td><td>1</td><td></td></tr> * <tr><td>serif</td><td>2</td><td></td></tr> * </table> * * @attr name android:typeface */ public static final int TextAppearance_android_typeface=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * 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_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterEnabled com.example.android.droidcafeoptions:counterEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterMaxLength com.example.android.droidcafeoptions:counterMaxLength}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.example.android.droidcafeoptions:counterOverflowTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.example.android.droidcafeoptions:counterTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorEnabled com.example.android.droidcafeoptions:errorEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.example.android.droidcafeoptions:errorTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.example.android.droidcafeoptions:hintAnimationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintEnabled com.example.android.droidcafeoptions:hintEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.example.android.droidcafeoptions:hintTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.example.android.droidcafeoptions:passwordToggleContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.example.android.droidcafeoptions:passwordToggleDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.example.android.droidcafeoptions:passwordToggleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.example.android.droidcafeoptions:passwordToggleTint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.example.android.droidcafeoptions:passwordToggleTintMode}</code></td><td></td></tr> * </table> * @see #TextInputLayout_android_textColorHint * @see #TextInputLayout_android_hint * @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, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03007e, 0x7f03007f, 0x7f03009f, 0x7f0300a0, 0x7f0300a1, 0x7f030108, 0x7f030109, 0x7f03010a, 0x7f03010b, 0x7f03010c }; /** * <p>This symbol is the offset where the {@link android.R.attr#hint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 android:textColorHint */ public static final int TextInputLayout_android_textColorHint=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#counterEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:counterEnabled */ public static final int TextInputLayout_counterEnabled=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#counterMaxLength} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.android.droidcafeoptions:counterMaxLength */ public static final int TextInputLayout_counterMaxLength=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#counterOverflowTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#counterTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#errorEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:errorEnabled */ public static final int TextInputLayout_errorEnabled=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#errorTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#hintAnimationEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#hintEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:hintEnabled */ public static final int TextInputLayout_hintEnabled=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#hintTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#passwordToggleContentDescription} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#passwordToggleDrawable} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#passwordToggleEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.android.droidcafeoptions:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#passwordToggleTint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <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 com.example.android.droidcafeoptions:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions: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 com.example.android.droidcafeoptions:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.android.droidcafeoptions:collapseContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.example.android.droidcafeoptions:collapseIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.android.droidcafeoptions:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.android.droidcafeoptions:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.android.droidcafeoptions:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.example.android.droidcafeoptions:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.example.android.droidcafeoptions:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.android.droidcafeoptions:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logo com.example.android.droidcafeoptions:logo}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.example.android.droidcafeoptions:logoDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.android.droidcafeoptions:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.android.droidcafeoptions:navigationContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.example.android.droidcafeoptions:navigationIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.example.android.droidcafeoptions:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.example.android.droidcafeoptions:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.android.droidcafeoptions:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.android.droidcafeoptions:subtitleTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_title com.example.android.droidcafeoptions:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.example.android.droidcafeoptions:titleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.android.droidcafeoptions:titleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.android.droidcafeoptions:titleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.example.android.droidcafeoptions:titleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.example.android.droidcafeoptions:titleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.example.android.droidcafeoptions:titleMargins}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.android.droidcafeoptions:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.example.android.droidcafeoptions: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, 0x7f030045, 0x7f03004f, 0x7f030050, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f0300f5, 0x7f0300f6, 0x7f0300f8, 0x7f0300fc, 0x7f0300fd, 0x7f03010e, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f030166, 0x7f030168, 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * 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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @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. * * <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), and * mm (millimeters). * * @attr name android:minHeight */ public static final int Toolbar_android_minHeight=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>bottom</td><td>50</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#collapseContentDescription} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#collapseIcon} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetEnd} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetEndWithActions} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetLeft} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetRight} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetStart} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#contentInsetStartWithNavigation} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#logo} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:logo */ public static final int Toolbar_logo=11; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#logoDescription} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#maxButtonHeight} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#navigationContentDescription} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#navigationIcon} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#popupTheme} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subtitle} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subtitleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#subtitleTextColor} * attribute's value can be found in the {@link #Toolbar} array. * * <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 com.example.android.droidcafeoptions:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#title} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.android.droidcafeoptions:title */ public static final int Toolbar_title=20; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleMargin} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleMarginBottom} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleMarginEnd} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleMarginStart} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleMarginTop} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleMargins} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:titleMargins */ public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#titleTextColor} * attribute's value can be found in the {@link #Toolbar} array. * * <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 com.example.android.droidcafeoptions:titleTextColor */ public static final int Toolbar_titleTextColor=28; /** * 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_theme android:theme}</code></td><td></td></tr> * <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingEnd com.example.android.droidcafeoptions:paddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingStart com.example.android.droidcafeoptions:paddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #View_theme com.example.android.droidcafeoptions:theme}</code></td><td></td></tr> * </table> * @see #View_android_theme * @see #View_android_focusable * @see #View_paddingEnd * @see #View_paddingStart * @see #View_theme */ public static final int[] View={ 0x01010000, 0x010100da, 0x7f030102, 0x7f030103, 0x7f03015c }; /** * 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 com.example.android.droidcafeoptions:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.android.droidcafeoptions:backgroundTintMode}</code></td><td></td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f030034, 0x7f030035 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 android:background */ public static final int ViewBackgroundHelper_android_background=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#backgroundTint} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <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 com.example.android.droidcafeoptions:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.android.droidcafeoptions: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_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> * </table> * @see #ViewStubCompat_android_id * @see #ViewStubCompat_android_layout * @see #ViewStubCompat_android_inflatedId */ 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int ViewStubCompat_android_layout=1; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #View} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <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>auto</td><td>10</td><td></td></tr> * </table> * * @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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:theme */ public static final int View_android_theme=0; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#paddingEnd} * attribute's value can be found in the {@link #View} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:paddingEnd */ public static final int View_paddingEnd=2; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#paddingStart} * attribute's value can be found in the {@link #View} 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), and * mm (millimeters). * * @attr name com.example.android.droidcafeoptions:paddingStart */ public static final int View_paddingStart=3; /** * <p>This symbol is the offset where the {@link com.example.android.droidcafeoptions.R.attr#theme} * attribute's value can be found in the {@link #View} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.android.droidcafeoptions:theme */ public static final int View_theme=4; } }
e023f897fa6efcbab9637bbccf95b2fb4e633a55
263d8b865886a2b9e2964c5a20867b8e391ad002
/src/main/java/pl/travel360/dto/OfferDto.java
412058019fcd89153a14fd95d556d5764e14f041
[]
no_license
rimmugygr/Travel-Office-Project
b6737a4fba044b419946b5fd6cfe8e7115975097
f00f4235dbc14fb5d9d46b1be2831e0c2292eaa4
refs/heads/master
2023-08-13T14:46:33.377108
2020-08-19T08:48:34
2020-08-19T08:48:34
288,237,276
0
0
null
null
null
null
UTF-8
Java
false
false
473
java
package pl.travel360.dto; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.*; import java.time.LocalDate; @Data @AllArgsConstructor(staticName = "of") @Builder @Setter @Getter public class OfferDto { private Long id; private Long cityId; private Long price; private String name; private String description; @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd-MM-yyyy") private LocalDate date; private Long day; }
2156f7ec95c1bceed73365ee0a77838396c4bed6
01e2f06122ac38c4c714601a7cd6a3be9573970a
/BSNT_Android_TV/BSNT_Android_TV/src/main/java/com/cn/bsnt/dao/impl/GoodsTvDAOImpl.java
097bd7277cd7efa7198da749aeb229559b82127d
[]
no_license
1817799889/bsnt
f7a9515a18641d1f055a6ff3ae808597a2e5a85a
c1c2bc33cce73cebfc89b6dc457eb584104862da
refs/heads/master
2021-01-13T00:36:46.701149
2016-01-12T01:13:51
2016-01-12T01:13:51
49,413,798
1
0
null
null
null
null
UTF-8
Java
false
false
3,353
java
package com.cn.bsnt.dao.impl; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import org.omg.Dynamic.Parameter; import com.cn.bsnt.dao.BaseDAO; import com.cn.bsnt.dbhelper.ConnectionManager; import com.cn.bsnt.model.GoodsTv; import com.cn.bsnt.model.User; public class GoodsTvDAOImpl implements BaseDAO<GoodsTv>{ private Connection conn = null; private PreparedStatement para=null; private ResultSet rs = null; private String sql; private List<GoodsTv> goodsTvList= new ArrayList<GoodsTv>(); public int insert(GoodsTv t) throws SQLException { // TODO Auto-generated method stub return 0; } public int delete(int id) throws SQLException { // TODO Auto-generated method stub return 0; } public int update(GoodsTv t) throws SQLException { // TODO Auto-generated method stub return 0; } public User select(int id) throws SQLException { // TODO Auto-generated method stub return null; } public List<User> selectList(Parameter p) throws SQLException { // TODO Auto-generated method stub return null; } public List<GoodsTv> selectAll() throws SQLException{ sql ="select * from GOODS_TV"; conn = ConnectionManager.getConnection(); para = conn.prepareStatement(sql); rs = para.executeQuery(); GoodsTv gt = null; while(rs.next()){ gt = new GoodsTv(); gt.setTvId(rs.getInt("TV_ID")); gt.setTvName(rs.getString("TV_NAME")); gt.setTvPrice(rs.getDouble("TV_PRICE")); gt.setTvType(rs.getString("TV_TYPE")); gt.setTvColor(rs.getString("TV_COLOR")); gt.setTvSize(rs.getString("TV_SIZE")); gt.setTvBrand(rs.getString("TV_BRAND")); gt.setTvCount(rs.getString("TV_COUNT")); gt.setTvMonthSales(rs.getString("TV_MONTH_SALES")); gt.setTvTotalSales(rs.getString("TV_TOTAL_SALES")); gt.setTvdesc(rs.getString("TV_DESC")); gt.setTvResolutionRadio(rs.getString("TV_RESOLUTION_RATIO")); gt.setTv3dType(rs.getString("TV_3D_TYPE")); gt.setTvEel(rs.getString("TV_EEI")); gt.setTvMacOs(rs.getString("TV_MAC_OS")); gt.setTvInternetConnectWay(rs.getString("TV_INTERNET_CONNECT_WAY")); gt.setTvScanScale(rs.getString("TV_SCRN_SCALE")); gt.setTvMold(rs.getString("TV_MOLD")); gt.setTvVideoFormat(rs.getString("TV_VIDEO_FORMAT")); gt.setTvBackightType(rs.getString("TV_BACKLIGHT_TYPE")); gt.setTvScanningMode(rs.getString("TV_SCANNING_MODE")); gt.setTvNtsc(rs.getString("TV_NTSC")); gt.setTvHdmi(rs.getString("TV_HDMI")); gt.setTvPortType(rs.getString("TV_PORT_TYPE")); gt.setTvNetNoBelow(rs.getString("TV_NET_NO_BELOW")); gt.setTvNetHavaBelow(rs.getString("TV_NET_HAVA_BELOW")); gt.setTvPackSize(rs.getString("TV_PACK_SIZE")); gt.setTvIncludeRimSize(rs.getString("TV_INCLUDE_RIM_SIZE")); gt.setTvRoughWeight(rs.getString("TV_ROUGH_WEIGHT")); gt.setTvMainSize(rs.getString("TV_MAIN_SIZE")); gt.setTvWrap1(rs.getString("TV_WRAP_1")); gt.setTvWrap2(rs.getString("TV_WRAP_2")); gt.setTvWrap3(rs.getString("TV_WRAP_3")); gt.setTvWrap4(rs.getString("TV_WRAP_4")); gt.setTvWrap5(rs.getString("TV_WRAP_5")); gt.setTvWrap6(rs.getString("TV_WRAP_6")); gt.setTvWrap7(rs.getString("TV_WRAP_7")); gt.setFirstCost(rs.getString("FIRST_COST")); goodsTvList.add(gt); } return goodsTvList; } }
62616d50f7fd1fa528ebdf0f5d5a5af18f625280
4c61d331e0821258a015db4513eb271a7252f1c5
/practice/src/main/java/com/kte/practice/VO/replyVO.java
269972f53d98b339c118ac871c8dde0f5d732ddc
[]
no_license
shdq2/practice
30fbfa4e06c9fb1ee480b46140a5794d1d487c15
eda5a6af7dcabdfc92e065e790782a09545cf742
refs/heads/master
2021-05-02T14:42:29.582701
2018-03-26T08:21:51
2018-03-26T08:21:51
120,572,543
0
0
null
null
null
null
UTF-8
Java
false
false
1,272
java
package com.kte.practice.VO; public class replyVO { private int rep_no = 0; private String rep_content = null; private int rep_item_no = 0; private String rep_writer = null; private String rep_date = null; private String writer_name = null; private int rep_count = 0; public int getRep_count() { return rep_count; } public void setRep_count(int rep_count) { this.rep_count = rep_count; } public String getWriter_name() { return writer_name; } public void setWriter_name(String writer_name) { this.writer_name = writer_name; } public int getRep_no() { return rep_no; } public void setRep_no(int rep_no) { this.rep_no = rep_no; } public String getRep_content() { return rep_content; } public void setRep_content(String rep_content) { this.rep_content = rep_content; } public int getRep_item_no() { return rep_item_no; } public void setRep_item_no(int rep_item_no) { this.rep_item_no = rep_item_no; } public String getRep_writer() { return rep_writer; } public void setRep_writer(String rep_writer) { this.rep_writer = rep_writer; } public String getRep_date() { return rep_date; } public void setRep_date(String rep_date) { this.rep_date = rep_date; } }
8b83999de1355b3d6dbdca66959e37524ff17066
adaef51ca14f6b60a8d59bc6df2d345c36a7180a
/drawplant/src/main/java/com/hucanhui/drawplant/svg/SvgFile.java
2442f2a1126cd65898cbcb404a5ff356d350826f
[]
no_license
HuCanui/drawplant
0d84d53b4ca0f3272086470389b6fb81f6374ddc
0ae8729d39dbed7cd265248d3088f577cfd4038f
refs/heads/master
2020-12-31T00:39:57.371279
2017-03-29T10:00:37
2017-03-29T10:00:37
86,559,265
1
0
null
null
null
null
UTF-8
Java
false
false
651
java
package com.hucanhui.drawplant.svg; /** * Created by hucanhui on 2017/3/27. */ public class SvgFile { private final StringBuilder svgCircleBuilder = new StringBuilder(); public String build() { return (new StringBuilder()) .append("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n") .append("<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.2\" width=\"100%\" height=\"100%\">") .append(svgCircleBuilder) .append("</svg>") .toString(); } public void appent(String circle){ svgCircleBuilder.append(circle); } }
0f393ae3a3f0c47d2c80f11e597c76c2c1f5612c
8199a06f3f1c3fc026a962ffb93e98d27194389f
/src/com/theironyard/User.java
c92b42d5e41152c790fe98db12f82f46d8d8a54e
[]
no_license
TIY-Charleston-Front-End-February2016/eventHandler
72e5cf72c1a635aff66b14e4b231e132a298159a
78332a19f6a5ce6ce88882408b443310ef478b6c
refs/heads/master
2021-01-10T15:04:36.269183
2016-03-07T16:10:43
2016-03-07T16:10:43
53,084,728
0
4
null
2016-03-07T16:10:43
2016-03-03T21:18:22
Java
UTF-8
Java
false
false
860
java
package com.theironyard; /** * Created by alexanderhughes on 3/3/16. */ public class User { private String userName, password; private int id; public User(String userName, String password) { this.userName = userName; this.password = password; } public User(int id, String userName, String password) { this.userName = userName; this.password = password; this.id = id; } 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 int getId() { return id; } public void setId(int id) { this.id = id; } }
38d93788ef668c583deca8a6434c8aa999930a87
850657257217e3bacf8e6842249e42de6f0a3dde
/app/src/main/java/com/v/gyyx/areaLogWeb2/imodelImpl.java
2b23d06cae2ebe865cf2d89fa2e9f2c4f117a298
[]
no_license
zhangqifan1/GYYX
c7b2e49873313fcc9bc1b9062f6d0a8b2f2d8170
32a0f7ed927cf709c1823525b234edd90a68f714
refs/heads/master
2021-09-01T09:19:34.357187
2017-12-26T06:51:59
2017-12-26T06:51:59
115,294,548
0
0
null
null
null
null
UTF-8
Java
false
false
1,852
java
package com.v.gyyx.areaLogWeb2; import android.content.Context; import com.google.gson.Gson; import com.v.gyyx.Const; import com.v.gyyx.beans.YouKeBean; import com.v.gyyx.utils.CallServer; import com.v.gyyx.utils.DialogUtils; import com.v.gyyx.utils.ToastUtils; import com.yanzhenjie.nohttp.NoHttp; import com.yanzhenjie.nohttp.RequestMethod; import com.yanzhenjie.nohttp.rest.CacheMode; import com.yanzhenjie.nohttp.rest.Request; import com.yanzhenjie.nohttp.rest.Response; import com.yanzhenjie.nohttp.rest.SimpleResponseListener; /** * Created by Administrator on 2017/12/15. */ public class imodelImpl implements imodel { @Override public void request(Object o, final CallBack3 callBack, final Context context) { Request<String> req = NoHttp.createStringRequest(Const.YouKe_POST, RequestMethod.POST); req.add("deviceId",Const.Device_ID); req.setCancelSign(o); //设置失败 读缓存 req.setCacheMode(CacheMode.REQUEST_NETWORK_FAILED_READ_CACHE); CallServer.getInstance().request(0, req, new SimpleResponseListener<String>() { @Override public void onStart(int what) { DialogUtils.showRoundProcessDialog(context); } @Override public void onSucceed(int what, Response<String> response) { String s = response.get(); YouKeBean youKeBean = new Gson().fromJson(s, YouKeBean.class); callBack.setYoukeBean(youKeBean); } @Override public void onFailed(int what, Response<String> response) { ToastUtils.Toast("大家都看到了啊,是他先没网了"); } @Override public void onFinish(int what) { DialogUtils.disMissDialog(); } }); } }
2c765ef543aa71aa8f4cf16fbaf40d289e501cd4
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/16/16_738cd28cdbf87828e6b24dc075e021f0bcd5e956/Messages/16_738cd28cdbf87828e6b24dc075e021f0bcd5e956_Messages_t.java
92e0526ed0ce57365d420acac5da3736a585f24e
[]
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
9,990
java
/******************************************************************************* * Copyright (c) 2004, 2009 Tasktop Technologies and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Tasktop Technologies - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.internal.tasks.ui.wizards; import org.eclipse.osgi.util.NLS; public class Messages extends NLS { private static final String BUNDLE_NAME = "org.eclipse.mylyn.internal.tasks.ui.wizards.messages"; //$NON-NLS-1$ static { // load message values from bundle file reloadMessages(); } public static void reloadMessages() { NLS.initializeMessages(BUNDLE_NAME, Messages.class); } public static String EditRepositoryWizard_Failed_to_refactor_repository_urls; public static String EditRepositoryWizard_Properties_for_Task_Repository; public static String AttachmentSourcePage__Clipboard_; public static String AttachmentSourcePage__Screenshot_; public static String AttachmentSourcePage_Browse_; public static String AttachmentSourcePage_Cannot_locate_attachment_file; public static String AttachmentSourcePage_Clipboard; public static String AttachmentSourcePage_Clipboard_contains_an_unsupported_data; public static String AttachmentSourcePage_Clipboard_supports_text_and_image_attachments_only; public static String AttachmentSourcePage_File; public static String AttachmentSourcePage_No_file_name; public static String AttachmentSourcePage_Select_attachment_source; public static String AttachmentSourcePage_Select_the_location_of_the_attachment; public static String AttachmentSourcePage_Workspace; public static String NewQueryWizard_New_Repository_Query; public static String NewTaskWizard_New_Task; public static String NewWebTaskPage_Create_via_Web_Browser; public static String NewWebTaskPage_New_Task; public static String NewWebTaskPage_Once_submitted_synchronize_queries_or_add_the_task_to_a_category; public static String NewWebTaskPage_This_will_open_a_web_browser_that_can_be_used_to_create_a_new_task; public static String AttachmentPreviewPage_A_preview_the_type_X_is_currently_not_available; public static String AttachmentPreviewPage_Attachment_Preview; public static String AttachmentPreviewPage_Could_not_create_preview; public static String AttachmentPreviewPage_Preparing_preview; public static String AttachmentPreviewPage_Review_the_attachment_before_submitting; public static String AttachmentPreviewPage_Run_in_background; public static String SelectRepositoryConnectorPage_discoveryProblemMessage; public static String SelectRepositoryConnectorPage_discoveryProblemTitle; public static String SelectRepositoryConnectorPage_activateDiscovery; public static String SelectRepositoryConnectorPage_Select_a_task_repository_type; public static String SelectRepositoryConnectorPage_You_can_connect_to_an_existing_account_using_one_of_the_installed_connectors; public static String SelectRepositoryPage_Add_new_repositories_using_the_X_view; public static String SelectRepositoryPage_Select_a_repository; public static String TaskAttachmentWizard_Add_Attachment; public static String TaskAttachmentWizard_Attach_Screenshot; public static String TaskAttachmentWizard_Attaching_context; public static String TaskAttachmentWizard_Attachment_Failed; public static String TaskAttachmentWizard_Screenshot; public static String TaskDataExportWizard_Export; public static String TaskDataExportWizard_export_failed; public static String TaskDataExportWizardPage_Browse_; public static String TaskDataExportWizardPage_Export_Mylyn_Task_Data; public static String TaskDataExportWizardPage_File; public static String TaskDataExportWizardPage_Folder; public static String TaskDataExportWizardPage_Folder_Selection; public static String TaskDataExportWizardPage_Please_choose_an_export_destination; public static String TaskDataExportWizardPage_Specify_the_destination_folder_for_task_data; public static String TaskDataImportWizard_confirm_overwrite; public static String TaskDataImportWizard_could_not_be_found; public static String TaskDataImportWizard_existing_task_data_about_to_be_erased_proceed; public static String TaskDataImportWizard_File_not_found; public static String TaskDataImportWizard_Import; public static String TaskDataImportWizard_Import_Error; public static String TaskDataImportWizard_Importing_Data; public static String TaskDataImportWizard_task_data_import_failed; public static String TaskDataImportWizardPage_Restore_tasks_from_history; public static String TaskDataImportWizardPage_Browse_; public static String TaskDataImportWizardPage_From_snapshot; public static String TaskDataImportWizardPage_From_zip_file; public static String TaskDataImportWizardPage_Import_method_backup; public static String TaskDataImportWizardPage_Import_method_zip; public static String TaskDataImportWizardPage_Import_Settings_saved; public static String TaskDataImportWizardPage_Import_Source_zip_file_setting; public static String TaskDataImportWizardPage_Importing_overwrites_current_tasks_and_repositories; public static String TaskDataImportWizardPage__unspecified_; public static String TaskDataImportWizardPage_Zip_File_Selection; public static String AbstractRepositoryQueryPage_A_category_with_this_name_already_exists; public static String AbstractRepositoryQueryPage_Enter_query_parameters; public static String AbstractRepositoryQueryPage_If_attributes_are_blank_or_stale_press_the_Update_button; public static String AbstractRepositoryQueryPage_Please_specify_a_title_for_the_query; public static String AbstractRepositoryQueryPage_A_query_with_this_name_already_exists; public static String AbstractRepositorySettingsPage_Additional_Settings; public static String AbstractRepositorySettingsPage_Anonymous_Access; public static String AbstractRepositorySettingsPage_Authentication_credentials_are_valid; public static String AbstractRepositorySettingsPage_Change_account_settings; public static String AbstractRepositorySettingsPage_Change_Settings; public static String AbstractRepositorySettingsPage_Character_encoding; public static String AbstractRepositorySettingsPage_Create_new_account; public static String AbstractRepositorySettingsPage_Default__; public static String AbstractRepositorySettingsPage_Disconnected; public static String AbstractRepositorySettingsPage_Enable_http_authentication; public static String AbstractRepositorySettingsPage_Enable_proxy_authentication; public static String AbstractRepositorySettingsPage_Enter_a_user_id_Message0; public static String AbstractRepositorySettingsPage_Enter_a_valid_server_url; public static String AbstractRepositorySettingsPage_Http_Authentication; public static String AbstractRepositorySettingsPage_Internal_error_validating_repository; public static String AbstractRepositorySettingsPage_Label_; public static String AbstractRepositorySettingsPage_Other; public static String AbstractRepositorySettingsPage_Password_; public static String AbstractRepositorySettingsPage_Problems_encountered_determining_available_charsets; public static String AbstractRepositorySettingsPage_Proxy_host_address_; public static String AbstractRepositorySettingsPage_Proxy_host_port_; public static String AbstractRepositorySettingsPage_Proxy_Server_Configuration; public static String AbstractRepositorySettingsPage_Repository_already_exists; public static String AbstractRepositorySettingsPage_Repository_is_valid; public static String AbstractRepositorySettingsPage_Repository_url_is_invalid; public static String AbstractRepositorySettingsPage_Save_Password; public static String AbstractRepositorySettingsPage_Server_; public static String AbstractRepositorySettingsPage_Unable_to_authenticate_with_repository; public static String AbstractRepositorySettingsPage_Use_global_Network_Connections_preferences; public static String AbstractRepositorySettingsPage_User_ID_; public static String AbstractRepositorySettingsPage_Validate_Settings; public static String AbstractRepositorySettingsPage_Validating_server_settings; public static String NewTaskWizard_Create_Task; public static String NewTaskWizard_Error_creating_new_task; public static String NewTaskWizard_Failed_to_create_new_task_; public static String NewWebTaskWizard_New_Task; public static String NewWebTaskWizard_This_connector_does_not_provide_a_rich_task_editor_for_creating_tasks; public static String RepositoryQueryWizard_Edit_Repository_Query; public static String TaskAttachmentPage_ATTACHE_CONTEXT; public static String TaskAttachmentPage_Attachment_Details; public static String TaskAttachmentPage_Comment; public static String TaskAttachmentPage_Content_Type; public static String TaskAttachmentPage_Description; public static String TaskAttachmentPage_Enter_a_description; public static String TaskAttachmentPage_Enter_a_file_name; public static String TaskAttachmentPage_File; public static String TaskAttachmentPage_Patch; public static String TaskAttachmentPage_Verify_the_content_type_of_the_attachment; public static String AbstractTaskRepositoryPage_Validation_failed; public static String LocalRepositorySettingsPage_Configure_the_local_repository; public static String LocalRepositorySettingsPage_Local_Repository_Settings; }
7a6127329da30c963fe49519aa1240780ca9ae9f
d94bd92033bde35fd0b7c780e3b25aa4c1fa748a
/src/main/java/projectPages/MainPage.java
16be10ba57b425dfff2a82f772508722312c2f19
[]
no_license
andreidanci/pensionPod
7296c2c47d90356e093a7b75183d0177f7eaa9a9
d9b074f3114d25f675869092fd2ff14bff97c8b7
refs/heads/master
2021-01-20T04:02:04.526798
2017-04-27T17:48:41
2017-04-27T17:48:41
89,624,967
0
0
null
null
null
null
UTF-8
Java
false
false
1,327
java
package projectPages; import com.sdl.selenium.web.SearchType; import com.sdl.selenium.web.WebLocator; import helper.Helper; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; public class MainPage extends Helper { WebDriver driver; private WebLocator loginDropDown = new WebLocator().setCls("login dropdown toggle-controls"); private WebLocator editProfileBtn = new WebLocator().setText("Edit profile "); private WebLocator skipButton = new WebLocator().setCls("introjs-button introjs-skipbutton"); private WebLocator firstNameField = new WebLocator().setAttribute("placeholder", "First name", SearchType.TRIM); private WebLocator middleNameField = new WebLocator().setAttribute("placeholder", "Middle name", SearchType.TRIM); private WebLocator surName = new WebLocator().setAttribute("placeholder", "Surname", SearchType.TRIM); private WebLocator dateOfBirth = new WebLocator().setAttribute("placeholder", "Date of birth", SearchType.TRIM); private WebLocator hasPartner = new WebLocator().setCls("hasPartner"); public void clickDropDownProfile() { loginDropDown.click(); } public void clickEditProfileButton() { editProfileBtn.click(); } public void skipPopup() { skipButton.click(); } }
fb0acb8115f52c9a5b66773ca93b87a5a37ca578
7192ec5938cbae5a28a7f52898244ff2a681f1d4
/Compute.java
5f4822250ac0666f3c5bb06a262ccf00e71614b2
[]
no_license
praneethgujarati/corejava-session5-assignment-3
e4153b381cdbe16dc5f97ac476b1fa7a31431d19
2b4bdc44bf374dc4f50048f792bb5759f91ac60c
refs/heads/master
2020-06-15T10:52:07.964205
2016-12-01T14:31:35
2016-12-01T14:31:35
75,300,513
0
0
null
null
null
null
UTF-8
Java
false
false
4,486
java
/* 5.2 This assignment will test your knowledge on Inheritance and Overriding. */ abstract class Employee { int empid; String empname; int total_leaves=30; double total_salary; abstract void calculate_balance_leaves(); // abstract method abstract boolean avail_leave(int no_of_leaves, char type_of_leave); abstract void calculate_salary(); } class PermanentEmp extends Employee { int paid_leave=10, sick_leave=10, casual_leave=10; //initialized leaves double basic; double hra; double pf; void print_leave_details(){ System.out.println("\nLEAVE DETAILS FOR PERMANENT EMPLOYEES"); System.out.println("====================================="); System.out.println("Employee Id: " + empid); System.out.println("Employee Name: " + empname); System.out.println("Remaining Paid Leaves: " + paid_leave); System.out.println("Remaining Sick Leaves: " + sick_leave); System.out.println("Remaining Casual Leaves: " + casual_leave); } @Override // @Override keyword to override a method inside a class. void calculate_balance_leaves() { System.out.println("\nLEAVE MGMT SYSTEM FOR PERMANENT EMPLOYEES"); System.out.println("========================================="); System.out.print("Enter type of leave (p=Paid, s=Sick, c=Casual): "); char type_of_leave = (System.console().readLine()).charAt(0); System.out.print("Enter no of leaves (upto 10): "); int no_of_leaves = Integer.parseInt(System.console().readLine()); if (avail_leave(no_of_leaves, type_of_leave) == true) { switch (type_of_leave){ // switch logic to select a particular condition. case 'p': paid_leave = paid_leave - no_of_leaves; break; case 's': sick_leave = sick_leave - no_of_leaves; break; case 'c': casual_leave = casual_leave - no_of_leaves; break; } } } @Override boolean avail_leave(int no_of_leaves, char type_of_leave) { switch (type_of_leave){ case 'p': if (no_of_leaves <= paid_leave) return true; break; case 's': if (no_of_leaves <= sick_leave) return true; break; case 'c': if (no_of_leaves <= casual_leave) return true; break; } return false; } @Override void calculate_salary(){ System.out.println("ENTER DETAILS FOR PERMANENT EMPLOYEE"); System.out.println("===================================="); System.out.print("Enter permanent employee id: "); empid = Integer.parseInt(System.console().readLine()); System.out.print("Enter permanent employee name: "); empname = System.console().readLine(); System.out.print("Enter the basic salary: "); basic = Double.parseDouble(System.console().readLine()); hra = .50*basic; pf = .20*basic; total_salary = basic + hra - pf; System.out.println("Total Salary of Employee: " + total_salary); } } class TemporaryEmp extends Employee { // Temporary employee awarded only basic salary. No leaves No HRA No PF. double basic; @Override void calculate_balance_leaves(){ // kept it blank! As no leaves allocated. } @Override boolean avail_leave(int no_of_leaves, char type_of_leave){ return false; // return statement required for methods having return type. } @Override void calculate_salary(){ System.out.println("\nENTER DETAILS FOR TEMPORARY EMPLOYEE"); System.out.println("===================================="); System.out.print("Enter temporary employee id: "); empid = Integer.parseInt(System.console().readLine()); System.out.print("Enter temporary employee name: "); empname = System.console().readLine(); System.out.print("Enter the basic salary: "); basic = Double.parseDouble(System.console().readLine()); total_salary = basic; System.out.println("Total Salary of Employee: " + total_salary); } void print_leave_details(){ System.out.println("\nLEAVE DETAILS FOR TEMPORARY EMPLOYEES"); System.out.println("====================================="); System.out.println("NO LEAVES ALLOCATED FOR TEMPORARY EMPLOYEES!"); } } class Compute { public static void main(String[] args){ PermanentEmp pe = new PermanentEmp(); // Object created with constructor to initialize. pe.calculate_salary(); pe.calculate_balance_leaves(); pe.print_leave_details(); TemporaryEmp te = new TemporaryEmp(); te.calculate_salary(); te.calculate_balance_leaves(); te.print_leave_details(); } }
0597331aec3db1c7dfa074224242763759cc03cd
29ec19d5466cb39494bb79319332f42f32b917ab
/MyBatis2.0/src/main/java/com/dw/mybatis/v2/session/DWSqlsession.java
eaee42a8101e04d4a2611880ae5e6198331dc92d
[]
no_license
ding-wei/mybatis
173608a6c2acf008e9317ebe9ad13eecb2bdb6b1
1b508aa3f8a3c7cef931f44181633cfba98f0045
refs/heads/master
2020-04-06T10:32:16.580932
2018-12-27T07:29:05
2018-12-27T07:29:05
157,383,530
0
0
null
null
null
null
UTF-8
Java
false
false
834
java
package com.dw.mybatis.v2.session; import com.dw.mybatis.v2.config.DWConfiguration; import com.dw.mybatis.v2.config.MapperRepertory; import com.dw.mybatis.v2.executor.DWExecutor; /** * mybatis 主要类 */ public class DWSqlsession { private DWConfiguration configuration ; private DWExecutor executor; public DWConfiguration getConfiguration() { return configuration; } public DWSqlsession(DWConfiguration configuration, DWExecutor executor) { this.configuration = configuration; this.executor = executor; } public <T>T getMapper(Class clazz){ return (T)configuration.getMapper(clazz,this); } public <T>T selectOne(MapperRepertory.MapperData mapperData, String statement) throws Exception { return (T)executor.query(mapperData ,statement); } }
87003810d4d823e81406e3fb3f035bfc39af2ed9
cc8d1e6c9dd5a3134affa1d265c74e1a91094435
/src/main/java/pubUtils/ReflectUtil.java
c9e4b6682029737763999a2fd7f85c20260698ba
[]
no_license
jgswp/wp-generator
206b38af590b6b9bd18630188c1d80b8aa2f5f8f
69fccea5c5e1d46dad59c05c184e614c71a0bdc9
refs/heads/master
2020-04-18T18:47:33.520986
2019-03-31T12:27:40
2019-03-31T12:27:40
167,694,997
5
1
null
2019-01-29T16:12:51
2019-01-26T14:00:37
Java
UTF-8
Java
false
false
1,595
java
package pubUtils; import org.springframework.util.ClassUtils; import bean.YDException; /** * 反射工具类 * * @author cdq */ public class ReflectUtil { /** * 实例化类对象 * * @param className * 类名 * @return 实例对象 * @throws Exception */ public static final Object newInstance(String className) throws Exception { return newInstance(findClass(className)); } /** * 实例化类对象 * * @param aClass * java类 * @return 实例对象 * @throws Exception */ public static final Object newInstance(Class<?> aClass) { try { return aClass.newInstance(); } catch (InstantiationException e) { // 实例化异常 throw new YDException("className"+ aClass.getName()); } catch (IllegalAccessException e) { // 实例化异常 throw new YDException("className"+ aClass.getName()); } } /** * 根据类名(string)找java类 * * @param className * 类名(string) * @return java类 * @throws Exception */ public static final Class<?> findClass(String className) throws Exception { try { return ClassUtils.forName(className.trim(), Thread.currentThread().getContextClassLoader()); } catch (ClassNotFoundException e) { throw new Exception("className"+ className); } } }
0e0193a359331e384c24a9a172eee66902434b06
f6a3b587a4ab1bbeb9261107cb4730000247aeda
/mingrui-shop-parent/mingrui-shop-service/mingrui-shop-service-xxx/src/main/java/com/baidu/shop/mapper/CategoryMapper.java
1df2f46860e291af9f0d8523d1154d8eb0b3fbf4
[]
no_license
liuhaojieeee/2005CRUD
41cbda767549c3ee3bee91a2712936e04f4541fd
a30df2c3ff4c780eb61e6364a1450d750a96f972
refs/heads/main
2023-03-16T00:04:36.800537
2021-03-09T14:10:17
2021-03-09T14:10:17
324,084,815
0
0
null
null
null
null
UTF-8
Java
false
false
687
java
package com.baidu.shop.mapper; import com.baidu.shop.entity.CategoryEntity; import org.apache.ibatis.annotations.Select; import tk.mybatis.mapper.additional.idlist.SelectByIdListMapper; import tk.mybatis.mapper.common.Mapper; import java.util.List; /** * @ClassName CategoryMapper * @Description: TODO * @Author liuhaojie * @Date 2020/12/22 * @Version V1.0 **/ public interface CategoryMapper extends Mapper<CategoryEntity>, SelectByIdListMapper<CategoryEntity,Integer> { @Select(value = "select id,name from tb_category where id in (SELECT category_id from tb_category_brand where brand_id = #{brandId})") List<CategoryEntity> getCategoryByBrandId(Integer brandId); }
2ac38e408b9b3e43e48e2d93154c192c4799203b
dfe4ff747349b645952dd329c706505d96aed44e
/app/src/main/java/android/serialport/api/PrinterClass.java
f00f3691160fb5eca02efbf4c7d4e6b37ff549ba
[]
no_license
adedjoumaaboudalla/abacus-caissier
09718c8014b25c8ccdda0f421a1216d2dbb66b2c
ce3a0ff8af37f15124a76611de6b33bf001b78b3
refs/heads/master
2021-07-03T09:45:03.721515
2017-09-23T22:41:57
2017-09-23T22:41:57
103,922,310
0
0
null
null
null
null
UTF-8
Java
false
false
4,200
java
package android.serialport.api; import android.content.Context; import android.graphics.Bitmap; import java.util.List; public interface PrinterClass { /** * open the device * **/ public boolean open(Context context); /** * close the device * **/ public boolean close(Context context); /** * scan printer * **/ public void scan(); /** * get device * @return */ public List<Device> getDeviceList(); /** * stop scan */ public void stopScan(); /** * connect a printer * **/ public boolean connect(String device); /** * disconnect a printer * **/ public boolean disconnect(); /** * get the connect state * **/ public int getState(); /** * Set state * @param state */ public void setState(int state); public boolean IsOpen(); /** * send data * **/ public boolean write(byte[] bt); /** * Print text * @param textStr * @return */ public boolean printText(String textStr); /** * Print Image * @param bitmap * @return */ public boolean printImage(Bitmap bitmap); /** * Print Unicode * @param textStr * @return */ public boolean printUnicode(String textStr); // Constants that indicate the current connection state public static final int STATE_NONE = 0; // we're doing nothing public static final int STATE_LISTEN = 1; // now listening for incoming // connections public static final int STATE_CONNECTING = 2; // now initiating an outgoing // connection public static final int STATE_CONNECTED = 3; // now connected to a remote // device public static final int LOSE_CONNECT = 4; public static final int FAILED_CONNECT = 5; public static final int SUCCESS_CONNECT = 6; // now connected to a remote public static final int STATE_SCANING = 7;// ɨ��״̬ public static final int STATE_SCAN_STOP = 8; public static final int MESSAGE_STATE_CHANGE = 1; public static final int MESSAGE_READ = 2; public static final int MESSAGE_WRITE = 3; /* * ����ͺ� */ public static final byte[] CMD_CHECK_TYPE=new byte[]{0x1B,0x2B}; /* * ˮƽ�Ʊ� */ public static final byte[] CMD_HORIZONTAL_TAB=new byte[]{0x09}; /* * ���� */ public static final byte[] CMD_NEWLINE=new byte[]{0x0A}; /* * ��ӡ��ǰ�洢���� */ public static final byte[] CMD_PRINT_CURRENT_CONTEXT=new byte[]{0x0D}; /* * ��ʼ����ӡ�� */ public static final byte[] CMD_INIT_PRINTER=new byte[]{0x1B,0x40}; /* * �����»��ߴ�ӡ */ public static final byte[] CMD_UNDERLINE_ON=new byte[]{0x1C,0x2D,0x01}; /* * ��ֹ�»��ߴ�ӡ */ public static final byte[] CMD_UNDERLINE_OFF =new byte[]{0x1C,0x2D,0x00}; /* * ��������ӡ */ public static final byte[] CMD_Blod_ON=new byte[]{0x1B,0x45,0x01}; /* * ��ֹ�����ӡ */ public static final byte[] CMD_BLOD_OFF=new byte[]{0x1B,0x45,0x00}; /* * ѡ�����壺ASCII(12*24) ���֣�24*24�� */ public static final byte[] CMD_SET_FONT_24x24=new byte[]{0x1B,0x4D,0x00}; /* * ѡ�����壺ASCII(8*16) ���֣�16*16�� */ public static final byte[] CMD_SET_FONT_16x16=new byte[]{0x1B,0x4D,0x01}; /* * �ַ��� ���Ŵ� */ public static final byte[] CMD_FONTSIZE_NORMAL=new byte[]{0x1D,0x21,0x00}; /* * �ַ�2���ߣ�����Ŵ� */ public static final byte[] CMD_FONTSIZE_DOUBLE_HIGH=new byte[]{0x1D,0x21,0x01}; /* * �ַ�2���?����Ŵ� */ public static final byte[] CMD_FONTSIZE_DOUBLE_WIDTH=new byte[]{0x1D,0x21,0x10}; /* * �ַ�2������Ŵ� */ public static final byte[] CMD_FONTSIZE_DOUBLE=new byte[]{0x1D,0x21,0x11}; /* * ����� */ public static final byte[] CMD_ALIGN_LEFT=new byte[]{0x1B,0x61,0x00}; /* * ���ж��� */ public static final byte[] CMD_ALIGN_MIDDLE=new byte[]{0x1B,0x61,0x01}; /* * ���Ҷ��� */ public static final byte[] CMD_ALIGN_RIGHT=new byte[]{0x1B,0x61,0x02}; /* * ҳ��ֽ/�ڱ궨λ */ public static final byte[] CMD_BLACK_LOCATION=new byte[]{0x0C}; }
2dc9b91e50dee18ae8ae590b30f898c78972dc2d
995a191f5b84d3f8687e9c4ad45084ee7f5f9a97
/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/data/TaskDataBinderImpl.java
646e950c30de171d48867cbf185833456eae63cb
[ "Apache-2.0" ]
permissive
tlnd-fcurvat/syncope
e4634742121d8b28415e83a55bf9699b085cf885
84a1ae0d8a0bd27bc95aafdc03462951198dc0b4
refs/heads/master
2021-06-29T12:55:54.142342
2017-09-20T12:01:41
2017-09-20T12:10:41
104,216,759
0
0
null
2017-09-20T13:08:58
2017-09-20T13:08:58
null
UTF-8
Java
false
false
17,254
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.syncope.core.provisioning.java.data; import java.util.stream.Collectors; import org.apache.syncope.core.provisioning.api.data.TaskDataBinder; import org.apache.commons.lang3.StringUtils; import org.apache.syncope.common.lib.SyncopeClientException; import org.apache.syncope.common.lib.to.AbstractProvisioningTaskTO; import org.apache.syncope.common.lib.to.AbstractTaskTO; import org.apache.syncope.common.lib.to.PropagationTaskTO; import org.apache.syncope.common.lib.to.PushTaskTO; import org.apache.syncope.common.lib.to.SchedTaskTO; import org.apache.syncope.common.lib.to.PullTaskTO; import org.apache.syncope.common.lib.to.ExecTO; import org.apache.syncope.common.lib.to.NotificationTaskTO; import org.apache.syncope.common.lib.types.ClientExceptionType; import org.apache.syncope.common.lib.types.JobType; import org.apache.syncope.common.lib.types.MatchingRule; import org.apache.syncope.common.lib.types.TaskType; import org.apache.syncope.common.lib.types.UnmatchingRule; import org.apache.syncope.core.provisioning.java.utils.TemplateUtils; import org.apache.syncope.core.persistence.api.dao.ExternalResourceDAO; import org.apache.syncope.core.persistence.api.dao.NotFoundException; import org.apache.syncope.core.persistence.api.dao.TaskExecDAO; import org.apache.syncope.core.persistence.api.entity.task.NotificationTask; import org.apache.syncope.core.persistence.api.entity.task.PropagationTask; import org.apache.syncope.core.persistence.api.entity.task.ProvisioningTask; import org.apache.syncope.core.persistence.api.entity.task.PushTask; import org.apache.syncope.core.persistence.api.entity.task.SchedTask; import org.apache.syncope.core.persistence.api.entity.task.Task; import org.apache.syncope.core.persistence.api.entity.task.TaskExec; import org.apache.syncope.core.persistence.api.entity.task.TaskUtils; import org.apache.syncope.core.provisioning.api.job.JobNamer; import org.apache.syncope.core.spring.BeanUtils; import org.apache.syncope.core.persistence.api.dao.AnyTypeDAO; import org.apache.syncope.core.persistence.api.dao.RealmDAO; import org.apache.syncope.core.persistence.api.entity.AnyType; import org.apache.syncope.core.persistence.api.entity.EntityFactory; import org.apache.syncope.core.persistence.api.entity.resource.ExternalResource; import org.apache.syncope.core.persistence.api.entity.task.AnyTemplatePullTask; import org.apache.syncope.core.persistence.api.entity.task.PullTask; import org.apache.syncope.core.provisioning.java.pushpull.PushJobDelegate; import org.apache.syncope.core.provisioning.java.pushpull.PullJobDelegate; import org.quartz.Scheduler; import org.quartz.SchedulerException; import org.quartz.Trigger; import org.quartz.TriggerKey; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.quartz.SchedulerFactoryBean; import org.springframework.stereotype.Component; import org.apache.syncope.core.persistence.api.entity.task.PushTaskAnyFilter; import org.apache.syncope.core.persistence.api.entity.task.TaskUtilsFactory; @Component public class TaskDataBinderImpl implements TaskDataBinder { private static final Logger LOG = LoggerFactory.getLogger(TaskDataBinder.class); private static final String[] IGNORE_TASK_PROPERTIES = { "destinationRealm", "templates", "filters", "executions", "resource", "matchingRule", "unmatchingRule", "notification" }; private static final String[] IGNORE_TASK_EXECUTION_PROPERTIES = { "key", "task" }; @Autowired private RealmDAO realmDAO; @Autowired private ExternalResourceDAO resourceDAO; @Autowired private TaskExecDAO taskExecDAO; @Autowired private AnyTypeDAO anyTypeDAO; @Autowired private EntityFactory entityFactory; @Autowired private TemplateUtils templateUtils; @Autowired private SchedulerFactoryBean scheduler; @Autowired private TaskUtilsFactory taskUtilsFactory; private void fill(final ProvisioningTask task, final AbstractProvisioningTaskTO taskTO) { if (task instanceof PushTask && taskTO instanceof PushTaskTO) { PushTask pushTask = (PushTask) task; final PushTaskTO pushTaskTO = (PushTaskTO) taskTO; pushTask.setJobDelegateClassName(PushJobDelegate.class.getName()); pushTask.setSourceRealm(realmDAO.findByFullPath(pushTaskTO.getSourceRealm())); pushTask.setMatchingRule(pushTaskTO.getMatchingRule() == null ? MatchingRule.LINK : pushTaskTO.getMatchingRule()); pushTask.setUnmatchingRule(pushTaskTO.getUnmatchingRule() == null ? UnmatchingRule.ASSIGN : pushTaskTO.getUnmatchingRule()); pushTaskTO.getFilters().entrySet().forEach(entry -> { AnyType type = anyTypeDAO.find(entry.getKey()); if (type == null) { LOG.debug("Invalid AnyType {} specified, ignoring...", entry.getKey()); } else { PushTaskAnyFilter filter = pushTask.getFilter(type).orElse(null); if (filter == null) { filter = entityFactory.newEntity(PushTaskAnyFilter.class); filter.setAnyType(anyTypeDAO.find(entry.getKey())); filter.setPushTask(pushTask); pushTask.add(filter); } filter.setFIQLCond(entry.getValue()); } }); // remove all filters not contained in the TO pushTask.getFilters().removeAll( pushTask.getFilters().stream().filter(anyFilter -> !pushTaskTO.getFilters().containsKey(anyFilter.getAnyType().getKey())). collect(Collectors.toList())); } else if (task instanceof PullTask && taskTO instanceof PullTaskTO) { PullTask pullTask = (PullTask) task; final PullTaskTO pullTaskTO = (PullTaskTO) taskTO; pullTask.setPullMode(pullTaskTO.getPullMode()); pullTask.setReconciliationFilterBuilderClassName(pullTaskTO.getReconciliationFilterBuilderClassName()); pullTask.setDestinationRealm(realmDAO.findByFullPath(pullTaskTO.getDestinationRealm())); pullTask.setJobDelegateClassName(PullJobDelegate.class.getName()); pullTask.setMatchingRule(pullTaskTO.getMatchingRule() == null ? MatchingRule.UPDATE : pullTaskTO.getMatchingRule()); pullTask.setUnmatchingRule(pullTaskTO.getUnmatchingRule() == null ? UnmatchingRule.PROVISION : pullTaskTO.getUnmatchingRule()); // validate JEXL expressions from templates and proceed if fine templateUtils.check(pullTaskTO.getTemplates(), ClientExceptionType.InvalidPullTask); pullTaskTO.getTemplates().entrySet().forEach(entry -> { AnyType type = anyTypeDAO.find(entry.getKey()); if (type == null) { LOG.debug("Invalid AnyType {} specified, ignoring...", entry.getKey()); } else { AnyTemplatePullTask anyTemplate = pullTask.getTemplate(type).orElse(null); if (anyTemplate == null) { anyTemplate = entityFactory.newEntity(AnyTemplatePullTask.class); anyTemplate.setAnyType(type); anyTemplate.setPullTask(pullTask); pullTask.add(anyTemplate); } anyTemplate.set(entry.getValue()); } }); // remove all templates not contained in the TO pullTask.getTemplates().removeAll( pullTask.getTemplates().stream().filter(anyTemplate -> !pullTaskTO.getTemplates().containsKey(anyTemplate.getAnyType().getKey())). collect(Collectors.toList())); } // 3. fill the remaining fields task.setPerformCreate(taskTO.isPerformCreate()); task.setPerformUpdate(taskTO.isPerformUpdate()); task.setPerformDelete(taskTO.isPerformDelete()); task.setSyncStatus(taskTO.isSyncStatus()); task.getActionsClassNames().clear(); task.getActionsClassNames().addAll(taskTO.getActionsClassNames()); } @Override public SchedTask createSchedTask(final SchedTaskTO taskTO, final TaskUtils taskUtils) { Class<? extends AbstractTaskTO> taskTOClass = taskUtils.taskTOClass(); if (taskTOClass == null || !taskTOClass.equals(taskTO.getClass())) { throw new IllegalArgumentException(String.format("Expected %s, found %s", taskTOClass, taskTO.getClass())); } SchedTask task = taskUtils.newTask(); task.setStartAt(taskTO.getStartAt()); task.setCronExpression(taskTO.getCronExpression()); task.setName(taskTO.getName()); task.setDescription(taskTO.getDescription()); task.setActive(taskTO.isActive()); if (taskUtils.getType() == TaskType.SCHEDULED) { task.setJobDelegateClassName(taskTO.getJobDelegateClassName()); } else if (taskTO instanceof AbstractProvisioningTaskTO) { AbstractProvisioningTaskTO provisioningTaskTO = (AbstractProvisioningTaskTO) taskTO; ExternalResource resource = resourceDAO.find(provisioningTaskTO.getResource()); if (resource == null) { throw new NotFoundException("Resource " + provisioningTaskTO.getResource()); } ((ProvisioningTask) task).setResource(resource); fill((ProvisioningTask) task, provisioningTaskTO); } return task; } @Override public void updateSchedTask(final SchedTask task, final SchedTaskTO taskTO, final TaskUtils taskUtils) { Class<? extends AbstractTaskTO> taskTOClass = taskUtils.taskTOClass(); if (taskTOClass == null || !taskTOClass.equals(taskTO.getClass())) { throw new IllegalArgumentException(String.format("Expected %s, found %s", taskTOClass, taskTO.getClass())); } if (StringUtils.isBlank(taskTO.getName())) { SyncopeClientException sce = SyncopeClientException.build(ClientExceptionType.RequiredValuesMissing); sce.getElements().add("name"); throw sce; } task.setName(taskTO.getName()); task.setDescription(taskTO.getDescription()); task.setCronExpression(taskTO.getCronExpression()); task.setActive(taskTO.isActive()); if (task instanceof ProvisioningTask) { fill((ProvisioningTask) task, (AbstractProvisioningTaskTO) taskTO); } } @Override public String buildRefDesc(final Task task) { return taskUtilsFactory.getInstance(task).getType().name() + " " + "Task " + task.getKey() + " " + (task instanceof SchedTask ? SchedTask.class.cast(task).getName() : task instanceof PropagationTask ? PropagationTask.class.cast(task).getConnObjectKey() : StringUtils.EMPTY); } @Override public ExecTO getExecTO(final TaskExec execution) { ExecTO execTO = new ExecTO(); BeanUtils.copyProperties(execution, execTO, IGNORE_TASK_EXECUTION_PROPERTIES); if (execution.getKey() != null) { execTO.setKey(execution.getKey()); } if (execution.getTask() != null && execution.getTask().getKey() != null) { execTO.setJobType(JobType.TASK); execTO.setRefKey(execution.getTask().getKey()); execTO.setRefDesc(buildRefDesc(execution.getTask())); } return execTO; } private void setExecTime(final SchedTaskTO taskTO, final Task task) { taskTO.setLastExec(taskTO.getStart()); String triggerName = JobNamer.getTriggerName(JobNamer.getJobKey(task).getName()); try { Trigger trigger = scheduler.getScheduler().getTrigger(new TriggerKey(triggerName, Scheduler.DEFAULT_GROUP)); if (trigger != null) { taskTO.setLastExec(trigger.getPreviousFireTime()); taskTO.setNextExec(trigger.getNextFireTime()); } } catch (SchedulerException e) { LOG.warn("While trying to get to " + triggerName, e); } } @Override public <T extends AbstractTaskTO> T getTaskTO(final Task task, final TaskUtils taskUtils, final boolean details) { T taskTO = taskUtils.newTaskTO(); BeanUtils.copyProperties(task, taskTO, IGNORE_TASK_PROPERTIES); TaskExec latestExec = taskExecDAO.findLatestStarted(task); if (latestExec == null) { taskTO.setLatestExecStatus(StringUtils.EMPTY); } else { taskTO.setLatestExecStatus(latestExec.getStatus()); taskTO.setStart(latestExec.getStart()); taskTO.setEnd(latestExec.getEnd()); } if (details) { task.getExecs().stream(). filter(execution -> execution != null). forEachOrdered(execution -> taskTO.getExecutions().add(getExecTO(execution))); } switch (taskUtils.getType()) { case PROPAGATION: ((PropagationTaskTO) taskTO).setAnyTypeKind(((PropagationTask) task).getAnyTypeKind()); ((PropagationTaskTO) taskTO).setEntityKey(((PropagationTask) task).getEntityKey()); ((PropagationTaskTO) taskTO).setResource(((PropagationTask) task).getResource().getKey()); ((PropagationTaskTO) taskTO).setAttributes(((PropagationTask) task).getSerializedAttributes()); break; case SCHEDULED: setExecTime((SchedTaskTO) taskTO, task); break; case PULL: setExecTime((SchedTaskTO) taskTO, task); ((PullTaskTO) taskTO).setDestinationRealm(((PullTask) task).getDestinatioRealm().getFullPath()); ((PullTaskTO) taskTO).setResource(((PullTask) task).getResource().getKey()); ((PullTaskTO) taskTO).setMatchingRule(((PullTask) task).getMatchingRule() == null ? MatchingRule.UPDATE : ((PullTask) task).getMatchingRule()); ((PullTaskTO) taskTO).setUnmatchingRule(((PullTask) task).getUnmatchingRule() == null ? UnmatchingRule.PROVISION : ((PullTask) task).getUnmatchingRule()); ((PullTask) task).getTemplates().forEach(template -> { ((PullTaskTO) taskTO).getTemplates().put(template.getAnyType().getKey(), template.get()); }); break; case PUSH: setExecTime((SchedTaskTO) taskTO, task); ((PushTaskTO) taskTO).setSourceRealm(((PushTask) task).getSourceRealm().getFullPath()); ((PushTaskTO) taskTO).setResource(((PushTask) task).getResource().getKey()); ((PushTaskTO) taskTO).setMatchingRule(((PushTask) task).getMatchingRule() == null ? MatchingRule.LINK : ((PushTask) task).getMatchingRule()); ((PushTaskTO) taskTO).setUnmatchingRule(((PushTask) task).getUnmatchingRule() == null ? UnmatchingRule.ASSIGN : ((PushTask) task).getUnmatchingRule()); ((PushTask) task).getFilters().forEach(filter -> { ((PushTaskTO) taskTO).getFilters().put(filter.getAnyType().getKey(), filter.getFIQLCond()); }); break; case NOTIFICATION: ((NotificationTaskTO) taskTO).setNotification(((NotificationTask) task).getNotification().getKey()); ((NotificationTaskTO) taskTO).setAnyTypeKind(((NotificationTask) task).getAnyTypeKind()); ((NotificationTaskTO) taskTO).setEntityKey(((NotificationTask) task).getEntityKey()); if (((NotificationTask) task).isExecuted() && StringUtils.isBlank(taskTO.getLatestExecStatus())) { taskTO.setLatestExecStatus("[EXECUTED]"); } break; default: } return taskTO; } }
b197c9ed37a476d57bf9c1d57ea8c5ed837705c9
837205a72b567dfac46d7bbf1ba98cffe202e005
/javaStudy/src/ArrayList/ArrayList.java
d362577c95f5d34388620e1dc4100b78300299ca
[]
no_license
sungkong/Java
e110d82a37767aa21e04b383dc66f9e4f7ebfdaf
efdc2d239b319a29bb613fd8fc3c8b8b3d466567
refs/heads/master
2023-08-23T10:54:08.725302
2021-11-07T11:42:41
2021-11-07T11:42:41
368,877,573
0
0
null
null
null
null
UTF-8
Java
false
false
1,195
java
package ArrayList; public class ArrayList { public static void main(String[] args) { Book[] library = new Book[5]; Book[] copyLibaray = new Book[5]; library[0] = new Book("태백산맥1", "조정래"); library[1] = new Book("태백산맥2", "조정래"); library[2] = new Book("태백산맥3", "조정래"); library[3] = new Book("태백산맥4", "조정래"); library[4] = new Book("태백산맥5", "조정래"); System.arraycopy(library, 0, copyLibaray, 0, 5); // (원본, 원본 시작, 복사본, 복사 시작, 읽어올 데이터 개수), 객체의 주소를 그대로 복사한다. 둘 중 어느하나라도 데이터를 변경하면 둘 다 바뀐다(주소가 같아서) System.out.println("======copy library========="); for( Book book : copyLibaray ) { book.showInfo(); } library[0].setTitle("나목"); library[0].setAuthor("박완서"); copyLibaray[0].setTitle("김밥"); copyLibaray[0].setAuthor("호호"); System.out.println("======library========="); for( Book book : library) { book.showInfo(); } System.out.println("======copy library========="); for( Book book : copyLibaray) { book.showInfo(); } } }
c4b904b33b0881778937db90f0741f07cbcd6919
3f29a2bd979488fc1bd78cc182e102e98d18784e
/cloud-providerzk-payment8004/src/main/java/com/lht/springcloud/ZkPaymentMain8004.java
c217eeaae820b9507a7f0dd44d9003f2355a7cd1
[]
no_license
NanoSca1pel/MyCloud2020
e27f0619230c39ddaa765a68962a90848ccd98f3
ef6c70ff4aec294f0f69b6277f0a594034f39709
refs/heads/master
2022-12-25T23:38:25.563893
2020-10-09T00:57:30
2020-10-09T00:57:30
291,933,712
0
0
null
null
null
null
UTF-8
Java
false
false
688
java
package com.lht.springcloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; /** * @author lhtao * @date 2020/9/10 9:59 */ @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) @EnableDiscoveryClient //开启服务发现功能,用于向consul或者zookeeper作为注册中心时注册服务 public class ZkPaymentMain8004 { public static void main(String[] args){ SpringApplication.run(ZkPaymentMain8004.class, args); } }
[ "luhongtao123456" ]
luhongtao123456
b4162d57e4d6cd3868869f951a97cd904cb9c230
6c0279761f82afb4c917cd0cd34fe68770932af8
/src/main/java/com/todd/huihuimall/util/StreamUtil.java
1508499f64bd545b16ded0d76cacfe38a66d1170
[]
no_license
Tuhuaqing/huihuimall
48620aed49b11c92a28e34fdf59a3278d87ddc63
8471a5b19834607b9ca734f7da94a00a49e89ea9
refs/heads/main
2023-01-06T17:03:30.780973
2020-11-06T01:56:23
2020-11-06T01:56:23
309,745,032
0
0
null
null
null
null
UTF-8
Java
false
false
778
java
package com.todd.huihuimall.util; import com.todd.huihuimall.domain.ProductInfo; import java.util.List; import java.util.function.Predicate; import java.util.stream.Collectors; import java.util.stream.Stream; public class StreamUtil { // 按搜索关键字对商品筛选. public static List<ProductInfo> FilterProductInfoLikeword(Stream<ProductInfo> stream, String likeword) { return stream.filter(item -> item.getProductName().contains(likeword)).collect(Collectors.toList()); } // 分页方法 public static List<ProductInfo> toPageList(List<ProductInfo> productInfos,Integer currentPage,Integer pageSize,Integer count){ return productInfos.stream().skip((currentPage-1)*pageSize).limit(pageSize).collect(Collectors.toList()); } }
2e00b5289c123b4320accd4694237e975de5f416
997d2bac220050eda2ad492decf0dfd097800a19
/day14-code/src/com/itheima/ListAndSet/demo05Collections/Person.java
ad7c3b180a4762626ce87b4fe323fac051816ea7
[]
no_license
WXCD-LYY/lyynb
87c6fabcd7f37cea0ded31f760ec374d67844671
84f2a20c7f366cb1f55db2432cf8377a9170f45a
refs/heads/master
2023-03-05T14:30:06.936278
2021-02-06T05:27:53
2021-02-06T05:27:53
336,455,074
0
0
null
null
null
null
UTF-8
Java
false
false
1,052
java
package com.itheima.ListAndSet.demo05Collections; public class Person implements Comparable<Person>{ private String name; private int age; public Person() { } public Person(String name, int age) { this.name = name; this.age = age; } @Override public String toString() { return "Person{" + "name='" + name + '\'' + ", age=" + age + '}'; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } // 重写排序的规则 @Override public int compareTo(Person o) { // return 0; // 认为元素都是相同的 // 自定义比较的规则,比较两个人的年龄(this,参数Person) return this.getAge() - o.getAge(); // 年龄升序排序 // return o.getAge() - this.getAge(); // 年龄降序排序 } }
d2a8c4f6f3e0c9231e45b3ed9d522501f8707f24
aa86101aad1910e32737bf5a0544cad576430f1d
/Tri.java
6365bc7c95bb593d4b837a8c2ccf7e562305b92e
[]
no_license
Hongyanlee0614/kattis_solutions
b9577338926f3f22de8b663cc71aff1360055637
a1c00ad1b2ce984e930a8df4245790ff7ff9bf29
refs/heads/main
2023-01-07T13:01:58.359197
2020-10-23T22:44:54
2020-10-23T22:44:54
306,760,760
0
0
null
null
null
null
UTF-8
Java
false
false
1,800
java
package kattis; import java.util.Scanner; public class Tri { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); int c=sc.nextInt(); if(c==b+a){ System.out.println(a+"+"+b+"="+c); } else if(c==b-a){ System.out.println(a+"="+b+"-"+c); } else if(c==b*a){ System.out.println(a+"*"+b+"="+c); } else if(c==b/a){ System.out.println(a+"="+b+"/"+c); } else if(c==a-b){ System.out.println(a+"-"+b+"="+c); } else if(c==a/b){ System.out.println(a+"/"+b+"="+c); } else if(b==c+a){ System.out.println(a+"="+b+"-"+c); } else if(b==c-a){ System.out.println(a+"="+c+"-"+b); } else if(b==c*a){ System.out.println(a+"="+b+"/"+c); } else if(b==c/a){ System.out.println(a+"="+c+"/"+b); } else if(b==a-c){ System.out.println(a+"="+b+"+"+c); } else if(b==a/c){ System.out.println(a+"="+b+"*"+c); } else if(a==b+c){ System.out.println(a+"="+b+"+"+c); } else if(a==b-c){ System.out.println(a+"="+b+"-"+c); } else if(a==b*c){ System.out.println(a+"="+b+"*"+c); } else if(a==b/c){ System.out.println(a+"="+b+"/"+c); } else if(a==c-b){ System.out.println(a+"="+c+"-"+b); } else if(a==c/b){ System.out.println(a+"="+c+"/"+b); } } }