blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
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
listlengths
1
1
author_id
stringlengths
0
313
7c3c3dcd4ddba61ec35f3f4c956b79df5a3352fe
0fae87039c2a61da44e146db3138438fcf1f2eee
/dubbo-example-parent/06-consumer-timeout/src/main/java/com/yw/dubbo/example/ConsumerRun.java
4541bc3682bcdbe6722af84a5a18dfb3f96e0257
[]
no_license
shouwangyw/dubbo
81dfaee79dc012b80ebaa3d8e8ee10c3e69fae4b
c66d51f0b403ca75abe3ce862d5e7f4ef096f29d
refs/heads/main
2023-06-04T03:01:49.551562
2021-06-30T04:10:08
2021-06-30T04:10:08
372,539,710
0
0
null
null
null
null
UTF-8
Java
false
false
613
java
package com.yw.dubbo.example; import com.yw.dubbo.example.service.UserService; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * 消费者启动类 * * @author yangwei */ public class ConsumerRun { public static void main(String[] args) { ApplicationContext ac = new ClassPathXmlApplicationContext("spring-consumer.xml"); UserService service = (UserService) ac.getBean("userService"); String username = service.getUsernameById(3); System.out.println("username = " +username); } }
[ "897900564@qq.com" ]
897900564@qq.com
7012648e99cdfc6ed439856cff27dec6bda573b7
851b63589b2da050fc100c5fc8dc093fb6c5d64d
/app/src/main/java/com/sydehealth/sydehealth/main/Email_group_activity.java
04913e5c60a0ba3b36af580b6d6901726778cd29
[]
no_license
GauravRana/sh
6801012ff8d8fcfb363191198253fea3966c1bc0
69db3e880dd8c3e0daf551f2f80f4cd6640bf9b1
refs/heads/master
2020-05-04T21:40:11.693344
2019-04-04T11:31:47
2019-04-04T11:31:47
179,484,479
0
0
null
null
null
null
UTF-8
Java
false
false
1,057
java
package com.sydehealth.sydehealth.main; import android.content.Intent; import android.os.Bundle; import com.sydehealth.sydehealth.utility.TabGroupActivity; /** * Created by POPLIFY on 12/22/2016. */ public class Email_group_activity extends TabGroupActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent edit = new Intent(Email_group_activity.this, EmailActivity.class); edit.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); startActivity(edit); } // @Override // public void onBackPressed() { // // // } // // @Override // protected void onPause() { // super.onPause(); // // ActivityManager activityManager = (ActivityManager) getApplicationContext() // .getSystemService(Context.ACTIVITY_SERVICE); // activityManager.moveTaskToFront(getTaskId(), 0); // } @Override public void onBackPressed() { finishFromChild(getParent()); super.onBackPressed(); } }
[ "makeme9090@gmail.com" ]
makeme9090@gmail.com
295906d5532813561444a8f157b72f1ee61df47f
f94b1596727cf5eedec7af8fc85116d37f5832fd
/PuntoVenta_205056_205857/PuntoVenta_205056_205857/src/repositories/CategoriasRepository.java
15d723d3ef1152d6d0d38f94a2d711bae0c10412
[]
no_license
FernandaM27/PuntoVenta
d26c51d4af34f997f61dd2bc7df0ab5d0ae51fac
28623a367f6a8cf1717ad093fca8e9f653fbb8aa
refs/heads/main
2023-04-28T05:33:07.237173
2021-05-15T22:32:00
2021-05-15T22:32:00
367,741,435
0
0
null
null
null
null
UTF-8
Java
false
false
3,913
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 repositories; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.Query; import javax.persistence.criteria.CriteriaQuery; import objetosNegocio.Categoria; /** * * @author Dany */ public class CategoriasRepository extends BaseRepository<Categoria> { @Override public boolean guardar(Categoria categoria) { EntityManager entityManager = this.createEntityManager(); entityManager.getTransaction().begin(); entityManager.persist(categoria); entityManager.getTransaction().commit(); return true; } @Override public boolean eliminar(int id) { EntityManager entityManager = this.createEntityManager(); entityManager.getTransaction().begin(); Categoria categoria = entityManager.find(Categoria.class, id); if (categoria != null) { entityManager.remove(categoria); entityManager.getTransaction().commit(); return true; } entityManager.getTransaction().commit(); return false; } @Override public boolean actualizar(Categoria categoriaNueva) { EntityManager entityManager = this.createEntityManager(); entityManager.getTransaction().begin(); Categoria categoria = entityManager.find(Categoria.class,categoriaNueva.getIdcategoria()); if (categoria != null) { categoria.setNombre(categoriaNueva.getNombre()); categoria.setDescripcion(categoriaNueva.getDescripcion()); categoria.setProductos(categoriaNueva.getProductos()); entityManager.merge(categoria); entityManager.getTransaction().commit(); return true; } entityManager.getTransaction().commit(); return false; } @Override public Categoria buscarporID(int id) { EntityManager entityManager = this.createEntityManager(); entityManager.getTransaction().begin(); Categoria categoria = entityManager.find(Categoria.class, id); entityManager.getTransaction().commit(); return categoria; } @Override public List<Categoria> buscarTodas(String textoBusqueda) { EntityManager entityManager = this.createEntityManager(); entityManager.getTransaction().begin(); CriteriaQuery criteria = entityManager.getCriteriaBuilder().createQuery(); criteria.select(criteria.from(Categoria.class)); Query query = entityManager.createQuery(criteria); List<Categoria> categorias = query.getResultList(); List<Categoria> categoriasTexto = new ArrayList<>(); entityManager.getTransaction().commit(); return categorias; } public List<Categoria> buscarLike(String busqueda) { ArrayList<Categoria> listaCategorias = new ArrayList<>(); EntityManager entityManager = this.createEntityManager(); entityManager.getTransaction().begin(); String sql; if (!busqueda.isEmpty()) { if (busqueda.matches("^[0-9]*$")) { sql = "SELECT p FROM Categoria p WHERE p.nombre LIKE '" + busqueda + "%' OR p.idcategoria=" + busqueda + ""; } else { sql = "SELECT p FROM Categoria p WHERE p.nombre LIKE '" + busqueda + "%'"; } } else { sql = "SELECT p FROM Categoria p WHERE p.nombre LIKE '" + busqueda + "%'"; } Query query1 = entityManager.createQuery(sql); List<Categoria> list1 = (List<Categoria>) query1.getResultList(); return list1; } }
[ "fermirandavega1@gmail.com" ]
fermirandavega1@gmail.com
16863ab72823df7688c1a755ca743b6dbb68b7af
59088cd2e7a52afc7dd3ee1c2d980b90e2d8edb7
/bookcode/javaproject/ThinkInJavaNote/src/main/java/cn/danao/code/collection/HashMapTest.java
4f987b5b7bd1435458f223948285ff4b8ff90d22
[ "Apache-2.0" ]
permissive
zhangymPerson/Think-in-java-note
83c6954af77c967a8add0749e505f8160f48b30c
b5b44109be25e0288c719d7817723667451add50
refs/heads/master
2023-05-12T06:56:15.418645
2022-05-14T02:18:59
2022-05-14T02:18:59
196,109,615
0
0
Apache-2.0
2023-05-05T02:24:32
2019-07-10T01:39:21
Java
UTF-8
Java
false
false
3,309
java
package cn.danao.code.collection; import org.openjdk.jmh.annotations.*; import org.openjdk.jmh.runner.Runner; import org.openjdk.jmh.runner.RunnerException; import org.openjdk.jmh.runner.options.Options; import org.openjdk.jmh.runner.options.OptionsBuilder; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.concurrent.TimeUnit; /** * date 2020/6/24 10:41 <br/> * description class <br/> * * @author danao * @version 1.0 * @since 1.0 */ @BenchmarkMode(Mode.Throughput) // 测试类型:吞吐量 @OutputTimeUnit(TimeUnit.MILLISECONDS) @Warmup(iterations = 2, time = 1, timeUnit = TimeUnit.SECONDS) // 预热 2 轮,每次 1s @Measurement(iterations = 5, time = 3, timeUnit = TimeUnit.SECONDS) // 测试 5 轮,每次 3s @Fork(1) // fork 1 个线程 @State(Scope.Thread) // 每个测试线程一个实例 public class HashMapTest { static Map<Integer, String> map = new HashMap() {{ // 添加数据 for (int i = 0; i < 10; i++) { put(i, "val:" + i); } }}; public static void main(String[] args) throws RunnerException { // 启动基准测试 Options opt = new OptionsBuilder() .include(HashMapTest.class.getSimpleName()) // 要导入的测试类 .output("D:/test/jmh-map.log") // 输出测试结果的文件 .build(); new Runner(opt).run(); // 执行测试 } @Benchmark public void entrySet() { // 遍历 Iterator<Map.Entry<Integer, String>> iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<Integer, String> entry = iterator.next(); System.out.println(entry.getKey()); System.out.println(entry.getValue()); } } @Benchmark public void keySet() { // 遍历 Iterator<Integer> iterator = map.keySet().iterator(); while (iterator.hasNext()) { Integer key = iterator.next(); System.out.println(key); System.out.println(map.get(key)); } } @Benchmark public void forEachEntrySet() { // 遍历 for (Map.Entry<Integer, String> entry : map.entrySet()) { System.out.println(entry.getKey()); System.out.println(entry.getValue()); } } @Benchmark public void forEachKeySet() { // 遍历 for (Integer key : map.keySet()) { System.out.println(key); System.out.println(map.get(key)); } } @Benchmark public void lambda() { // 遍历 map.forEach((key, value) -> { System.out.println(key); System.out.println(value); }); } @Benchmark public void streamApi() { // 单线程遍历 map.entrySet().stream().forEach((entry) -> { System.out.println(entry.getKey()); System.out.println(entry.getValue()); }); } @Benchmark public void parallelStreamApi() { // 多线程遍历 //lambda多线程下确实速度提升明显 map.entrySet().parallelStream().forEach((entry) -> { System.out.println(entry.getKey()); System.out.println(entry.getValue()); }); } }
[ "zhangyanmingjiayou@163.com" ]
zhangyanmingjiayou@163.com
d2535959405bd25d0a2093674b46acdc2a3d6c86
07e8af3a21d405eea7ff76995124c0a6cb89c907
/app/src/main/java/com/dealwala/main/dealwala/main/MyAccountFragment.java
53ead3a2174297bb3d2db92e6b9362dab7db4ca0
[]
no_license
shoppinDev/Shoppin-Customer-2.0
d18b3609e223eae6bbf57941dcc6005f383b315b
e5af3a6f9271ef6a662eabd002f965a84ac20557
refs/heads/master
2020-08-05T14:49:56.099205
2016-09-14T06:03:30
2016-09-14T06:03:30
67,278,494
0
0
null
null
null
null
UTF-8
Java
false
false
19,498
java
package com.dealwala.main.dealwala.main; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.AsyncTask; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.text.InputType; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.EditText; import android.widget.ImageButton; import android.widget.TextView; import android.widget.Toast; import com.afollestad.materialdialogs.DialogAction; import com.afollestad.materialdialogs.MaterialDialog; import com.dealwala.main.dealwala.R; import com.dealwala.main.dealwala.util.JSONParser; import com.dealwala.main.dealwala.util.ModuleClass; import org.apache.http.NameValuePair; import org.apache.http.message.BasicNameValuePair; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; /** * A simple {@link Fragment} subclass. * Activities that contain this fragment must implement the * {@link MyAccountFragment.OnFragmentInteractionListener} interface * to handle interaction events. * Use the {@link MyAccountFragment#newInstance} factory method to * create an instance of this fragment. */ public class MyAccountFragment extends Fragment implements View.OnClickListener { // TODO: Rename parameter arguments, choose names that match // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER private static final String ARG_PARAM1 = "param1"; private static final String ARG_PARAM2 = "param2"; // TODO: Rename and change types of parameters private String mParam1; private String mParam2; private OnFragmentInteractionListener mListener; TextView tvEmail,tvMobile,tvName; EditText etName,etMobile; ImageButton imgBtnEdit; Button btnChangePassword,btnUpdate; EditText etPassword,etConfPassword,etCurrPassword; boolean isEditMode = false; MaterialDialog dialogChangePwd; public MyAccountFragment() { // Required empty public constructor } /** * Use this factory method to create a new instance of * this fragment using the provided parameters. * * @param param1 Parameter 1. * @param param2 Parameter 2. * @return A new instance of fragment MyAccountFragment. */ // TODO: Rename and change types and number of parameters public static MyAccountFragment newInstance(String param1, String param2) { MyAccountFragment fragment = new MyAccountFragment(); Bundle args = new Bundle(); args.putString(ARG_PARAM1, param1); args.putString(ARG_PARAM2, param2); fragment.setArguments(args); return fragment; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (getArguments() != null) { mParam1 = getArguments().getString(ARG_PARAM1); mParam2 = getArguments().getString(ARG_PARAM2); } setHasOptionsMenu(true); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_my_account, container, false); tvEmail = (TextView) view.findViewById(R.id.tvEmail); tvMobile = (TextView) view.findViewById(R.id.tvMobile); tvName = (TextView) view.findViewById(R.id.tvName); etName = (EditText) view.findViewById(R.id.etName); etMobile = (EditText) view.findViewById(R.id.etMobile); imgBtnEdit = (ImageButton) view.findViewById(R.id.imgBtnEdit); imgBtnEdit.setOnClickListener(this); btnUpdate = (Button) view.findViewById(R.id.btnUpdate); btnUpdate.setOnClickListener(this); btnChangePassword = (Button) view.findViewById(R.id.btnChangePassword); btnChangePassword.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { dialogChangePwd = new MaterialDialog.Builder(getActivity()) .title("Change Password") .customView(R.layout.dialog_change_password,true) .positiveText("Submit") .negativeText("Cancel") .onPositive(new MaterialDialog.SingleButtonCallback() { @Override public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) { if(etCurrPassword.getText().toString().equals("")){ Toast.makeText(getActivity(),"Please enter your current password",Toast.LENGTH_LONG).show(); return; } if(etPassword.getText().toString().equals("")){ //tilPassword.setError("Please enter your password"); Toast.makeText(getActivity(),"Please enter your password",Toast.LENGTH_LONG).show(); return; } if(etConfPassword.getText().toString().equals("")){ //tilConfPassword.setError("Please enter a confirm password"); Toast.makeText(getActivity(),"Please enter a confirm password",Toast.LENGTH_LONG).show(); return; } if(!etPassword.getText().toString().equals(etConfPassword.getText().toString())){ //tilConfPassword.setError("Password not match"); Toast.makeText(getActivity(),"Password not match",Toast.LENGTH_LONG).show(); return; } if(ModuleClass.isInternetOn){ new ChangePasswordTask(etPassword.getText().toString(),etCurrPassword.getText().toString()).execute(); } } }) .onNegative(new MaterialDialog.SingleButtonCallback() { @Override public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) { dialog.dismiss(); } }) .cancelable(false) .autoDismiss(false) .build(); View dialogView = dialogChangePwd.getCustomView(); etPassword = (EditText) dialogView.findViewById(R.id.input_password); etConfPassword = (EditText) dialogView.findViewById(R.id.input_conf_password); etCurrPassword = (EditText) dialogView.findViewById(R.id.input_curr_password); dialogChangePwd.show(); } }); return view; } @Override public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); //if(ModuleClass.isInternetOn){ new GetMyAccountDetailTask().execute(); //} } @Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { inflater.inflate(R.menu.main, menu); super.onCreateOptionsMenu(menu, inflater); } @Override public void onPrepareOptionsMenu(Menu menu) { super.onPrepareOptionsMenu(menu); if(menu != null) menu.findItem(R.id.action_search).setVisible(false); } // TODO: Rename method, update argument and hook method into UI event public void onButtonPressed(Uri uri) { if (mListener != null) { mListener.onFragmentInteraction(uri); } } @Override public void onAttach(Context context) { super.onAttach(context); /*if (context instanceof OnFragmentInteractionListener) { mListener = (OnFragmentInteractionListener) context; } else { throw new RuntimeException(context.toString() + " must implement OnFragmentInteractionListener"); }*/ } @Override public void onDetach() { super.onDetach(); mListener = null; } @Override public void onClick(View v) { if(v.getId() == R.id.imgBtnEdit){ if(isEditMode){ switchToNormalMode(); isEditMode = false; }else{ switchToEditMode(); isEditMode = true; } updateEditButton(); }else if(v.getId() == R.id.btnUpdate){ if(etName.getText().toString().equals("")){ Toast.makeText(getActivity(),"Please enter a Name",Toast.LENGTH_LONG).show(); return; } if(etMobile.getText().toString().equals("")){ Toast.makeText(getActivity(),"Please enter a Mobile number",Toast.LENGTH_LONG).show(); return; } new UpdateMyAccountDetailTask(etName.getText().toString(),etMobile.getText().toString()).execute(); } } /** * This interface must be implemented by activities that contain this * fragment to allow an interaction in this fragment to be communicated * to the activity and potentially other fragments contained in that * activity. * <p/> * See the Android Training lesson <a href= * "http://developer.android.com/training/basics/fragments/communicating.html" * >Communicating with Other Fragments</a> for more information. */ public interface OnFragmentInteractionListener { // TODO: Update argument type and name void onFragmentInteraction(Uri uri); } public void switchToEditMode(){ tvName.setVisibility(View.GONE); tvMobile.setVisibility(View.GONE); etName.setVisibility(View.VISIBLE); etName.setText(tvName.getText()); etMobile.setVisibility(View.VISIBLE); etMobile.setText(tvMobile.getText()); btnUpdate.setVisibility(View.VISIBLE); } public void switchToNormalMode(){ tvName.setVisibility(View.VISIBLE); tvMobile.setVisibility(View.VISIBLE); etName.setVisibility(View.GONE); etMobile.setVisibility(View.GONE); btnUpdate.setVisibility(View.GONE); } public void updateEditButton(){ if(isEditMode){ imgBtnEdit.setBackgroundResource(R.drawable.icon_close); }else{ imgBtnEdit.setBackgroundResource(R.drawable.icon_edit); } } public void updateDetail(JSONObject object){ try { Log.v("Notification","Customer name : "+object.getString("customer_name")); tvName.setText(object.getString("customer_name")); tvMobile.setText(object.getString("customer_mobile")); tvEmail.setText(object.getString("customer_email")); } catch (JSONException e) { e.printStackTrace(); } } class GetMyAccountDetailTask extends AsyncTask<Void,Void,Void> { boolean success; String responseError; JSONObject dataObject; ProgressDialog dialog; GetMyAccountDetailTask(){ } @Override protected void onPostExecute(Void aVoid) { super.onPostExecute(aVoid); dialog.dismiss(); if(success){ updateDetail(dataObject); }else{ Toast.makeText(getActivity(),responseError,Toast.LENGTH_LONG).show(); } } @Override protected Void doInBackground(Void... params) { ArrayList<NameValuePair> inputArray = new ArrayList<>(); inputArray.add(new BasicNameValuePair("webmethod", "my_account")); inputArray.add(new BasicNameValuePair("id", ModuleClass.USER_ID)); JSONObject responseJSON = new JSONParser().makeHttpRequest(ModuleClass.LIVE_API_PATH+"index.php", "GET", inputArray); Log.d("My Account ", responseJSON.toString()); if(responseJSON != null && !responseJSON.toString().equals("")) { success = true; try { JSONArray dataArray = responseJSON.getJSONArray("data"); if(dataArray.length() > 0){ for(int i = 0 ; i < dataArray.length();i++){ dataObject = dataArray.getJSONObject(i); } } } catch (JSONException e) { e.printStackTrace(); responseError = "There is some problem in server connection"; } }else{ success = false; responseError = "There is some problem in server connection"; } return null; } @Override protected void onPreExecute() { super.onPreExecute(); dialog = new ProgressDialog(getActivity(),R.style.MyThemeDialog); dialog.setCancelable(false); dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); dialog.setIndeterminate(true); dialog.setIndeterminateDrawable(getResources().getDrawable(R.drawable.progress)); dialog.show(); } } class ChangePasswordTask extends AsyncTask<Void,Void,Void> { String password,currPassword; boolean success,isCurrRight; String responseError,resultMessage; ProgressDialog dialog; public ChangePasswordTask(String password,String currPassword){ this.password = password; this.currPassword = currPassword; } @Override protected void onPostExecute(Void aVoid) { super.onPostExecute(aVoid); dialog.dismiss(); if(success){ if(isCurrRight) if(dialogChangePwd != null){ if(dialogChangePwd.isShowing()) dialogChangePwd.dismiss(); } Toast.makeText(getActivity(),resultMessage,Toast.LENGTH_LONG).show(); }else{ Toast.makeText(getActivity(),responseError,Toast.LENGTH_LONG).show(); } } @Override protected Void doInBackground(Void... params) { ArrayList<NameValuePair> inputArray = new ArrayList<>(); inputArray.add(new BasicNameValuePair("webmethod", "changepassword")); inputArray.add(new BasicNameValuePair("id", ModuleClass.USER_ID)); inputArray.add(new BasicNameValuePair("curr_pass", currPassword)); inputArray.add(new BasicNameValuePair("password", password)); JSONObject responseJSON = new JSONParser().makeHttpRequest(ModuleClass.LIVE_API_PATH+"index.php", "GET", inputArray); Log.d("Register ", responseJSON.toString()); if(responseJSON != null && !responseJSON.toString().equals("")) { success = true; try { JSONArray dataArray = responseJSON.getJSONArray("data"); resultMessage = dataArray.getString(0); if(resultMessage.equalsIgnoreCase("PASSWORD UPDATE SUCCESSFULLY")){ isCurrRight = true; } } catch (JSONException e) { e.printStackTrace(); } }else{ success = false; responseError = "There is some problem in server connection"; } return null; } @Override protected void onPreExecute() { super.onPreExecute(); dialog = new ProgressDialog(getActivity(),R.style.MyThemeDialog); dialog.setCancelable(false); dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); dialog.setIndeterminate(true); dialog.setIndeterminateDrawable(getResources().getDrawable(R.drawable.progress)); dialog.show(); } } class UpdateMyAccountDetailTask extends AsyncTask<Void,Void,Void> { boolean success; String responseError,resposeResult; JSONObject dataObject; ProgressDialog dialog; String name,mobile; UpdateMyAccountDetailTask(String name,String mobile){ this.name = name; this.mobile = mobile; } @Override protected void onPostExecute(Void aVoid) { super.onPostExecute(aVoid); dialog.dismiss(); if(success){ // updateDetail(dataObject); Toast.makeText(getActivity(),resposeResult,Toast.LENGTH_LONG).show(); isEditMode = false; tvName.setText(name); tvMobile.setText(mobile); switchToNormalMode(); updateEditButton(); }else{ Toast.makeText(getActivity(),responseError,Toast.LENGTH_LONG).show(); } } @Override protected Void doInBackground(Void... params) { ArrayList<NameValuePair> inputArray = new ArrayList<>(); inputArray.add(new BasicNameValuePair("webmethod", "edit_profile")); inputArray.add(new BasicNameValuePair("customer_id", ModuleClass.USER_ID)); inputArray.add(new BasicNameValuePair("name",name)); inputArray.add(new BasicNameValuePair("mobile", mobile)); JSONObject responseJSON = new JSONParser().makeHttpRequest(ModuleClass.LIVE_API_PATH+"index.php", "GET", inputArray); Log.d("Update My Account ", responseJSON.toString()); if(responseJSON != null && !responseJSON.toString().equals("")) { success = true; try { JSONArray dataArray = responseJSON.getJSONArray("data"); resposeResult = dataArray.getString(0); } catch (JSONException e) { e.printStackTrace(); responseError = "There is some problem in server connection"; } }else{ success = false; responseError = "There is some problem in server connection"; } return null; } @Override protected void onPreExecute() { super.onPreExecute(); dialog = new ProgressDialog(getActivity(),R.style.MyThemeDialog); dialog.setCancelable(false); dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); dialog.setIndeterminate(true); dialog.setIndeterminateDrawable(getResources().getDrawable(R.drawable.progress)); dialog.show(); } } }
[ "contact.us@shoppin.co.in" ]
contact.us@shoppin.co.in
12c6c2d5e6447ec9c1de885bde72d1781e9cd756
cde718fcc72bbaaffe6f047c095d263bf7a2442c
/com/pedro/repository/UserRepository.java
44a1980230f9b28ac2b864ca378a691428d3e706
[]
no_license
2063436123/JavaWebWX
00e8bc8c6d7d9ea7dd81d4b810c3e1a879e95701
621af7a89836bb75f00097af63740da7f5061ad9
refs/heads/master
2022-07-15T21:30:55.952205
2020-05-17T08:25:18
2020-05-17T08:25:18
257,610,472
2
0
null
null
null
null
UTF-8
Java
false
false
212
java
package com.pedro.repository; import com.pedro.entity.Game; import com.pedro.entity.User; public interface UserRepository { //第一次授权时加入用户至user表 public void addUser(User user); }
[ "2063436123@qq.com" ]
2063436123@qq.com
1692cac2b51664de923eedd4f8dc129a26fab6eb
55f4f2fb7cb30c07a287e1c22ce790dad930f745
/src/test/java/com/lifecoca/api/customerservice/customers/drugcoverages/service/CustomerDrugCoveragesServiceHelperTest.java
1f1b59f42f27ad3cd8c8ff2fe0dfcb0535d4835e
[]
no_license
VenkateshSR20/resource-management
68fcc6518906687c80074658443843b4d7b1b06f
c468c8159405bbba594ce800b705127e396e8ebd
refs/heads/master
2020-04-23T11:30:47.371081
2019-02-19T01:55:30
2019-02-19T01:55:30
171,139,017
0
0
null
2019-02-17T16:16:10
2019-02-17T15:37:35
null
UTF-8
Java
false
false
6,030
java
package com.resourceca.api.customerservice.customers.drugcoverages.service; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.when; import java.util.HashMap; import java.util.Map; import org.apache.camel.CamelContext; import org.apache.camel.Exchange; import org.apache.camel.Message; import org.apache.camel.ProducerTemplate; import org.apache.camel.impl.DefaultCamelContext; import org.apache.camel.impl.DefaultExchange; import org.apache.camel.spi.Registry; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import com.resourceca.api.customerservice.customers.drugcoverages.service.CustomersDrugCoveragesServiceHelper; public class CustomerDrugCoveragesServiceHelperTest { private CusResourcesServiceHelper customersDrugCoveragesServiceHelper; @Mock private Exchange mockExchange; @Mock private Registry mockRegistry; @Mock private CamelContext mockCamelContext; @Mock private ProducerTemplate mockProducerTemplate; @Mock private ProducerTemplate newProducerTemplate; @Mock private Message mockMessage; @Rule public ExpectedException thrown = ExpectedException.none(); @Before public void initializeRequest() { customersDrugCoveragesServiceHelper = new CusResourcesServiceHelper(); MockitoAnnotations.initMocks(this); } @Test public void test_setExchangeCorrelationAndRequestHeaders_SuccessfullySetsHeaderForValidValues() throws Exception{ //Arrange CamelContext cc = new DefaultCamelContext(); Exchange exchange = new DefaultExchange(cc); Map<String, Object> headers = new HashMap<String, Object>(); headers.put("X-Correlation-ID", "12345"); headers.put("X-Request-ID", "789456"); //Act CusResourcesServiceHelper.setExchangeCorrelationAndRequestHeaders(headers, exchange); //Assert assertEquals("12345", exchange.getIn().getHeader("X-Correlation-ID")); assertEquals("789456", exchange.getIn().getHeader("X-Request-ID")); } @Test public void test_setExchangeCorrelationAndRequestHeaders_DoesNotSetHeaderForNullHeader() throws Exception{ //Arrange CamelContext cc = new DefaultCamelContext(); Exchange exchange = new DefaultExchange(cc); Map<String, Object> headers = null; //Act CusResourcesServiceHelper.setExchangeCorrelationAndRequestHeaders(headers, exchange); //Assert assertNull(exchange.getIn().getHeader("X-Correlation-ID")); assertNull(exchange.getIn().getHeader("X-Request-ID")); } @Test public void test_lookupProducerTemplate_ReturnsExistingProducerTemplate(){ //Arrange when(mockExchange.getContext()).thenReturn(mockCamelContext); when(mockCamelContext.getRegistry()).thenReturn(mockRegistry); when(mockExchange.getContext().getRegistry().lookupByName("customerServiceCustomersDrugCoveragesProducerTemplate")).thenReturn(mockProducerTemplate); //Act ProducerTemplate producerTemplate = customersDrugCoveragesServiceHelper.lookupProducerTemplate(mockExchange); //Assert assertTrue(mockProducerTemplate.equals(producerTemplate)); } @Test public void test_lookupProducerTemplate_ReturnsNewProducerTemplate(){ //Arrange when(mockExchange.getContext()).thenReturn(mockCamelContext); when(mockCamelContext.getRegistry()).thenReturn(mockRegistry); when(mockExchange.getContext().getRegistry().lookupByName("customerServiceCustomersDrugCoveragesProducerTemplate")).thenReturn(null); when(mockCamelContext.createProducerTemplate()).thenReturn(newProducerTemplate); //Act ProducerTemplate producerTemplate = customersDrugCoveragesServiceHelper.lookupProducerTemplate(mockExchange); //Assert assertTrue(newProducerTemplate.equals(producerTemplate)); } @SuppressWarnings("unchecked") @Test public void test_isStubable_ThrowsIllegalStateExceptionWhenPropertyCanNotBeResolved() throws Exception{ //Arrange when(mockExchange.getContext()).thenReturn(mockCamelContext); when(mockCamelContext.resolvePropertyPlaceholders("{{FEATURE_STUB_RESPONSES_ENABLED}}")).thenThrow(Exception.class); //Act and Assert thrown.expect(IllegalStateException.class); thrown.expectMessage("Unable to read FEATURE_STUB_RESPONSES configurations in this environment."); customersDrugCoveragesServiceHelper.isStubable(mockExchange); } @Test public void test_isStubable_ReturnsFalseWhenStubResponseIsNotEnabled() throws Exception{ //Arrange when(mockExchange.getContext()).thenReturn(mockCamelContext); when(mockCamelContext.resolvePropertyPlaceholders("{{FEATURE_STUB_RESPONSES_ENABLED}}")).thenReturn("false"); //Act and Assert assertFalse(customersDrugCoveragesServiceHelper.isStubable(mockExchange)); } @Test public void test_isStubable_ReturnsTruwWhenStubResponseIsBothEnabledAndDefaulted() throws Exception{ //Arrange when(mockExchange.getContext()).thenReturn(mockCamelContext); when(mockCamelContext.resolvePropertyPlaceholders("{{FEATURE_STUB_RESPONSES_ENABLED}}")).thenReturn("true"); when(mockCamelContext.resolvePropertyPlaceholders("{{FEATURE_STUB_RESPONSES_DEFAULT}}")).thenReturn("true"); //Act and Assert assertTrue(customersDrugCoveragesServiceHelper.isStubable(mockExchange)); } @Test public void test_isStubable_ReturnsTruwWhenStubResponseIsEnabledAndApiModeIsNotBlank() throws Exception{ //Arrange when(mockExchange.getContext()).thenReturn(mockCamelContext); when(mockCamelContext.resolvePropertyPlaceholders("{{FEATURE_STUB_RESPONSES_ENABLED}}")).thenReturn("true"); when(mockCamelContext.resolvePropertyPlaceholders("{{FEATURE_STUB_RESPONSES_DEFAULT}}")).thenReturn("false"); when(mockExchange.getIn()).thenReturn(mockMessage); when(mockMessage.getHeader("api_mode", String.class)).thenReturn("stub_api_200"); //Act and Assert assertTrue(customersDrugCoveragesServiceHelper.isStubable(mockExchange)); } }
[ "Venkatesh.SundarrajuluRavee@londonlife.com" ]
Venkatesh.SundarrajuluRavee@londonlife.com
d890dec0d88c1979f7b443c4a39e4903fc009860
fa2e7a27c3d0dabdc7836e823e15030a033d2859
/src/com/leetcode/datastructure/graph/medium/CourseSchedule_207.java
6bcabfbdf7c616006cb7414e70054bc438aa5837
[]
no_license
ruvinbsu/LeetCode
f90e1a430e79f1617c18f96c244d093159b71468
2a781c783d21550df6617245c4c6a5e85200527d
refs/heads/master
2021-08-24T05:08:52.424038
2017-12-08T05:27:30
2017-12-08T05:27:30
107,902,551
0
0
null
null
null
null
UTF-8
Java
false
false
1,804
java
package com.leetcode.datastructure.graph.medium; import java.util.*; /** * Created by ruvinyusubov on 19/11/2017. */ public class CourseSchedule_207 { HashMap<Integer, ArrayList<Integer>> adjacencyLists; boolean[] marked; boolean[] visited; boolean isThereCycle; public boolean canFinish(int numCourses, int[][] prerequisites) { adjacencyLists = new HashMap<>(); for (int[] arr : prerequisites) { int course = arr[0]; int coursePrerequisite = arr[1]; ArrayList<Integer> adjacencyList = adjacencyLists.get(course); if (adjacencyList == null) { adjacencyList = new ArrayList<>(); adjacencyList.add(coursePrerequisite); adjacencyLists.put(course, adjacencyList); } else { adjacencyList.add(coursePrerequisite); } } Set<Integer> keys = adjacencyLists.keySet(); marked = new boolean[10000]; visited = new boolean[10000]; isThereCycle = false; for (Integer course : keys) { dfs(course); } return !isThereCycle; } public void dfs(int course) { if (!marked[course]) { ArrayList<Integer> adjacentVerteces = adjacencyLists.get(course); if (adjacentVerteces != null) { marked[course] = true; visited[course] = true; for (Integer coursePrerequisite : adjacentVerteces) { if (visited[coursePrerequisite]) { isThereCycle = true; return; } dfs(coursePrerequisite); } } visited[course] = false; } } }
[ "ruvinbsu@gmail.com" ]
ruvinbsu@gmail.com
8f6a8a48aa2c6d2813e41397d842f1220e2dae1d
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/4/4_6a8bfa4d74df5c7fe2a034897ab81ac512090a7d/CustomerMainActivity/4_6a8bfa4d74df5c7fe2a034897ab81ac512090a7d_CustomerMainActivity_t.java
65ebfe5da957bd6ac0d7b8ee507e1647382a3656
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
4,774
java
package ku.mobilepos.activity; import com.example.mobilepos.R; import ku.mobilepos.domain.Customer; import ku.mobilepos.domain.CustomerList; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.widget.Toast; public class CustomerMainActivity extends Activity { /** add button for add customer to customer list */ private Button addButton; /** inventory button for go to inventory */ private Button inventoryButton; /** sale button */ private Button saleButton; /** customer button */ private Button customerButton; /** history button */ private Button historyButton; /** list of customer */ private ListView allCustomerList; private Customer customerList; private String[] customerListStringArr; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.customer_main); inventoryButton = (Button) findViewById(R.id.inventory); saleButton = (Button) findViewById(R.id.sale); customerButton = (Button) findViewById(R.id.customer); historyButton = (Button) findViewById(R.id.history); inventoryButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent goInventoryPage = new Intent(getApplicationContext(),MainActivity.class); startActivity(goInventoryPage); } }); /** * when select Sale button it will go to Sale page */ saleButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent goSalePage = new Intent(getApplicationContext(),SaleMainActivity.class); startActivity(goSalePage); } }); historyButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Toast.makeText(getApplicationContext(),"UnderConstruction", Toast.LENGTH_LONG) .show(); } }); customerButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Toast.makeText(getApplicationContext(),"Your current page is already Customer", Toast.LENGTH_LONG) .show(); } }); customerList = CustomerList.getInstance(); createItemListStringArr(); addButton = (Button)findViewById(R.id.cus_b_addcus); addButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent goAddNewCus = new Intent(getApplicationContext(),CustomerAddNewCustomerActivity.class); startActivity(goAddNewCus); } }); } public void createItemListStringArr(){ if (customerList.getCustomerList().size()!=0){ customerListStringArr = new String[customerList.getCustomerList().size()]; for (int i = 0; i < customerListStringArr.length; i++) { customerListStringArr[i] = "\nName: "+customerList.getCustomerList().get(i).getCusName().toString() +"\nPhone No.: " +customerList.getCustomerList().get(i).getCusPhoneNo(); } allCustomerList = (ListView)findViewById(R.id.inventory_itemlist); ArrayAdapter<String> itemListAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, android.R.id.text1, customerListStringArr); allCustomerList.setAdapter(itemListAdapter); allCustomerList.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { // TODO Auto-generated method stub int itemPosition = position; String itemValue = (String)allCustomerList.getItemAtPosition(position); // Show Alert Toast.makeText(getApplicationContext(), "Click" , Toast.LENGTH_LONG) .show(); } }); } } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
55f1853b6ad80f75745b79bf2e48b9ed78736779
39e80490982e25efe2da28498e03a7bed1c8bbac
/openid-connect-server/src/main/java/org/mitre/openid/connect/config/JsonMessageSource.java
8c5a7303b14b9583c10dfe08ab70c3fdcb4f1f0a
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
wix-playground/OpenID-Connect-Java-Spring-Server
796505fedca4b37dea62df8faaef7dcdae8d5202
419d07ac0c55defdba2970dc32176ef1a992805e
refs/heads/master
2023-04-07T19:00:52.484080
2015-06-09T05:34:18
2015-06-09T05:34:18
32,566,824
0
3
NOASSERTION
2023-03-19T13:11:06
2015-03-20T06:32:10
Java
UTF-8
Java
false
false
4,214
java
/******************************************************************************* * Copyright 2015 The MITRE Corporation * and the MIT Kerberos and Internet Trust Consortium * * 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.mitre.openid.connect.config; import java.io.File; import java.io.IOException; import java.io.InputStreamReader; import java.text.MessageFormat; import java.util.HashMap; import java.util.Iterator; import java.util.Locale; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.support.AbstractMessageSource; import org.springframework.core.io.Resource; import com.google.common.base.Splitter; import com.google.gson.JsonElement; import com.google.gson.JsonIOException; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import com.google.gson.JsonSyntaxException; /** * @author jricher * */ public class JsonMessageSource extends AbstractMessageSource { // Logger for this class private static final Logger logger = LoggerFactory.getLogger(JsonMessageSource.class); private Resource baseDirectory; private Locale fallbackLocale = new Locale("en"); // US English is the fallback language private Map<Locale, JsonObject> languageMaps = new HashMap<>(); @Override protected MessageFormat resolveCode(String code, Locale locale) { JsonObject lang = getLanguageMap(locale); String value = getValue(code, lang); if (value == null) { // if we haven't found anything, try the default locale lang = getLanguageMap(fallbackLocale); value = getValue(code, lang); } if (value == null) { value = code; } MessageFormat mf = new MessageFormat(value, locale); return mf; } /** * @param code * @param locale * @param lang * @return */ private String getValue(String code, JsonObject lang) { // if there's no language map, nothing to look up if (lang == null) { return null; } JsonElement e = lang; Iterable<String> parts = Splitter.on('.').split(code); Iterator<String> it = parts.iterator(); String value = null; while (it.hasNext()) { String p = it.next(); if (e.isJsonObject()) { JsonObject o = e.getAsJsonObject(); if (o.has(p)) { e = o.get(p); // found the next level if (!it.hasNext()) { // we've reached a leaf, grab it if (e.isJsonPrimitive()) { value = e.getAsString(); } } } else { // didn't find it, stop processing break; } } else { // didn't find it, stop processing break; } } return value; } /** * @param locale * @return */ private JsonObject getLanguageMap(Locale locale) { if (!languageMaps.containsKey(locale)) { try { String filename = locale.getLanguage() + File.separator + "messages.json"; Resource r = getBaseDirectory().createRelative(filename); logger.info("No locale loaded, trying to load from " + r); JsonParser parser = new JsonParser(); JsonObject obj = (JsonObject) parser.parse(new InputStreamReader(r.getInputStream(), "UTF-8")); languageMaps.put(locale, obj); } catch (JsonIOException | JsonSyntaxException | IOException e) { logger.error("Unable to load locale", e); } } return languageMaps.get(locale); } /** * @return the baseDirectory */ public Resource getBaseDirectory() { return baseDirectory; } /** * @param baseDirectory the baseDirectory to set */ public void setBaseDirectory(Resource baseDirectory) { this.baseDirectory = baseDirectory; } }
[ "jricher@mit.edu" ]
jricher@mit.edu
7de82edfa96b4739c7b432e4a257281dd37658cc
3f785bdf87313fff79a44d736153f60800b73681
/src/project3/WriteRecord.java
91c0a6524cae3914d1140a80c06d31f2182d4cc3
[]
no_license
hsuan197/flappy-pokemon
043db5f73f6d6568a7d481268bf0b2b4b6119d9f
5ac0b6898c560ae8cde1adec53dad8aaa3629069
refs/heads/master
2020-03-19T14:12:00.228524
2019-07-27T15:30:24
2019-07-27T15:30:24
136,613,190
0
0
null
null
null
null
UTF-8
Java
false
false
2,593
java
package project3; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.PrintWriter; public class WriteRecord extends JFrame implements ActionListener { JTextField input = new JTextField(50); private String[] newname = new String[10]; private int[] newscore = new int[10]; public WriteRecord(String[] boardname, int[] boardscore) { for (int i = 0; i < 10; i++) { newname[i] = boardname[i]; newscore[i] = boardscore[i]; } setSize(800, 600); JLabel Label = new JLabel("congratulations! You break the record"); JLabel Label2 = new JLabel("Your Score: " + FBird_Main.score); Label.setFont(new Font("Arial Bold", Font.BOLD | Font.ITALIC, 32)); Label.setLocation(100, 0); Label.setSize(600, 100); Label2.setFont(new Font("Arial Bold", Font.BOLD | Font.ITALIC, 32)); Label2.setLocation(250, 50); Label2.setSize(600, 100); JButton button = new JButton("Submit"); button.addActionListener(this); button.setLocation(250, 300); button.setSize(250, 50); setLayout(null); input.setLocation(100, 200); input.setSize(input.getPreferredSize()); input.setText("<Input your name here>"); this.add(input); this.add(button); this.add(Label); this.add(Label2); } public void actionPerformed(ActionEvent e) { String recordname = input.getText(); int recordscore = FBird_Main.score; SortAndStore(recordname, recordscore); this.setVisible(false); } public void SortAndStore(String r_name, int r_score) { // ---------------------------------------------sort int index = 0;// index:�蝝����閰脫��� for (index = 0; index < 10; index++) { if (r_score > newscore[index]) {// ��蝝���府���� System.out.println(index); for (int i = 8; i >= index; i--)// index敺����銝hift銝�雿�洵10��◤����隞亙�洵9���(index=8)���hift { newname[i + 1] = newname[i]; newscore[i + 1] = newscore[i]; } break; } } newname[index] = r_name; newscore[index] = r_score; // ------------------------------------------store try { PrintWriter writer = new PrintWriter(new FileOutputStream("Rank.txt")); for (int i = 0; i < 10; i++) { writer.println(newname[i]); writer.println(newscore[i]); } writer.flush(); writer.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } } }
[ "disturb199730@gmail.com" ]
disturb199730@gmail.com
37f400f2a61aa6338d68312e069315a354b0c5b3
306d6a7aa91f3f93465f5466a7843c2171a0bbfa
/partner-service/src/main/java/cm/g2s/partner/service/rule/service/RuleClientService.java
9d38f37b044bc2de85a10d9ce12b5190075e65ca
[]
no_license
briceamk/gmoney-ms
9ce45f86261f9c725b5ce7d741f2155607801f8e
bae4ee696317792ad28614380843b4ca29fca2d8
refs/heads/master
2023-01-14T18:49:24.087676
2020-11-19T16:54:03
2020-11-19T16:54:03
262,711,838
0
0
null
null
null
null
UTF-8
Java
false
false
476
java
package cm.g2s.partner.service.rule.service; import cm.g2s.partner.service.rule.model.RuleDto; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; @FeignClient(value = "rule", fallback = RuleClientServiceFallBack.class) public interface RuleClientService { @GetMapping("/rule/api/v1/rules/{id}") RuleDto findById(@PathVariable String id); }
[ "ambiandji@gmail.com" ]
ambiandji@gmail.com
2b3f2f303ee16b372245604832fae3ee44f39477
81c5aff7acce364563ffc92457206e1432027809
/src/main/java/org/obantysh/weblibrary/service/BookService.java
d1dd51efadb1f5e4c63709acaddd45c84a34664e
[]
no_license
obantysh/WebLibrary
3c3a7a1a533b9df272e3b42e13d192031f0fe3a9
eca7555b3e891d9155a8c5af9716b7975388995f
refs/heads/master
2021-01-10T05:50:41.057838
2016-01-30T21:26:43
2016-01-30T21:26:43
50,740,426
0
0
null
null
null
null
UTF-8
Java
false
false
260
java
package org.obantysh.weblibrary.service; import org.obantysh.weblibrary.model.Book; import java.util.List; public interface BookService { public Book getBookByID(String id); public List<Book> getBookList(); public Book updateBook(Book book); }
[ "iambantysh@gmail.com" ]
iambantysh@gmail.com
f32d89842a57df73fee284a79124fa720b90ec9e
7786cca5a78ff6d7f206f267fa2b2f0d69aaaeda
/app/src/main/java/com/js/phonicdiary/utils/PermissionUtil.java
a2c6ad8b9c35fb39e16241d620faa0cabfd98a25
[]
no_license
wbb631094818/PhonicDiary
15b5ba718e1a3477befaab07b39f23e0f3a0f2bd
689efadf4b83fcce8dd743347b02c2bfc3991466
refs/heads/master
2023-03-17T09:10:47.273329
2023-03-05T07:56:41
2023-03-05T07:56:41
213,563,679
0
0
null
null
null
null
UTF-8
Java
false
false
3,270
java
package com.js.phonicdiary.utils; import android.content.Context; import android.content.pm.PackageManager; import android.os.Build; import androidx.core.content.ContextCompat; import com.yanzhenjie.permission.Action; import com.yanzhenjie.permission.AndPermission; import com.yanzhenjie.permission.runtime.Permission; import java.util.List; /** * 动态获取权限工具类 * Created by 王兵兵 on 2018/5/22. */ public class PermissionUtil { /** * 请求获取录音及sd卡相关权限 * * @param context 上下文 */ public static void requestMicrophoneAndStoragePermission(Context context, Action<List<String>> granted) { AndPermission .with(context) .runtime() //请求码 // .requestCode(PHONE_REQUEST_CODE) //单个权限 // .permission(Manifest.permission.READ_CONTACTS) //多权限,用数组形式 .permission(Permission.Group.STORAGE, Permission.Group.MICROPHONE) .onGranted(granted) .start(); } /** * 请求获取录音及sd卡相关权限 * * @param context 上下文 */ public static void requestStoragePermission(Context context, Action<List<String>> granted) { AndPermission .with(context) .runtime() //请求码 // .requestCode(PHONE_REQUEST_CODE) //单个权限 // .permission(Manifest.permission.READ_CONTACTS) //多权限,用数组形式 .permission(Permission.Group.STORAGE) .onGranted(granted) .start(); } /** * 判断录音及sd卡相关权限是否已获取 * * @param mContext * @return */ public static boolean checkSelfPermissionMicrophoneAndStorage(Context mContext) { return checkSelfPermissionMicrophone(mContext) && checkSelfPermissionStorage(mContext); } /** * 判断是否获取录音权限 * * @param mContext * @return */ public static boolean checkSelfPermissionMicrophone(Context mContext) { return checkSelfPermission(mContext,Permission.RECORD_AUDIO); } /** * 判断是否获取通话记录读取及写入权限 * * @param mContext * @return */ public static boolean checkSelfPermissionStorage(Context mContext) { return checkSelfPermission(mContext,Permission.READ_EXTERNAL_STORAGE) && checkSelfPermission(mContext, Permission.WRITE_EXTERNAL_STORAGE); } /** * 判断该权限是否以获取 * * @param mContext 上下文 * @param permission 权限 */ private static boolean checkSelfPermission(Context mContext, String permission) { try { int permissionCheck = ContextCompat.checkSelfPermission(mContext, permission); return permissionCheck == PackageManager.PERMISSION_GRANTED; } catch (Exception e) { if (Build.VERSION.SDK_INT >= 23) { return false; } else { return true; } } } }
[ "631094818@qq.com" ]
631094818@qq.com
becdb4a01ca51e26125eb756a7ad37b17bb18394
3657b6f5b30ac061e2ab1db7cd745e2ca8183af3
/homeProject/src/com/house/home/dao/query/BuildCustQryDao.java
921b768080a6bef9a1f5d523d2b2f86952027f82
[]
no_license
Lxt000806/eclipse_workspace
b25f4f81bd0aa6f8d55fc834dd09cdb473af1f3f
04376681ec91c3f8dbde2908d35612c4842a868c
refs/heads/main
2023-05-23T12:05:26.989438
2021-06-13T05:49:26
2021-06-13T05:49:26
376,452,726
0
0
null
null
null
null
UTF-8
Java
false
false
2,758
java
package com.house.home.dao.query; import java.util.ArrayList; import java.util.List; import java.util.Map; import com.house.framework.commons.orm.BaseDao; import com.house.framework.commons.orm.Page; import com.house.framework.commons.utils.SqlUtil; import com.house.framework.web.login.UserContext; import com.house.home.entity.design.Customer; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Repository; @SuppressWarnings("serial") @Repository public class BuildCustQryDao extends BaseDao{ public Page<Map<String,Object>> findPageBySql(Page<Map<String,Object>> page, Customer customer ,UserContext uc) { List<Object> list = new ArrayList<Object>(); String sql =" select * from ( select a.code ,a.address,a.area,x2.NOTE typeDescr,b.Desc1 custtypeDescr,a.contractFee ," + " case when a.status = '5' then '竣工验收' else f.descr end prjDescr,e.NameChi designDescr ,d.Desc1 designDesp2 " + " ,e2.NameChi projectManDescr,d2.Desc1 projectManDesp2,x1.note statusDescr" + " from tcustomer a " + " left join tCusttype b on b.Code = a.CustType" + " left join " + " ( select max(pk) pk,custcode from tprjprog a " +// --查询实际施工节点 " where a.begindate=(select max(begindate) from tprjprog where custcode=a.custcode ) group by a.custcode" + " ) dd on dd.custcode = a.code " + " left join tprjprog sj on sj.pk=dd.pk " + " left join tEmployee e on e.Number = a.designMan" + " left join tEmployee e2 on e2.Number = a.projectMan" + " left join tDepartment2 d on d.Code= e.Department2" + " left join tDepartment2 d2 on e2.Department2 = d2.Code" + " left join txtdm x1 on x1.id = 'CUSTOMERSTATUS' and x1.cbm = a.Status" + " left join tXTDM x2 on x2.id = 'CONSTRUCTTYPE' and x2.cbm = a.constructType " + " left join tPrjItem1 f on f.Code=sj.prjItem " + " where (a.status= '4' or (a.status='5' and a.endCode = '3' )) and b.IsAddAllInfo = '1' " ; if(StringUtils.isNotBlank(customer.getBuilderCode())){ sql+=" and a.builderCode = ? "; list.add(customer.getBuilderCode()); } else { sql+=" and 1<>1 "; } if(StringUtils.isNotBlank(customer.getIncludEnd())){ if("0".equals(customer.getIncludEnd())){ sql+=" and a.status = 4 "; }else{ sql+=" and 1=1 "; } } if(StringUtils.isNotBlank(customer.getBuilderNum())){ sql+=" and a.BuilderNum like ? "; list.add("%"+customer.getBuilderNum()+"%"); } if (StringUtils.isNotBlank(page.getPageOrderBy())) { sql += ") a order by a." + page.getPageOrderBy() + " " + page.getPageOrder(); } else { sql += ") a "; } return this.findPageBySql(page, sql, list.toArray()); } }
[ "1728490992@qq.com" ]
1728490992@qq.com
a2a8cfb6759e91be65ea00c053127f25fd58fd80
7f44d18843ba3d5b0f430299ffa3ed20b311d8c1
/src/main/java/com/example/library/service/impl/CategoryServiceImpl.java
990e38366ee0a10f305c4a5b1974c7db729ffeaf
[]
no_license
lanaflonPerso/library-sample-project
b292144f58fab0055bd40e28482bd0782a95251e
f1a2e4d870324abe7c24a594f49e4a9fd42e68f1
refs/heads/master
2020-12-09T08:25:23.603414
2013-05-28T19:21:13
2013-05-28T19:21:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,231
java
package com.example.library.service.impl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.example.library.model.entity.Category; import com.example.library.model.entity.CategoryLang; import com.example.library.model.entity.Lang; import com.example.library.model.repository.CategoryLangRepository; import com.example.library.model.repository.CategoryRepository; import com.example.library.model.repository.LangRepository; import com.example.library.service.CategoryService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.stereotype.Service; @Service("categoryService") // @Repository // @Transactional public class CategoryServiceImpl implements CategoryService { final Logger logger = LoggerFactory.getLogger(CategoryServiceImpl.class); @Autowired private CategoryRepository categoryRepository; @Autowired private LangRepository langRepository; @Autowired private CategoryLangRepository categoryLangRepository; @Override @PreAuthorize("hasAnyRole('ROLE_ADMIN', 'CATEGORY_ADD')") public Category save(Category category) throws Exception { logger.info("Saving category " + category); return categoryRepository.save(category); } @Override public Category getById(long id) { return categoryRepository.findOne(id); } @Override public List<Category> getAll() { return categoryRepository.getAll(); } @Override public Map<String, List<String>> getAndGroupCategoriesByLang() { Map<String, List<String>> result = new HashMap<String, List<String>>(); for (Lang lang : langRepository.findAll()) { List<String> langs = new ArrayList<String>(); for (CategoryLang categoryLang : categoryLangRepository.getAllCategoriesByLang(lang)) { langs.add(categoryLang.getName()); } result.put(lang.getIso(), langs); } logger.info("Found categories : " + result); return result; } }
[ "bartkonieczny@yahoo.fr" ]
bartkonieczny@yahoo.fr
d24b594cf3d283e2853548fac4f1da184ffb835d
a005dd081b6d2c79c43dc9779bcaf1879f64505c
/src/main/java/br/com/etechoracio/feriadoapi/dao/DAO.java
975d7ea9a1bb23ad56d5c8336f99b191a6151fcf
[]
no_license
aurea10/ETEC-Feriados
2e0b47c279df07323fa7509bda185ab066ad371c
ed02cc6a06dbabb749a7131d028b0f652642c213
refs/heads/master
2020-06-03T16:48:17.634583
2019-06-13T01:33:50
2019-06-13T01:33:50
191,655,411
0
0
null
null
null
null
UTF-8
Java
false
false
65
java
package br.com.etechoracio.feriadoapi.dao; public class DAO { }
[ "srta_ferr@hotmail.com" ]
srta_ferr@hotmail.com
940352d5dab00cab0896baa8f8d383739d76175f
b4a7c6926cd10b274bd5fbeb55a34f0419edc14d
/deps/src/main/java/com/microsoft/azure/sdk/iot/deps/transport/amqp/ErrorLoggingBaseHandler.java
32e7e2a31a92643b8560a2046f19a9e28061c46f
[ "MIT" ]
permissive
mattixtech/azure-iot-sdk-java
ae4921b64c9a6e335cf546e0db4d76ce73cee1ab
7ad66f1f948946642c24b0403540b02edbb3b162
refs/heads/master
2021-02-05T18:50:43.655216
2020-02-28T19:28:49
2020-02-28T19:28:49
243,818,217
0
0
null
2020-02-28T17:28:13
2020-02-28T17:28:12
null
UTF-8
Java
false
false
2,885
java
/* * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project root for full license information. */ package com.microsoft.azure.sdk.iot.deps.transport.amqp; import lombok.extern.slf4j.Slf4j; import org.apache.qpid.proton.engine.BaseHandler; import org.apache.qpid.proton.engine.Event; @Slf4j public class ErrorLoggingBaseHandler extends BaseHandler { protected ProtonJExceptionParser protonJExceptionParser; @Override public void onLinkRemoteClose(Event event) { protonJExceptionParser = new ProtonJExceptionParser(event); if (protonJExceptionParser.getError() == null) { log.debug("Amqp link {} was closed remotely", event.getLink().getName()); } else { if (event.getLink() != null && event.getLink().getName() != null) { log.warn("Amqp link {} was closed remotely with exception {} with description {}", event.getLink().getName(), protonJExceptionParser.getError(), protonJExceptionParser.getErrorDescription()); } else { log.warn("Unknown amqp link was closed remotely with exception {} with description {}", protonJExceptionParser.getError(), protonJExceptionParser.getErrorDescription()); } } } @Override public void onSessionRemoteClose(Event event) { protonJExceptionParser = new ProtonJExceptionParser(event); if (protonJExceptionParser.getError() == null) { log.warn("Amqp session was closed remotely with an unknown exception"); } else { log.warn("Amqp session was closed remotely with exception {} with description {}", protonJExceptionParser.getError(), protonJExceptionParser.getErrorDescription()); } } @Override public void onConnectionRemoteClose(Event event) { protonJExceptionParser = new ProtonJExceptionParser(event); if (protonJExceptionParser.getError() == null) { log.warn("Amqp connection was closed remotely with an unknown exception"); } else { log.warn("Amqp connection was closed remotely with exception {} with description {}", protonJExceptionParser.getError(), protonJExceptionParser.getErrorDescription()); } } @Override public void onTransportError(Event event) { protonJExceptionParser = new ProtonJExceptionParser(event); if (protonJExceptionParser.getError() == null) { log.warn("Amqp transport closed with an unknown exception"); } else { log.warn("Amqp transport closed due to exception {} with description {}", protonJExceptionParser.getError(), protonJExceptionParser.getErrorDescription()); } } }
[ "timtay@microsoft.com" ]
timtay@microsoft.com
661b24d618d71d01ef4ca8f2b34aee9f47a4c226
1d24315bfc171669d1ca9e9f2468ee899c93f3ad
/.svn/pristine/66/661b24d618d71d01ef4ca8f2b34aee9f47a4c226.svn-base
903962d14dc5bcca020ac2c910b9c891bab9e162
[]
no_license
un-knower/insaic-report-kylin
45a97b3a5daeea2e8ae104fb0b98687af6373ca7
8f70d7fb1539ca22556a03066dc84c04878722bb
refs/heads/master
2020-03-20T21:59:36.350235
2017-12-07T08:00:15
2017-12-07T08:00:15
137,773,226
0
1
null
2018-06-18T15:51:36
2018-06-18T15:51:35
null
UTF-8
Java
false
false
9,691
package com.insaic.kylin.service.logic; import com.insaic.base.exception.ExceptionUtil; import com.insaic.base.mapper.JsonMapper; import com.insaic.base.utils.HttpUtils; import com.insaic.base.utils.StringUtil; import com.insaic.kylin.model.kylin.query.KylinQueryInfo; import com.insaic.kylin.model.kylin.receive.*; import com.sun.org.apache.xml.internal.security.utils.Base64; import org.apache.commons.collections.MapUtils; import org.apache.commons.collections.map.HashedMap; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.util.EntityUtils; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.*; /** * Created by dongyang on 2017/9/12. */ @Component public class KylinBaseHandler { private static final String ACCESS_TYPE_POST = "post"; private static final String ACCESS_TYPE_GET = "get"; private static final String KYLIN_URL_CUBES = "kylin/api/cubes/"; private static final String KYLIN_URL_CUBE_DESC = "kylin/api/cube_desc/"; private static final String KYLIN_URL_TABLES_AND_COLUMNS = "kylin/api/tables_and_columns/"; private static final String KYLIN_URL_MODEL = "kylin/api/model/"; private static final String KYLIN_URL_USER_AUTHENTICATION = "kylin/api/user/authentication/"; private static final String KYLIN_URL_QUERY = "kylin/api/query/"; @Value("#{configPropertites['kylin.base.url']}") private String KYLIN_URL_BASE; /** * @Author dongyang * @Describe 初始化载入select信息 * @Date 2017/9/13 上午11:13 */ public Map<String, Object> loadSelectInfo() { Map<String, Object> modelMap = new HashMap<>(); return modelMap; } /** * @Author dongyang * @Describe 获取querySql信息 * @Date 2017/9/12 下午8:10 */ public QueryReturnData getKylinQuery(KylinQueryInfo queryInfo) { Map<String, String> map = new HashedMap(); if (StringUtil.isNotBlank(queryInfo.getProject())) { map.put("project", queryInfo.getProject()); } if (StringUtil.isNotBlank(queryInfo.getSql())) { map.put("sql", queryInfo.getSql()); } if (StringUtil.isNotBlank(queryInfo.getAcceptPartial())) { map.put("acceptPartial", queryInfo.getAcceptPartial()); } if (StringUtil.isNotBlank(queryInfo.getOffset())) { map.put("offset", queryInfo.getOffset()); } if (StringUtil.isNotBlank(queryInfo.getLimit())) { map.put("limit", queryInfo.getLimit()); } String response = this.sendData(ACCESS_TYPE_POST, KYLIN_URL_QUERY, map); QueryReturnData queryReturnData = JsonMapper.nonEmptyMapper().fromJson(response, QueryReturnData.class); return queryReturnData; } /** * @Author dongyang * @Describe 获取cubes列表 * @Date 2017/9/12 下午6:39 */ public List<CubesReturnData> getKylinCubes() { String response = this.sendData(ACCESS_TYPE_GET, KYLIN_URL_CUBES, null); JsonMapper jsonMapper = JsonMapper.nonEmptyMapper(); List<CubesReturnData> cubesReturnDatas = jsonMapper.fromJson(response, jsonMapper.contructCollectionType(List.class, CubesReturnData.class)); return cubesReturnDatas; } /** * @Author dongyang * @Describe 获取单个cube内容(非详细) * @Date 2017/9/12 下午6:40 */ public CubesReturnData getKylinCube(String cube) { String response = this.sendData(ACCESS_TYPE_GET, KYLIN_URL_CUBES + cube, null); CubesReturnData cubesReturnData = JsonMapper.nonEmptyMapper().fromJson(response, CubesReturnData.class); return cubesReturnData; } /** * @Author dongyang * @Describe 获取单个cube内容(详细) * @Date 2017/9/12 下午6:47 */ public List<CubeDescReturnData> getKylinCubeDesc(String cube) { String response = this.sendData(ACCESS_TYPE_GET, KYLIN_URL_CUBE_DESC + cube, null); JsonMapper jsonMapper = JsonMapper.nonEmptyMapper(); List<CubeDescReturnData> cubeDescReturnDatas = jsonMapper.fromJson(response, jsonMapper.contructCollectionType(List.class, CubeDescReturnData.class)); return cubeDescReturnDatas; } /** * @Author dongyang * @Describe 获取某一project下表及列信息 * @Date 2017/9/12 下午7:07 */ public List<TablesAndColumnsReturnData> getKylinTablesAndColumns(String project) { Map<String, String> map = new HashedMap(); map.put("project", project); String response = this.sendData(ACCESS_TYPE_GET, KYLIN_URL_TABLES_AND_COLUMNS, map); JsonMapper jsonMapper = JsonMapper.nonEmptyMapper(); List<TablesAndColumnsReturnData> tablesAndColumnsReturnDatas = jsonMapper.fromJson(response, jsonMapper.contructCollectionType(List.class, TablesAndColumnsReturnData.class)); return tablesAndColumnsReturnDatas; } /** * @Author dongyang * @Describe 获取model内容 * @Date 2017/9/12 下午7:41 */ public ModelReturnData getKylinModel(String model) { String response = this.sendData(ACCESS_TYPE_GET, KYLIN_URL_MODEL + model, null); ModelReturnData modelReturnData = JsonMapper.nonEmptyMapper().fromJson(response, ModelReturnData.class); return modelReturnData; } /** * @Author dongyang * @Describe 获取登录用户权限信息 * @Date 2017/9/12 下午8:10 */ public UserAuthenticationReturnData getKylinUserAuthentication() { String response = this.sendData(ACCESS_TYPE_POST, KYLIN_URL_USER_AUTHENTICATION, null); UserAuthenticationReturnData userAuthenticationReturnData = JsonMapper.nonEmptyMapper().fromJson(response, UserAuthenticationReturnData.class); return userAuthenticationReturnData; } private String sendData(String accessType, String url, Map<String, String> params) { HttpResponse response = null; String baseUrl = KYLIN_URL_BASE + url; try { HttpClient httpclient = new DefaultHttpClient(); String authorization = new String(Base64.encode(new String("ADMIN" + ":" + "KYLIN").getBytes())); if (ACCESS_TYPE_GET.equals(accessType)) { if (MapUtils.isNotEmpty(params)) { StringBuffer strtTotalURL = new StringBuffer(""); if(strtTotalURL.indexOf("?") == -1) { strtTotalURL.append(baseUrl).append("?").append(this.getUrl(params, HttpUtils.URL_PARAM_DECODECHARSET_UTF8)); } else { strtTotalURL.append(baseUrl).append("&").append(this.getUrl(params, HttpUtils.URL_PARAM_DECODECHARSET_UTF8)); } baseUrl = strtTotalURL.toString(); } HttpGet httpGet = new HttpGet(baseUrl); httpGet.addHeader("Authorization", "Basic " + authorization); //认证token httpGet.addHeader("Content-Type", "application/json"); httpGet.addHeader("User-Agent", "imgfornote"); response = httpclient.execute(httpGet); } else if (ACCESS_TYPE_POST.equals(accessType)) { HttpPost httpPost = new HttpPost(baseUrl); httpPost.addHeader("Authorization", "Basic " + authorization); //认证token httpPost.addHeader("Content-Type", "application/json"); httpPost.addHeader("User-Agent", "imgfornote"); if (MapUtils.isNotEmpty(params)) { httpPost.setEntity(new StringEntity(JsonMapper.nonDefaultMapper().toJson(params), HttpUtils.URL_PARAM_DECODECHARSET_UTF8)); } response = httpclient.execute(httpPost); } if (200 == response.getStatusLine().getStatusCode()) { return EntityUtils.toString(response.getEntity(), HttpUtils.URL_PARAM_DECODECHARSET_UTF8); } else { return null; } } catch (Exception e) { ExceptionUtil.handleException(e, "kylin/api服务接口返回信息异常!"); } return null; } private String getUrl(Map<String, String> map, String valueEnc) { if(null != map && map.keySet().size() != 0) { StringBuffer url = new StringBuffer(); Set keys = map.keySet(); Iterator strURL = keys.iterator(); while(strURL.hasNext()) { String key = (String)strURL.next(); if(map.containsKey(key)) { String val = (String)map.get(key); String str = val != null?val:""; try { str = URLEncoder.encode(str, valueEnc); } catch (UnsupportedEncodingException var9) { var9.printStackTrace(); } url.append(key).append("=").append(str).append("&"); } } String strURL1 = ""; strURL1 = url.toString(); if("&".equals("" + strURL1.charAt(strURL1.length() - 1))) { strURL1 = strURL1.substring(0, strURL1.length() - 1); } return strURL1; } else { return ""; } } }
[ "todebug@163.com" ]
todebug@163.com
a9ad62d4d4792115ea84f7ca5060a8705f2f1c51
44e7adc9a1c5c0a1116097ac99c2a51692d4c986
/aws-java-sdk-dataexchange/src/main/java/com/amazonaws/services/dataexchange/model/GetDataSetResult.java
cfc809a7b66bd7195cda601d3c44735e9fbe8c36
[ "Apache-2.0" ]
permissive
QiAnXinCodeSafe/aws-sdk-java
f93bc97c289984e41527ae5bba97bebd6554ddbe
8251e0a3d910da4f63f1b102b171a3abf212099e
refs/heads/master
2023-01-28T14:28:05.239019
2020-12-03T22:09:01
2020-12-03T22:09:01
318,460,751
1
0
Apache-2.0
2020-12-04T10:06:51
2020-12-04T09:05:03
null
UTF-8
Java
false
false
22,519
java
/* * Copyright 2015-2020 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.dataexchange.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetDataSet" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetDataSetResult extends com.amazonaws.AmazonWebServiceResult<com.amazonaws.ResponseMetadata> implements Serializable, Cloneable { /** * <p> * The ARN for the data set. * </p> */ private String arn; /** * <p> * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * </p> */ private String assetType; /** * <p> * The date and time that the data set was created, in ISO 8601 format. * </p> */ private java.util.Date createdAt; /** * <p> * The description for the data set. * </p> */ private String description; /** * <p> * The unique identifier for the data set. * </p> */ private String id; /** * <p> * The name of the data set. * </p> */ private String name; /** * <p> * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for * subscribers). * </p> */ private String origin; /** * <p> * If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. * </p> */ private OriginDetails originDetails; /** * <p> * The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is * returned when a data set owner is viewing the entitled copy of its owned data set. * </p> */ private String sourceId; /** * <p> * The tags for the data set. * </p> */ private java.util.Map<String, String> tags; /** * <p> * The date and time that the data set was last updated, in ISO 8601 format. * </p> */ private java.util.Date updatedAt; /** * <p> * The ARN for the data set. * </p> * * @param arn * The ARN for the data set. */ public void setArn(String arn) { this.arn = arn; } /** * <p> * The ARN for the data set. * </p> * * @return The ARN for the data set. */ public String getArn() { return this.arn; } /** * <p> * The ARN for the data set. * </p> * * @param arn * The ARN for the data set. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withArn(String arn) { setArn(arn); return this; } /** * <p> * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * </p> * * @param assetType * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * @see AssetType */ public void setAssetType(String assetType) { this.assetType = assetType; } /** * <p> * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * </p> * * @return The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * @see AssetType */ public String getAssetType() { return this.assetType; } /** * <p> * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * </p> * * @param assetType * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * @return Returns a reference to this object so that method calls can be chained together. * @see AssetType */ public GetDataSetResult withAssetType(String assetType) { setAssetType(assetType); return this; } /** * <p> * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * </p> * * @param assetType * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT. * @return Returns a reference to this object so that method calls can be chained together. * @see AssetType */ public GetDataSetResult withAssetType(AssetType assetType) { this.assetType = assetType.toString(); return this; } /** * <p> * The date and time that the data set was created, in ISO 8601 format. * </p> * * @param createdAt * The date and time that the data set was created, in ISO 8601 format. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** * <p> * The date and time that the data set was created, in ISO 8601 format. * </p> * * @return The date and time that the data set was created, in ISO 8601 format. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** * <p> * The date and time that the data set was created, in ISO 8601 format. * </p> * * @param createdAt * The date and time that the data set was created, in ISO 8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** * <p> * The description for the data set. * </p> * * @param description * The description for the data set. */ public void setDescription(String description) { this.description = description; } /** * <p> * The description for the data set. * </p> * * @return The description for the data set. */ public String getDescription() { return this.description; } /** * <p> * The description for the data set. * </p> * * @param description * The description for the data set. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withDescription(String description) { setDescription(description); return this; } /** * <p> * The unique identifier for the data set. * </p> * * @param id * The unique identifier for the data set. */ public void setId(String id) { this.id = id; } /** * <p> * The unique identifier for the data set. * </p> * * @return The unique identifier for the data set. */ public String getId() { return this.id; } /** * <p> * The unique identifier for the data set. * </p> * * @param id * The unique identifier for the data set. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withId(String id) { setId(id); return this; } /** * <p> * The name of the data set. * </p> * * @param name * The name of the data set. */ public void setName(String name) { this.name = name; } /** * <p> * The name of the data set. * </p> * * @return The name of the data set. */ public String getName() { return this.name; } /** * <p> * The name of the data set. * </p> * * @param name * The name of the data set. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withName(String name) { setName(name); return this; } /** * <p> * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for * subscribers). * </p> * * @param origin * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account * (for subscribers). * @see Origin */ public void setOrigin(String origin) { this.origin = origin; } /** * <p> * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for * subscribers). * </p> * * @return A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account * (for subscribers). * @see Origin */ public String getOrigin() { return this.origin; } /** * <p> * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for * subscribers). * </p> * * @param origin * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account * (for subscribers). * @return Returns a reference to this object so that method calls can be chained together. * @see Origin */ public GetDataSetResult withOrigin(String origin) { setOrigin(origin); return this; } /** * <p> * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for * subscribers). * </p> * * @param origin * A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account * (for subscribers). * @return Returns a reference to this object so that method calls can be chained together. * @see Origin */ public GetDataSetResult withOrigin(Origin origin) { this.origin = origin.toString(); return this; } /** * <p> * If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. * </p> * * @param originDetails * If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. */ public void setOriginDetails(OriginDetails originDetails) { this.originDetails = originDetails; } /** * <p> * If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. * </p> * * @return If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. */ public OriginDetails getOriginDetails() { return this.originDetails; } /** * <p> * If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. * </p> * * @param originDetails * If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withOriginDetails(OriginDetails originDetails) { setOriginDetails(originDetails); return this; } /** * <p> * The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is * returned when a data set owner is viewing the entitled copy of its owned data set. * </p> * * @param sourceId * The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter * is returned when a data set owner is viewing the entitled copy of its owned data set. */ public void setSourceId(String sourceId) { this.sourceId = sourceId; } /** * <p> * The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is * returned when a data set owner is viewing the entitled copy of its owned data set. * </p> * * @return The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter * is returned when a data set owner is viewing the entitled copy of its owned data set. */ public String getSourceId() { return this.sourceId; } /** * <p> * The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is * returned when a data set owner is viewing the entitled copy of its owned data set. * </p> * * @param sourceId * The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter * is returned when a data set owner is viewing the entitled copy of its owned data set. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withSourceId(String sourceId) { setSourceId(sourceId); return this; } /** * <p> * The tags for the data set. * </p> * * @return The tags for the data set. */ public java.util.Map<String, String> getTags() { return tags; } /** * <p> * The tags for the data set. * </p> * * @param tags * The tags for the data set. */ public void setTags(java.util.Map<String, String> tags) { this.tags = tags; } /** * <p> * The tags for the data set. * </p> * * @param tags * The tags for the data set. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withTags(java.util.Map<String, String> tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see GetDataSetResult#withTags * @returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap<String, String>(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult clearTagsEntries() { this.tags = null; return this; } /** * <p> * The date and time that the data set was last updated, in ISO 8601 format. * </p> * * @param updatedAt * The date and time that the data set was last updated, in ISO 8601 format. */ public void setUpdatedAt(java.util.Date updatedAt) { this.updatedAt = updatedAt; } /** * <p> * The date and time that the data set was last updated, in ISO 8601 format. * </p> * * @return The date and time that the data set was last updated, in ISO 8601 format. */ public java.util.Date getUpdatedAt() { return this.updatedAt; } /** * <p> * The date and time that the data set was last updated, in ISO 8601 format. * </p> * * @param updatedAt * The date and time that the data set was last updated, in ISO 8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDataSetResult withUpdatedAt(java.util.Date updatedAt) { setUpdatedAt(updatedAt); 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getAssetType() != null) sb.append("AssetType: ").append(getAssetType()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getOrigin() != null) sb.append("Origin: ").append(getOrigin()).append(","); if (getOriginDetails() != null) sb.append("OriginDetails: ").append(getOriginDetails()).append(","); if (getSourceId() != null) sb.append("SourceId: ").append(getSourceId()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getUpdatedAt() != null) sb.append("UpdatedAt: ").append(getUpdatedAt()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetDataSetResult == false) return false; GetDataSetResult other = (GetDataSetResult) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getAssetType() == null ^ this.getAssetType() == null) return false; if (other.getAssetType() != null && other.getAssetType().equals(this.getAssetType()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getOrigin() == null ^ this.getOrigin() == null) return false; if (other.getOrigin() != null && other.getOrigin().equals(this.getOrigin()) == false) return false; if (other.getOriginDetails() == null ^ this.getOriginDetails() == null) return false; if (other.getOriginDetails() != null && other.getOriginDetails().equals(this.getOriginDetails()) == false) return false; if (other.getSourceId() == null ^ this.getSourceId() == null) return false; if (other.getSourceId() != null && other.getSourceId().equals(this.getSourceId()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null) return false; if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getAssetType() == null) ? 0 : getAssetType().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getOrigin() == null) ? 0 : getOrigin().hashCode()); hashCode = prime * hashCode + ((getOriginDetails() == null) ? 0 : getOriginDetails().hashCode()); hashCode = prime * hashCode + ((getSourceId() == null) ? 0 : getSourceId().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode()); return hashCode; } @Override public GetDataSetResult clone() { try { return (GetDataSetResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }
[ "" ]
e259fc10dd8dffd3c7deb3ddca03b92d0dfa1778
eb3481fa94d848921b94875560cfba2d73592c8f
/knappsack-model/src/main/java/com/sparc/knappsack/models/GroupModel.java
24654e53d39cea3f2530ff92029e4dbde546e11a
[ "MIT" ]
permissive
SVemulapalli/knappsack
ab5edb2df96bd874ccb4551c875821c29f2410a6
4e89393a7b6966812215691b6f581c47acbbc915
refs/heads/master
2021-11-23T17:59:13.458618
2012-10-06T12:20:23
2012-10-06T12:43:25
154,642,161
0
0
MIT
2021-11-02T07:22:52
2018-10-25T09:10:40
Java
UTF-8
Java
false
false
600
java
package com.sparc.knappsack.models; public class GroupModel { private Long id; private String name; private OrganizationModel organization; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public OrganizationModel getOrganization() { return organization; } public void setOrganization(OrganizationModel organization) { this.organization = organization; } }
[ "david.rogina@gmail.com" ]
david.rogina@gmail.com
660a84b9c152bf9365ea283d05fdda6ebd8b4c02
567e4e47e145728df7c1f751d8d1d94374871170
/week1-009.Divider/src/Divider.java
b67fa912cd8897989d6899916717f10a1b4a6f0b
[]
no_license
javewa/Java-MOOC-Solutions-Part-1
2b6703dcc3c08fdc426bae6071943e69433c9115
3378b2e6dc2567d2c4550c2f24795488e583c471
refs/heads/master
2020-03-23T17:30:16.467378
2018-07-22T03:29:37
2018-07-22T03:29:37
141,862,539
0
0
null
null
null
null
UTF-8
Java
false
false
547
java
import java.util.Scanner; public class Divider { public static void main(String[] args) { Scanner reader = new Scanner(System.in); // Implement your program here. Remember to ask the input from user. System.out.println("Type a number:"); int a = Integer.parseInt(reader.nextLine()); System.out.println("Type another number:"); int b = Integer.parseInt(reader.nextLine()); double quotient = 1.0*a/b; System.out.println("Division: "+ a + " / " + b + " = " + quotient); } }
[ "javeriahw@gmail.com" ]
javeriahw@gmail.com
73855309b9c30139417562fe1b80e1d455a991f4
0a1c241e8af5f8039bd84041d0ff14cd5a73ddc4
/Haberci/app/src/main/java/tr/daily/all/news/mobilApp/Models/News.java
b45fee51a7fa2731db3832bc992855ce23bd3ad6
[ "Apache-2.0" ]
permissive
kamilbaskut/Haberci
084c019e8cb708a9f43a9bad621fa08ae8d9aceb
d63ac7e0668fc1d56345162ad93a25213fdfc9d3
refs/heads/main
2023-02-09T15:32:31.065857
2021-01-06T08:42:34
2021-01-06T08:42:34
327,251,296
0
0
null
null
null
null
UTF-8
Java
false
false
1,320
java
package tr.daily.all.news.mobilApp.Models; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.List; public class News { @SerializedName("status") @Expose private String status; @SerializedName("totalResults") @Expose private Integer totalResults; @SerializedName("articles") @Expose private List<Article> articles = null; /** * No args constructor for use in serialization * */ public News() { } /** * * @param totalResults * @param articles * @param status */ public News(String status, Integer totalResults, List<Article> articles) { super(); this.status = status; this.totalResults = totalResults; this.articles = articles; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public Integer getTotalResults() { return totalResults; } public void setTotalResults(Integer totalResults) { this.totalResults = totalResults; } public List<Article> getArticles() { return articles; } public void setArticles(List<Article> articles) { this.articles = articles; } }
[ "43131190+kamilbaskut@users.noreply.github.com" ]
43131190+kamilbaskut@users.noreply.github.com
696196c6995a46f049f64244f2dbaaef480f9753
04122e1782d4226f5185b24a2685ed29bb232c84
/Spring/FastCampus/Lecture/JDBCProject/user/GetUserTest.java
f7880907b863a2a15733fe9a71901172f973f501
[]
no_license
limjoonchul/TIL
ab1d4adaae7acd6337cc9c833e6afe730ad24704
d92564ea4eeb37607af652c0af129ef23d4197ce
refs/heads/master
2023-05-06T20:21:09.820487
2021-05-12T12:23:26
2021-05-12T12:23:26
274,395,769
0
0
null
null
null
null
UHC
Java
false
false
1,737
java
package com.rubypapper.biz.user; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import org.h2.util.JdbcUtils; import com.rubypapper.biz.common.JDBCUtil; public class GetUserTest { public static void main(String[] args) { // JDBC API 선언 Connection conn = null; // 고속도로 // Statement stmt = null; // 자동차 PreparedStatement stmt = null; // 자동차(페라리) statement보다 sql처리속도가 5배 이상 빠르다. 무조건 써라. ResultSet rs = null; // 검색 결과 저장 try { // 2.Connection 객체를 획득한다. conn = JDBCUtil.getConnection(); // static 메소드니깐 바로 접근이 가능하다. // 3. Statement 객체를 획득한다. String sql = "select * from users where id = ? and password = ?"; stmt = conn.prepareStatement(sql);// 프리페얼드는 여기에 sql이 들어감 그리고 파라미터가 ?로 바뀐다. exe여기에 sql이 빠짐 // ? 파라미터에 값 설정 stmt.setString(1, "admin"); stmt.setString(2, "admin"); // 결과가 달라지는게 아니라 성능이 더 좋아진다. // 4. SQL 구문을 DB에 전송한다. rs = stmt.executeQuery(); // 5. 검색 결과 처리 if(rs.next()) { System.out.println("아이디 : " + rs.getString("ID")); System.out.println("비번 : " + rs.getString("PASSWORD")); System.out.println("이름 : " + rs.getString("NAME")); System.out.println("권한 : " + rs.getString("ROLE")); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { JDBCUtil.close(rs, stmt, conn); } } }
[ "dlawnscjf511@naver.com" ]
dlawnscjf511@naver.com
acd2c4f480c8c600fd93b7e5301314e16d4aeeff
aceeba7121e6250db06927f721158b43613a2b0f
/Java Projects/StaffApplication/src/newCalendar.java
bfc81bfd430fc1de3161de3c1c8bf5e130d18475
[]
no_license
gravesc/Final-Project-Code
e6ceab27f92d7bb1767ae520d9397b9687f991f0
28a7a72e522b20f89ea560f98867bb25de03966a
refs/heads/master
2020-05-18T21:02:06.431598
2015-03-27T01:40:10
2015-03-27T01:40:10
32,960,601
0
0
null
null
null
null
UTF-8
Java
false
false
9,483
java
import java.awt.EventQueue; import javax.swing.JFrame; import javax.swing.JPanel; import java.awt.BorderLayout; import javax.swing.JLabel; import javax.swing.JScrollPane; import java.awt.GridLayout; import javax.swing.JTextField; import javax.swing.JButton; import javax.swing.GroupLayout; import javax.swing.GroupLayout.Alignment; import javax.swing.JTextPane; import javax.swing.JComboBox; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import javax.swing.SwingConstants; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicNameValuePair; public class newCalendar extends JFrame { private JFrame frame; private JTextField txtID; private JTextField txtName; private JTextField txtStreet; private JTextField txtTown; private JTextField txtCounty; private JTextField txtCountry; private JTextField txtPostcode; private JTextField txtDateTime; private static final String CalendarServerURL = "http://localhost:8888/General_Servers/CalendarServer"; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { newCalendar window = new newCalendar(); window.frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public newCalendar() { initialize(); } /** * Initialize the contents of the frame. */ private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 600, 400); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel panel = new JPanel(); frame.getContentPane().add(panel, BorderLayout.CENTER); panel.setLayout(new BorderLayout(0, 0)); JLabel lblAddNewCalendartask = new JLabel("<html><u>Add New Calendar Task</u></html>"); lblAddNewCalendartask.setHorizontalAlignment(SwingConstants.CENTER); lblAddNewCalendartask.setFont(new Font("Tahoma", Font.BOLD, 16)); panel.add(lblAddNewCalendartask, BorderLayout.NORTH); JPanel panel_2 = new JPanel(); panel.add(panel_2, BorderLayout.SOUTH); panel_2.setLayout(new GridLayout(0, 2, 0, 0)); JScrollPane scrollPane = new JScrollPane(); panel_2.add(scrollPane); JPanel panel_6 = new JPanel(); scrollPane.setViewportView(panel_6); panel_6.setLayout(new GridLayout(0, 2, 0, 0)); JLabel label = new JLabel("<html><center>ID</center></html>"); label.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label); txtID = new JTextField(); txtID.setColumns(10); panel_6.add(txtID); JLabel label_1 = new JLabel("<html><center>Name</center></html>"); label_1.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_1); txtName = new JTextField(); txtName.setColumns(10); panel_6.add(txtName); JLabel label_2 = new JLabel("<html><center>Type</center></html>"); label_2.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_2); final JComboBox<String> cmbType = new JComboBox<String>(); cmbType.addItem("Appointment"); cmbType.addItem("Viewing"); cmbType.addItem("Tennancy Agreement Meeting"); cmbType.addItem("Tennancy Agreement Signature Date"); cmbType.addItem("Other"); panel_6.add(cmbType); JLabel label_3 = new JLabel("<html><center>Description</center></html>"); label_3.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_3); final JTextPane txtDesc = new JTextPane(); panel_6.add(txtDesc); JLabel label_4 = new JLabel("<html><center>House No. and Street Name</center></html>"); label_4.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_4); txtStreet = new JTextField(); txtStreet.setColumns(10); panel_6.add(txtStreet); JLabel label_5 = new JLabel("<html><center>Town</center></html>"); label_5.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_5); txtTown = new JTextField(); txtTown.setColumns(10); panel_6.add(txtTown); JLabel label_6 = new JLabel("<html><center>County</center></html>"); label_6.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_6); txtCounty = new JTextField(); txtCounty.setColumns(10); panel_6.add(txtCounty); JLabel label_7 = new JLabel("<html><center>Country</center></html>"); label_7.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_7); txtCountry = new JTextField(); txtCountry.setColumns(10); panel_6.add(txtCountry); JLabel label_8 = new JLabel("<html><center>Postcode</center></html>"); label_8.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_8); txtPostcode = new JTextField(); txtPostcode.setColumns(10); panel_6.add(txtPostcode); JLabel label_9 = new JLabel("<html><center>Date and Time</center></html>"); label_9.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_9); txtDateTime = new JTextField(); txtDateTime.setColumns(10); panel_6.add(txtDateTime); JLabel label_10 = new JLabel("<html><center>Important</center></html>"); label_10.setHorizontalAlignment(SwingConstants.CENTER); panel_6.add(label_10); final JComboBox<String> cmbImportant = new JComboBox<String>(); cmbImportant.addItem("Y"); cmbImportant.addItem("N"); panel_6.add(cmbImportant); JPanel panel_5 = new JPanel(); panel_2.add(panel_5); JButton button = new JButton("Add New Task"); button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { String id = txtID.getText(); String name = removeSpaces(txtName.getText()); String type = cmbType.getSelectedItem().toString(); String desc = removeSpaces(txtDesc.getText()); String street = removeSpaces(txtStreet.getText()); String town = removeSpaces(txtTown.getText()); String county = removeSpaces(txtCounty.getText()); String country = removeSpaces(txtCountry.getText()); String postcode = removeSpaces(txtPostcode.getText()); String dateTime = removeSpaces(txtDateTime.getText()); String important = cmbImportant.getSelectedItem().toString(); try { connectCalendar(id, name, type, desc, street, town, county, country, postcode, dateTime, important); } catch (IllegalStateException | IOException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } }); JButton button_1 = new JButton("Clear"); button_1.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { txtID.setText(""); txtName.setText(""); txtDesc.setText(""); txtStreet.setText(""); txtTown.setText(""); txtCounty.setText(""); txtCountry.setText(""); txtPostcode.setText(""); txtDateTime.setText(""); } }); JButton button_2 = new JButton("Close"); button_2.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { System.exit(0); } }); GroupLayout gl_panel_5 = new GroupLayout(panel_5); gl_panel_5.setHorizontalGroup( gl_panel_5.createParallelGroup(Alignment.LEADING) .addGroup(Alignment.TRAILING, gl_panel_5.createSequentialGroup() .addContainerGap(71, Short.MAX_VALUE) .addGroup(gl_panel_5.createParallelGroup(Alignment.TRAILING) .addComponent(button_2, GroupLayout.PREFERRED_SIZE, 161, GroupLayout.PREFERRED_SIZE) .addComponent(button_1, GroupLayout.PREFERRED_SIZE, 161, GroupLayout.PREFERRED_SIZE) .addComponent(button, GroupLayout.PREFERRED_SIZE, 161, GroupLayout.PREFERRED_SIZE)) .addGap(60)) ); gl_panel_5.setVerticalGroup( gl_panel_5.createParallelGroup(Alignment.LEADING) .addGroup(gl_panel_5.createSequentialGroup() .addGap(52) .addComponent(button) .addGap(18) .addComponent(button_1) .addGap(18) .addComponent(button_2) .addContainerGap(166, Short.MAX_VALUE)) ); panel_5.setLayout(gl_panel_5); } public static void connectCalendar(String taskID, String taskName, String taskType, String taskDesc, String addressStreet, String addressTown, String addressCounty, String addressCountry, String addressPostcode, String taskDateTime, String important) throws IllegalStateException, IOException { String url = CalendarServerURL + "?method=post&taskID=" + taskID + "&taskName=" + taskName + "&taskType=" + taskType + "&taskDesc=" + taskDesc + "&addressStreet=" + addressStreet + "&addressTown=" + addressTown + "&addressCounty=" + addressCounty + "&addressCountry=" + addressCountry + "&addressPostcode=" + addressPostcode + "&taskDateTime=" + taskDateTime + "&important=" + important; HttpClient httpclient = new DefaultHttpClient(); // Prepare a request object HttpGet httpget = new HttpGet(url); // Execute the request HttpResponse response; try { response = httpclient.execute(httpget); // Examine the response status } catch (Exception e) { e.printStackTrace(); } } public String removeSpaces(String text) { return text.replace(' ','+'); } }
[ "christopher.graves@stu.mmu.ac.uk" ]
christopher.graves@stu.mmu.ac.uk
2f0522dd9b7ec810de20dbd7516e7d1eb77f4ee2
df33e5fc72007c1015d65f36310d052915c07e02
/licman/src/main/java/com/proasecal/licman/gui/PanelReporteLicencia.java
d410b737f26af5ef19ba7bdc0e97d429cdd95ff3
[]
no_license
aqubit/license_manager
1c899bd50a5b257483a0dcded9d0b0bf88fa5fa1
71cef2db4b4e0768a79ac988504597b0c90e65e4
refs/heads/master
2021-01-13T01:27:45.660075
2013-04-30T00:12:54
2013-04-30T00:12:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,959
java
package com.proasecal.licman.gui; import java.awt.BorderLayout; import java.awt.Color; import java.awt.FlowLayout; import java.awt.GridBagLayout; import java.util.Observable; import java.util.Observer; import java.util.ResourceBundle; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.SwingConstants; import javax.swing.border.LineBorder; import org.openswing.swing.client.ExportButton; import org.openswing.swing.client.GridControl; import org.openswing.swing.client.NavigatorBar; import org.openswing.swing.table.columns.client.DateTimeColumn; import org.openswing.swing.table.columns.client.TextColumn; import org.openswing.swing.util.java.Consts; import com.jgoodies.forms.factories.FormFactory; import com.jgoodies.forms.layout.ColumnSpec; import com.jgoodies.forms.layout.FormLayout; import com.jgoodies.forms.layout.RowSpec; import com.proasecal.licman.controller.LicenciaReporteGridController; import org.openswing.swing.table.columns.client.IntegerColumn; public class PanelReporteLicencia extends JPanel implements Observer { /** * */ private static final long serialVersionUID = -8430027864574125274L; private static final ResourceBundle BUNDLE = ResourceBundle .getBundle("com.proasecal.licman.messages"); //$NON-NLS-1$ private GridControl _gridControl; public enum RangoLicencias { EXPIRADAS, POR_EXPIRAR, RECIENTES } /** * */ public PanelReporteLicencia(String strTitle, RangoLicencias rango) { setLayout(new FormLayout(new ColumnSpec[] { FormFactory.RELATED_GAP_COLSPEC, ColumnSpec.decode("default:grow"), }, new RowSpec[] { FormFactory.RELATED_GAP_ROWSPEC, FormFactory.DEFAULT_ROWSPEC, FormFactory.RELATED_GAP_ROWSPEC, RowSpec.decode("default:grow"), })); JLabel lbTitle = new JLabel(BUNDLE.getString(strTitle)); lbTitle.setHorizontalAlignment(SwingConstants.LEFT); add(lbTitle, "2, 2"); JPanel pnlGrupo2 = new JPanel(); pnlGrupo2.setBorder(new LineBorder(new Color(0, 0, 0))); add(pnlGrupo2, "2, 4, fill, fill"); pnlGrupo2.setLayout(new BorderLayout(0, 0)); JPanel panel = new JPanel(); FlowLayout flowLayout = (FlowLayout) panel.getLayout(); flowLayout.setAlignment(FlowLayout.LEFT); pnlGrupo2.add(panel, BorderLayout.NORTH); ExportButton btnExport = new ExportButton(); panel.add(btnExport); NavigatorBar navigatorBar = new NavigatorBar(); panel.add(navigatorBar); _gridControl = new GridControl(); LicenciaReporteGridController controller = new LicenciaReporteGridController(rango); _gridControl.setNavBar(navigatorBar); _gridControl.setExportButton(btnExport); _gridControl.setColorsInReadOnlyMode(false); _gridControl.setReorderingAllowed(false); _gridControl.setAutoLoadData(true); _gridControl.setController(controller); _gridControl.setGridDataLocator(controller); pnlGrupo2.add(_gridControl, BorderLayout.CENTER); _gridControl.setDefaultQuickFilterCriteria(Consts.CONTAINS); _gridControl .setValueObjectClassName("com.proasecal.licman.vo.LicenciaVO"); IntegerColumn columnId = new IntegerColumn(); columnId.setColumnSortable(true); columnId.autoFitColumn = true; columnId.setColumnName("id"); _gridControl.getColumnContainer().add(columnId); TextColumn columnProducto = new TextColumn(); columnProducto .setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.columnProducto.headerColumnName")); //$NON-NLS-1$ columnProducto.autoFitColumn = true; columnProducto.setColumnSortable(true); columnProducto.setColumnName("productoVO.nombre"); _gridControl.getColumnContainer().add(columnProducto); TextColumn columnVersion = new TextColumn(); columnVersion.autoFitColumn = true; columnVersion.setColumnSortable(true); columnVersion.setHeaderColumnName(BUNDLE.getString("PanelProducto.columnVersion.headerColumnName")); //$NON-NLS-1$ columnVersion.setColumnName("productoVO.version"); _gridControl.getColumnContainer().add(columnVersion); TextColumn columnCliente = new TextColumn(); columnCliente.autoFitColumn = true; columnCliente.setColumnSortable(true); columnCliente.setColumnName("clienteVO.nombre_laboratorio"); columnCliente .setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.columnCliente.headerColumnName")); //$NON-NLS-1$ _gridControl.getColumnContainer().add(columnCliente); TextColumn columnDepartamento = new TextColumn(); columnDepartamento.setColumnSortable(true); columnDepartamento.setColumnName("depto_activacion"); columnDepartamento .setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.columnDepartamento.headerColumnName")); //$NON-NLS-1$ columnDepartamento.autoFitColumn = true; _gridControl.getColumnContainer().add(columnDepartamento); TextColumn columnPersonaActiva = new TextColumn(); columnPersonaActiva.setColumnSortable(true); columnPersonaActiva.autoFitColumn = true; columnPersonaActiva.setColumnName("nombre_persona"); columnPersonaActiva.setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.textColumn.headerColumnName")); //$NON-NLS-1$ _gridControl.getColumnContainer().add(columnPersonaActiva); TextColumn columnTelPersonaActiva = new TextColumn(); columnTelPersonaActiva.setColumnSortable(true); columnTelPersonaActiva.autoFitColumn = true; columnTelPersonaActiva .setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.columnTelPersonaActiva.headerColumnName")); //$NON-NLS-1$ columnTelPersonaActiva.setColumnName("telefono_persona"); _gridControl.getColumnContainer().add(columnTelPersonaActiva); DateTimeColumn columnFechaVencimiento = new DateTimeColumn(); columnFechaVencimiento.setColumnSortable(true); columnFechaVencimiento.autoFitColumn = true; columnFechaVencimiento.setColumnName("fecha_vencimiento"); columnFechaVencimiento .setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.columnFechaVencimiento.headerColumnName")); //$NON-NLS-1$ columnFechaVencimiento.setTimeFormat(""); _gridControl.getColumnContainer().add(columnFechaVencimiento); DateTimeColumn columnFechaCreacion = new DateTimeColumn(); columnFechaCreacion.setColumnSortable(true); GridBagLayout gbl_columnFechaCreacion = (GridBagLayout) columnFechaCreacion .getLayout(); gbl_columnFechaCreacion.rowWeights = new double[] { 0.0, 0.0, 0.0 }; gbl_columnFechaCreacion.rowHeights = new int[] { 0, 0, 0 }; gbl_columnFechaCreacion.columnWeights = new double[] { 0.0 }; gbl_columnFechaCreacion.columnWidths = new int[] { 0 }; columnFechaCreacion .setHeaderColumnName(BUNDLE .getString("PanelReporteLicencia.dateTimeColumn.headerColumnName")); //$NON-NLS-1$ columnFechaCreacion.setColumnName("fecha_creacion"); columnFechaCreacion.autoFitColumn = true; columnFechaCreacion.setAutoFitColumn(true); _gridControl.getColumnContainer().add(columnFechaCreacion); } @Override public void update(Observable o, Object arg) { _gridControl.reloadData(); } }
[ "cesar.acuna@aqubit.com" ]
cesar.acuna@aqubit.com
7b297aa20abd81618e4b5f390d10ff2f1dfa38fc
e3f8277f1da5389b2a652eaaa7ae46ecbf787ddd
/app/src/main/java/com/example/osangmin/jggtest/ClosingFragment.java
531264a1c5446936d6a27cd5fa830310ca65b05b
[]
no_license
sm55555/JggTest
5821866c6fc62eb60bee3d9e18b6918ee7938e0d
046934a54728ec724774ee9f109bb989bebf703e
refs/heads/master
2020-03-18T04:06:57.675216
2018-05-21T13:03:57
2018-05-21T13:03:57
134,270,084
0
0
null
null
null
null
UTF-8
Java
false
false
3,949
java
package com.example.osangmin.jggtest; import android.net.Uri; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CalendarView; import android.widget.Toast; /** * A simple {@link Fragment} subclass. * Activities that contain this fragment must implement the * {@link ClosingFragment.OnFragmentInteractionListener} interface * to handle interaction events. * Use the {@link ClosingFragment#newInstance} factory method to * create an instance of this fragment. */ public class ClosingFragment extends Fragment { // TODO: Rename parameter arguments, choose names that match // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER private static final String ARG_PARAM1 = "param1"; private static final String ARG_PARAM2 = "param2"; // TODO: Rename and change types of parameters private String mParam1; private String mParam2; private OnFragmentInteractionListener mListener; public ClosingFragment() { // Required empty public constructor } /** * Use this factory method to create a new instance of * this fragment using the provided parameters. * * @param param1 Parameter 1. * @param param2 Parameter 2. * @return A new instance of fragment ClosingFragment. */ // TODO: Rename and change types and number of parameters public static ClosingFragment newInstance(String param1, String param2) { ClosingFragment fragment = new ClosingFragment(); Bundle args = new Bundle(); args.putString(ARG_PARAM1, param1); args.putString(ARG_PARAM2, param2); fragment.setArguments(args); return fragment; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (getArguments() != null) { mParam1 = getArguments().getString(ARG_PARAM1); mParam2 = getArguments().getString(ARG_PARAM2); } } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_closing, container, false); //fragment에 관련된 layout을 보여주기 위함 //return inflater.inflate(R.layout.fragment_closing, container, false); CalendarView calendar = (CalendarView)view.findViewById(R.id.calendar); calendar.setOnDateChangeListener(new CalendarView.OnDateChangeListener() { @Override public void onSelectedDayChange(@NonNull CalendarView calendarView, int year, int month, int dayOfMonth) { Toast.makeText(getActivity(), ""+year+""+month+""+dayOfMonth, Toast.LENGTH_SHORT).show(); } }); return view; } // TODO: Rename method, update argument and hook method into UI event public void onButtonPressed(Uri uri) { if (mListener != null) { mListener.onFragmentInteraction(uri); } } @Override public void onDetach() { super.onDetach(); mListener = null; } /** * This interface must be implemented by activities that contain this * fragment to allow an interaction in this fragment to be communicated * to the activity and potentially other fragments contained in that * activity. * <p> * See the Android Training lesson <a href= * "http://developer.android.com/training/basics/fragments/communicating.html" * >Communicating with Other Fragments</a> for more information. */ public interface OnFragmentInteractionListener { // TODO: Update argument type and name void onFragmentInteraction(Uri uri); } }
[ "osangmin@osangmin-ui-MacBook-Pro.local" ]
osangmin@osangmin-ui-MacBook-Pro.local
c02e6ca41886ae777d4f7b9c6b43f9ea5dbe9c51
a2e82f378150528655eb27b3f471804041bf7a1c
/lib/Java/graph/LCA.java
19b0ccb2726c12d53bb3854a1b9bd58ced9b3602
[]
no_license
HiromuOhtsuka/procon
6c2192fa9b07637f0ef4bf9079d6db609fd367d0
184e3fa69c412fd883869c10b23b292f9bc73be1
refs/heads/master
2021-01-24T08:37:12.779999
2020-06-13T15:07:38
2020-06-13T15:07:38
58,292,303
1
0
null
null
null
null
UTF-8
Java
false
false
1,832
java
import java.util.List; import java.util.ArrayList; import java.util.Stack; class LCA { int n; List< List< Integer > > T; int[] depth; int[][] parent; LCA(int n, List< List< Integer > > T){ this.n = n; this.T = T; } LCA(int n, int[][] edges){ this.n = n; T = new ArrayList< List< Integer > >(n); for(int i = 0; i < n; i++){ T.add(new ArrayList< Integer >()); } for(int[] p : edges){ T.get(p[0]).add(p[1]); T.get(p[1]).add(p[0]); } } void optimize(){ depth = new int[n]; int[] par = new int[n]; dfs(0, -1, 0, par); parent = new int[n][21]; for(int v = 0; v < n; v++){ parent[v][0] = par[v]; } for(int i = 1; i < 21; i++){ for(int j = 0; j < n; j++){ if(parent[j][i - 1] != -1){ parent[j][i] = parent[parent[j][i - 1]][i - 1]; } } } } int lca(int u, int v){ if(depth[u] > depth[v]){ int tmp = u; u = v; v = tmp; } for(int i = 20; i >= 0; i--){ if((((depth[v] - depth[u]) >> i) & 1) != 0){ v = parent[v][i]; } } if(u == v){ return u; } for(int i = 20; i >= 0; i--){ if(parent[u][i] != parent[v][i]){ u = parent[u][i]; v = parent[v][i]; } } return parent[u][0]; } int rank(int v){ return depth[v]; } void dfs(int v, int p, int d, int[] par){ Stack< Edge > stack = new Stack< Edge >(); stack.push(new Edge(v, p, d)); while(!stack.isEmpty()){ Edge e = stack.pop(); depth[e.v] = e.d; par[e.v] = e.p; for(Integer w : T.get(e.v)){ if(w != e.p){ stack.push(new Edge(w, e.v, e.d + 1)); } } } } class Edge { int v, p, d; Edge(int v, int p, int d){ this.v = v; this.p = p; this.d = d; } } }
[ "multiverse.yume.a12@gmail.com" ]
multiverse.yume.a12@gmail.com
fbf70c7edb8ff1bb614929b7ee491ed456bb3e6b
3f3c51248f812750a702e3349bcb29653942a886
/spring-websocket/src/test/java/org/springframework/web/socket/sockjs/transport/handler/SockJsWebSocketHandlerTests.java
ee2e521a66a492c91c548edcd8ea3554a9c08ada
[ "Apache-2.0" ]
permissive
sniper602/spring-framework-4.1
f17b05f36b640ab1beee38d75c3a8098e0168827
6628bade53173075024bd1104ce1f04743cd69c4
refs/heads/master
2020-09-12T06:56:36.349853
2018-11-24T02:53:14
2018-11-24T02:53:14
222,347,493
1
0
null
2019-11-18T02:31:24
2019-11-18T02:31:24
null
UTF-8
Java
false
false
2,690
java
/* * Copyright 2002-2014 the original author or authors. * * 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.springframework.web.socket.sockjs.transport.handler; import org.junit.Test; import org.springframework.messaging.SubscribableChannel; import org.springframework.scheduling.TaskScheduler; import org.springframework.web.socket.WebSocketHandler; import org.springframework.web.socket.handler.TextWebSocketHandler; import org.springframework.web.socket.messaging.StompSubProtocolHandler; import org.springframework.web.socket.messaging.SubProtocolWebSocketHandler; import org.springframework.web.socket.sockjs.transport.session.WebSocketServerSockJsSession; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.mockito.Mockito.mock; /** * Unit tests for {@link SockJsWebSocketHandler}. * @author Rossen Stoyanchev */ public class SockJsWebSocketHandlerTests { @Test public void getSubProtocols() throws Exception { SubscribableChannel channel = mock(SubscribableChannel.class); SubProtocolWebSocketHandler handler = new SubProtocolWebSocketHandler(channel, channel); StompSubProtocolHandler stompHandler = new StompSubProtocolHandler(); handler.addProtocolHandler(stompHandler); TaskScheduler scheduler = mock(TaskScheduler.class); DefaultSockJsService service = new DefaultSockJsService(scheduler); WebSocketServerSockJsSession session = new WebSocketServerSockJsSession("1", service, handler, null); SockJsWebSocketHandler sockJsHandler = new SockJsWebSocketHandler(service, handler, session); assertEquals(stompHandler.getSupportedProtocols(), sockJsHandler.getSubProtocols()); } @Test public void getSubProtocolsNone() throws Exception { WebSocketHandler handler = new TextWebSocketHandler(); TaskScheduler scheduler = mock(TaskScheduler.class); DefaultSockJsService service = new DefaultSockJsService(scheduler); WebSocketServerSockJsSession session = new WebSocketServerSockJsSession("1", service, handler, null); SockJsWebSocketHandler sockJsHandler = new SockJsWebSocketHandler(service, handler, session); assertNull(sockJsHandler.getSubProtocols()); } }
[ "yemuyu240@163.com" ]
yemuyu240@163.com
ceff4390d6b11cab56fc44a89ed7be6d7f6af3d6
a7ee5de53b1d4d440bed19faa118fa1c9c4078eb
/src/main/java/org/caleydo/view/relationshipexplorer/ui/command/ShowDetailCommand.java
86c80e3566cef98860641d9b8121d7b990ab1ddb
[]
no_license
Caleydo/org.caleydo.view.contour
38c1028b1fd2aeec4ba291de7096afb2c1bb1ef8
ee26209558f168a86cc927f18e777c4ac986b34c
refs/heads/develop
2020-05-18T19:14:58.579937
2016-12-15T17:08:49
2016-12-15T17:08:49
15,938,163
1
0
null
2016-12-15T17:08:49
2014-01-15T14:55:28
Java
UTF-8
Java
false
false
1,237
java
/******************************************************************************* * Caleydo - Visualization for Molecular Biology - http://caleydo.org * Copyright (c) The Caleydo Team. All rights reserved. * Licensed under the new BSD license, available at http://caleydo.org/license *******************************************************************************/ package org.caleydo.view.relationshipexplorer.ui.command; import org.caleydo.view.relationshipexplorer.ui.History.IHistoryCommand; import org.caleydo.view.relationshipexplorer.ui.ConTourElement; import org.caleydo.view.relationshipexplorer.ui.collection.IEntityCollection; /** * @author Christian * */ public class ShowDetailCommand implements IHistoryCommand { protected final IEntityCollection collection; protected final ConTourElement relationshipExplorer; public ShowDetailCommand(IEntityCollection collection, ConTourElement relationshipExplorer) { this.collection = collection; this.relationshipExplorer = relationshipExplorer; } @Override public Object execute() { relationshipExplorer.showDetailView(collection); return null; } @Override public String getDescription() { return "Shoe Detail View of " + collection.getLabel(); } }
[ "partl@icg.tugraz.at" ]
partl@icg.tugraz.at
6557571b3cc6e02bd6b0880d2bf8ddb56dbe8499
128a8cdf165f1db06eb5a2802f0fb5eb27238ff1
/src/test/java/page/MorePage.java
f3149201290f22209f36ca966804c57ff197522d
[]
no_license
happymff/appiumtest1
d8bd56cc35de6eca0a88b620aad9eb43ddc31e56
aeb9c02d441d4594371ed4b5f50a1892bc289241
refs/heads/master
2020-04-05T11:00:30.836702
2017-12-15T06:09:23
2017-12-15T06:09:23
81,442,452
0
0
null
null
null
null
UTF-8
Java
false
false
615
java
package page; import io.appium.java_client.android.AndroidDriver; import org.openqa.selenium.By; /** * Created by mengfeifei on 2017/1/6. */ public class MorePage { AndroidDriver driver ; public MorePage(AndroidDriver driver){ this.driver = driver; } public void morePage(){ //点击“更多”,进入更多页面 driver.findElement(By.id("com.etiantian.pclass:id/lag_tag_more_img")).click(); } public void morePageYinDaoImage(){ //过文件夹的引导图 driver.findElement(By.id("com.etiantian.pclass:id/ydt_folder_over")).click(); } }
[ "happymff@126.com" ]
happymff@126.com
7f9aa714521923bc38f3ab7e28d853c2805d9146
ae35e766ffdcc0c2f99461ba5786e664881850d6
/src/es/upm/dit/tfg/webLab/dao/PlanEstudiosDAO.java
3e9882b65a3a8b3392b6deacebc714a2363f9763
[]
no_license
JoseIgnacioVillegas/Pruebas2
62dd93d8959cea4b39c13dfbafecc0b511dceb62
2e221adf7df365c47780a5742ab14cc3df0e6e4d
refs/heads/master
2020-05-02T20:07:34.995620
2019-04-22T16:55:31
2019-04-22T16:55:31
178,181,000
0
0
null
null
null
null
UTF-8
Java
false
false
451
java
package es.upm.dit.tfg.webLab.dao; import java.util.List; import es.upm.dit.tfg.webLab.model.Asignatura; import es.upm.dit.tfg.webLab.model.Grupo; import es.upm.dit.tfg.webLab.model.PlanEstudios; public interface PlanEstudiosDAO { public void createPlanEstudios(PlanEstudios plan); public void deletePlanEstudios(PlanEstudios plan) ; public PlanEstudios readPlanEstudios(String codigo); public List<PlanEstudios> readTodosPlanesEstudios(); }
[ "JoseIgnacioVillegas" ]
JoseIgnacioVillegas
185f97cb2c67bcb2abfb3d12483b299752aa96ac
8c2f62e357154afb91adb7f0be783f16d695462c
/DesignPattern/src/creational/abstractfactory/Locations.java
2883978e86151a85b142a4f293157e6e8c7c5c77
[]
no_license
TunayNovruz/java-road-map
fa790dfecfb2137b9bf97ff8154ec738480aa5f1
b2d0b11a85a5c3b18e2d5b5ae43ce5f0b4d1fd2a
refs/heads/master
2023-06-30T19:21:02.916358
2021-08-09T20:40:13
2021-08-09T20:40:13
285,374,404
1
0
null
null
null
null
UTF-8
Java
false
false
165
java
/* * Copyright (c) 2020. * @author TunayNovruz https://tunaynovruz.com * */ package creational.abstractfactory; public enum Locations { ASIA,USA,DEFAULT }
[ "tunaynovruz@gmail.com" ]
tunaynovruz@gmail.com
9834031504c12466c62e44e6015759e88627a7c5
a13f3d2ab6302b64acd802b3e63258d175e13325
/CalendarFieldStepSize/src/java/example/MainPanel.java
36afa726f1ce99409cb5aeef2ea6ef0324206f74
[ "MIT" ]
permissive
makejavas/java-swing-tips
c70ef46ef76db40b79fea463a88c6d5c81368a92
d5260998e2727ed78144bb37fca6d5821018ccae
refs/heads/master
2021-05-12T09:38:06.103636
2018-01-12T15:58:55
2018-01-12T15:58:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,189
java
package example; //-*- mode:java; encoding:utf-8 -*- // vim:set fileencoding=utf-8: //@homepage@ import java.awt.*; import java.text.*; import java.util.*; import javax.swing.*; import javax.swing.text.*; public final class MainPanel extends JPanel { private MainPanel() { super(new GridLayout(2, 1)); SimpleDateFormat format = new SimpleDateFormat("mm:ss, SSS", Locale.getDefault()); DefaultFormatterFactory factory = new DefaultFormatterFactory(new DateFormatter(format)); Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.HOUR_OF_DAY, 0); calendar.clear(Calendar.MINUTE); calendar.clear(Calendar.SECOND); calendar.clear(Calendar.MILLISECOND); Date d = calendar.getTime(); JSpinner spinner1 = new JSpinner(new SpinnerDateModel(d, null, null, Calendar.SECOND)); ((JSpinner.DefaultEditor) spinner1.getEditor()).getTextField().setFormatterFactory(factory); HashMap<Integer, Integer> stepSizeMap = new HashMap<>(); stepSizeMap.put(Calendar.HOUR_OF_DAY, 1); stepSizeMap.put(Calendar.MINUTE, 1); stepSizeMap.put(Calendar.SECOND, 30); stepSizeMap.put(Calendar.MILLISECOND, 500); JSpinner spinner2 = new JSpinner(new SpinnerDateModel(d, null, null, Calendar.SECOND) { @Override public Object getPreviousValue() { Calendar cal = Calendar.getInstance(); cal.setTime(getDate()); Integer calendarField = getCalendarField(); Integer stepSize = Optional.ofNullable(stepSizeMap.get(calendarField)).orElse(1); cal.add(calendarField, -stepSize); // Date prev = cal.getTime(); // Comparable start = getStart(); // return ((start == null) || (start.compareTo(prev) <= 0)) ? prev : null; // return prev; return cal.getTime(); } @Override public Object getNextValue() { Calendar cal = Calendar.getInstance(); cal.setTime(getDate()); Integer calendarField = getCalendarField(); Integer stepSize = Optional.ofNullable(stepSizeMap.get(calendarField)).orElse(1); cal.add(calendarField, stepSize); // Date next = cal.getTime(); // Comparable end = getEnd(); // return ((end == null) || (end.compareTo(next) >= 0)) ? next : null; // return next; return cal.getTime(); } }); ((JSpinner.DefaultEditor) spinner2.getEditor()).getTextField().setFormatterFactory(factory); add(makeTitlePanel("Default SpinnerDateModel", spinner1)); add(makeTitlePanel("Override SpinnerDateModel#getNextValue(...)", spinner2)); setBorder(BorderFactory.createEmptyBorder(10, 5, 10, 5)); setPreferredSize(new Dimension(320, 240)); } private static Component makeTitlePanel(String title, Component cmp) { JPanel p = new JPanel(new GridBagLayout()); p.setBorder(BorderFactory.createTitledBorder(title)); GridBagConstraints c = new GridBagConstraints(); c.weightx = 1d; c.fill = GridBagConstraints.HORIZONTAL; c.insets = new Insets(5, 5, 5, 5); p.add(cmp, c); return p; } public static void main(String... args) { EventQueue.invokeLater(new Runnable() { @Override public void run() { createAndShowGUI(); } }); } public static void createAndShowGUI() { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) { ex.printStackTrace(); } JFrame frame = new JFrame("@title@"); frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); frame.getContentPane().add(new MainPanel()); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); } }
[ "aterai@outlook.com" ]
aterai@outlook.com
c349418456f19efc56fe9f440de90933c2d42e70
9f02f758d061ee7e2020395e1c59d617445229bc
/src/main/java/LycAlgo/Problems/IncreasingTriplet/Solution.java
f5ebf91bccc9baca03110990ed8a7e76c75af17e
[]
no_license
windlikelyc/LycAlgo
d9f538a999ee22b6f08f84d9ef11158bf5b60e21
a1a03a7342b2261408d11d799fef7cd289a12ee1
refs/heads/master
2021-01-21T12:31:35.505548
2018-06-21T08:56:59
2018-06-21T08:56:59
102,080,492
0
0
null
null
null
null
UTF-8
Java
false
false
573
java
package LycAlgo.Problems.IncreasingTriplet; import java.util.Stack; public class Solution { // class Solution { // public: // bool increasingTriplet(vector<int>& nums) { // int n = nums.size(); // if (n < 3) return false; // int a = INT_MAX, b = INT_MAX; // for (int i = 0; i < n; ++i) // { // if (nums[i] <= a) a = nums[i]; // else if (nums[i] <= b) b = nums[i]; // else return true; // } // return false; // } // }; }
[ "windlikelyc@gmail.com" ]
windlikelyc@gmail.com
b7a0ef25bdb9d31086689862a45d40bbc13a6e94
ac5ece7c56b14bbeedf075d6350184504b44d0f2
/EVA2_1_SQLLITE/app/src/main/java/starkiller/eva2_1_sqllite/Principal.java
3667ab113cdcc62460bb53c3c3e701a6b892a979
[]
no_license
benyiro/EVA2-plataforma-2
06fd5907de2310f5095612f61b68739b7e441f5b
f6f3919ed7c61cc8b62c6607bcce06a12c6e99e3
refs/heads/master
2021-01-20T00:22:26.981794
2017-04-23T06:06:00
2017-04-23T06:06:00
89,120,965
0
0
null
null
null
null
UTF-8
Java
false
false
2,434
java
package starkiller.eva2_1_sqllite; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteException; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.widget.TextView; public class Principal extends AppCompatActivity { SQLiteDatabase sqlconnect; TextView txtDatos; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_principal); //establecer conexion sqlconnect = openOrCreateDatabase("mibasededatos",MODE_PRIVATE,null); try{ sqlconnect.execSQL("create table tblDatos(regID integer PRIMARY KEY autoincrement, nombre text, apellido text);"); }catch (SQLiteException e){ e.printStackTrace(); } sqlconnect.execSQL("insert into tblDatos(nombre, apellido) values ('Hector','Rodriguez')"); sqlconnect.execSQL("insert into tblDatos(nombre, apellido) values ('jhon','snow')"); sqlconnect.execSQL("insert into tblDatos(nombre, apellido) values ('jaime',':Lanninster')"); txtDatos= (TextView)findViewById(R.id.txtDatos); Cursor cl = sqlconnect.rawQuery("select * from tblDatos", null); cl.moveToFirst(); while (!cl.isAfterLast()){ txtDatos.append(cl.getInt(cl.getColumnIndex("regID")) + " - "); txtDatos.append(cl.getString(cl.getColumnIndex("nombre")) + " - "); txtDatos.append(cl.getString(cl.getColumnIndex("apellido")) + " - "); cl.moveToNext(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_principal, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
[ "benyiro@hotmail.com" ]
benyiro@hotmail.com
1e6afa9c650dc34bb5291f39a60e19ec964fb564
f86938ea6307bf6d1d89a07b5b5f9e360673d9b8
/CodeComment_Data/Code_Jam/val/Counting_Sheep/S/CountingSheep(197).java
a33a45ab47d38af3b4fbf0746b9236d74168c450
[]
no_license
yxh-y/code_comment_generation
8367b355195a8828a27aac92b3c738564587d36f
2c7bec36dd0c397eb51ee5bd77c94fa9689575fa
refs/heads/master
2021-09-28T18:52:40.660282
2018-11-19T14:54:56
2018-11-19T14:54:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,556
java
package methodEmbedding.Counting_Sheep.S.LYD807; import java.util.*; import java.io.FileReader; import java.io.FileWriter; import java.io.BufferedReader; import java.io.IOException; import java.io.PrintWriter; public class CountingSheep { public static void main(String[] args) { try { FileReader fr = new FileReader("bin/A-small-attempt3.in"); Scanner sc = new Scanner(fr); PrintWriter pw = new PrintWriter (new FileWriter("output.txt")); int caseNumber = sc.nextInt(); for (int x =0; x < caseNumber; x++){ int[] Sleeperay = new int[10]; pw.print("Case #" + (x+1) + ":"); int N = sc.nextInt(); int i = 0; int z = 0; for (int nextNum = N; ; nextNum = i*N){ i = i+1; int counter = 0; if (N==0){ break; } String sN = Integer.toString(nextNum); String[] splitN = sN.split(""); for (int y=1; y< splitN.length; y++){ String stringN = splitN[y]; int P = Integer.parseInt(stringN); Sleeperay[P] = 1; } for (int q=0; q< Sleeperay.length; q++){ int test = Sleeperay[q]; if (test == 1){ counter = counter+1; } } if (counter == 10){ z=1; pw.print(" "+nextNum); pw.println(); break; } } if(z == 0){ pw.print(" INSOMNIA"); pw.println(); } } sc.close(); pw.flush(); pw.close(); } catch (IOException e) { System.out.println("Error!"); } } }
[ "liangyuding@sjtu.edu.cn" ]
liangyuding@sjtu.edu.cn
f2d20ec23df04e3966fa8944408d56813abefe5e
4bea1cee260e21c19695f8058dc5359ebc423399
/src/main/java/com/tanghuachun/demo/entity/Company.java
4194fd69bbe68014c7ecf4ae46e9c4281ea97c34
[]
no_license
cghver/demo
f1f02a83097e678f8be4f90d7ad7024d3cccc737
2b40f0b9261a584dede16b1838dd9ebbdc0e74bc
refs/heads/master
2020-09-29T10:57:00.923084
2019-12-14T06:01:06
2019-12-14T06:01:06
227,022,102
0
0
null
null
null
null
UTF-8
Java
false
false
14,461
java
package com.tanghuachun.demo.entity; import java.io.Serializable; /** * company * @author */ public class Company implements Serializable { /** * 自增,与业务无关 */ private Integer acid; /** * 统一信用代码作为主键 */ private String id; /** * 公司名称 */ private String name; /** * 公司logo url */ private String logo; /** * 公司描述 */ private String description; /** * 公司联系电话 */ private String phone; /** * 邮箱 */ private String mail; /** * 公司网站 */ private String website; /** * 行业 */ private String industry; /** * 公司地址 */ private String address; /** * 分类 */ private String type; /** * 公司状态 逗号分隔 */ private String status; /** * 知识产权-专利数 */ private Integer knowledgeZlNum; /** * 知识产权-商标数 */ private Integer knowledgeSbNum; /** * 知识产权-著作权数 */ private Integer knowledgeZzqNum; /** * 知识产权-icp数量 */ private Integer knowledgeIcpNum; /** * 百度经度 */ private Double bdLongitude; /** * 百度纬度 */ private Double bdLatitude; /** * 高德经度 */ private Double gdLongitude; /** * 高德纬度 */ private Double gdLatitude; /** * 最后一次操作标记,只可以从这些中取值:bd_insert / bd_update / qx_sync */ private String opLatest; /** * 备注 */ private String remark; /** * 添加人 */ private String createUser; /** * 添加时间 */ private Long createTime; /** * 更新人 */ private String updateUser; /** * 添加时间 */ private Long updateTime; /** * 删除标志0 未删除1已删除 */ private Boolean isDeleted; private static final long serialVersionUID = 1L; public Integer getAcid() { return acid; } public void setAcid(Integer acid) { this.acid = acid; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLogo() { return logo; } public void setLogo(String logo) { this.logo = logo; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getMail() { return mail; } public void setMail(String mail) { this.mail = mail; } public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public String getIndustry() { return industry; } public void setIndustry(String industry) { this.industry = industry; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public Integer getKnowledgeZlNum() { return knowledgeZlNum; } public void setKnowledgeZlNum(Integer knowledgeZlNum) { this.knowledgeZlNum = knowledgeZlNum; } public Integer getKnowledgeSbNum() { return knowledgeSbNum; } public void setKnowledgeSbNum(Integer knowledgeSbNum) { this.knowledgeSbNum = knowledgeSbNum; } public Integer getKnowledgeZzqNum() { return knowledgeZzqNum; } public void setKnowledgeZzqNum(Integer knowledgeZzqNum) { this.knowledgeZzqNum = knowledgeZzqNum; } public Integer getKnowledgeIcpNum() { return knowledgeIcpNum; } public void setKnowledgeIcpNum(Integer knowledgeIcpNum) { this.knowledgeIcpNum = knowledgeIcpNum; } public Double getBdLongitude() { return bdLongitude; } public void setBdLongitude(Double bdLongitude) { this.bdLongitude = bdLongitude; } public Double getBdLatitude() { return bdLatitude; } public void setBdLatitude(Double bdLatitude) { this.bdLatitude = bdLatitude; } public Double getGdLongitude() { return gdLongitude; } public void setGdLongitude(Double gdLongitude) { this.gdLongitude = gdLongitude; } public Double getGdLatitude() { return gdLatitude; } public void setGdLatitude(Double gdLatitude) { this.gdLatitude = gdLatitude; } public String getOpLatest() { return opLatest; } public void setOpLatest(String opLatest) { this.opLatest = opLatest; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getCreateUser() { return createUser; } public void setCreateUser(String createUser) { this.createUser = createUser; } public Long getCreateTime() { return createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getUpdateUser() { return updateUser; } public void setUpdateUser(String updateUser) { this.updateUser = updateUser; } public Long getUpdateTime() { return updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public Boolean getIsDeleted() { return isDeleted; } public void setIsDeleted(Boolean isDeleted) { this.isDeleted = isDeleted; } @Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } Company other = (Company) that; return (this.getAcid() == null ? other.getAcid() == null : this.getAcid().equals(other.getAcid())) && (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName())) && (this.getLogo() == null ? other.getLogo() == null : this.getLogo().equals(other.getLogo())) && (this.getDescription() == null ? other.getDescription() == null : this.getDescription().equals(other.getDescription())) && (this.getPhone() == null ? other.getPhone() == null : this.getPhone().equals(other.getPhone())) && (this.getMail() == null ? other.getMail() == null : this.getMail().equals(other.getMail())) && (this.getWebsite() == null ? other.getWebsite() == null : this.getWebsite().equals(other.getWebsite())) && (this.getIndustry() == null ? other.getIndustry() == null : this.getIndustry().equals(other.getIndustry())) && (this.getAddress() == null ? other.getAddress() == null : this.getAddress().equals(other.getAddress())) && (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType())) && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) && (this.getKnowledgeZlNum() == null ? other.getKnowledgeZlNum() == null : this.getKnowledgeZlNum().equals(other.getKnowledgeZlNum())) && (this.getKnowledgeSbNum() == null ? other.getKnowledgeSbNum() == null : this.getKnowledgeSbNum().equals(other.getKnowledgeSbNum())) && (this.getKnowledgeZzqNum() == null ? other.getKnowledgeZzqNum() == null : this.getKnowledgeZzqNum().equals(other.getKnowledgeZzqNum())) && (this.getKnowledgeIcpNum() == null ? other.getKnowledgeIcpNum() == null : this.getKnowledgeIcpNum().equals(other.getKnowledgeIcpNum())) && (this.getBdLongitude() == null ? other.getBdLongitude() == null : this.getBdLongitude().equals(other.getBdLongitude())) && (this.getBdLatitude() == null ? other.getBdLatitude() == null : this.getBdLatitude().equals(other.getBdLatitude())) && (this.getGdLongitude() == null ? other.getGdLongitude() == null : this.getGdLongitude().equals(other.getGdLongitude())) && (this.getGdLatitude() == null ? other.getGdLatitude() == null : this.getGdLatitude().equals(other.getGdLatitude())) && (this.getOpLatest() == null ? other.getOpLatest() == null : this.getOpLatest().equals(other.getOpLatest())) && (this.getRemark() == null ? other.getRemark() == null : this.getRemark().equals(other.getRemark())) && (this.getCreateUser() == null ? other.getCreateUser() == null : this.getCreateUser().equals(other.getCreateUser())) && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) && (this.getUpdateUser() == null ? other.getUpdateUser() == null : this.getUpdateUser().equals(other.getUpdateUser())) && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) && (this.getIsDeleted() == null ? other.getIsDeleted() == null : this.getIsDeleted().equals(other.getIsDeleted())); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((getAcid() == null) ? 0 : getAcid().hashCode()); result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); result = prime * result + ((getName() == null) ? 0 : getName().hashCode()); result = prime * result + ((getLogo() == null) ? 0 : getLogo().hashCode()); result = prime * result + ((getDescription() == null) ? 0 : getDescription().hashCode()); result = prime * result + ((getPhone() == null) ? 0 : getPhone().hashCode()); result = prime * result + ((getMail() == null) ? 0 : getMail().hashCode()); result = prime * result + ((getWebsite() == null) ? 0 : getWebsite().hashCode()); result = prime * result + ((getIndustry() == null) ? 0 : getIndustry().hashCode()); result = prime * result + ((getAddress() == null) ? 0 : getAddress().hashCode()); result = prime * result + ((getType() == null) ? 0 : getType().hashCode()); result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); result = prime * result + ((getKnowledgeZlNum() == null) ? 0 : getKnowledgeZlNum().hashCode()); result = prime * result + ((getKnowledgeSbNum() == null) ? 0 : getKnowledgeSbNum().hashCode()); result = prime * result + ((getKnowledgeZzqNum() == null) ? 0 : getKnowledgeZzqNum().hashCode()); result = prime * result + ((getKnowledgeIcpNum() == null) ? 0 : getKnowledgeIcpNum().hashCode()); result = prime * result + ((getBdLongitude() == null) ? 0 : getBdLongitude().hashCode()); result = prime * result + ((getBdLatitude() == null) ? 0 : getBdLatitude().hashCode()); result = prime * result + ((getGdLongitude() == null) ? 0 : getGdLongitude().hashCode()); result = prime * result + ((getGdLatitude() == null) ? 0 : getGdLatitude().hashCode()); result = prime * result + ((getOpLatest() == null) ? 0 : getOpLatest().hashCode()); result = prime * result + ((getRemark() == null) ? 0 : getRemark().hashCode()); result = prime * result + ((getCreateUser() == null) ? 0 : getCreateUser().hashCode()); result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); result = prime * result + ((getUpdateUser() == null) ? 0 : getUpdateUser().hashCode()); result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); result = prime * result + ((getIsDeleted() == null) ? 0 : getIsDeleted().hashCode()); return result; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", acid=").append(acid); sb.append(", id=").append(id); sb.append(", name=").append(name); sb.append(", logo=").append(logo); sb.append(", description=").append(description); sb.append(", phone=").append(phone); sb.append(", mail=").append(mail); sb.append(", website=").append(website); sb.append(", industry=").append(industry); sb.append(", address=").append(address); sb.append(", type=").append(type); sb.append(", status=").append(status); sb.append(", knowledgeZlNum=").append(knowledgeZlNum); sb.append(", knowledgeSbNum=").append(knowledgeSbNum); sb.append(", knowledgeZzqNum=").append(knowledgeZzqNum); sb.append(", knowledgeIcpNum=").append(knowledgeIcpNum); sb.append(", bdLongitude=").append(bdLongitude); sb.append(", bdLatitude=").append(bdLatitude); sb.append(", gdLongitude=").append(gdLongitude); sb.append(", gdLatitude=").append(gdLatitude); sb.append(", opLatest=").append(opLatest); sb.append(", remark=").append(remark); sb.append(", createUser=").append(createUser); sb.append(", createTime=").append(createTime); sb.append(", updateUser=").append(updateUser); sb.append(", updateTime=").append(updateTime); sb.append(", isDeleted=").append(isDeleted); sb.append(", serialVersionUID=").append(serialVersionUID); sb.append("]"); return sb.toString(); } }
[ "337816785@qq.com" ]
337816785@qq.com
e0949f319cdd04d8d64825a72a1cb6e29f994997
d7e9e2f984a8c2a74e1de6de2433d5d822f727d6
/apache open nlp/apache-opennlp-1.7.2-src/apache-opennlp-1.7.2-src/opennlp-tools/src/test/java/opennlp/tools/ml/naivebayes/NaiveBayesPrepAttachTest.java
019e5537895c3f2b38345dea39c016fc6365fdf4
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
BhanuMittal/ApacheOpenNLP
afc362edab060b82aafc09b72ef244723bf3c749
26de96805d987069978fa4bbac27968cb6f46c44
refs/heads/master
2021-01-21T18:57:54.019903
2017-05-22T21:33:07
2017-05-22T21:33:07
92,100,799
0
0
null
null
null
null
UTF-8
Java
false
false
3,437
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 opennlp.tools.ml.naivebayes; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import opennlp.tools.ml.AbstractTrainer; import opennlp.tools.ml.EventTrainer; import opennlp.tools.ml.PrepAttachDataUtil; import opennlp.tools.ml.TrainerFactory; import opennlp.tools.ml.model.AbstractDataIndexer; import opennlp.tools.ml.model.DataIndexer; import opennlp.tools.ml.model.MaxentModel; import opennlp.tools.ml.model.TwoPassDataIndexer; import opennlp.tools.util.TrainingParameters; /** * Test for Naive Bayes training and use with the ppa data. */ public class NaiveBayesPrepAttachTest { private DataIndexer testDataIndexer; @Before public void initIndexer() { TrainingParameters trainingParameters = new TrainingParameters(); trainingParameters.put(AbstractTrainer.CUTOFF_PARAM, "1"); trainingParameters.put(AbstractDataIndexer.SORT_PARAM, "false"); testDataIndexer = new TwoPassDataIndexer(); testDataIndexer.init(trainingParameters, new HashMap<>()); } @Test public void testNaiveBayesOnPrepAttachData() throws IOException { testDataIndexer.index(PrepAttachDataUtil.createTrainingStream()); MaxentModel model = new NaiveBayesTrainer().trainModel(testDataIndexer); Assert.assertTrue(model instanceof NaiveBayesModel); PrepAttachDataUtil.testModel(model, 0.7897994553107205); } @Test public void testNaiveBayesOnPrepAttachDataUsingTrainUtil() throws IOException { Map<String, String> trainParams = new HashMap<>(); trainParams.put(AbstractTrainer.ALGORITHM_PARAM, NaiveBayesTrainer.NAIVE_BAYES_VALUE); trainParams.put(AbstractTrainer.CUTOFF_PARAM, Integer.toString(1)); EventTrainer trainer = TrainerFactory.getEventTrainer(trainParams, null); MaxentModel model = trainer.train(PrepAttachDataUtil.createTrainingStream()); Assert.assertTrue(model instanceof NaiveBayesModel); PrepAttachDataUtil.testModel(model, 0.7897994553107205); } @Test public void testNaiveBayesOnPrepAttachDataUsingTrainUtilWithCutoff5() throws IOException { Map<String, String> trainParams = new HashMap<>(); trainParams.put(AbstractTrainer.ALGORITHM_PARAM, NaiveBayesTrainer.NAIVE_BAYES_VALUE); trainParams.put(AbstractTrainer.CUTOFF_PARAM, Integer.toString(5)); EventTrainer trainer = TrainerFactory.getEventTrainer(trainParams, null); MaxentModel model = trainer.train(PrepAttachDataUtil.createTrainingStream()); Assert.assertTrue(model instanceof NaiveBayesModel); PrepAttachDataUtil.testModel(model, 0.7945035899975241); } }
[ "bmittal.it@gmail.com" ]
bmittal.it@gmail.com
93ba5316b1579a3df33e0bf82b8d8969cb1c6981
59a5455c102b7272bb392d72ec10ed62a6fc204a
/app/src/main/java/com/mainmethod/premofm/ui/fragment/ChannelsFragment.java
9d245b0ccdf47b50144a780b582be6b1da42b5cb
[ "Apache-2.0" ]
permissive
morristech/premofm
908893eb8be424328a7ed3e53f49341699bce9a7
6a7131a198a1b9404d99433ce464b9a6fcf339ee
refs/heads/master
2021-01-11T04:38:16.376632
2016-03-26T00:56:52
2016-03-26T00:56:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,636
java
/* * Copyright (c) 2014. * Main Method Incorporated. */ package com.mainmethod.premofm.ui.fragment; import android.app.LoaderManager; import android.content.Context; import android.content.Loader; import android.database.Cursor; import android.os.Bundle; import android.support.v7.widget.GridLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.DisplayMetrics; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import com.mainmethod.premofm.R; import com.mainmethod.premofm.data.model.ChannelModel; import com.mainmethod.premofm.helper.ImageLoadHelper; import com.mainmethod.premofm.object.Channel; import com.mainmethod.premofm.ui.activity.BaseActivity; import com.mainmethod.premofm.ui.activity.ChannelProfileActivity; import com.mainmethod.premofm.ui.activity.PremoActivity; import com.mainmethod.premofm.ui.adapter.CursorRecyclerViewAdapter; /** * Created by evan on 12/3/14. */ public class ChannelsFragment extends BaseFragment implements LoaderManager.LoaderCallbacks<Cursor>, View.OnClickListener { private static final int NUMBER_COLUMNS_PORTRAIT = 3; private RecyclerView mRecyclerView; private ChannelAdapter mAdapter; private View mEmptyListView; /** * Creates a new instance of this fragment * @return */ public static ChannelsFragment newInstance(Bundle args) { ChannelsFragment fragment = new ChannelsFragment(); if (args != null) { fragment.setArguments(args); } return fragment; } @Override protected int getLayoutResourceId() { return R.layout.fragment_channels; } @Override protected int getFragmentTitleResourceId() { return R.string.title_fragment_subscriptions; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = super.onCreateView(inflater, container, savedInstanceState); mEmptyListView = view.findViewById(R.id.empty_list); mRecyclerView = (RecyclerView) view.findViewById(R.id.channel_list); mEmptyListView.findViewById(R.id.button_empty_list).setOnClickListener(this); mRecyclerView.setHasFixedSize(true); mRecyclerView.setLayoutManager(new GridLayoutManager(getActivity(), NUMBER_COLUMNS_PORTRAIT)); DisplayMetrics metrics = new DisplayMetrics(); getActivity().getWindowManager().getDefaultDisplay().getMetrics(metrics); int screenWidth = metrics.widthPixels / NUMBER_COLUMNS_PORTRAIT; mAdapter = new ChannelAdapter(getActivity(), null, screenWidth); mRecyclerView.setAdapter(mAdapter); return view; } @Override public void onClick(View v) { switch (v.getId()) { case R.id.button_empty_list: ((PremoActivity) getActivity()).startExploreExperience(); break; } } @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); getLoaderManager().initLoader(ChannelModel.LOADER_ID, null, this); } @Override public Loader<Cursor> onCreateLoader(int id, Bundle args) { return ChannelModel.getCursorLoader(getActivity()); } @Override public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) { if (cursor != null && cursor.moveToFirst()) { mRecyclerView.setVisibility(View.VISIBLE); mEmptyListView.setVisibility(View.INVISIBLE); switch (loader.getId()) { case ChannelModel.LOADER_ID: mAdapter.changeCursor(cursor); break; } } else { // hide the recycler view mRecyclerView.setVisibility(View.INVISIBLE); mEmptyListView.setVisibility(View.VISIBLE); ((TextView) mEmptyListView.findViewById(R.id.empty_list_title)).setText( R.string.no_channels_title); ((TextView) mEmptyListView.findViewById(R.id.empty_list_message)).setText( R.string.no_channels_message); ((Button) mEmptyListView.findViewById(R.id.button_empty_list)).setText( R.string.button_start_exploring); } } @Override public void onLoaderReset(Loader<Cursor> loader) { mAdapter.changeCursor(null); } /** * Created by evan on 12/7/14. */ private static class ChannelAdapter extends CursorRecyclerViewAdapter<ChannelAdapter.ChannelViewHolder> { private Context mContext; private final int mScreenWidth; public ChannelAdapter(Context context, Cursor cursor, int screenWidth) { super(cursor); mContext = context; mScreenWidth = screenWidth; } @Override public void onBindViewHolder(final ChannelViewHolder viewHolder, Cursor cursor, int position) { final Channel channel = ChannelModel.toChannel(cursor); ImageLoadHelper.loadImageIntoView(mContext, channel.getArtworkUrl(), viewHolder.channelArt, mScreenWidth, mScreenWidth); viewHolder.channelId = channel.getId(); viewHolder.setOnClickListener(v -> ChannelProfileActivity.openChannelProfile( (BaseActivity) mContext, channel, viewHolder.channelArt, false)); } @Override public ChannelViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) { View itemView = LayoutInflater.from(viewGroup.getContext()) .inflate(R.layout.item_channel, viewGroup, false); final ChannelViewHolder viewHolder = new ChannelViewHolder(itemView); return viewHolder; } /** * Created by evan on 1/4/15. */ public class ChannelViewHolder extends RecyclerView.ViewHolder { int channelId; ImageView channelArt; public ChannelViewHolder(View view) { super(view); channelArt = (ImageView) view.findViewById(R.id.channel_art); ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(mScreenWidth, mScreenWidth); channelArt.setLayoutParams(params); } public void setOnClickListener(View.OnClickListener listener) { channelArt.setOnClickListener(listener); } } } }
[ "evan.halley@gmail.com" ]
evan.halley@gmail.com
dc16087a714d257a85ade14d0a8cf14adf10b32d
6d6fd195bfea34ba208f9d4a3a4054bff11f2604
/src/main/java/com/urbanairship/datacube/RollupFilter.java
2eb275b6b9b110315d93e6aa047ccb4b93d366d3
[ "Apache-2.0" ]
permissive
ejoncas/datacube
4066273a5cbf9c4a09cfd199030d57f35621fc5c
689dda5b4bf34ec3ab2b274972f94f1c4dbad721
refs/heads/master
2020-12-26T21:24:00.185634
2019-12-04T06:00:32
2019-12-04T06:00:32
14,954,409
0
0
Apache-2.0
2019-12-04T06:00:33
2013-12-05T13:36:14
Java
UTF-8
Java
false
false
1,536
java
/* Copyright 2012 Urban Airship and Contributors */ package com.urbanairship.datacube; import com.google.common.base.Optional; /** * {@deprecated UA hacked this in for a particular use case but found a better solution later by * Address-level cube manipulation. This is an ugly bit of abstraction-breaking that will probably * be removed soon.} */ @Deprecated public interface RollupFilter { /** * A low-level hook for intercepting writes after bucketing before they are applied to the * cube. This is intended to support unique counts; an implementation might provide a * RollupFilter implementation that checks whether a given user has already been counted. * @param address one of the after-bucketing addresses in the cube that will receive a write. * This address consists of one or more (bucketType,bucket) pairs. * @param attachment if the writer passed an object to * {@link WriteBuilder#attachForRollupFilter(RollupFilter, Object)}, it will be passed to * the RollupFilter. This is a good way to provide a userid to check for uniqueness, for * example. * @return whether the write should proceed (false to drop the write for this address). * @deprecated UA hacked this in for a particular use case but found a better solution later by * Address-level cube manipulation. This is an ugly bit of abstraction-breaking that will * probably be removed soon. */ @Deprecated public boolean filter(Address address, Optional<Object> attachment); }
[ "dave@urbanairship.com" ]
dave@urbanairship.com
93d355c1bf7ae2191eadd3ca9a7f830864b0bb93
b28c84d60a4cdc8e94c4480eb586b57f3cc97f9c
/sd-store-cli/src/main/java/pt/ulisboa/tecnico/sdis/ws/handler/CypherHandler.java
be3a7d5e191b45e70cbd5984bd878c3e1af18824
[]
no_license
SirMastermind/DS_ES1415-BubbleDocs
96e267a4849cc2b68fda24f32d9cae1ac7043868
8b50f93776fae5214af3606fd8da6bb0c9a1d3b4
refs/heads/master
2021-01-01T05:05:03.114709
2016-04-17T16:54:27
2016-04-17T16:54:27
56,447,809
3
0
null
null
null
null
UTF-8
Java
false
false
8,655
java
package pt.ulisboa.tecnico.sdis.ws.handler; import static javax.xml.bind.DatatypeConverter.parseBase64Binary; import static javax.xml.bind.DatatypeConverter.printBase64Binary; import java.io.IOException; import java.security.Key; import java.util.Set; import javax.crypto.Cipher; import javax.xml.namespace.QName; import javax.xml.soap.SOAPException; import javax.xml.soap.SOAPMessage; import javax.xml.ws.handler.MessageContext; import javax.xml.ws.handler.soap.*; import javax.xml.soap.SOAPPart; import javax.xml.soap.SOAPEnvelope; import javax.xml.soap.SOAPBody; import org.w3c.dom.*; import pt.ulisboa.tecnico.sdis.protocol.toolkit.Encrypt; public class CypherHandler implements SOAPHandler<SOAPMessageContext> { private static UserKeys _map = new UserKeys(); public Set<QName> getHeaders() { return null; } public boolean handleMessage(SOAPMessageContext smc) { handleMessageCypher(smc); return true; } public boolean handleFault(SOAPMessageContext smc) { handleMessageCypher(smc); return true; } public void close(MessageContext messageContext) { } private void handleMessageCypher(SOAPMessageContext smc) { Boolean outbound = (Boolean) smc.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY); if (outbound) { System.out.println("OUTBOUND_BEFORE_CIPHER*************"); try { smc.getMessage().writeTo(System.out); } catch (SOAPException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } System.out.println("\n*********************"); testHandlerOut(smc); cypherMessage(smc); testHandlerOutAftCipher(smc); System.out.println("OUTBOUND_AFTER_CIPHER*************"); try { smc.getMessage().writeTo(System.out); } catch (SOAPException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } System.out.println("\n*********************"); } else { System.out.println("INBOUND_BEFORE_DECIPHER*************"); try { smc.getMessage().writeTo(System.out); } catch (SOAPException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } System.out.println("\n*********************"); testHandlerInBefDecipher(smc); decypherMessage(smc); testHandlerIn(smc); System.out.println("INBOUND_AFTER_DECIPHER*************"); try { smc.getMessage().writeTo(System.out); } catch (SOAPException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } System.out.println("\n*********************"); } } private String getUser(SOAPMessageContext smc) { String user = ""; try { SOAPMessage message = smc.getMessage(); SOAPPart soapPart = message.getSOAPPart(); SOAPEnvelope soapEnvelope = soapPart.getEnvelope(); SOAPBody soapBody = soapEnvelope.getBody(); Node owner = null; if (soapBody.getFirstChild().getNodeName().equals("ns2:loadResponse")) { for(Node n = soapBody.getFirstChild().getFirstChild(); n != null; n = n.getNextSibling()) { if(n.getNodeName().equals("DocOwner")) { owner = n; break; } } if (owner != null) { user = owner.getTextContent(); } } else if (soapBody.getFirstChild().getNodeName().equals("ns2:store")) { for(Node n = soapBody.getFirstChild().getFirstChild(); n != null; n = n.getNextSibling()) { if(n.getNodeName().equals("docUserPair")) { for(Node s = n.getFirstChild(); s != null; s = s.getNextSibling()) { if(s.getNodeName().equals("userId")) { owner = s; break; } } } } if (owner != null) { user = owner.getTextContent(); } } } catch (SOAPException e) { e.printStackTrace(); } //System.out.println("DocOwner: " + user); return user; } public Key manageUserKey(String user) { if(user == null) { return null; } if (_map.containsKey(user)) { Key oldKey = _map.getKey(user); return oldKey; } else { Key key = generateKey(user); _map.addEntry(user, key); _map.updateMap(user, key); return key; } } public static Key generateKey(String user) { /*Key key = null; try{ KeyGenerator keyGen = KeyGenerator.getInstance("DES"); keyGen.init(56); key = keyGen.generateKey(); } catch (Exception e) { } return key;*/ return Encrypt.generateMD5Key(user); } public static Cipher generateCipher() { Cipher cipher = null; try { cipher = Cipher.getInstance("AES"); } catch (Exception e) {} return cipher; } private void cypherMessage(SOAPMessageContext smc) { SOAPMessage message = smc.getMessage(); try { SOAPPart soapPart = message.getSOAPPart(); SOAPEnvelope soapEnvelope = soapPart.getEnvelope(); SOAPBody soapBody = soapEnvelope.getBody(); { Node n = soapBody.getFirstChild(); Node content = null; if (n.getNodeName().equals("ns2:store")) { for(Node s = n.getFirstChild(); s != null; s = s.getNextSibling()) { if(s.getNodeName().equals("contents")) { content = s; break; } } if (content != null) { String user = getUser(smc); Key key= manageUserKey(user); Cipher cipher = Cipher.getInstance("AES"); String s = content.getTextContent(); //System.out.println("Before cipher, content is: " + s); cipher.init(Cipher.ENCRYPT_MODE, key); byte[] cipherBytes = cipher.doFinal(s.getBytes()); String cipherText = printBase64Binary(cipherBytes); //System.out.println("After cipher, content is: " + cipherText); content.setTextContent(cipherText); } } } } catch (Exception e) { // print error information //System.out.printf("I couldn't cipher this"); //System.out.printf("Caught exception in main method: %s%n", e); } } private void decypherMessage(SOAPMessageContext smc) { SOAPMessage message = smc.getMessage(); try { SOAPPart soapPart = message.getSOAPPart(); SOAPEnvelope soapEnvelope = soapPart.getEnvelope(); SOAPBody soapBody = soapEnvelope.getBody(); { Node n = soapBody.getFirstChild(); Node content = null; if (n.getNodeName().equals("ns2:loadResponse")) { for(Node s = n.getFirstChild(); s != null; s = s.getNextSibling()) { if(s.getNodeName().equals("contents")) { content = s; break; } } if (content != null) { String user = getUser(smc); Key key = manageUserKey(user); Cipher cipher = Cipher.getInstance("AES"); String s = content.getTextContent(); //System.out.println("Before decipher, content is: " + s); byte[] cipherBodyBytes = parseBase64Binary(s); cipher.init(Cipher.DECRYPT_MODE, key); byte[] newPlainBytes = cipher.doFinal(cipherBodyBytes); String newPlainText = new String(newPlainBytes); //System.out.println("After decipher, content is: " + newPlainText); content.setTextContent(newPlainText); } } } } catch (Exception e) { } } private void testHandlerOut(SOAPMessageContext smc) { } private void testHandlerIn(SOAPMessageContext smc) { } private void testHandlerOutAftCipher(SOAPMessageContext smc) { } private void testHandlerInBefDecipher(SOAPMessageContext smc) { } }
[ "sir.mastermind94@gmail.com" ]
sir.mastermind94@gmail.com
acf6b4048e806d842c4ae12ec688855e93866361
9de5b9f55809c6c837c3d79083b74bf487528f50
/trustie/Bench4Q/branches/V1.0/src/org/bench4Q/agent/rbe/Mix.java
a7987874d3b0119498201f675aa185ee56f87f99
[]
no_license
flaviol-souza/bench4q
008af81baf7f6755ff668ad7bf726b9743439758
9a5d802d2230beb53c32159849cd17a84108d623
refs/heads/master
2020-06-01T04:40:14.980152
2019-09-26T19:01:30
2019-09-26T19:01:30
190,640,122
4
0
null
null
null
null
UTF-8
Java
false
false
9,405
java
package org.bench4Q.agent.rbe; import org.bench4Q.agent.rbe.trans.TransAdminConf; import org.bench4Q.agent.rbe.trans.TransAdminReq; import org.bench4Q.agent.rbe.trans.TransBestSell; import org.bench4Q.agent.rbe.trans.TransBuyConf; import org.bench4Q.agent.rbe.trans.TransBuyReq; import org.bench4Q.agent.rbe.trans.TransCustReg; import org.bench4Q.agent.rbe.trans.TransHome; import org.bench4Q.agent.rbe.trans.TransInit; import org.bench4Q.agent.rbe.trans.TransNewProd; import org.bench4Q.agent.rbe.trans.TransOrderDisp; import org.bench4Q.agent.rbe.trans.TransOrderInq; import org.bench4Q.agent.rbe.trans.TransProdCURL; import org.bench4Q.agent.rbe.trans.TransProdDet; import org.bench4Q.agent.rbe.trans.TransSearchReq; import org.bench4Q.agent.rbe.trans.TransSearchResult; import org.bench4Q.agent.rbe.trans.TransShopCart; import org.bench4Q.agent.rbe.trans.TransShopCartAdd; import org.bench4Q.agent.rbe.trans.TransShopCartRef; import org.bench4Q.agent.rbe.trans.Transition; public class Mix { private static Transition[][] cTransArray; private static final Transition init = new TransInit(); private static final Transition admc = new TransAdminConf(); private static final Transition admr = new TransAdminReq(); private static final Transition bess = new TransBestSell(); private static final Transition buyc = new TransBuyConf(); private static final Transition buyr = new TransBuyReq(); private static final Transition creg = new TransCustReg(); private static final Transition home = new TransHome(); private static final Transition newp = new TransNewProd(); private static final Transition ordd = new TransOrderDisp(); private static final Transition ordi = new TransOrderInq(); private static final Transition prod = new TransProdDet(); private static final Transition proc = new TransProdCURL(); private static final Transition sreq = new TransSearchReq(); private static final Transition sres = new TransSearchResult(); private static final Transition shop = new TransShopCart(); private static final Transition shoa = new TransShopCartAdd(); private static final Transition shor = new TransShopCartRef(); private static final Transition[] trans = { init, admc, admr, bess, buyc, buyr, creg, home, newp, ordd, ordi, prod, sreq, sres, shop }; private static final int[][] BrowsingTransProb = { // INIT ADMC ADMR BESS BUYC BUYR CREG HOME NEWP ORDD ORDI PROD SREQ SRES // SHOP /* INIT */{ 0, 0, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* ADMC */{ 0, 0, 0, 0, 0, 0, 0, 9877, 0, 0, 0, 0, 9999, 0, 0 }, /* ADMR */{ 0, 8999, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* BESS */{ 0, 0, 0, 0, 0, 0, 0, 4607, 0, 0, 0, 5259, 9942, 0, 9999 }, /* BUYC */{ 0, 0, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* BUYR */{ 0, 0, 0, 0, 9199, 0, 0, 9595, 0, 0, 0, 0, 0, 0, 9999 }, /* CREG */{ 0, 0, 0, 0, 0, 9145, 0, 9619, 0, 0, 0, 0, 9999, 0, 0 }, /* HOME */{ 0, 0, 0, 3792, 0, 0, 0, 0, 7585, 0, 7688, 0, 9559, 0, 9999 }, /* NEWP */{ 0, 0, 0, 0, 0, 0, 0, 299, 0, 0, 0, 9867, 9941, 0, 9999 }, /* ORDD */{ 0, 0, 0, 0, 0, 0, 0, 802, 0, 0, 0, 0, 9999, 0, 0 }, /* ORDI */{ 0, 0, 0, 0, 0, 0, 0, 523, 0, 8856, 0, 0, 9999, 0, 0 }, /* PROD */{ 0, 0, 47, 0, 0, 0, 0, 8346, 0, 0, 0, 9749, 9890, 0, 9999 }, /* SREQ */{ 0, 0, 0, 0, 0, 0, 0, 788, 0, 0, 0, 0, 0, 9955, 9999 }, /* SRES */{ 0, 0, 0, 0, 0, 0, 0, 3674, 0, 0, 0, 9868, 9942, 0, 9999 }, /* SHOP */{ 0, 0, 0, 0, 0, 0, 4099, 8883, 0, 0, 0, 0, 0, 0, 9999 } }; private static final int[][] ShoppingTransProb = { // INIT ADMC ADMR BESS BUYC BUYR CREG HOME NEWP ORDD ORDI PROD SREQ SRES // SHOP /* INIT */{ 0, 0, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* ADMC */{ 0, 0, 0, 0, 0, 0, 0, 9952, 0, 0, 0, 0, 9999, 0, 0 }, /* ADMR */{ 0, 8999, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* BESS */{ 0, 0, 0, 0, 0, 0, 0, 167, 0, 0, 0, 472, 9927, 0, 9999 }, /* BUYC */{ 0, 0, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* BUYR */{ 0, 0, 0, 0, 4614, 0, 0, 6546, 0, 0, 0, 0, 0, 0, 9999 }, /* CREG */{ 0, 0, 0, 0, 0, 8666, 0, 8760, 0, 0, 0, 0, 9999, 0, 0 }, /* HOME */{ 0, 0, 0, 3124, 0, 0, 0, 0, 6249, 0, 6718, 0, 7026, 0, 9999 }, /* NEWP */{ 0, 0, 0, 0, 0, 0, 0, 156, 0, 0, 0, 9735, 9784, 0, 9999 }, /* ORDD */{ 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 9999, 0, 0 }, /* ORDI */{ 0, 0, 0, 0, 0, 0, 0, 72, 0, 8872, 0, 0, 9999, 0, 0 }, /* PROD */{ 0, 0, 58, 0, 0, 0, 0, 832, 0, 0, 0, 1288, 8603, 0, 9999 }, /* SREQ */{ 0, 0, 0, 0, 0, 0, 0, 635, 0, 0, 0, 0, 0, 9135, 9999 }, /* SRES */{ 0, 0, 0, 0, 0, 0, 0, 2657, 0, 0, 0, 9294, 9304, 0, 9999 }, /* SHOP */{ 0, 0, 0, 0, 0, 0, 2585, 9992, 0, 0, 0, 0, 0, 0, 9999 } }; private static final int[][] OrderingTransProb = { // INIT ADMC ADMR BESS BUYC BUYR CREG HOME NEWP ORDD ORDI PROD SREQ SRES // SHOP /* INIT */{ 0, 0, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* ADMC */{ 0, 0, 0, 0, 0, 0, 0, 8348, 0, 0, 0, 0, 9999, 0, 0 }, /* ADMR */{ 0, 8999, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* BESS */{ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 333, 9998, 0, 9999 }, /* BUYC */{ 0, 0, 0, 0, 0, 0, 0, 9999, 0, 0, 0, 0, 0, 0, 0 }, /* BUYR */{ 0, 0, 0, 0, 7999, 0, 0, 9453, 0, 0, 0, 0, 0, 0, 9999 }, /* CREG */{ 0, 0, 0, 0, 0, 9899, 0, 9901, 0, 0, 0, 0, 9999, 0, 0 }, /* HOME */{ 0, 0, 0, 499, 0, 0, 0, 0, 999, 0, 1269, 0, 1295, 0, 9999 }, /* NEWP */{ 0, 0, 0, 0, 0, 0, 0, 504, 0, 0, 0, 9942, 9976, 0, 9999 }, /* ORDD */{ 0, 0, 0, 0, 0, 0, 0, 9939, 0, 0, 0, 0, 9999, 0, 0 }, /* ORDI */{ 0, 0, 0, 0, 0, 0, 0, 1168, 0, 9968, 0, 0, 9999, 0, 0 }, /* PROD */{ 0, 0, 99, 0, 0, 0, 0, 3750, 0, 0, 0, 5621, 6341, 0, 9999 }, /* SREQ */{ 0, 0, 0, 0, 0, 0, 0, 815, 0, 0, 0, 0, 0, 9815, 9999 }, /* SRES */{ 0, 0, 0, 0, 0, 0, 0, 486, 0, 0, 0, 7817, 9998, 0, 9999 }, /* SHOP */{ 0, 0, 0, 0, 0, 0, 9499, 9918, 0, 0, 0, 0, 0, 0, 9999 } }; private static final Transition[][] TransArray = { // INIT ADMC ADMR BESS BUYC BUYR CREG HOME NEWP ORDD ORDI PROD SREQ // SRES SHOP /* INIT */{ null, null, null, null, null, null, null, init, null, null, null, null, null, null, null }, /* ADMC */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* ADMR */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* BESS */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* BUYC */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* BUYR */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* CREG */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* HOME */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* NEWP */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* ORDD */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* ORDI */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* PROD */{ null, null, null, null, null, null, null, null, null, null, null, proc, null, null, shoa }, /* SREQ */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* SRES */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }, /* SHOP */{ null, null, null, null, null, null, null, null, null, null, null, null, null, null, shor } }; public static void initialize() { cTransArray = new Transition[15][15]; for (int i = 0; i < 15; i++) { for (int j = 0; j < 15; j++) { cTransArray[i][j] = null; } } } public Transition[][] getTrans(String string) { if (string.equalsIgnoreCase("browsing")) { for (int i = 0; i < 15; i++) { for (int j = 0; j < 15; j++) { cTransArray[i][j] = TransArray[i][j]; if ((BrowsingTransProb[i][j] > 0) && (cTransArray[i][j] == null)) { cTransArray[i][j] = trans[j]; } } } } else if (string.equalsIgnoreCase("shopping")) { for (int i = 0; i < 15; i++) { for (int j = 0; j < 15; j++) { cTransArray[i][j] = TransArray[i][j]; if ((ShoppingTransProb[i][j] > 0) && (cTransArray[i][j] == null)) { cTransArray[i][j] = trans[j]; } } } } else if (string.equalsIgnoreCase("ordering")) { for (int i = 0; i < 15; i++) { for (int j = 0; j < 15; j++) { cTransArray[i][j] = TransArray[i][j]; if ((OrderingTransProb[i][j] > 0) && (cTransArray[i][j] == null)) { cTransArray[i][j] = trans[j]; } } } } else { for (int i = 0; i < 15; i++) { for (int j = 0; j < 15; j++) { cTransArray[i][j] = TransArray[i][j]; if ((BrowsingTransProb[i][j] > 0) && (cTransArray[i][j] == null)) { cTransArray[i][j] = trans[j]; } } } } return cTransArray; } public int[][] getTransProb(String string) { if (string.equalsIgnoreCase("browsing")) { return BrowsingTransProb; } else if (string.equalsIgnoreCase("shopping")) { return ShoppingTransProb; } else if (string.equalsIgnoreCase("ordering")) { return OrderingTransProb; } else { return ShoppingTransProb; } } }
[ "ninochm@gmail.com" ]
ninochm@gmail.com
624cdac499a5d265bb815a80e8897465597753a1
cd3fdef66320f7d38bcadf2b18c70d806bed1a9c
/proxy/src/main/java/com/serghienco/jdbc/proxy/listener/ConnectionEventListener.java
9243283a32c41e136e6eb01f6a6be47aaaa82739
[]
no_license
serghienco/jdbc
c0a979a535fd7881ba0aa81baf4c6c6ab387e5c6
bc3fdca21c55d96fcea070aa5bbcbdf323387f34
refs/heads/master
2020-04-12T04:53:24.902183
2018-12-19T04:29:10
2018-12-19T04:29:10
162,309,186
0
0
null
null
null
null
UTF-8
Java
false
false
260
java
package com.serghienco.jdbc.proxy.listener; public interface ConnectionEventListener { void beforeCreateConnection(); StatementEventListener createStatementEventListener(); DatabaseMetaDataEventListener createDatabaseMetaDataEventListener(); }
[ "serghienco.v@gmail.com" ]
serghienco.v@gmail.com
13a0a114cd38d3775fcd6510a63e2b4c100a64ee
c3101515ddde8a6e6ddc4294a4739256d1600df0
/GeneralApp__2.20_1.0(1)_source_from_JADX/sources/p008cz/msebera/android/httpclient/client/config/AuthSchemes.java
8b6633d8b6d295de241936633dcc6dec702f29b5
[]
no_license
Aelshazly/Carty
b56fdb1be58a6d12f26d51b46f435ea4a73c8168
d13f3a4ad80e8a7d0ed1c6a5720efb4d1ca721ee
refs/heads/master
2022-11-14T23:29:53.547694
2020-07-08T19:23:39
2020-07-08T19:23:39
278,175,183
0
0
null
null
null
null
UTF-8
Java
false
false
455
java
package p008cz.msebera.android.httpclient.client.config; /* renamed from: cz.msebera.android.httpclient.client.config.AuthSchemes */ public final class AuthSchemes { public static final String BASIC = "Basic"; public static final String DIGEST = "Digest"; public static final String KERBEROS = "Kerberos"; public static final String NTLM = "NTLM"; public static final String SPNEGO = "negotiate"; private AuthSchemes() { } }
[ "aelshazly@engineer.com" ]
aelshazly@engineer.com
305b320dbef2f28ff699fd401ea0caacceb5e4f1
804f1a7c51dbad3fe132fd2180afba2c823d5b02
/src/edu/ib/Account.java
b0b06fff0c65f9b425494b00fc25979ecbc4d85f
[]
no_license
ibZPO/Wyklad2
c9044aa5190f0ac28e18efb4cf0565d2e0e63c4a
2b568aff2032aceef30f77a155d0371fac792247
refs/heads/master
2023-08-27T16:01:41.784783
2021-10-22T07:59:25
2021-10-22T07:59:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
799
java
package edu.ib; public class Account { // zmienne instancji plus zmienne klasowe = pola private String name; private double balance; private static int id=0; // zmiennej klasowej (statycznej) public Account() { } // konstruktor z parametrami public Account(String name, double balance) { this.name = name; this.balance = balance; } // metoda pobierająca (getter) public String getName() { return name; } // metoda ustawiająca (setter) public void setName(String name) { this.name = name; } public double getBalance() { return balance; } public void setBalance(double balance) { this.balance = balance; } public static int getId() { return id; } }
[ "MiroslawLatka@pwr.edu.pl" ]
MiroslawLatka@pwr.edu.pl
52c91e0a29333c62749d27c52333f157c7eb6073
b96eb97053aca31675a68719f677bf6060ad5caa
/src/main/java/weixin/TextMessage.java
3eb6940e34354af5e117d756f5a23213476d53c9
[]
no_license
jj-chenjunjie/weixin
330c60b839c0ab210a40f700e5896c258fc48aba
4c87dfc41c94192aeb796f788c9658455dc006ee
refs/heads/master
2021-01-10T09:10:32.681070
2016-02-16T10:28:25
2016-02-16T10:28:25
40,521,541
0
0
null
null
null
null
UTF-8
Java
false
false
476
java
package weixin; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; @JacksonXmlRootElement(localName="xml") public class TextMessage extends NormalMessage{ @JacksonXmlProperty(localName="Content") private String content; public String getContent() { return content; } public void setContent(String content) { this.content = content; } }
[ "943388837@qq.com" ]
943388837@qq.com
b85e791218bcaf8218736dc25c10969d38832893
b730977299eec6297bc0bfbdb552ef529bbe8816
/fff/src/Main/Main.java
09f9b5d97910b67aa3b8d95920418425309d405b
[]
no_license
jinsoo115/basicjava
e6fa490b183bc39adfe5b71fdd7ee587ac82a0ea
9c3e6d0800716632265f4565feca597572ac32d6
refs/heads/main
2023-02-26T02:28:57.870980
2021-02-02T09:25:07
2021-02-02T09:25:07
335,233,640
0
0
null
null
null
null
UTF-8
Java
false
false
237
java
package Main; public class Main { public static void main(String[] args) { View view = new View(); view.view(); } } /* 1. DBclass설계 => 초기화 블럭 2. 메뉴구성도 3. viewClass - 1차 4. viewClass - 2차 => */
[ "wlstn115@naver.com" ]
wlstn115@naver.com
e3da1bbe186ea7a56795d6c6bfaa5086d6ee961c
b10a8e756ad875b6c291c4bd60b2eba13085bd07
/src/test/java/learning/stringTest/StringTest.java
b160b477d5adb927f700da2d2a8352fcef61dcc2
[]
no_license
lichenyigit/java.learning
82c862be1f4e14f2ff35b2404442be46044c55bb
9eec8a1cdcc82284743c5d5dcac8c084ae099ff8
refs/heads/master
2020-12-02T18:16:51.442964
2020-11-16T09:31:02
2020-11-16T09:31:02
96,507,296
1
0
null
2020-10-12T22:45:18
2017-07-07T06:37:47
Java
UTF-8
Java
false
false
5,624
java
package learning.stringTest; import org.junit.Test; import java.util.HashMap; import java.util.Map; import java.util.Random; /** * @author lichenyi * @date 2017-9-13-0013. */ public class StringTest { @Test public void test1() { StringBuffer buffer = new StringBuffer(); String[] args = {}; for (String s : args) { strcat(buffer, s); } System.out.println(String.format("buffer --> %s", buffer.toString())); Integer x = 10; increaseOne(x); System.out.println(String.format("x -- %s", x)); String str1 = "1"; str1cat(str1); System.out.println(String.format("main str1 -- " + str1)); } public static void strcat(StringBuffer sb, String s) { sb.append(s); } public static void str1cat(String string) { string = string + "2"; System.out.println(String.format("str1cat str1 -- " + string)); } // 错误示例 public static void increaseOne(Integer x) { x++; } @Test public void test2() { StringTest test = new StringTest(); Map<String, String> map1 = new HashMap<String, String>(); map1.put("username", "David"); Map<String, String> map2 = new HashMap<String, String>(); map2.put("username", "Nick"); String user = "David"; int i = 1; changeValue(map1, map2, user, i); //如果打印的是:{username=admin}则说明java的对象传递的是地址,如果是:{username=David}则传递的是值 System.out.println(String.format("map1 -- %s", map1));//{username=admin} System.out.println(String.format("map2 -- %s", map2));//{username=Nick} //如果打印的是:admin则说明java的String对象传递的是地址,如果是:David则传递的是值 System.out.println(user);//David System.out.println(i + "");//1 } public void changeValue(Map<String, String> map1, Map<String, String> map2, String str, int i) { map2 = map1; map1.put("username", "Jack"); map2.put("username", "admin"); str = "admin"; i = 10; } @Test public void test3() { String a = "a"; StringBuilder sb = new StringBuilder("iphone"); foo(sb); System.out.println(String.format("sb - %s", sb)); } void foo(StringBuilder builder) { builder.append("4"); } @Test public void test4() { String a = "a"; StringBuffer sb = new StringBuffer("iphone"); foo(sb); System.out.println(String.format("sb - %s", sb)); } void foo(StringBuffer builder) { builder.append("4"); } @Test public void test5(){ char c1 = '中'; System.out.println(c1); } //中文转Unicode @Test public void gbEncoding() { String gbString = "测试"; char[] utfBytes = gbString.toCharArray(); String unicodeBytes = ""; for (int byteIndex = 0; byteIndex < utfBytes.length; byteIndex++) { String hexB = Integer.toHexString(utfBytes[byteIndex]); //转换为16进制整型字符串 if (hexB.length() <= 2) { hexB = "00" + hexB; } unicodeBytes = unicodeBytes + "\\u" + hexB; } System.out.println("unicodeBytes is: " + unicodeBytes); System.out.println(unicodeBytes); } @Test public void decodeUnicode(){ String dataStr = "\\u627e\\u4e0d\\u5230\\u6307\\u5b9a\\u7684\\u89c6\\u9891"; final StringBuffer buffer = new StringBuffer(); String[] dataArray = dataStr.split("\\\\u"); for(String str : dataArray){ if(str.trim().length() < 1){ continue; } char letter = (char)Integer.parseInt(str, 16); buffer.append(new Character(letter).toString()); } System.out.println(buffer.toString()); } @Test public void test6(){ //User user; //user.setName("aa"); } @Test public void equalsTest(){ String a = "1"; String b = new String("1"); System.out.println(a == b); System.out.println(a.equals(b)); } @Test public void dengdengTest(){ int a = 100, b = 100, c = 1000, d = 1000; System.out.println(a == b); System.out.println(c == d); } @Test public void stringToJson(){ String str = "userId=2425623&configId=jNMCK5ct4KN8&startDate=20180304&endDate=20180304&pageSize=2000&startOffset=0"; StringBuffer result = new StringBuffer("{"); String[] arr1 = str.split("&"); for(String kv : arr1){ String k = kv.split("=")[0]; String v = kv.split("=")[1]; result.append("\""); result.append(k); result.append("\""); result.append(":"); result.append("\""); result.append(v); result.append("\""); result.append(","); } result.append("}"); System.out.println(result.toString()); } public static void main(String args[]) { a(); } private static void a(){ b(); } private static void b(){ c(); } private static void c(){ } @Test public void testDate(){ int num=(int)(Math.random()*8999)+1000+1; System.out.println(num); long time = System.currentTimeMillis(); System.out.println(time); System.out.println(String.valueOf(time).length()); } }
[ "lichenyiwin@outlook.com" ]
lichenyiwin@outlook.com
b3b45612ca1247dd459c4ea2beaac33e54c72a12
097ace5415b54571f16a368c351ce14bf468f873
/src/main/java/com/king/mq/producterAndConsumer/TransactionProducer.java
550330f1cce909b6c44b38265d427220b0f376fa
[]
no_license
xisuo007/mymvc1
d306b6b445d35c52e7de4e087420c5049e1df988
14337409f226cc2efcf10d675941a293a2940ac6
refs/heads/master
2023-06-12T16:46:23.066257
2021-07-08T13:04:29
2021-07-08T13:04:29
382,248,833
0
0
null
null
null
null
UTF-8
Java
false
false
2,096
java
package com.king.mq.producterAndConsumer; import org.apache.rocketmq.client.exception.MQClientException; import org.apache.rocketmq.client.producer.SendResult; import org.apache.rocketmq.client.producer.TransactionListener; import org.apache.rocketmq.client.producer.TransactionMQProducer; import org.apache.rocketmq.common.message.Message; import org.apache.rocketmq.remoting.common.RemotingHelper; import java.util.concurrent.*; /** * Created by ljq on 2020-12-29 19:34 * half 事务消息发送端 */ public class TransactionProducer { public static void main(String[] args) throws Exception{ //构建一个回调函数 TransactionListener listener = new TransactionListenerImpl(); //创建一个支持事务消息的Producer 指定一个生产者分组 TransactionMQProducer producer = new TransactionMQProducer("TestProducerGroup"); //构建线程池,用来处理回调 ExecutorService executor = new ThreadPoolExecutor(2, 5, 100, TimeUnit.SECONDS, new ArrayBlockingQueue<>(2000), new ThreadFactory() { @Override public Thread newThread(Runnable r) { Thread thread = new Thread(r); thread.setName("TestThread"); return thread; } }); //给事务消息生产者设置对应的线程池,负责执行RocketMQ回调请求 producer.setExecutorService(executor); //给事务消息生产者设置对应的回调函数 producer.setTransactionListener(listener); producer.start(); //构建消息,指定Topic是谁 Message msg = new Message("PayOrderSuccessTopic", "TestTag", "TestKey", ("订单支付消息").getBytes(RemotingHelper.DEFAULT_CHARSET)); try { //将消息作为half消息的模式发出 SendResult sendResult = producer.sendMessageInTransaction(msg, null); } catch (MQClientException e) { //half消息发送失败 进行回滚逻辑(退款,跟新订单为关闭) e.printStackTrace(); } } }
[ "xisuo002@163.com" ]
xisuo002@163.com
322b81a7ddd29b5f5a4819f71ab6359d1e75a0d3
45ac30e024a98546612fcdb2a9fdf64b457bb9cf
/app/src/main/java/com/bwei/zhey_car/model/Cartentity.java
f0c4147e3633d1c67f7d96791af949bb58ce6581
[]
no_license
zhenghuiyang00/zhey_Car
dbea8d06bc1bd6cd969df134c49df6bd1b2e2ead
9a0dae3c9e1fa3750a55ace757c69021759231f0
refs/heads/master
2021-01-03T16:31:58.174202
2020-02-13T01:32:07
2020-02-13T01:32:07
240,152,471
0
0
null
null
null
null
UTF-8
Java
false
false
4,695
java
package com.bwei.zhey_car.model; import java.util.List; public class Cartentity { /** * result : [{"categoryName":"美妆护肤","shoppingCartList":[{"commodityId":5,"commodityName":"双头两用修容笔","count":3,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/3/1.jpg","price":39},{"commodityId":15,"commodityName":"玻儿精灵美妆蛋一个","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/mzgj/5/1.jpg","price":6},{"commodityId":7,"commodityName":"蓝色之恋","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/5/1.jpg","price":29},{"commodityId":6,"commodityName":"轻柔系自然裸妆假睫毛","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/4/1.jpg","price":39}]},{"categoryName":"女鞋","shoppingCartList":[{"commodityId":32,"commodityName":"唐狮女鞋冬季女鞋休闲鞋子女士女鞋百搭帆布鞋女士休闲鞋子女款板鞋休闲女鞋帆布鞋","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/nx/fbx/1/1.jpg","price":88},{"commodityId":18,"commodityName":"白色经典 秋季新款简约百搭轻便休闲女鞋板鞋小白鞋","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/nx/bx/1/1.jpg","price":79}]}] * message : 查询成功 * status : 0000 */ private String message; private String status; private List<ResultBean> result; public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public List<ResultBean> getResult() { return result; } public void setResult(List<ResultBean> result) { this.result = result; } public static class ResultBean { /** * categoryName : 美妆护肤 * shoppingCartList : [{"commodityId":5,"commodityName":"双头两用修容笔","count":3,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/3/1.jpg","price":39},{"commodityId":15,"commodityName":"玻儿精灵美妆蛋一个","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/mzgj/5/1.jpg","price":6},{"commodityId":7,"commodityName":"蓝色之恋","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/5/1.jpg","price":29},{"commodityId":6,"commodityName":"轻柔系自然裸妆假睫毛","count":4,"pic":"http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/4/1.jpg","price":39}] */ private String categoryName; private List<ShoppingCartListBean> shoppingCartList; public String getCategoryName() { return categoryName; } public void setCategoryName(String categoryName) { this.categoryName = categoryName; } public List<ShoppingCartListBean> getShoppingCartList() { return shoppingCartList; } public void setShoppingCartList(List<ShoppingCartListBean> shoppingCartList) { this.shoppingCartList = shoppingCartList; } public static class ShoppingCartListBean { /** * commodityId : 5 * commodityName : 双头两用修容笔 * count : 3 * pic : http://mobile.bwstudent.com/images/small/commodity/mzhf/cz/3/1.jpg * price : 39 */ private int commodityId; private String commodityName; private int count; private String pic; private double price; public int getCommodityId() { return commodityId; } public void setCommodityId(int commodityId) { this.commodityId = commodityId; } public String getCommodityName() { return commodityName; } public void setCommodityName(String commodityName) { this.commodityName = commodityName; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } public String getPic() { return pic; } public void setPic(String pic) { this.pic = pic; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } } } }
[ "2592142500@qq.com" ]
2592142500@qq.com
dd098422434ef8b4f08c2658bf62a566cb8cf019
a062e3df7b6ea58411cd882bdde05becb9196335
/src/bbb/MemoService.java
c37e8428a1e690d8425b994b9a74b6db109fbbaf
[]
no_license
Aura1226/Day09-BokBulBok-
9d0a54d5d7312bf401191b64bbf2f0c42d8467d5
a3585a34d0e60759abcd416b471f7a526631edcd
refs/heads/main
2023-05-31T05:07:59.650335
2021-06-09T05:05:27
2021-06-09T05:05:27
375,232,031
0
0
null
null
null
null
UTF-8
Java
false
false
855
java
package bbb; import java.util.Arrays; public class MemoService { // 의존적인 객체 혹은 데이터는 주입해서 써라 ( ex 쪽지들 -> 생성자의 의도) private Memo[] arr; // 쪽지 -> 공유할거라 인스턴스변수 private int ord; // 값을 누적 public void readyMemo(int count) { // 입력받은 숫자만큼 배열을 만들어준다. int index = (int) (Math.random() * count); arr = new Memo[count]; ord = 0; for (int i = 0; i < count; i++) { if (i == index) { arr[i] = new Memo("X"); continue; } arr[i] = new Memo("O"); } // end for } // 파라미터 필요없다 -> 그냥 쪽지만 달라고 하면 되니까 public Memo getNextMemo() { Memo result = null; System.out.println(Arrays.toString(arr)); result = arr[ord]; ord++; return result; } }
[ "aurakim1226@gmail.com" ]
aurakim1226@gmail.com
583c87c3cc1da790b92c8b14b38eabed1394c541
b242651b24f1949e7f95e3ee6aac3e6b26e1a74c
/lysek_p5/src/ContactList.java
fc0cc3ff2c0dd4c74d1ab74ad3c128b53bc91ee6
[]
no_license
cjlysek/COP3330_lysek
30fdd8a3d72a82f030c0d3ec56a53489decab695
278031d82da3b840b54bc16f25395cb22680c21e
refs/heads/master
2023-01-24T07:45:24.588932
2020-12-02T00:21:58
2020-12-02T00:21:58
295,250,694
0
0
null
null
null
null
UTF-8
Java
false
false
2,151
java
import java.io.*; import java.util.ArrayList; import java.util.Formatter; import java.util.List; import java.util.Scanner; public class ContactList { List<ContactItem> contacts; public ContactList() { contacts = new ArrayList<>(); } public void add(ContactItem contact) { contacts.add(contact); } public void replace(ContactItem contact, int contactToEdit) { contacts.set(contactToEdit - 1, contact); } public void delete(int contactToRemove) { contacts.remove(contactToRemove - 1); } public void write(String filename) { try(Formatter output = new Formatter(filename)) { for(int i = 0; i < contacts.size(); i++) { ContactItem contact = contacts.get(i); output.format("%s\n%s\n%s\n%s\n", contact.getFirstName(), contact.getLastName(), contact.getPhoneNumber(), contact.getEmail()); } } catch (FileNotFoundException ex) { System.out.println("Unable to find the file..."); } catch (Exception ex) { ex.printStackTrace(); } } public void print() { System.out.println("Current Contact List: \n"); System.out.println("__________________\n"); for(int i = 0; i < contacts.size(); i++) { ContactItem contact = contacts.get(i); System.out.printf("%d) Name: %s %s Phone Number: %s Email: %s\n", i + 1, contact.getFirstName(), contact.getLastName(), contact.getPhoneNumber(), contact.getEmail()); } System.out.println("\n"); } public void loadList(File s) { try { Scanner scanner = new Scanner(s); scanner.useDelimiter(","); while (scanner.hasNext()) { ContactItem contact = new ContactItem(scanner.nextLine(), scanner.nextLine(), scanner.nextLine(), scanner.nextLine()); contacts.add(contact); } } catch (FileNotFoundException e) { e.printStackTrace(); } } }
[ "cjlysek@knights.ucf.edu" ]
cjlysek@knights.ucf.edu
0108c8d7f30e15d9a6fd6ee6ff289789ca635aa5
563cc3ce91247a37b6a0ead376035b27cd234b7a
/Example01-SpringRedis/src/main/java/com/spring/redis/controller/RedisController.java
a809fe9f702f8fc5ebe4fa6be2c2cee2a1e8b61c
[]
no_license
altrk19/Spring-Boot-Redis
fd717ccecdad8dbd39a2276891d436876d84c0aa
f7c342437e8ad2fcdc169d4a088621cbcc7cd575
refs/heads/master
2022-12-14T14:32:15.043200
2020-09-11T08:08:20
2020-09-11T08:08:20
261,011,971
1
0
null
null
null
null
UTF-8
Java
false
false
3,717
java
package com.spring.redis.controller; import com.spring.redis.exception.ConfigException; import com.spring.redis.service.ConfigService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class RedisController { private static final Logger logger = LoggerFactory.getLogger(RedisController.class); private ConfigService configService; public RedisController(ConfigService configService) { this.configService = configService; } @GetMapping("/setEntry") public String setEntry() throws ConfigException { logger.debug("added value1"); configService.setEntry("entry1", "value1"); return "added value"; } @GetMapping("/getEntry") public String getEntry() throws ConfigException { logger.debug("retrieved value1"); return configService.getEntry("entry1"); } @GetMapping("/deleteEntry") public String deleteEntry() throws ConfigException { logger.debug("removed value1"); configService.removeEntry("entry1"); return "removed value"; } @GetMapping("/setAttribute1") public String setAttribute1() throws ConfigException { logger.debug("added attribute"); configService.setAttribute("attribute1", "key1", "value1"); configService.setAttribute("attribute1", "key2", "value2"); configService.setAttribute("attribute1", "key3", "value3"); return "added attribute1"; } @GetMapping("/setAttribute2") public String setAttribute2() throws ConfigException { logger.debug("added attribute"); Map<String, String> attributeMap = new HashMap<>(); attributeMap.put("key11", "value11"); attributeMap.put("key12", "value12"); attributeMap.put("key13", "value13"); configService.setAttributes("attribute2", attributeMap); return "added attribute2"; } @GetMapping("/getAttribute1") public String getAttribute1() throws ConfigException { logger.debug("retrieved attribute"); return configService.getAttribute("attribute1", "key1"); //output:value1 } @GetMapping("/getAttribute1All") public Map<String, String> getAttribute1All() throws ConfigException { logger.debug("retrieved attribute"); return configService.getAttributes("attribute1"); //output:{"key1":"value1","key2":"value2","key3:"value3"} } @GetMapping("/getAttribute2All") public Map<String, String> getAttribute2All() throws ConfigException { logger.debug("retrieved attribute"); return configService.getAttributes("attribute2"); //output:{"key13":"value13","key12":"value12","key11":"value11"} } @GetMapping("/getAttribute2Partial") public Map<String, String> getAttribute2Partial() throws ConfigException { logger.debug("retrieved attribute"); List<String> attributes = new ArrayList<>(); attributes.add("key11"); attributes.add("key13"); return configService.getAttributes("attribute2", attributes); //output:{"key11":"value11","key13":"value13"} } @GetMapping("/deleteAttribute1") public String deleteAttribute() throws ConfigException { logger.debug("removed attribute"); configService.removeAttributes("attribute1","key3"); return "removed attribute key3"; } @GetMapping("/getKeys") public Set<String> getKeys() throws ConfigException { logger.debug("retrieved keys"); return configService.getKeys("attr"); //it requires pattern } }
[ "aturk@netas.com.tr" ]
aturk@netas.com.tr
90d1a201c056ab0e8ac1be34e7a142457a479222
1d928c3f90d4a0a9a3919a804597aa0a4aab19a3
/java/neo4j/2015/12/Outcome.java
f44ccea841983c1f0f257f734893798e6ba231e8
[]
no_license
rosoareslv/SED99
d8b2ff5811e7f0ffc59be066a5a0349a92cbb845
a062c118f12b93172e31e8ca115ce3f871b64461
refs/heads/main
2023-02-22T21:59:02.703005
2021-01-28T19:40:51
2021-01-28T19:40:51
306,497,459
1
1
null
2020-11-24T20:56:18
2020-10-23T01:18:07
null
UTF-8
Java
false
false
7,252
java
/* * Copyright (c) 2002-2015 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * Neo4j is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.neo4j.coreedge.raft.outcome; import java.io.Serializable; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.Set; import org.neo4j.coreedge.raft.RaftMessages; import org.neo4j.coreedge.raft.roles.Role; import org.neo4j.coreedge.raft.state.FollowerStates; import org.neo4j.coreedge.raft.state.ReadableRaftState; /** * Holds the outcome of a RAFT role's handling of a message. The role handling logic is stateless * and responds to RAFT messages in the context of a supplied state. The outcome is later consumed * to update the state and do operations embedded as commands within the outcome. * * A state update could be to change role, change term, etc. * A command could be to append to the RAFT log, tell the log shipper that there was a mismatch, etc. */ public class Outcome<MEMBER> implements Serializable { private static final long serialVersionUID = 4288616769553581132L; /* Common */ private Role newRole; private long term; private MEMBER leader; private long leaderCommit; private Collection<LogCommand> logCommands = new ArrayList<>(); private Collection<RaftMessages.Directed<MEMBER>> outgoingMessages = new ArrayList<>(); /* Follower */ private MEMBER votedFor; private boolean renewElectionTimeout; /* Candidate */ private Set<MEMBER> votesForMe; private long lastLogIndexBeforeWeBecameLeader; /* Leader */ private FollowerStates<MEMBER> followerStates; private Collection<ShipCommand> shipCommands = new ArrayList<>(); public Outcome( Role currentRole, ReadableRaftState<MEMBER> ctx ) { defaults( currentRole, ctx ); } public Outcome( Role newRole, long term, MEMBER leader, long leaderCommit, MEMBER votedFor, Set<MEMBER> votesForMe, long lastLogIndexBeforeWeBecameLeader, FollowerStates<MEMBER> followerStates, boolean renewElectionTimeout, Collection<LogCommand> logCommands, Collection<RaftMessages.Directed<MEMBER>> outgoingMessages, Collection<ShipCommand> shipCommands ) { this.newRole = newRole; this.term = term; this.leader = leader; this.leaderCommit = leaderCommit; this.votedFor = votedFor; this.votesForMe = new HashSet<>( votesForMe ); this.lastLogIndexBeforeWeBecameLeader = lastLogIndexBeforeWeBecameLeader; this.followerStates = followerStates; this.renewElectionTimeout = renewElectionTimeout; this.logCommands.addAll( logCommands ); this.outgoingMessages.addAll( outgoingMessages ); this.shipCommands.addAll( shipCommands ); } private void defaults( Role currentRole, ReadableRaftState<MEMBER> ctx ) { newRole = currentRole; term = ctx.term(); leader = ctx.leader(); leaderCommit = ctx.leaderCommit(); votedFor = ctx.votedFor(); renewElectionTimeout = false; votesForMe = (currentRole == Role.CANDIDATE) ? new HashSet<>( ctx.votesForMe() ) : new HashSet<>(); lastLogIndexBeforeWeBecameLeader = (currentRole == Role.LEADER) ? ctx.lastLogIndexBeforeWeBecameLeader() : -1; followerStates = (currentRole == Role.LEADER) ? ctx.followerStates() : new FollowerStates<>(); } public void setNextRole( Role nextRole ) { this.newRole = nextRole; } public void setNextTerm( long nextTerm ) { this.term = nextTerm; } public void setLeader( MEMBER leader ) { this.leader = leader; } public void setLeaderCommit( long leaderCommit ) { this.leaderCommit = leaderCommit; } public void addLogCommand( LogCommand logCommand ) { this.logCommands.add( logCommand ); } public void addOutgoingMessage( RaftMessages.Directed<MEMBER> message ) { this.outgoingMessages.add( message ); } public void setVotedFor( MEMBER votedFor ) { this.votedFor = votedFor; } public void renewElectionTimeout() { this.renewElectionTimeout = true; } public void addVoteForMe( MEMBER voteFrom ) { this.votesForMe.add( voteFrom ); } public void setLastLogIndexBeforeWeBecameLeader( long lastLogIndexBeforeWeBecameLeader ) { this.lastLogIndexBeforeWeBecameLeader = lastLogIndexBeforeWeBecameLeader; } public void replaceFollowerStates( FollowerStates<MEMBER> followerStates ) { this.followerStates = followerStates; } public void addShipCommand( ShipCommand shipCommand ) { shipCommands.add( shipCommand ); } @Override public String toString() { return "Outcome{" + "nextRole=" + newRole + ", newTerm=" + term + ", leader=" + leader + ", leaderCommit=" + leaderCommit + ", logCommands=" + logCommands + ", shipCommands=" + shipCommands + ", votedFor=" + votedFor + ", updatedVotesForMe=" + votesForMe + ", lastLogIndexBeforeWeBecameLeader=" + lastLogIndexBeforeWeBecameLeader + ", updatedFollowerStates=" + followerStates + ", renewElectionTimeout=" + renewElectionTimeout + ", outgoingMessages=" + outgoingMessages + '}'; } public Role getNewRole() { return newRole; } public long getTerm() { return term; } public MEMBER getLeader() { return leader; } public long getLeaderCommit() { return leaderCommit; } public Collection<LogCommand> getLogCommands() { return logCommands; } public Collection<RaftMessages.Directed<MEMBER>> getOutgoingMessages() { return outgoingMessages; } public MEMBER getVotedFor() { return votedFor; } public boolean electionTimeoutRenewed() { return renewElectionTimeout; } public Set<MEMBER> getVotesForMe() { return votesForMe; } public long getLastLogIndexBeforeWeBecameLeader() { return lastLogIndexBeforeWeBecameLeader; } public FollowerStates<MEMBER> getFollowerStates() { return followerStates; } public Collection<ShipCommand> getShipCommands() { return shipCommands; } }
[ "rodrigosoaresilva@gmail.com" ]
rodrigosoaresilva@gmail.com
e52cf624788ec3b7e18c87189b7af96a11632494
68b22b9be222a5eae8264330685a988dbca12485
/JFreeChart Demo/demo/GanttDemo2.java
b1c3025c755de3e30cc66f311bfa5fbe2de1fd10
[]
no_license
smileHorse/Java
4bc64b413a73ac416cfdea5df9b4debff5668901
8ecad1ad7352eaf2c788aec9965db0ef9daeffe3
refs/heads/master
2022-12-14T02:35:39.528245
2020-09-27T06:35:26
2020-09-27T06:35:26
119,227,889
0
0
null
2022-12-10T21:03:40
2018-01-28T04:35:40
Java
UTF-8
Java
false
false
4,539
java
package demo; import java.awt.Color; import java.awt.Dimension; import java.util.Calendar; import java.util.Date; import javax.swing.JPanel; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.renderer.category.CategoryItemRenderer; import org.jfree.data.category.IntervalCategoryDataset; import org.jfree.data.gantt.Task; import org.jfree.data.gantt.TaskSeries; import org.jfree.data.gantt.TaskSeriesCollection; import org.jfree.ui.ApplicationFrame; import org.jfree.ui.RefineryUtilities; public class GanttDemo2 extends ApplicationFrame { public GanttDemo2(String var1) { super(var1); JPanel var2 = createDemoPanel(); var2.setPreferredSize(new Dimension(500, 270)); this.setContentPane(var2); } private static JFreeChart createChart(IntervalCategoryDataset var0) { JFreeChart var1 = ChartFactory.createGanttChart("Gantt Chart Demo", "Task", "Date", var0, true, true, false); CategoryPlot var2 = (CategoryPlot)var1.getPlot(); var2.setRangePannable(true); var2.getDomainAxis().setMaximumCategoryLabelWidthRatio(10.0F); CategoryItemRenderer var3 = var2.getRenderer(); var3.setSeriesPaint(0, Color.blue); return var1; } private static IntervalCategoryDataset createDataset() { TaskSeries var0 = new TaskSeries("Scheduled"); Task var1 = new Task("Write Proposal", date(1, 3, 2001), date(5, 3, 2001)); var1.setPercentComplete(1.0D); var0.add(var1); Task var2 = new Task("Obtain Approval", date(9, 3, 2001), date(9, 3, 2001)); var2.setPercentComplete(1.0D); var0.add(var2); Task var3 = new Task("Requirements Analysis", date(10, 3, 2001), date(5, 4, 2001)); Task var4 = new Task("Requirements 1", date(10, 3, 2001), date(25, 3, 2001)); var4.setPercentComplete(1.0D); Task var5 = new Task("Requirements 2", date(1, 4, 2001), date(5, 4, 2001)); var5.setPercentComplete(1.0D); var3.addSubtask(var4); var3.addSubtask(var5); var0.add(var3); Task var6 = new Task("Design Phase", date(6, 4, 2001), date(30, 4, 2001)); Task var7 = new Task("Design 1", date(6, 4, 2001), date(10, 4, 2001)); var7.setPercentComplete(1.0D); Task var8 = new Task("Design 2", date(15, 4, 2001), date(20, 4, 2001)); var8.setPercentComplete(1.0D); Task var9 = new Task("Design 3", date(23, 4, 2001), date(30, 4, 2001)); var9.setPercentComplete(0.5D); var6.addSubtask(var7); var6.addSubtask(var8); var6.addSubtask(var9); var0.add(var6); Task var10 = new Task("Design Signoff", date(2, 5, 2001), date(2, 5, 2001)); var0.add(var10); Task var11 = new Task("Alpha Implementation", date(3, 5, 2001), date(31, 6, 2001)); var11.setPercentComplete(0.6D); var0.add(var11); Task var12 = new Task("Design Review", date(1, 7, 2001), date(8, 7, 2001)); var12.setPercentComplete(0.0D); var0.add(var12); Task var13 = new Task("Revised Design Signoff", date(10, 7, 2001), date(10, 7, 2001)); var13.setPercentComplete(0.0D); var0.add(var13); Task var14 = new Task("Beta Implementation", date(12, 7, 2001), date(12, 8, 2001)); var14.setPercentComplete(0.0D); var0.add(var14); Task var15 = new Task("Testing", date(13, 8, 2001), date(31, 9, 2001)); var15.setPercentComplete(0.0D); var0.add(var15); Task var16 = new Task("Final Implementation", date(1, 10, 2001), date(15, 10, 2001)); var16.setPercentComplete(0.0D); var0.add(var16); Task var17 = new Task("Signoff", date(28, 10, 2001), date(30, 10, 2001)); var17.setPercentComplete(0.0D); var0.add(var17); TaskSeriesCollection var18 = new TaskSeriesCollection(); var18.add(var0); return var18; } private static Date date(int var0, int var1, int var2) { Calendar var3 = Calendar.getInstance(); var3.set(var2, var1, var0); Date var4 = var3.getTime(); return var4; } public static JPanel createDemoPanel() { JFreeChart var0 = createChart(createDataset()); ChartPanel var1 = new ChartPanel(var0); var1.setMouseWheelEnabled(true); return var1; } public static void main(String[] var0) { GanttDemo2 var1 = new GanttDemo2("JFreeChart: GanttDemo2.java"); var1.pack(); RefineryUtilities.centerFrameOnScreen(var1); var1.setVisible(true); } }
[ "65022492@qq.com" ]
65022492@qq.com
01d054fe89e25986a66e6803f3a6b00d56d3a721
17c8fafb57c1d69acbb7d6892be6cbca6e2c4997
/src/hw6/animals/Cat.java
3dd34b852f098f7fc65a880a9a857c8e26390162
[]
no_license
JoeSemper/Java1
8f31aa37bbd3f9fb1b99ef919b534b9034d472af
fd37c458701b2b71f98d01c2be52fef8b107775e
refs/heads/master
2022-10-13T14:10:15.385702
2020-06-15T16:45:42
2020-06-15T16:45:42
263,695,654
0
0
null
null
null
null
UTF-8
Java
false
false
477
java
package hw6.animals; import java.util.Random; public class Cat extends Animal { private static int count = 0; Random rand = new Random(); public Cat(String name) { super(name); maxRun = rand.nextInt(100)+150; maxSwim = 0; count++; } @Override public void swim(int distanse){ System.out.println("Кот не умеет плавать"); } public static int getCount(){ return count; } }
[ "joe.semper@gmail.com" ]
joe.semper@gmail.com
ecad774d42c0ac5041d7854cf9ce7c4a87909a89
0f1d8003f290c4c72e35ae12880e026c9104b431
/main/Main.java
d312ea441485d3395508430795bd806cb2fbf084
[]
no_license
Markkolas/DiceApp
38e9234cc2d6bcc297f0527b48d2d85f22bbac61
c0f4083bf29021aa4908b48f736fd6efc079bf6f
refs/heads/main
2023-07-16T09:56:11.255105
2021-09-05T22:52:10
2021-09-05T22:52:10
402,163,679
1
0
null
null
null
null
UTF-8
Java
false
false
1,154
java
/* Shitty application made by Marco Antonio Villa aka "El Yoyis". TO DO list: Add usability (queues of throws, probabilities calculator, mixed throws in one result, etc) Change the design and implementation of the UI, its so bad it makes me sad Make it prettier Make it better in general Special thanks to Diego Dominguez for making me do the piece of garbage this program is (to be fair I only used 3 days making it). Kisses. */ package main; import dices.Dice; import ui.UI; public class Main { private static final Dice[] dados = { new Dice(2, "d2"), new Dice(4, "d4"), new Dice(6, "d6"), new Dice(8, "d8"), new Dice(10, "d10"), new Dice(12, "d12"), new Dice(20, "d20"), new Dice(100, "d100") }; private static UI diceInterface = new UI(); public static void main(String[] args) { diceInterface.startUI(); } public static void roll(int indexDice, int timesToRoll) { int[] result = dados[indexDice].roll(timesToRoll); diceInterface.showResults(result, indexDice, timesToRoll, dados[indexDice].getTipo()); } }
[ "markolas14@gmail.com" ]
markolas14@gmail.com
d715ddd3bc5228089c051b818641c76a88934f07
97fd02f71b45aa235f917e79dd68b61c62b56c1c
/src/main/java/com/tencentcloudapi/tdmq/v20200217/models/RabbitMQVipInstance.java
ceea0f080b972439f922fd96a67fe5b3992b5f6f
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-java
7df922f7c5826732e35edeab3320035e0cdfba05
09fa672d75e5ca33319a23fcd8b9ca3d2afab1ec
refs/heads/master
2023-09-04T10:51:57.854153
2023-09-01T03:21:09
2023-09-01T03:21:09
129,837,505
537
317
Apache-2.0
2023-09-13T02:42:03
2018-04-17T02:58:16
Java
UTF-8
Java
false
false
15,009
java
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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. * 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.tencentcloudapi.tdmq.v20200217.models; import com.tencentcloudapi.common.AbstractModel; import com.google.gson.annotations.SerializedName; import com.google.gson.annotations.Expose; import java.util.HashMap; public class RabbitMQVipInstance extends AbstractModel{ /** * 实例id */ @SerializedName("InstanceId") @Expose private String InstanceId; /** * 实例名称 */ @SerializedName("InstanceName") @Expose private String InstanceName; /** * 实例版本 注意:此字段可能返回 null,表示取不到有效值。 */ @SerializedName("InstanceVersion") @Expose private String InstanceVersion; /** * 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 */ @SerializedName("Status") @Expose private Long Status; /** * 节点数量 */ @SerializedName("NodeCount") @Expose private Long NodeCount; /** * 实例配置规格名称 */ @SerializedName("ConfigDisplay") @Expose private String ConfigDisplay; /** * 峰值TPS */ @SerializedName("MaxTps") @Expose private Long MaxTps; /** * 峰值带宽,Mbps为单位 */ @SerializedName("MaxBandWidth") @Expose private Long MaxBandWidth; /** * 存储容量,GB为单位 */ @SerializedName("MaxStorage") @Expose private Long MaxStorage; /** * 实例到期时间,毫秒为单位 */ @SerializedName("ExpireTime") @Expose private Long ExpireTime; /** * 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置) */ @SerializedName("AutoRenewFlag") @Expose private Long AutoRenewFlag; /** * 0-后付费,1-预付费 */ @SerializedName("PayMode") @Expose private Long PayMode; /** * 备注信息 注意:此字段可能返回 null,表示取不到有效值。 */ @SerializedName("Remark") @Expose private String Remark; /** * 实例配置ID */ @SerializedName("SpecName") @Expose private String SpecName; /** * 集群异常。 注意:此字段可能返回 null,表示取不到有效值。 */ @SerializedName("ExceptionInformation") @Expose private String ExceptionInformation; /** * 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 为了和计费区分开,额外开启一个状态位,用于显示。 */ @SerializedName("ClusterStatus") @Expose private Long ClusterStatus; /** * Get 实例id * @return InstanceId 实例id */ public String getInstanceId() { return this.InstanceId; } /** * Set 实例id * @param InstanceId 实例id */ public void setInstanceId(String InstanceId) { this.InstanceId = InstanceId; } /** * Get 实例名称 * @return InstanceName 实例名称 */ public String getInstanceName() { return this.InstanceName; } /** * Set 实例名称 * @param InstanceName 实例名称 */ public void setInstanceName(String InstanceName) { this.InstanceName = InstanceName; } /** * Get 实例版本 注意:此字段可能返回 null,表示取不到有效值。 * @return InstanceVersion 实例版本 注意:此字段可能返回 null,表示取不到有效值。 */ public String getInstanceVersion() { return this.InstanceVersion; } /** * Set 实例版本 注意:此字段可能返回 null,表示取不到有效值。 * @param InstanceVersion 实例版本 注意:此字段可能返回 null,表示取不到有效值。 */ public void setInstanceVersion(String InstanceVersion) { this.InstanceVersion = InstanceVersion; } /** * Get 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 * @return Status 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 */ public Long getStatus() { return this.Status; } /** * Set 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 * @param Status 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 */ public void setStatus(Long Status) { this.Status = Status; } /** * Get 节点数量 * @return NodeCount 节点数量 */ public Long getNodeCount() { return this.NodeCount; } /** * Set 节点数量 * @param NodeCount 节点数量 */ public void setNodeCount(Long NodeCount) { this.NodeCount = NodeCount; } /** * Get 实例配置规格名称 * @return ConfigDisplay 实例配置规格名称 */ public String getConfigDisplay() { return this.ConfigDisplay; } /** * Set 实例配置规格名称 * @param ConfigDisplay 实例配置规格名称 */ public void setConfigDisplay(String ConfigDisplay) { this.ConfigDisplay = ConfigDisplay; } /** * Get 峰值TPS * @return MaxTps 峰值TPS */ public Long getMaxTps() { return this.MaxTps; } /** * Set 峰值TPS * @param MaxTps 峰值TPS */ public void setMaxTps(Long MaxTps) { this.MaxTps = MaxTps; } /** * Get 峰值带宽,Mbps为单位 * @return MaxBandWidth 峰值带宽,Mbps为单位 */ public Long getMaxBandWidth() { return this.MaxBandWidth; } /** * Set 峰值带宽,Mbps为单位 * @param MaxBandWidth 峰值带宽,Mbps为单位 */ public void setMaxBandWidth(Long MaxBandWidth) { this.MaxBandWidth = MaxBandWidth; } /** * Get 存储容量,GB为单位 * @return MaxStorage 存储容量,GB为单位 */ public Long getMaxStorage() { return this.MaxStorage; } /** * Set 存储容量,GB为单位 * @param MaxStorage 存储容量,GB为单位 */ public void setMaxStorage(Long MaxStorage) { this.MaxStorage = MaxStorage; } /** * Get 实例到期时间,毫秒为单位 * @return ExpireTime 实例到期时间,毫秒为单位 */ public Long getExpireTime() { return this.ExpireTime; } /** * Set 实例到期时间,毫秒为单位 * @param ExpireTime 实例到期时间,毫秒为单位 */ public void setExpireTime(Long ExpireTime) { this.ExpireTime = ExpireTime; } /** * Get 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置) * @return AutoRenewFlag 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置) */ public Long getAutoRenewFlag() { return this.AutoRenewFlag; } /** * Set 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置) * @param AutoRenewFlag 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置) */ public void setAutoRenewFlag(Long AutoRenewFlag) { this.AutoRenewFlag = AutoRenewFlag; } /** * Get 0-后付费,1-预付费 * @return PayMode 0-后付费,1-预付费 */ public Long getPayMode() { return this.PayMode; } /** * Set 0-后付费,1-预付费 * @param PayMode 0-后付费,1-预付费 */ public void setPayMode(Long PayMode) { this.PayMode = PayMode; } /** * Get 备注信息 注意:此字段可能返回 null,表示取不到有效值。 * @return Remark 备注信息 注意:此字段可能返回 null,表示取不到有效值。 */ public String getRemark() { return this.Remark; } /** * Set 备注信息 注意:此字段可能返回 null,表示取不到有效值。 * @param Remark 备注信息 注意:此字段可能返回 null,表示取不到有效值。 */ public void setRemark(String Remark) { this.Remark = Remark; } /** * Get 实例配置ID * @return SpecName 实例配置ID */ public String getSpecName() { return this.SpecName; } /** * Set 实例配置ID * @param SpecName 实例配置ID */ public void setSpecName(String SpecName) { this.SpecName = SpecName; } /** * Get 集群异常。 注意:此字段可能返回 null,表示取不到有效值。 * @return ExceptionInformation 集群异常。 注意:此字段可能返回 null,表示取不到有效值。 */ public String getExceptionInformation() { return this.ExceptionInformation; } /** * Set 集群异常。 注意:此字段可能返回 null,表示取不到有效值。 * @param ExceptionInformation 集群异常。 注意:此字段可能返回 null,表示取不到有效值。 */ public void setExceptionInformation(String ExceptionInformation) { this.ExceptionInformation = ExceptionInformation; } /** * Get 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 为了和计费区分开,额外开启一个状态位,用于显示。 * @return ClusterStatus 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 为了和计费区分开,额外开启一个状态位,用于显示。 */ public Long getClusterStatus() { return this.ClusterStatus; } /** * Set 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 为了和计费区分开,额外开启一个状态位,用于显示。 * @param ClusterStatus 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败 为了和计费区分开,额外开启一个状态位,用于显示。 */ public void setClusterStatus(Long ClusterStatus) { this.ClusterStatus = ClusterStatus; } public RabbitMQVipInstance() { } /** * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy, * and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy. */ public RabbitMQVipInstance(RabbitMQVipInstance source) { if (source.InstanceId != null) { this.InstanceId = new String(source.InstanceId); } if (source.InstanceName != null) { this.InstanceName = new String(source.InstanceName); } if (source.InstanceVersion != null) { this.InstanceVersion = new String(source.InstanceVersion); } if (source.Status != null) { this.Status = new Long(source.Status); } if (source.NodeCount != null) { this.NodeCount = new Long(source.NodeCount); } if (source.ConfigDisplay != null) { this.ConfigDisplay = new String(source.ConfigDisplay); } if (source.MaxTps != null) { this.MaxTps = new Long(source.MaxTps); } if (source.MaxBandWidth != null) { this.MaxBandWidth = new Long(source.MaxBandWidth); } if (source.MaxStorage != null) { this.MaxStorage = new Long(source.MaxStorage); } if (source.ExpireTime != null) { this.ExpireTime = new Long(source.ExpireTime); } if (source.AutoRenewFlag != null) { this.AutoRenewFlag = new Long(source.AutoRenewFlag); } if (source.PayMode != null) { this.PayMode = new Long(source.PayMode); } if (source.Remark != null) { this.Remark = new String(source.Remark); } if (source.SpecName != null) { this.SpecName = new String(source.SpecName); } if (source.ExceptionInformation != null) { this.ExceptionInformation = new String(source.ExceptionInformation); } if (source.ClusterStatus != null) { this.ClusterStatus = new Long(source.ClusterStatus); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap<String, String> map, String prefix) { this.setParamSimple(map, prefix + "InstanceId", this.InstanceId); this.setParamSimple(map, prefix + "InstanceName", this.InstanceName); this.setParamSimple(map, prefix + "InstanceVersion", this.InstanceVersion); this.setParamSimple(map, prefix + "Status", this.Status); this.setParamSimple(map, prefix + "NodeCount", this.NodeCount); this.setParamSimple(map, prefix + "ConfigDisplay", this.ConfigDisplay); this.setParamSimple(map, prefix + "MaxTps", this.MaxTps); this.setParamSimple(map, prefix + "MaxBandWidth", this.MaxBandWidth); this.setParamSimple(map, prefix + "MaxStorage", this.MaxStorage); this.setParamSimple(map, prefix + "ExpireTime", this.ExpireTime); this.setParamSimple(map, prefix + "AutoRenewFlag", this.AutoRenewFlag); this.setParamSimple(map, prefix + "PayMode", this.PayMode); this.setParamSimple(map, prefix + "Remark", this.Remark); this.setParamSimple(map, prefix + "SpecName", this.SpecName); this.setParamSimple(map, prefix + "ExceptionInformation", this.ExceptionInformation); this.setParamSimple(map, prefix + "ClusterStatus", this.ClusterStatus); } }
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
b132c61ef310685c280f2ee91031b13aa97d9175
50672f3cf956f1a387b3ee6ae95155e66c1ba352
/mvccoder/src/com/wanmei/service/impl/DomainButtonServiceImpl.java
2f3ff99ae800da6503dd7cd3d2188abff8e25ff7
[]
no_license
joeytang/pwrdsvn
09fa7d651e5514c598a874d95f1a464419cca4fc
850d89ddc6ba908f1d3de120b4e14568a5fb1689
refs/heads/master
2020-03-30T03:08:38.157905
2012-11-26T14:34:29
2012-11-26T14:34:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
543
java
package com.wanmei.service.impl; import com.wanmei.dao.DomainButtonDao; import com.wanmei.domain.DomainButton; import com.wanmei.service.DomainButtonService; import com.wanmei.common.service.impl.BaseServiceImpl; import org.springframework.stereotype.Service; /** * @author joeytang * Date: 2012-03-22 11:02 * 模块与按钮映射模块service */ @Service("domainButtonService") public class DomainButtonServiceImpl extends BaseServiceImpl<DomainButton,Integer,DomainButtonDao> implements DomainButtonService { }
[ "tanghc@163.com" ]
tanghc@163.com
663f4beaa792230ebb6ea0510473923094199ab9
0874d515fb8c23ae10bf140ee5336853bceafe0b
/l2j-universe-lindvior/Lindvior Source/gameserver/src/main/java/l2p/gameserver/network/serverpackets/CastleSiegeAttackerList.java
958cc03c98781b008420b7593d7ab6b38572d140
[]
no_license
NotorionN/l2j-universe
8dfe529c4c1ecf0010faead9e74a07d0bc7fa380
4d05cbd54f5586bf13e248e9c853068d941f8e57
refs/heads/master
2020-12-24T16:15:10.425510
2013-11-23T19:35:35
2013-11-23T19:35:35
37,354,291
0
1
null
null
null
null
UTF-8
Java
false
false
2,529
java
package l2p.gameserver.network.serverpackets; import l2p.gameserver.model.entity.events.impl.SiegeEvent; import l2p.gameserver.model.entity.events.objects.SiegeClanObject; import l2p.gameserver.model.entity.residence.Residence; import l2p.gameserver.model.pledge.Alliance; import l2p.gameserver.model.pledge.Clan; import org.apache.commons.lang3.StringUtils; import java.util.Collections; import java.util.List; /** * Populates the Siege Attacker List in the SiegeInfo Window<BR> * <BR> * packet type id 0xca<BR> * format: cddddddd + dSSdddSSd<BR> * <BR> * c = ca<BR> * d = CastleID<BR> * d = unknow (0x00)<BR> * d = registration valid (0x01)<BR> * d = unknow (0x00)<BR> * d = Number of Attackers Clans?<BR> * d = Number of Attackers Clans<BR> * { //repeats<BR> * d = ClanID<BR> * S = ClanName<BR> * S = ClanLeaderName<BR> * d = ClanCrestID<BR> * d = signed time (seconds)<BR> * d = AllyID<BR> * S = AllyName<BR> * S = AllyLeaderName<BR> * d = AllyCrestID<BR> * * @reworked VISTALL */ public class CastleSiegeAttackerList extends L2GameServerPacket { private int _id, _registrationValid; private List<SiegeClanObject> _clans = Collections.emptyList(); public CastleSiegeAttackerList(Residence residence) { _id = residence.getId(); _registrationValid = !residence.getSiegeEvent().isRegistrationOver() ? 1 : 0; _clans = residence.getSiegeEvent().getObjects(SiegeEvent.ATTACKERS); } @Override protected final void writeImpl() { writeC(0xCA); writeD(_id); writeD(0x00); writeD(_registrationValid); writeD(0x00); writeD(_clans.size()); writeD(_clans.size()); for (SiegeClanObject siegeClan : _clans) { Clan clan = siegeClan.getClan(); writeD(clan.getClanId()); writeS(clan.getName()); writeS(clan.getLeaderName()); writeD(clan.getCrestId()); writeD((int) (siegeClan.getDate() / 1000L)); Alliance alliance = clan.getAlliance(); writeD(clan.getAllyId()); if (alliance != null) { writeS(alliance.getAllyName()); writeS(alliance.getAllyLeaderName()); writeD(alliance.getAllyCrestId()); } else { writeS(StringUtils.EMPTY); writeS(StringUtils.EMPTY); writeD(0); } } } }
[ "jmendezsr@gmail.com" ]
jmendezsr@gmail.com
689d2af721a093f31e47a050c0caacc313025f1a
bbf89e03a6f38ce6c75ac802e0d2bb9b5f3e4621
/src/com/web/javsterisk/controller/DashboardController.java
99f71bd70d7ce8d5a1ce0025fba1422cfb880b5e
[ "Apache-2.0" ]
permissive
codar4j/javsterisk
deea2a8975b583f89dd4ece26b752398880ae5c7
1acb45bed772a45650a115b1df6074d61e415edc
refs/heads/master
2021-01-16T00:09:31.602465
2017-08-15T01:47:05
2017-09-12T21:56:41
48,617,798
0
0
null
null
null
null
UTF-8
Java
false
false
14,895
java
package com.web.javsterisk.controller; import java.io.File; import java.io.Serializable; import java.text.DecimalFormat; import java.util.ArrayList; import java.util.List; import javax.annotation.PostConstruct; import javax.faces.bean.ManagedBean; import javax.faces.bean.ManagedProperty; import javax.faces.bean.ViewScoped; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.hyperic.sigar.CpuPerc; //import org.hyperic.sigar.FileSystem; //import org.hyperic.sigar.FileSystemUsage; import org.hyperic.sigar.Mem; import org.hyperic.sigar.NfsFileSystem; import org.hyperic.sigar.ProcState; import org.hyperic.sigar.SigarException; import org.primefaces.model.DashboardColumn; import org.primefaces.model.DashboardModel; import org.primefaces.model.DefaultDashboardColumn; import org.primefaces.model.DefaultDashboardModel; import org.primefaces.model.chart.MeterGaugeChartModel; import org.primefaces.model.chart.PieChartModel; import com.web.javsterisk.dao.ParameterDAO; import com.web.javsterisk.entity.Cpu; import com.web.javsterisk.entity.CpuInfo; import com.web.javsterisk.entity.FileSystem; import com.web.javsterisk.entity.Parameter; import com.web.javsterisk.entity.Ram; import com.web.javsterisk.entity.Service; /** * * @author atorres * */ @ManagedBean @ViewScoped public class DashboardController extends BaseController implements Serializable{ /** * */ private static final long serialVersionUID = 1L; private static final Logger log = LogManager.getLogger(DashboardController.class); private ParameterDAO parameterDAO; @ManagedProperty("#{securityController}") private SecurityController securityController; // private final String CQL_COMMAND = "State.Name.eq="; // private final String SERVICE_MYSQL = "service.mysql"; // private final String SERVICE_JBOSS = "service.jboss"; // private final String SERVICE_ASTERISK = "service.asterisk"; private DashboardModel mainModel; private MeterGaugeChartModel ramGaugeModel; private PieChartModel diskModel; private MeterGaugeChartModel cpuGaugeModel; private List<Ram> rams; private List<FileSystem> disks; private List<Cpu> cpus; private CpuInfo cpuInfo; private List<Service> mysqls; private List<Service> asterisks; private List<Service> jbosses; Parameter param_mysql; Parameter param_asterisk; Parameter param_jboss; @PostConstruct public void initDashboard() { parameterDAO = new ParameterDAO(); log.info("@PostConstruct Dashboard"); if(securityController.isAuthenticated()){ param_mysql = parameterDAO.findByName("service.mysql"); param_asterisk = parameterDAO.findByName("service.asterisk"); param_jboss = parameterDAO.findByName("service.jboss"); mainModel = new DefaultDashboardModel(); DashboardColumn column1 = new DefaultDashboardColumn(); DashboardColumn column2 = new DefaultDashboardColumn(); DashboardColumn column3 = new DefaultDashboardColumn(); column1.addWidget("mysql"); column1.addWidget("cpu"); column2.addWidget("asterisk"); column2.addWidget("ram"); column3.addWidget("jboss"); column3.addWidget("disk"); mainModel.addColumn(column1); mainModel.addColumn(column2); mainModel.addColumn(column3); } } public DashboardModel getMainModel() { return mainModel; } public void setMainModel(DashboardModel model) { this.mainModel = model; } public MeterGaugeChartModel getRamGaugeModel() { log.info("getRamGaugeModel()"); Number value = 35; try { Mem mem = this.sigar.getMem(); rams = new ArrayList<Ram>(0); Ram ram = new Ram(); ram.setTotal(format(mem.getTotal())); ram.setUsed(format(mem.getUsed())); ram.setFree(format(mem.getFree())); ram.setUsedPercent(formatPct(mem.getUsedPercent())); ram.setFreePercent(formatPct(mem.getFreePercent())); ram.setRam(mem.getRam()); value = Double.parseDouble(ram.getUsedPercent()); log.info("-------------------------------"); log.info("Value : {} %", value); log.info("Mem RAM : {} MB", ram.getRam()); log.info("Mem Total : {}", ram.getTotal()); log.info("Mem Used : {}", ram.getUsed()); log.info("Mem Used % : {}", ram.getUsedPercent()); log.info("Mem Free : {}", ram.getFree()); log.info("Mem Free % : {}", ram.getFreePercent()); log.info("-------------------------------"); rams.add(ram); } catch (SigarException e) { log.error("SigarException", e); } List<Number> intervals = new ArrayList<Number>(0); intervals.add(20); intervals.add(30); intervals.add(50); intervals.add(70); intervals.add(100); ramGaugeModel = new MeterGaugeChartModel(value, intervals); return ramGaugeModel; } public void setRamGaugeModel(MeterGaugeChartModel ramGaugeModel) { this.ramGaugeModel = ramGaugeModel; } public PieChartModel getDiskModel() { log.info("getDiskModel()"); disks = new ArrayList<FileSystem>(0); // FSystem fileSystem = new FSystem(); // fileSystem.setDevName(fs.getDevName()); // fileSystem.setTotal(formatSize(total)); // fileSystem.setUsed(formatSize(used)); // fileSystem.setAvail(formatSize(avail)); // fileSystem.setUsePct(pct); // fileSystem.setDirName(fs.getDirName()); // fileSystem.setTypeName(fs.getSysTypeName() + "/" + fs.getTypeName()); File fileSystem = new File("/"); double total = fileSystem.getTotalSpace() / 1024 / 1024 / 1024; double free = fileSystem.getFreeSpace() / 1024 / 1024 / 1024; double freePct = (free * 100) / total; log.info("-------------------------------"); log.info("Disk Dev Name : {}", fileSystem.getName()); log.info("Disk Total : {}", total); log.info("Disk Used : {}", total - free); log.info("Disk Free : {}", free); log.info("-------------------------------"); FileSystem fs = new FileSystem(fileSystem.getName(), total, total - free, free, freePct); disks.add(fs); diskModel = new PieChartModel(); diskModel.set("Used", total - free); diskModel.set("free", free); return diskModel; } public void setDiskModel(PieChartModel diskModel) { this.diskModel = diskModel; } public MeterGaugeChartModel getCpuGaugeModel() { log.info("getCpuGaugeModel()"); Number value = 35; try { CpuPerc cpuPerc = this.sigar.getCpuPerc(); cpus = new ArrayList<Cpu>(0); Cpu cpu = new Cpu(); cpu.setUserTime(formatPct(calculatePct(cpuPerc.getUser()))); cpu.setSysTime(formatPct(calculatePct(cpuPerc.getSys()))); cpu.setIdleTime(formatPct(calculatePct(cpuPerc.getIdle()))); cpu.setCombined(formatPct(calculatePct(cpuPerc.getCombined()))); try { value = Double.parseDouble(cpu.getCombined()); } catch (NumberFormatException e) { log.error(e.getMessage(), e); } log.info("-------------------------------"); log.info("value : {} %", value); log.info("CPU User Time : {} %", cpu.getUserTime()); log.info("CPU Sys Time : {} %", cpu.getSysTime()); log.info("CPU Idle Time : {} %", cpu.getIdleTime()); log.info("CPU Combined Time : {} %", cpu.getCombined()); log.info("-------------------------------"); cpus.add(cpu); } catch (SigarException e) { log.error("SigarException", e); } List<Number> intervals = new ArrayList<Number>(0); intervals.add(20); intervals.add(30); intervals.add(50); intervals.add(70); intervals.add(100); cpuGaugeModel = new MeterGaugeChartModel(value, intervals); return cpuGaugeModel; } public void setCpuGaugeModel(MeterGaugeChartModel cpuGaugeModel) { this.cpuGaugeModel = cpuGaugeModel; } public List<Cpu> getCpus() { return cpus; } public void setCpus(List<Cpu> cpus) { this.cpus = cpus; } public List<Ram> getRams() { return rams; } public void setRams(List<Ram> rams) { this.rams = rams; } public List<FileSystem> getDisks() { return disks; } public void setDisks(List<FileSystem> disks) { this.disks = disks; } private static Long format(long value) { return new Long(value / 1024 / 1024); } private static String formatPct(double value){ DecimalFormat df = new DecimalFormat("#.##"); String val = df.format(value).replace(",", "."); return val; } private long formatSize(long size) { // return Sigar.formatSize(size * 1024); return size / 1024 / 1024; } private double calculatePct(double pct) { return pct * 100; } public CpuInfo getCpuInfo() { try { org.hyperic.sigar.CpuInfo[] infos = sigar.getCpuInfoList(); org.hyperic.sigar.CpuInfo info = infos[0]; cpuInfo = new com.web.javsterisk.entity.CpuInfo(); cpuInfo.setVendor(info.getVendor()); cpuInfo.setModel(info.getModel()); cpuInfo.setMhz(info.getMhz()); cpuInfo.setTotalCpu(info.getTotalCores()); cpuInfo.setPhysicalCpu(info.getTotalSockets()); cpuInfo.setCoresCpu(info.getCoresPerSocket()); } catch (SigarException e) { log.error("SigarException", e); } return cpuInfo; } public void setCpuInfo(CpuInfo cpuInfo) { this.cpuInfo = cpuInfo; } public List<Service> getMysqls() { try { mysqls = new ArrayList<Service>(0); ProcState state = null; Service mysql = null; // param_mysql = parameterDAO.findByName(SERVICE_MYSQL); long[] pids = this.shell.findPids(new String[]{"State.Name.eq=" + param_mysql.getValue()}); // for(int i = 0; i < pids.length; i++){ if(pids.length > 0){ long pid = pids[0]; log.info("================================================="); log.info("pid : {}", pid); mysql = new Service(); mysql.setPid(pid); state = sigar.getProcState(pid); log.info("Name : {}", state.getName()); log.info("Threads : {}", state.getThreads()); log.info("State : {}", state.getState()); log.info("Ppid : {}", state.getPpid()); log.info("Priority : {}", state.getPriority()); mysql.setRunning(state.getState() == 'D' || state.getState() == 'R' || state.getState() == 'S'); log.info("Running : {}", mysql.isRunning()); mysql.setProcState(state); mysqls.add(mysql); log.info("================================================="); } else { log.info("================================================="); mysql = new Service(); mysql.setRunning(false); log.info("Running : {}", mysql.isRunning()); mysql.setProcState(new ProcState()); mysqls.add(mysql); log.info("================================================="); } // } } catch (SigarException e) { log.error("SigarException", e); } return mysqls; } public void setMysqls(List<Service> mysqls) { this.mysqls = mysqls; } public List<Service> getAsterisks() { try { asterisks = new ArrayList<Service>(0); ProcState state = null; Service asterisk = null; // Parameter param = parameterDAO.findByName(SERVICE_ASTERISK); long[] pids = this.shell.findPids(new String[]{"State.Name.eq=" + param_asterisk.getValue()}); // for(int i = 0; i < pids.length; i++){ if(pids.length > 0){ long pid = pids[0]; log.info("================================================="); log.info("pid : {}", pid); asterisk = new Service(); asterisk.setPid(pid); state = sigar.getProcState(pid); log.info("Name : {}", state.getName()); log.info("Threads : {}", state.getThreads()); log.info("State : {}", state.getState()); log.info("Ppid : {}", state.getPpid()); log.info("Priority : {}", state.getPriority()); asterisk.setRunning(state.getState() == 'D' || state.getState() == 'R' || state.getState() == 'S'); log.info("Running : {}", asterisk.isRunning()); asterisk.setProcState(state); asterisks.add(asterisk); log.info("================================================="); } else { log.info("================================================="); asterisk = new Service(); asterisk.setRunning(false); log.info("Running : {}", asterisk.isRunning()); asterisk.setProcState(new ProcState()); asterisks.add(asterisk); log.info("================================================="); } } catch (SigarException e) { log.error("SigarException", e); } return asterisks; } public void setAsterisks(List<Service> asterisks) { this.asterisks = asterisks; } public List<Service> getJbosses() { try { jbosses = new ArrayList<Service>(0); ProcState state = null; Service jboss = null; // Parameter param = parameterDAO.findByName(SERVICE_JBOSS); long[] pids = this.shell.findPids(new String[]{"State.Name.eq=" + param_jboss.getValue()}); // for(int i = 0; i < pids.length; i++){ if(pids.length > 0){ long pid = pids[0]; log.info("================================================="); log.info("pid : {}", pid); jboss = new Service(); jboss.setPid(pid); state = sigar.getProcState(pid); log.info("Name : {}", state.getName()); log.info("Threads : {}", state.getThreads()); log.info("State : {}", state.getState()); log.info("Ppid : {}", state.getPpid()); log.info("Priority : {}", state.getPriority()); jboss.setRunning(state.getState() == 'D' || state.getState() == 'R' || state.getState() == 'S'); log.info("Running : {}", jboss.isRunning()); jboss.setProcState(state); jbosses.add(jboss); log.info("================================================="); } else { log.info("================================================="); jboss = new Service(); jboss.setRunning(false); log.info("Running : {}", jboss.isRunning()); jboss.setProcState(new ProcState()); jbosses.add(jboss); log.info("================================================="); } } catch (SigarException e) { log.error("SigarException", e); } return jbosses; } public void setJbosses(List<Service> jbosses) { this.jbosses = jbosses; } public Parameter getParam_mysql() { return param_mysql; } public void setParam_mysql(Parameter param_mysql) { this.param_mysql = param_mysql; } public Parameter getParam_asterisk() { return param_asterisk; } public void setParam_asterisk(Parameter param_asterisk) { this.param_asterisk = param_asterisk; } public Parameter getParam_jboss() { return param_jboss; } public void setParam_jboss(Parameter param_jboss) { this.param_jboss = param_jboss; } public SecurityController getSecurityController() { return securityController; } public void setSecurityController(SecurityController securityController) { this.securityController = securityController; } }
[ "fmoran@codar4j.com" ]
fmoran@codar4j.com
e74ffbaa9b859d95a6c6fc3bdb2925855bf79aed
afb465dd17c6d052cfe14a64281be96825648914
/02. 2. Java-OOP-Exercise/src/p06_Shopping_Spree/Person.java
2146bad5a5c048af020d26e0efe9a0e2a725aaa2
[ "MIT" ]
permissive
kostadinlambov/Databases-Frameworks-Hibernate-and-Spring-Data
1f60ec5b8683d0d1f43501c3621424a816acd385
e1a22e902f01601b324af870adfefabbe5179774
refs/heads/master
2020-03-14T21:24:03.650748
2018-10-25T00:41:01
2018-10-25T00:41:01
131,795,286
1
0
null
null
null
null
UTF-8
Java
false
false
1,718
java
package p06_Shopping_Spree; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class Person { private String name; private int money; private List<String> bagOfProducts; public Person(String name, int money) { this.setName(name); this.setMoney(money); this.setBagOfProducts(); } public String getName() { return this.name; } private void setName(String name) { if(name.equals("")){ throw new IllegalArgumentException("Name cannot be empty"); } this.name = name; } public int getMoney() { return this.money; } private void setMoney(int money) { if(money < 0){ throw new IllegalArgumentException("Money cannot be negative"); } this.money = money; } public List<String> getBagOfProducts() { return Collections.unmodifiableList(this.bagOfProducts); } private void setBagOfProducts() { this.bagOfProducts = new ArrayList<>(); } public void buyProduct(String productName, int price){ if(this.money - price < 0){ System.out.printf("%s can't afford %s%n", this.name, productName); }else{ this.money -= price; this.bagOfProducts.add(productName); System.out.printf("%s bought %s%n", this.name, productName); } } @Override public String toString() { if (this.bagOfProducts.size() > 0) { return this.name + " - " + this.bagOfProducts.toString().replaceAll("[\\[\\]]", ""); } else { return String.format("%s – Nothing bought" ,this.name); } } }
[ "valchak@abv.bg" ]
valchak@abv.bg
8529fa3c00e5e10495daf79c042f7adf56a12fb2
2ebf1875bb3bea4f434ba87bedee2a913a60db40
/app/src/main/java/com/example/admin/timertest/GlobalApplication.java
ca694873d34a4b8f7b69973c91bfe3211f4eef64
[]
no_license
Nickping/TimerTest
8e8f10c11c9c69507d085e9b15611bc190a275c3
aee9234c77cbd83ad8056eaef9523f6110b0274b
refs/heads/master
2021-08-26T09:26:54.395139
2017-11-22T23:57:56
2017-11-22T23:57:56
111,743,813
0
0
null
null
null
null
UTF-8
Java
false
false
802
java
package com.example.admin.timertest; import android.app.Application; import com.example.admin.timertest.routes.HueBulb; import java.util.HashMap; /** * Created by admin on 2017-11-12. */ public class GlobalApplication extends Application { private static volatile GlobalApplication obj= null; public static HashMap<String,HueBulb> bulbList; @Override public void onCreate() { super.onCreate(); obj = this; bulbList = new HashMap<>(); } public static GlobalApplication getGlobalApplicationContext() { return obj; } public static HashMap<String, HueBulb> getBulbList() { return bulbList; } public static void setBulbList(HashMap<String, HueBulb> bulbList) { GlobalApplication.bulbList = bulbList; } }
[ "dordong327@gmail.com" ]
dordong327@gmail.com
da620299da52c2a31461716d0fb3c83497c518c7
e5672438dd1a606e6ab71f061755e05096cbf7e9
/project/src/problem/Exercise09.java
0d75728d24693ad5839e1ff22ec9506e18f57387
[]
no_license
shinwos/javasource
7b3a4b1c7a7c80ac2d9e4b9c9b229bc6e01c0f77
5c4c3af071a5446b3d04a06ef253d932b7a44912
refs/heads/master
2021-05-15T07:27:48.418379
2017-11-21T06:25:25
2017-11-21T06:25:25
109,936,134
0
0
null
null
null
null
UHC
Java
false
false
2,147
java
package problem; import java.util.Scanner; public class Exercise09 { public static void main(String[] args) { boolean run = true; int studentNum = 0; int[] scores = null; Scanner scanner = new Scanner(System.in); while (run) { printMenu(); int selectNo = scanner.nextInt(); if (selectNo == 1) { System.out.println("학생수>"); studentNum = scanner.nextInt(); scores = new int[studentNum]; } else if (selectNo == 2) { inputScore(studentNum, scores, scanner); } else if (selectNo == 3) { point(studentNum,scores); } else if (selectNo == 4) { int max = 0; int sum = 0; double avg = 0; for (int i = 0; i < studentNum; i++) { sum += scores[i]; if (scores[i] > max) { max = scores[i]; } } avg = (double) sum / studentNum; System.out.println("최고점수:" + max); System.out.println("평균점수:" + avg); } else if (selectNo == 5) { run = false; } } System.out.println("프로그램 종료"); } protected static void inputScore(int studentNum, int[] scores, Scanner scanner) { if (studentNum > 0) { for (int i = 0; i < studentNum; i++) { System.out.print("scores[" + i + "]>"); int score = scanner.nextInt(); scores[i] = score; } System.out.println("1.학생수를 입력하세요."); } } protected static void printMenu() { System.out.println("----------------------------------------"); System.out.println("1.학생수|2. 점수입력|3.점수리스트|4.분석|5.종료"); System.out.println("----------------------------------------"); System.out.print("선택>"); } private static void maxValue(int studentNum, int[]scores){ int sum = 0; int max = 0; for (int i = 0; i < studentNum; i++) { sum += scores[i]; if (scores[i] > max) { max = scores[i]; } }System.out.println("최고점수:" + max); } private static void point(int studentNum,int[]scores) { for (int i = 0; i < studentNum; i++) { System.out.println("scores[" + i + "]:" + scores[i]); } } }
[ "재훈성@192.168.18.198" ]
재훈성@192.168.18.198
73a6df00a33469c1cbe9e8ef31f7123f8bc809ba
b9a49bcb837c8e0f527dda054617efae7d2378e6
/src/main/java/org/faboo/test/tabtest/MyAjaxTabbedPanel.java
4f23ff8ae22233356a7c1cb5ba2ffb2bacb7a319
[]
no_license
taseroth/WicketNamedTabs
9a5471f45dfb2049d6287a4ee5ad20c7036094a2
5ff7bc012426b6dfcb001fcda12004b3a66af12a
refs/heads/master
2021-01-10T21:21:07.618923
2012-04-02T20:36:05
2012-04-02T20:36:05
3,643,386
0
0
null
null
null
null
UTF-8
Java
false
false
1,187
java
package org.faboo.test.tabtest; import org.apache.wicket.Component; import org.apache.wicket.MarkupContainer; import org.apache.wicket.extensions.ajax.markup.html.tabs.AjaxTabbedPanel; import org.apache.wicket.extensions.markup.html.tabs.ITab; import org.apache.wicket.markup.html.WebMarkupContainer; import java.util.List; /** * User: br */ public class MyAjaxTabbedPanel extends AjaxTabbedPanel { private final WebMarkupContainer contentContainer; public MyAjaxTabbedPanel(String id, List<ITab> tabs, WebMarkupContainer contentContainer) { super(id, tabs); this.contentContainer = contentContainer; } @Override public MarkupContainer addOrReplace(Component... childs) { for (Component child : childs) { if (child == null) { throw new IllegalArgumentException("argument child must be not null"); } checkHierarchyChange(child); if (get(child.getId()) == null) { contentContainer.add(child); } else { contentContainer.replace(child); } } return this; } }
[ "taseroth@gmail.com" ]
taseroth@gmail.com
c6c130eefc76fa9d0c757af586e6312021282972
93c3d2a787c9c5cc7bf0ada4698fd14b90be3148
/Main.java
8cb1bb3fa95e5859877f56e0a4ae923cb163acfe
[]
no_license
micgamer/HouseDuties
c8ad115106847770b4d3c191fbdec0266241ffef
693e7fcf504913544ca725e7fc586db9e127bbda
refs/heads/master
2021-01-20T09:32:36.960633
2013-04-07T22:18:43
2013-04-07T22:18:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,402
java
package house.manager; import java.io.*; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { StringTokenizer st; BufferedReader br = null; BufferedWriter bw = null; Boolean done = false; String line; String temp; int ind = 0; int tmp1 = 0; int tmp2 = 0; int mix = 0; while (!done) { try { bw = new BufferedWriter(new FileWriter("out.txt")); } catch (Exception e) { File f; f = new File("out.txt"); if (!f.exists()) { f.createNewFile(); } bw = new BufferedWriter(new FileWriter("out.txt")); } try { br = new BufferedReader(new FileReader("HouseDuties.txt")); } catch (Exception e) { bw.write("Input Error!"); System.out.println("Input Error"); bw.newLine(); done = true; } int num = Integer.parseInt(br.readLine()); String[] names = new String[num]; String[] jobs = new String[num]; try { line = br.readLine(); while (line != null) { st = new StringTokenizer(line, "|"); names[ind] = st.nextToken(); jobs[ind] = st.nextToken(); line = br.readLine(); ind++; }//while while(mix != 10000) { tmp1 = (int) ((Math.random()*num)); tmp2 = (int) ((Math.random()*num)); temp = names[tmp1]; names[tmp1] = names[tmp2]; names[tmp2] = temp; mix++; }//while for (int i = 0; i < (num); i++) { bw.write(jobs[i]); bw.write(": "); bw.write(names[i]); bw.newLine(); }//for bw.close(); done = true; }//try catch (Exception e) { bw.write(e.toString()); bw.close(); done = true; }//catch }//while }//main }//Main
[ "Michael.Schrag@valpo.edu" ]
Michael.Schrag@valpo.edu
944eaaf1c19997dba8c46babe469ad69627942a0
ca7aaabcfdb22df09c8277a32a0ebe20f161380c
/app/src/main/java/com/example/joseantonio/proyecto2/Activitys/alarmas.java
cca77cc8365b0bd87cf5a635116f6c3da0c6d9dd
[]
no_license
JoseAntonioRomero/ProyectoIntegrado2Dam
227bc95435adfe895974a6148f05e4cf6e0a0b26
9c42f9f6e9b4139380707685356f6137ef6cedf8
refs/heads/master
2021-01-13T04:49:18.833553
2017-01-12T19:02:38
2017-01-12T19:02:38
78,653,414
0
0
null
null
null
null
UTF-8
Java
false
false
3,295
java
package com.example.joseantonio.proyecto2.Activitys; import android.app.Activity; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentTransaction; import android.support.v7.app.ActionBar; import android.support.v7.app.ActionBarActivity; import android.view.Menu; import android.view.MenuItem; import com.example.joseantonio.proyecto2.Fragments.FragmentAlarma1; import com.example.joseantonio.proyecto2.Fragments.FragmentAlarma2; import com.example.joseantonio.proyecto2.Fragments.FragmentPersistentes; import com.example.joseantonio.proyecto2.R; public class alarmas extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //setContentView(R.layout.activity_alarmas); ActionBar actionBar = getSupportActionBar(); /**INDICAR TITULO Y SUBTITULO**/ actionBar.setTitle("Alarmas"); actionBar.setSubtitle("Crea tu propia alarma"); /**MODO TABS EN ACTIONBAR**/ actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); /**CREAR TABS**/ ActionBar.Tab tab = actionBar.newTab() .setText("Alarmas Persistentes") .setTabListener(new TabsListener( this, "persistentes", FragmentPersistentes.class)); actionBar.addTab(tab); tab = actionBar.newTab() .setText("Fijada a una hora") .setTabListener(new TabsListener( this, "hora", FragmentAlarma1.class)); actionBar.addTab(tab); tab = actionBar.newTab() .setText("Con mensaje Persistente") .setTabListener(new TabsListener( this, "mensaje", FragmentAlarma2.class)); actionBar.addTab(tab); } public class TabsListener implements ActionBar.TabListener { private Fragment fragment; private final String tag; public TabsListener(Activity activity, String tag, Class cls) { this.tag = tag; fragment = Fragment.instantiate(activity, cls.getName()); } public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) { ft.replace(android.R.id.content, fragment, tag); } public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) { ft.remove(fragment); } public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) { } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_alarmas, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
[ "joseantonioromerolindez@gmail.com" ]
joseantonioromerolindez@gmail.com
ecde1d8a7c4e9c7cd68e2367abee0bed3922e7b4
4812a838507d3c7032b3c11b75013e9122e0351e
/Weather_Widget_SDK_trunk_hw/src/com/calendar/CommData/CityWeatherJson.java
33aafc1c88ab0dbc223a2f2fe4f8018ad1acaf3d
[]
no_license
pikingdom/MyProject004
81b8859c4e2009d8ccb55fd349fefb301fed4966
d19f45971c37da3272616b0a15f998ac2cd57905
refs/heads/master
2020-03-24T23:12:23.464671
2018-08-01T08:35:59
2018-08-01T08:35:59
143,123,333
0
0
null
null
null
null
UTF-8
Java
false
false
2,895
java
package com.calendar.CommData; /** * @ClassName: CityWeatherJson * @Description: TODO(天气json信息) * @author yanyy * @date 2012-4-20 上午11:43:29 * */ public class CityWeatherJson extends BaseCityInfo { /* 四天天气 */ private String mStrDayWeatherJson; /* 实时天气 */ private String mStrNowWeatherJson; /* 指数信息 */ private String mStrIndexJson; /* 日出日落与Index时间同步 */ private String mStrSunJson; /* 预警信息 */ private String mStrWarningJson; /* PM信息 */ private String mStrPMJson; /* 天气更新时间 */ private String mStrDayWeatherTime; /* 实时天气更新时间 */ private String mStrNowWeatherTime; /* 指数更新时间 */ private String mStrIndexTime; /* 预警更新时间 */ private String mStrWarnTime; /* 日出日落更新时间 */ private String mStrSunTime; /* PM更新时间 */ private String mStrPMTime; public void setDayWeatherJson(String json) { mStrDayWeatherJson = json; } public String getDayWeatherJson() { return mStrDayWeatherJson; } public void setNowWeatherJson(String json) { mStrNowWeatherJson = json; } public String getNowWeatherJson() { return mStrNowWeatherJson; } public void setIndexJson(String json) { mStrIndexJson = json; } public String getIndexJson() { return mStrIndexJson; } public String getSunJson() { return mStrSunJson; } public void setSunJson(String json) { mStrSunJson = json; } public String getWarningJson() { return mStrWarningJson; } public void setWarningJson(String json) { mStrWarningJson = json; } public String getPMJson() { return mStrPMJson; } public void setPMJson(String json) { mStrPMJson = json; } public String getDayWeatherTime() { return mStrDayWeatherTime; } public void setDayWeatherTime(String time) { mStrDayWeatherTime = time; } public String getNowWeatherTime() { return mStrNowWeatherTime; } public void setNowWeatherTime(String time) { mStrNowWeatherTime = time; } public String getIndexTime() { return mStrIndexTime; } public void setIndexTime(String time) { mStrIndexTime = time; } public String getWarnTime() { return mStrWarnTime; } public void setWarnTime(String time) { mStrWarnTime = time; } public String getSunTime() { return mStrSunTime; } public void setSunTime(String time) { mStrSunTime = time; } public String getPMTime() { return mStrPMTime; } public void setPMTime(String time) { mStrPMTime = time; } }
[ "zhenghonglin@felink.com" ]
zhenghonglin@felink.com
91595bcf42e5996f0ce86ad2c5f5c80606658b6f
a58017d936ea3323db025f02d64e9371ae9c7746
/demo.java
46c42ba4f218d06d5ab03423283181d6ff446017
[]
no_license
ganeshrajendran99/Capgemini_2021
94de413fc4aae2430bcd88c5825ae0564eeb9a4e
69503702cd870a48a7c3662ea2136cc7cb9a2573
refs/heads/master
2023-03-23T01:26:19.683510
2021-03-12T13:27:09
2021-03-12T13:27:09
347,059,408
0
0
null
null
null
null
UTF-8
Java
false
false
104
java
public class demo { public static void main(String[] args) { System.out.print("Hello world"); } }
[ "rganesh1299@gmail.com" ]
rganesh1299@gmail.com
b1910a6f80dda2217cd8ddd44883ea0fef0e3d9f
45d59920d4caa936e577cdd81ce7e2c828091fbb
/app/src/main/java/com/example/eartrain/database/DateConverter.java
ba6dfad18eafab4c1a0ab808d9a34f3f4e367e5a
[]
no_license
tesla-code/MobileMagic
f922ec0fe25aacb9c10d370c8603772e1097e7c4
0a739969a7ada0ea06884e6c462c5acc71fe3055
refs/heads/master
2020-05-16T15:09:51.548895
2019-05-09T14:53:19
2019-05-09T14:53:19
183,123,058
0
0
null
null
null
null
UTF-8
Java
false
false
403
java
package com.example.eartrain.database; import android.arch.persistence.room.TypeConverter; import java.util.Date; public class DateConverter { @TypeConverter public static Date toDate(Long dateLong){ return dateLong == null ? null: new Date(dateLong); } @TypeConverter public static Long fromDate(Date date){ return date == null ? null : date.getTime(); } }
[ "bjornkau@stud.ntnu.no" ]
bjornkau@stud.ntnu.no
0a1e055ef67a205ccffd12ac7f1b4d5974d681de
f767e8a620eac9ca195ae1a976bf910426b6288b
/emmet/src/main/java/com/github/florent37/emmet/Emmet.java
33f836b3163a890679945c66dfeffe3e4d0905fd
[ "Apache-2.0" ]
permissive
kevindjf/Wear-Emmet
26857ed2a4c94461f471ff26e14adb8098121d5b
7d7e59439a2136c296b02cb38380823aa74ce1cb
refs/heads/master
2021-01-22T05:33:03.600485
2015-05-05T22:34:13
2015-05-05T22:34:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
13,111
java
package com.github.florent37.emmet; import android.content.Context; import android.os.Bundle; import android.util.Log; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.api.GoogleApiClient; import com.google.android.gms.common.api.ResultCallback; import com.google.android.gms.wearable.DataApi; import com.google.android.gms.wearable.DataEvent; import com.google.android.gms.wearable.DataEventBuffer; import com.google.android.gms.wearable.DataMap; import com.google.android.gms.wearable.DataMapItem; import com.google.android.gms.wearable.MessageApi; import com.google.android.gms.wearable.MessageEvent; import com.google.android.gms.wearable.Node; import com.google.android.gms.wearable.NodeApi; import com.google.android.gms.wearable.PutDataMapRequest; import com.google.android.gms.wearable.Wearable; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.Date; import java.util.List; /** * Created by florentchampigny on 20/04/15. */ public class Emmet implements GoogleApiClient.ConnectionCallbacks, MessageApi.MessageListener, DataApi.DataListener, GoogleApiClient.OnConnectionFailedListener { private static final String TAG = Emmet.class.getSimpleName(); private final String PATH = "/Emmet/"; protected GoogleApiClient mApiClient; private static final String METHOD_NAME = "name"; private static final String METHOD_PARAMS = "params"; private static final String PARAM_TYPE = "type"; private static final String PARAM_VALUE = "value"; private static final String TYPE_INT = "int"; private static final String TYPE_FLOAT = "float"; private static final String TYPE_LONG = "long"; private static final String TYPE_DOUBLE = "double"; private static final String TYPE_STRING = "string"; private static final String TYPE_SERIALIZED = "serialized"; private ArrayList<Object> interfaces = new ArrayList<>(); private ArrayList<PutDataMapRequest> waitingItems = new ArrayList<>(); public void onCreate(Context context) { mApiClient = new GoogleApiClient.Builder(context) .addApi(Wearable.API) .addConnectionCallbacks(this) .addOnConnectionFailedListener(this) .build(); mApiClient.connect(); } public void onDestroy() { if (mApiClient != null) mApiClient.disconnect(); } public <T> T createSender(Class<T> protocol) { return (T) Proxy.newProxyInstance(protocol.getClassLoader(), new Class<?>[]{protocol}, new DeLoreanInvocationHandler()); } public <T> void registerReceiver(Class<T> protocolClass, T protocol) { if (protocol != null) { interfaces.add(protocol); } } //region reciever private void callMethodOnInterfaces(final String name) { for (Object theInterface : interfaces) { callMethodOnObject(theInterface, name); } } private void callMethodOnObject(final Object object, final String name) { try { Method method = object.getClass().getMethod(name); if (method != null) method.invoke(object); } catch (Exception e) { Log.e(TAG, "callMethodOnObject error", e); } } private void callMethodOnInterfaces(final DataMap methodDataMap) { for (Object theInterface : interfaces) { callMethodOnObject(theInterface, methodDataMap); } } private void callMethodOnObject(final Object object, final DataMap methodDataMap) { String methodName = methodDataMap.getString(METHOD_NAME); ArrayList<DataMap> methodDataMapList = methodDataMap.getDataMapArrayList(METHOD_PARAMS); List<Method> methodsList = getMethodWithName(object, methodName, methodDataMapList.size()); for (Method method : methodsList) { try { if (method != null) { int nbArgs = methodDataMapList.size(); Object[] params = new Object[nbArgs]; for (int argumentPos = 0; argumentPos < nbArgs; ++argumentPos) { Class paramClass = method.getParameterTypes()[argumentPos]; DataMap map = methodDataMapList.get(argumentPos); String type = map.getString(PARAM_TYPE); switch (type) { case (TYPE_INT): params[argumentPos] = map.getInt(PARAM_VALUE); break; case (TYPE_FLOAT): params[argumentPos] = map.getFloat(PARAM_VALUE); break; case (TYPE_DOUBLE): params[argumentPos] = map.getDouble(PARAM_VALUE); break; case (TYPE_LONG): params[argumentPos] = map.getLong(PARAM_VALUE); break; case (TYPE_STRING): params[argumentPos] = map.getString(PARAM_VALUE); break; default: { Type t = method.getGenericParameterTypes()[argumentPos]; Object deserialized = SerialisationUtilsGSON.deserialize(t, map.getString(PARAM_VALUE)); params[argumentPos] = deserialized; } } } //found the method method.invoke(object, params); //if call success, return / don't call other methods return; } } catch (Exception e) { Log.e(TAG, "callMethodOnObject error", e); } } } private Class[] getParametersType(final Object[] params) { int count = params.length; Class[] types = new Class[count]; for (int paramPos = 0; paramPos < count; ++paramPos) { types[paramPos] = params[paramPos].getClass(); } return types; } private List<Method> getMethodWithName(final Object object, final String name, int parametersCount) { List<Method> methodsList = new ArrayList<>(); for (Method method : object.getClass().getDeclaredMethods()) { if (method.getName().equals(name) && method.getParameterTypes().length == parametersCount) methodsList.add(method); } return methodsList; } //@Override public void onMessageReceived(MessageEvent messageEvent) { if (messageEvent.getPath().startsWith(PATH)) { String messageName = new String(messageEvent.getData()); callMethodOnInterfaces(messageName); } } //@Override public void onDataChanged(DataEventBuffer dataEvents) { for (DataEvent dataEvent : dataEvents) { String path = dataEvent.getDataItem().getUri().getPath(); Log.d(TAG, "onDataChanged(" + path + ")"); if (path.startsWith(PATH)) { //if it's a DeLorean path Log.d(TAG, "delorean-onDataChanged " + path); try { DataMap methodDataMap = DataMapItem.fromDataItem(dataEvent.getDataItem()).getDataMap(); callMethodOnInterfaces(methodDataMap); } catch (Throwable t) { Log.e(TAG, "error decoding datamap", t); } } } } //endregion //region sender private class DeLoreanInvocationHandler implements InvocationHandler { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { // If the method is a method from Object then defer to normal invocation. if (method.getDeclaringClass() == Object.class) { return method.invoke(this, args); } String methodName = method.getName(); if (method.getParameterTypes().length == 0) { sendMessage(PATH + methodName, methodName); } else { sendDataMap(PATH + methodName, proxy, method, args); } return null; } private void sendDataMap(String path, Object proxy, Method method, Object[] args) throws Throwable { final PutDataMapRequest putDataMapRequest = PutDataMapRequest.create(path); DataMap datamap = putDataMapRequest.getDataMap(); datamap.putString("timestamp", new Date().toString()); datamap.putString(METHOD_NAME, method.getName()); { ArrayList<DataMap> methodDataMapList = new ArrayList<>(); int nbArgs = args.length; for (int argumentPos = 0; argumentPos < nbArgs; ++argumentPos) { DataMap map = new DataMap(); Object argument = args[argumentPos]; if (argument instanceof Integer) { map.putString(PARAM_TYPE, TYPE_INT); map.putInt(PARAM_VALUE, (Integer) argument); } else if (argument instanceof Float) { map.putString(PARAM_TYPE, TYPE_FLOAT); map.putFloat(PARAM_VALUE, (Float) argument); } else if (argument instanceof Double) { map.putString(PARAM_TYPE, TYPE_DOUBLE); map.putDouble(PARAM_VALUE, (Double) argument); } else if (argument instanceof Long) { map.putString(PARAM_TYPE, TYPE_LONG); map.putLong(PARAM_VALUE, (Long) argument); } else if (argument instanceof String) { map.putString(PARAM_TYPE, TYPE_STRING); map.putString(PARAM_VALUE, (String) argument); } else { map.putString(PARAM_TYPE, argument.getClass().getName()); String encoded = SerialisationUtilsGSON.serialize(argument); map.putString(PARAM_VALUE, encoded); } methodDataMapList.add(map); } datamap.putDataMapArrayList(METHOD_PARAMS, methodDataMapList); } Log.d(TAG, datamap.toString()); if (mApiClient != null) { if (mApiClient.isConnected()) { sendDataMapRequest(putDataMapRequest); } else { mApiClient.connect(); waitingItems.add(putDataMapRequest); } } } } private void sendDataMapRequest(PutDataMapRequest request) { Wearable.DataApi.putDataItem(mApiClient, request.asPutDataRequest()).setResultCallback( new ResultCallback<DataApi.DataItemResult>() { @Override public void onResult(DataApi.DataItemResult dataItemResult) { if (dataItemResult.getStatus().isSuccess()) { Log.d(TAG, "sent"); } else { Log.d(TAG, "send error"); } } } ); } private void sendDataMapRequests(List<PutDataMapRequest> requests) { for (PutDataMapRequest request : requests) sendDataMapRequest(request); } protected void sendMessage(final String path, final String message) { new Thread(new Runnable() { @Override public void run() { final NodeApi.GetConnectedNodesResult nodes = Wearable.NodeApi.getConnectedNodes(mApiClient).await(); for (Node node : nodes.getNodes()) { MessageApi.SendMessageResult result = Wearable.MessageApi.sendMessage( mApiClient, node.getId(), path, message.getBytes()).await(); } } }).start(); } //endregion //region dataapi @Override public void onConnected(Bundle bundle) { Log.d(TAG, "onConnected"); Wearable.MessageApi.addListener(mApiClient, this); Wearable.DataApi.addListener(mApiClient, this); if (waitingItems != null && !waitingItems.isEmpty()) { sendDataMapRequests(waitingItems); waitingItems.clear(); } } @Override public void onConnectionSuspended(int i) { Log.d(TAG, "onConnectionSuspended"); } @Override public void onConnectionFailed(ConnectionResult connectionResult) { Log.d(TAG, "onConnectionFailed"); } //endregion }
[ "champigny.florent@gmail.com" ]
champigny.florent@gmail.com
0f6e9b1992c491303bcfa622a5417c35f71f56a1
2f32e10772c5beb407c8cc1a12a60a489d7b6789
/app/build/generated/source/r/androidTest/debug/com/example/thinkpad/lottitapply/test/R.java
d7597458099d7e71ac069dc0d8b5ecdcaae2bbfa
[]
no_license
fendoubabai/lottieapply
4b99d874fdcf7e57b8c171c6ac5dacb73a4cb331
2a11f43f37fc2a162a5124588ea7c1a123a84c86
refs/heads/master
2020-03-07T06:02:57.379560
2018-03-29T16:15:24
2018-03-29T16:15:24
127,312,172
0
0
null
null
null
null
UTF-8
Java
false
false
586,498
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.thinkpad.lottitapply.test; 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 tooltip_enter=0x7f01000a; public static final int tooltip_exit=0x7f01000b; } 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=0x7f020000; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020001; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020002; /** * <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=0x7f020003; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020004; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020006; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020008; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020009; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020011; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020012; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020013; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020014; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020015; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020016; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020017; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020018; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020019; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001e; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f02001f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f020020; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f020023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020024; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020025; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f020026; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f020027; /** * <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=0x7f020028; /** * <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=0x7f020029; /** * <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=0x7f02002a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02002b; /** * <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=0x7f02002c; /** * <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=0x7f02002d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02002e; /** * <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=0x7f02002f; /** * <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=0x7f020030; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020031; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020032; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020033; /** * <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=0x7f020034; /** * <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=0x7f020035; /** * <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=0x7f020036; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020037; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020038; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020039; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003c; /** * <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=0x7f02003d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020040; /** * <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=0x7f020041; /** * <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=0x7f020042; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020043; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020044; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020045; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020046; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f020047; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020048; /** * <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=0x7f020049; /** * <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=0x7f02004a; /** * <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=0x7f02004b; /** * <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=0x7f02004c; /** * <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=0x7f02004d; /** * <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=0x7f02004e; /** * <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=0x7f02004f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020050; /** * <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=0x7f020051; /** * <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=0x7f020052; /** * <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=0x7f020053; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020054; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020055; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f020056; /** * <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=0x7f020057; /** * <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=0x7f020058; /** * <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=0x7f020059; /** * <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=0x7f02005a; /** * <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=0x7f02005b; /** * <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=0x7f02005c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02005d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02005e; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f02005f; /** * <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=0x7f020060; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020061; /** * <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=0x7f020062; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020063; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020064; /** * <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=0x7f020065; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020066; /** * <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=0x7f020067; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020068; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020069; /** * <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=0x7f02006a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006d; /** * <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=0x7f02006e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020070; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f020071; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f020072; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020073; /** * <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=0x7f020074; /** * <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=0x7f020075; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f020076; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f020077; /** * <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=0x7f020078; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f020079; /** * <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=0x7f02007a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02007b; /** * <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=0x7f02007c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f02007d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02007e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02007f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020080; /** * <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=0x7f020081; /** * <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=0x7f020082; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f020083; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020084; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020085; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f020086; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f020087; /** * <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=0x7f020088; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020089; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBaseline_creator=0x7f02008a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02008b; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBottom_creator=0x7f02008c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02008d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02008e; /** * <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=0x7f02008f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020090; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020091; /** * <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=0x7f020092; /** * <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=0x7f020093; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintGuide_percent=0x7f020094; /** * <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=0x7f020095; /** * <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=0x7f020096; /** * <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=0x7f020097; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_bias=0x7f020098; /** * <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=0x7f020099; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_weight=0x7f02009a; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintLeft_creator=0x7f02009b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02009c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02009d; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintRight_creator=0x7f02009e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02009f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200a0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200a1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200a2; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintTop_creator=0x7f0200a3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200a4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200a5; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_bias=0x7f0200a6; /** * <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=0x7f0200a7; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_weight=0x7f0200a8; /** * <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=0x7f0200a9; /** * <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=0x7f0200aa; /** * <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=0x7f0200ab; /** * <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=0x7f0200ac; /** * <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=0x7f0200ad; /** * <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=0x7f0200ae; /** * <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=0x7f0200af; /** * <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=0x7f0200b0; /** * <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=0x7f0200b1; /** * <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=0x7f0200b2; /** * <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=0x7f0200b3; /** * <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=0x7f0200b4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200b5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200b6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200b7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200b8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200b9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ba; /** * <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=0x7f0200bb; /** * <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=0x7f0200bc; /** * <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=0x7f0200bd; /** * <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=0x7f0200be; /** * <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=0x7f0200bf; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c0; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f0200c1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int lottie_autoPlay=0x7f0200c2; /** * <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>strong</td><td>2</td><td></td></tr> * <tr><td>weak</td><td>1</td><td></td></tr> * </table> */ public static final int lottie_cacheStrategy=0x7f0200c3; /** * <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 lottie_colorFilter=0x7f0200c4; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int lottie_enableMergePathsForKitKatAndAbove=0x7f0200c5; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int lottie_fileName=0x7f0200c6; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int lottie_imageAssetsFolder=0x7f0200c7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int lottie_loop=0x7f0200c8; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int lottie_progress=0x7f0200c9; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int lottie_scale=0x7f0200ca; /** * <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=0x7f0200cb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f0200cc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200cd; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f0200ce; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200cf; /** * <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=0x7f0200d0; /** * <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=0x7f0200d1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f0200d2; /** * <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=0x7f0200d3; /** * <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=0x7f0200d4; /** * <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=0x7f0200d5; /** * <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=0x7f0200d6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200d7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200d8; /** * <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=0x7f0200d9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200da; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200db; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200dc; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f0200dd; /** * <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=0x7f0200de; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200df; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e0; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f0200e1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ea; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200eb; /** * <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=0x7f0200ec; /** * <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=0x7f0200ed; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f0200ee; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f0200ef; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f0; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f0200f1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f3; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f0200f4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f0200f6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f8; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f0200f9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200fa; /** * <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=0x7f0200fb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200fc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200fd; /** * <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=0x7f0200fe; /** * <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=0x7f0200ff; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020100; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020101; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020102; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020103; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020104; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020105; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020106; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020107; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020108; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020109; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010d; /** * <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=0x7f02010e; /** * <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=0x7f02010f; /** * <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=0x7f020110; /** * <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=0x7f020111; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020112; /** * <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=0x7f020113; /** * <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=0x7f020114; /** * <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=0x7f020115; /** * <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=0x7f020116; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f020117; /** * <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=0x7f020118; /** * <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=0x7f020119; /** * <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=0x7f02011a; /** * <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=0x7f02011b; /** * <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=0x7f02011c; /** * <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=0x7f02011d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02011e; /** * <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=0x7f02011f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020120; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020121; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020122; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020123; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020124; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f020125; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020126; /** * <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=0x7f020127; /** * <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=0x7f020128; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020129; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f02012a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f02012b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f02012c; /** * <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=0x7f02012d; /** * <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=0x7f02012e; /** * <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=0x7f02012f; /** * <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=0x7f020130; /** * <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=0x7f020131; /** * <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=0x7f020132; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f020133; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f030000; public static final int abc_allow_stacked_button_bar=0x7f030001; public static final int abc_config_actionMenuItemAllCaps=0x7f030002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f030003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f030004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; public static final int abc_background_cache_hint_selector_material_light=0x7f040001; public static final int abc_btn_colored_borderless_text_material=0x7f040002; public static final int abc_btn_colored_text_material=0x7f040003; public static final int abc_color_highlight_material=0x7f040004; public static final int abc_hint_foreground_material_dark=0x7f040005; public static final int abc_hint_foreground_material_light=0x7f040006; public static final int abc_input_method_navigation_guard=0x7f040007; public static final int abc_primary_text_disable_only_material_dark=0x7f040008; public static final int abc_primary_text_disable_only_material_light=0x7f040009; public static final int abc_primary_text_material_dark=0x7f04000a; public static final int abc_primary_text_material_light=0x7f04000b; public static final int abc_search_url_text=0x7f04000c; public static final int abc_search_url_text_normal=0x7f04000d; public static final int abc_search_url_text_pressed=0x7f04000e; public static final int abc_search_url_text_selected=0x7f04000f; public static final int abc_secondary_text_material_dark=0x7f040010; public static final int abc_secondary_text_material_light=0x7f040011; public static final int abc_tint_btn_checkable=0x7f040012; public static final int abc_tint_default=0x7f040013; public static final int abc_tint_edittext=0x7f040014; public static final int abc_tint_seek_thumb=0x7f040015; public static final int abc_tint_spinner=0x7f040016; public static final int abc_tint_switch_track=0x7f040017; public static final int accent_material_dark=0x7f040018; public static final int accent_material_light=0x7f040019; public static final int background_floating_material_dark=0x7f04001a; public static final int background_floating_material_light=0x7f04001b; public static final int background_material_dark=0x7f04001c; public static final int background_material_light=0x7f04001d; public static final int bright_foreground_disabled_material_dark=0x7f04001e; public static final int bright_foreground_disabled_material_light=0x7f04001f; public static final int bright_foreground_inverse_material_dark=0x7f040020; public static final int bright_foreground_inverse_material_light=0x7f040021; public static final int bright_foreground_material_dark=0x7f040022; public static final int bright_foreground_material_light=0x7f040023; public static final int button_material_dark=0x7f040024; public static final int button_material_light=0x7f040025; public static final int dim_foreground_disabled_material_dark=0x7f040026; public static final int dim_foreground_disabled_material_light=0x7f040027; public static final int dim_foreground_material_dark=0x7f040028; public static final int dim_foreground_material_light=0x7f040029; public static final int error_color_material=0x7f04002a; public static final int foreground_material_dark=0x7f04002b; public static final int foreground_material_light=0x7f04002c; public static final int highlighted_text_material_dark=0x7f04002d; public static final int highlighted_text_material_light=0x7f04002e; public static final int material_blue_grey_800=0x7f04002f; public static final int material_blue_grey_900=0x7f040030; public static final int material_blue_grey_950=0x7f040031; public static final int material_deep_teal_200=0x7f040032; public static final int material_deep_teal_500=0x7f040033; public static final int material_grey_100=0x7f040034; public static final int material_grey_300=0x7f040035; public static final int material_grey_50=0x7f040036; public static final int material_grey_600=0x7f040037; public static final int material_grey_800=0x7f040038; public static final int material_grey_850=0x7f040039; public static final int material_grey_900=0x7f04003a; public static final int notification_action_color_filter=0x7f04003b; public static final int notification_icon_bg_color=0x7f04003c; public static final int notification_material_background_media_default_color=0x7f04003d; public static final int primary_dark_material_dark=0x7f04003e; public static final int primary_dark_material_light=0x7f04003f; public static final int primary_material_dark=0x7f040040; public static final int primary_material_light=0x7f040041; public static final int primary_text_default_material_dark=0x7f040042; public static final int primary_text_default_material_light=0x7f040043; public static final int primary_text_disabled_material_dark=0x7f040044; public static final int primary_text_disabled_material_light=0x7f040045; public static final int ripple_material_dark=0x7f040046; public static final int ripple_material_light=0x7f040047; public static final int secondary_text_default_material_dark=0x7f040048; public static final int secondary_text_default_material_light=0x7f040049; public static final int secondary_text_disabled_material_dark=0x7f04004a; public static final int secondary_text_disabled_material_light=0x7f04004b; public static final int switch_thumb_disabled_material_dark=0x7f04004c; public static final int switch_thumb_disabled_material_light=0x7f04004d; public static final int switch_thumb_material_dark=0x7f04004e; public static final int switch_thumb_material_light=0x7f04004f; public static final int switch_thumb_normal_material_dark=0x7f040050; public static final int switch_thumb_normal_material_light=0x7f040051; public static final int tooltip_background_dark=0x7f040052; public static final int tooltip_background_light=0x7f040053; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f050000; public static final int abc_action_bar_content_inset_with_nav=0x7f050001; public static final int abc_action_bar_default_height_material=0x7f050002; public static final int abc_action_bar_default_padding_end_material=0x7f050003; public static final int abc_action_bar_default_padding_start_material=0x7f050004; public static final int abc_action_bar_elevation_material=0x7f050005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; public static final int abc_action_bar_progress_bar_size=0x7f050009; public static final int abc_action_bar_stacked_max_height=0x7f05000a; public static final int abc_action_bar_stacked_tab_max_width=0x7f05000b; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000c; public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000d; public static final int abc_action_button_min_height_material=0x7f05000e; public static final int abc_action_button_min_width_material=0x7f05000f; public static final int abc_action_button_min_width_overflow_material=0x7f050010; public static final int abc_alert_dialog_button_bar_height=0x7f050011; public static final int abc_button_inset_horizontal_material=0x7f050012; public static final int abc_button_inset_vertical_material=0x7f050013; public static final int abc_button_padding_horizontal_material=0x7f050014; public static final int abc_button_padding_vertical_material=0x7f050015; public static final int abc_cascading_menus_min_smallest_width=0x7f050016; public static final int abc_config_prefDialogWidth=0x7f050017; public static final int abc_control_corner_material=0x7f050018; public static final int abc_control_inset_material=0x7f050019; public static final int abc_control_padding_material=0x7f05001a; public static final int abc_dialog_fixed_height_major=0x7f05001b; public static final int abc_dialog_fixed_height_minor=0x7f05001c; public static final int abc_dialog_fixed_width_major=0x7f05001d; public static final int abc_dialog_fixed_width_minor=0x7f05001e; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f05001f; public static final int abc_dialog_list_padding_top_no_title=0x7f050020; public static final int abc_dialog_min_width_major=0x7f050021; public static final int abc_dialog_min_width_minor=0x7f050022; public static final int abc_dialog_padding_material=0x7f050023; public static final int abc_dialog_padding_top_material=0x7f050024; public static final int abc_dialog_title_divider_material=0x7f050025; public static final int abc_disabled_alpha_material_dark=0x7f050026; public static final int abc_disabled_alpha_material_light=0x7f050027; public static final int abc_dropdownitem_icon_width=0x7f050028; public static final int abc_dropdownitem_text_padding_left=0x7f050029; public static final int abc_dropdownitem_text_padding_right=0x7f05002a; public static final int abc_edit_text_inset_bottom_material=0x7f05002b; public static final int abc_edit_text_inset_horizontal_material=0x7f05002c; public static final int abc_edit_text_inset_top_material=0x7f05002d; public static final int abc_floating_window_z=0x7f05002e; public static final int abc_list_item_padding_horizontal_material=0x7f05002f; public static final int abc_panel_menu_list_width=0x7f050030; public static final int abc_progress_bar_height_material=0x7f050031; public static final int abc_search_view_preferred_height=0x7f050032; public static final int abc_search_view_preferred_width=0x7f050033; public static final int abc_seekbar_track_background_height_material=0x7f050034; public static final int abc_seekbar_track_progress_height_material=0x7f050035; public static final int abc_select_dialog_padding_start_material=0x7f050036; public static final int abc_switch_padding=0x7f050037; public static final int abc_text_size_body_1_material=0x7f050038; public static final int abc_text_size_body_2_material=0x7f050039; public static final int abc_text_size_button_material=0x7f05003a; public static final int abc_text_size_caption_material=0x7f05003b; public static final int abc_text_size_display_1_material=0x7f05003c; public static final int abc_text_size_display_2_material=0x7f05003d; public static final int abc_text_size_display_3_material=0x7f05003e; public static final int abc_text_size_display_4_material=0x7f05003f; public static final int abc_text_size_headline_material=0x7f050040; public static final int abc_text_size_large_material=0x7f050041; public static final int abc_text_size_medium_material=0x7f050042; public static final int abc_text_size_menu_header_material=0x7f050043; public static final int abc_text_size_menu_material=0x7f050044; public static final int abc_text_size_small_material=0x7f050045; public static final int abc_text_size_subhead_material=0x7f050046; public static final int abc_text_size_subtitle_material_toolbar=0x7f050047; public static final int abc_text_size_title_material=0x7f050048; public static final int abc_text_size_title_material_toolbar=0x7f050049; public static final int compat_button_inset_horizontal_material=0x7f05004a; public static final int compat_button_inset_vertical_material=0x7f05004b; public static final int compat_button_padding_horizontal_material=0x7f05004c; public static final int compat_button_padding_vertical_material=0x7f05004d; public static final int compat_control_corner_material=0x7f05004e; public static final int disabled_alpha_material_dark=0x7f05004f; public static final int disabled_alpha_material_light=0x7f050050; public static final int highlight_alpha_material_colored=0x7f050051; public static final int highlight_alpha_material_dark=0x7f050052; public static final int highlight_alpha_material_light=0x7f050053; public static final int hint_alpha_material_dark=0x7f050054; public static final int hint_alpha_material_light=0x7f050055; public static final int hint_pressed_alpha_material_dark=0x7f050056; public static final int hint_pressed_alpha_material_light=0x7f050057; public static final int notification_action_icon_size=0x7f050058; public static final int notification_action_text_size=0x7f050059; public static final int notification_big_circle_margin=0x7f05005a; public static final int notification_content_margin_start=0x7f05005b; public static final int notification_large_icon_height=0x7f05005c; public static final int notification_large_icon_width=0x7f05005d; public static final int notification_main_column_padding_top=0x7f05005e; public static final int notification_media_narrow_margin=0x7f05005f; public static final int notification_right_icon_size=0x7f050060; public static final int notification_right_side_padding_top=0x7f050061; public static final int notification_small_icon_background_padding=0x7f050062; public static final int notification_small_icon_size_as_large=0x7f050063; public static final int notification_subtext_size=0x7f050064; public static final int notification_top_pad=0x7f050065; public static final int notification_top_pad_large_text=0x7f050066; public static final int tooltip_corner_radius=0x7f050067; public static final int tooltip_horizontal_padding=0x7f050068; public static final int tooltip_margin=0x7f050069; public static final int tooltip_precise_anchor_extra_offset=0x7f05006a; public static final int tooltip_precise_anchor_threshold=0x7f05006b; public static final int tooltip_vertical_padding=0x7f05006c; public static final int tooltip_y_offset_non_touch=0x7f05006d; public static final int tooltip_y_offset_touch=0x7f05006e; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; public static final int abc_action_bar_item_background_material=0x7f060001; public static final int abc_btn_borderless_material=0x7f060002; public static final int abc_btn_check_material=0x7f060003; public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; public static final int abc_btn_colored_material=0x7f060006; public static final int abc_btn_default_mtrl_shape=0x7f060007; public static final int abc_btn_radio_material=0x7f060008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; public static final int abc_cab_background_internal_bg=0x7f06000d; public static final int abc_cab_background_top_material=0x7f06000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; public static final int abc_control_background_material=0x7f060010; public static final int abc_dialog_material_background=0x7f060011; public static final int abc_edit_text_material=0x7f060012; public static final int abc_ic_ab_back_material=0x7f060013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; public static final int abc_ic_clear_material=0x7f060015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; public static final int abc_ic_go_search_api_material=0x7f060017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; public static final int abc_ic_menu_overflow_material=0x7f06001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; public static final int abc_ic_search_api_material=0x7f06001e; public static final int abc_ic_star_black_16dp=0x7f06001f; public static final int abc_ic_star_black_36dp=0x7f060020; public static final int abc_ic_star_black_48dp=0x7f060021; public static final int abc_ic_star_half_black_16dp=0x7f060022; public static final int abc_ic_star_half_black_36dp=0x7f060023; public static final int abc_ic_star_half_black_48dp=0x7f060024; public static final int abc_ic_voice_search_api_material=0x7f060025; public static final int abc_item_background_holo_dark=0x7f060026; public static final int abc_item_background_holo_light=0x7f060027; public static final int abc_list_divider_mtrl_alpha=0x7f060028; public static final int abc_list_focused_holo=0x7f060029; public static final int abc_list_longpressed_holo=0x7f06002a; public static final int abc_list_pressed_holo_dark=0x7f06002b; public static final int abc_list_pressed_holo_light=0x7f06002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f06002d; public static final int abc_list_selector_background_transition_holo_light=0x7f06002e; public static final int abc_list_selector_disabled_holo_dark=0x7f06002f; public static final int abc_list_selector_disabled_holo_light=0x7f060030; public static final int abc_list_selector_holo_dark=0x7f060031; public static final int abc_list_selector_holo_light=0x7f060032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060033; public static final int abc_popup_background_mtrl_mult=0x7f060034; public static final int abc_ratingbar_indicator_material=0x7f060035; public static final int abc_ratingbar_material=0x7f060036; public static final int abc_ratingbar_small_material=0x7f060037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f060039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f06003c; public static final int abc_seekbar_thumb_material=0x7f06003d; public static final int abc_seekbar_tick_mark_material=0x7f06003e; public static final int abc_seekbar_track_material=0x7f06003f; public static final int abc_spinner_mtrl_am_alpha=0x7f060040; public static final int abc_spinner_textfield_background_material=0x7f060041; public static final int abc_switch_thumb_material=0x7f060042; public static final int abc_switch_track_mtrl_alpha=0x7f060043; public static final int abc_tab_indicator_material=0x7f060044; public static final int abc_tab_indicator_mtrl_alpha=0x7f060045; public static final int abc_text_cursor_material=0x7f060046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f060047; public static final int abc_text_select_handle_left_mtrl_light=0x7f060048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f060049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f06004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f06004d; public static final int abc_textfield_default_mtrl_alpha=0x7f06004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f06004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f060050; public static final int abc_textfield_search_material=0x7f060051; public static final int abc_vector_test=0x7f060052; public static final int notification_action_background=0x7f060053; public static final int notification_bg=0x7f060054; public static final int notification_bg_low=0x7f060055; public static final int notification_bg_low_normal=0x7f060056; public static final int notification_bg_low_pressed=0x7f060057; public static final int notification_bg_normal=0x7f060058; public static final int notification_bg_normal_pressed=0x7f060059; public static final int notification_icon_background=0x7f06005a; public static final int notification_template_icon_bg=0x7f06005b; public static final int notification_template_icon_low_bg=0x7f06005c; public static final int notification_tile_bg=0x7f06005d; public static final int notify_panel_notification_icon_bg=0x7f06005e; public static final int tooltip_frame_dark=0x7f06005f; public static final int tooltip_frame_light=0x7f060060; } public static final class id { public static final int ALT=0x7f070000; public static final int CTRL=0x7f070001; public static final int FUNCTION=0x7f070002; public static final int META=0x7f070003; public static final int SHIFT=0x7f070004; public static final int SYM=0x7f070005; public static final int action0=0x7f070006; public static final int action_bar=0x7f070007; public static final int action_bar_activity_content=0x7f070008; public static final int action_bar_container=0x7f070009; public static final int action_bar_root=0x7f07000a; public static final int action_bar_spinner=0x7f07000b; public static final int action_bar_subtitle=0x7f07000c; public static final int action_bar_title=0x7f07000d; public static final int action_container=0x7f07000e; public static final int action_context_bar=0x7f07000f; public static final int action_divider=0x7f070010; public static final int action_image=0x7f070011; public static final int action_menu_divider=0x7f070012; public static final int action_menu_presenter=0x7f070013; public static final int action_mode_bar=0x7f070014; public static final int action_mode_bar_stub=0x7f070015; public static final int action_mode_close_button=0x7f070016; public static final int action_text=0x7f070017; public static final int actions=0x7f070018; public static final int activity_chooser_view_content=0x7f070019; public static final int add=0x7f07001a; public static final int alertTitle=0x7f07001b; public static final int all=0x7f07001c; public static final int always=0x7f07001d; public static final int async=0x7f07001e; public static final int basic=0x7f07001f; public static final int beginning=0x7f070020; public static final int blocking=0x7f070021; public static final int bottom=0x7f070022; public static final int buttonPanel=0x7f070023; public static final int cancel_action=0x7f070024; public static final int chains=0x7f070025; public static final int checkbox=0x7f070026; public static final int chronometer=0x7f070027; public static final int collapseActionView=0x7f070028; public static final int contentPanel=0x7f070029; public static final int custom=0x7f07002a; public static final int customPanel=0x7f07002b; public static final int decor_content_parent=0x7f07002c; public static final int default_activity_button=0x7f07002d; public static final int disableHome=0x7f07002e; public static final int edit_query=0x7f07002f; public static final int end=0x7f070030; public static final int end_padder=0x7f070031; public static final int expand_activities_button=0x7f070032; public static final int expanded_menu=0x7f070033; public static final int forever=0x7f070034; public static final int home=0x7f070035; public static final int homeAsUp=0x7f070036; public static final int icon=0x7f070037; public static final int icon_group=0x7f070038; public static final int ifRoom=0x7f070039; public static final int image=0x7f07003a; public static final int info=0x7f07003b; public static final int italic=0x7f07003c; public static final int line1=0x7f07003d; public static final int line3=0x7f07003e; public static final int listMode=0x7f07003f; public static final int list_item=0x7f070040; public static final int lottie_layer_name=0x7f070041; public static final int media_actions=0x7f070042; public static final int message=0x7f070043; public static final int middle=0x7f070044; public static final int multiply=0x7f070045; public static final int never=0x7f070046; public static final int none=0x7f070047; public static final int normal=0x7f070048; public static final int notification_background=0x7f070049; public static final int notification_main_column=0x7f07004a; public static final int notification_main_column_container=0x7f07004b; public static final int packed=0x7f07004c; public static final int parent=0x7f07004d; public static final int parentPanel=0x7f07004e; public static final int progress_circular=0x7f07004f; public static final int progress_horizontal=0x7f070050; public static final int radio=0x7f070051; public static final int right_icon=0x7f070052; public static final int right_side=0x7f070053; public static final int screen=0x7f070054; public static final int scrollIndicatorDown=0x7f070055; public static final int scrollIndicatorUp=0x7f070056; public static final int scrollView=0x7f070057; public static final int search_badge=0x7f070058; public static final int search_bar=0x7f070059; public static final int search_button=0x7f07005a; public static final int search_close_btn=0x7f07005b; public static final int search_edit_frame=0x7f07005c; public static final int search_go_btn=0x7f07005d; public static final int search_mag_icon=0x7f07005e; public static final int search_plate=0x7f07005f; public static final int search_src_text=0x7f070060; public static final int search_voice_btn=0x7f070061; public static final int select_dialog_listview=0x7f070062; public static final int shortcut=0x7f070063; public static final int showCustom=0x7f070064; public static final int showHome=0x7f070065; public static final int showTitle=0x7f070066; public static final int spacer=0x7f070067; public static final int split_action_bar=0x7f070068; public static final int spread=0x7f070069; public static final int spread_inside=0x7f07006a; public static final int src_atop=0x7f07006b; public static final int src_in=0x7f07006c; public static final int src_over=0x7f07006d; public static final int status_bar_latest_event_content=0x7f07006e; public static final int strong=0x7f07006f; public static final int submenuarrow=0x7f070070; public static final int submit_area=0x7f070071; public static final int tabMode=0x7f070072; public static final int text=0x7f070073; public static final int text2=0x7f070074; public static final int textSpacerNoButtons=0x7f070075; public static final int textSpacerNoTitle=0x7f070076; public static final int time=0x7f070077; public static final int title=0x7f070078; public static final int titleDividerNoCustom=0x7f070079; public static final int title_template=0x7f07007a; public static final int top=0x7f07007b; public static final int topPanel=0x7f07007c; public static final int uniform=0x7f07007d; public static final int up=0x7f07007e; public static final int useLogo=0x7f07007f; public static final int weak=0x7f070080; public static final int withText=0x7f070081; public static final int wrap=0x7f070082; public static final int wrap_content=0x7f070083; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f080000; public static final int abc_config_activityShortDur=0x7f080001; public static final int cancel_button_image_alpha=0x7f080002; public static final int config_tooltipAnimTime=0x7f080003; public static final int status_bar_notification_info_maxnum=0x7f080004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f090000; public static final int abc_action_bar_up_container=0x7f090001; public static final int abc_action_bar_view_list_nav_layout=0x7f090002; public static final int abc_action_menu_item_layout=0x7f090003; public static final int abc_action_menu_layout=0x7f090004; public static final int abc_action_mode_bar=0x7f090005; public static final int abc_action_mode_close_item_material=0x7f090006; public static final int abc_activity_chooser_view=0x7f090007; public static final int abc_activity_chooser_view_list_item=0x7f090008; public static final int abc_alert_dialog_button_bar_material=0x7f090009; public static final int abc_alert_dialog_material=0x7f09000a; public static final int abc_alert_dialog_title_material=0x7f09000b; public static final int abc_dialog_title_material=0x7f09000c; public static final int abc_expanded_menu_layout=0x7f09000d; public static final int abc_list_menu_item_checkbox=0x7f09000e; public static final int abc_list_menu_item_icon=0x7f09000f; public static final int abc_list_menu_item_layout=0x7f090010; public static final int abc_list_menu_item_radio=0x7f090011; public static final int abc_popup_menu_header_item_layout=0x7f090012; public static final int abc_popup_menu_item_layout=0x7f090013; public static final int abc_screen_content_include=0x7f090014; public static final int abc_screen_simple=0x7f090015; public static final int abc_screen_simple_overlay_action_mode=0x7f090016; public static final int abc_screen_toolbar=0x7f090017; public static final int abc_search_dropdown_item_icons_2line=0x7f090018; public static final int abc_search_view=0x7f090019; public static final int abc_select_dialog_material=0x7f09001a; public static final int notification_action=0x7f09001b; public static final int notification_action_tombstone=0x7f09001c; public static final int notification_media_action=0x7f09001d; public static final int notification_media_cancel_action=0x7f09001e; public static final int notification_template_big_media=0x7f09001f; public static final int notification_template_big_media_custom=0x7f090020; public static final int notification_template_big_media_narrow=0x7f090021; public static final int notification_template_big_media_narrow_custom=0x7f090022; public static final int notification_template_custom_big=0x7f090023; public static final int notification_template_icon_group=0x7f090024; public static final int notification_template_lines_media=0x7f090025; public static final int notification_template_media=0x7f090026; public static final int notification_template_media_custom=0x7f090027; public static final int notification_template_part_chronometer=0x7f090028; public static final int notification_template_part_time=0x7f090029; public static final int select_dialog_item_material=0x7f09002a; public static final int select_dialog_multichoice_material=0x7f09002b; public static final int select_dialog_singlechoice_material=0x7f09002c; public static final int support_simple_spinner_dropdown_item=0x7f09002d; public static final int tooltip=0x7f09002e; } public static final class string { public static final int abc_action_bar_home_description=0x7f0a0000; public static final int abc_action_bar_home_description_format=0x7f0a0001; public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0002; public static final int abc_action_bar_up_description=0x7f0a0003; public static final int abc_action_menu_overflow_description=0x7f0a0004; public static final int abc_action_mode_done=0x7f0a0005; public static final int abc_activity_chooser_view_see_all=0x7f0a0006; public static final int abc_activitychooserview_choose_application=0x7f0a0007; public static final int abc_capital_off=0x7f0a0008; public static final int abc_capital_on=0x7f0a0009; public static final int abc_font_family_body_1_material=0x7f0a000a; public static final int abc_font_family_body_2_material=0x7f0a000b; public static final int abc_font_family_button_material=0x7f0a000c; public static final int abc_font_family_caption_material=0x7f0a000d; public static final int abc_font_family_display_1_material=0x7f0a000e; public static final int abc_font_family_display_2_material=0x7f0a000f; public static final int abc_font_family_display_3_material=0x7f0a0010; public static final int abc_font_family_display_4_material=0x7f0a0011; public static final int abc_font_family_headline_material=0x7f0a0012; public static final int abc_font_family_menu_material=0x7f0a0013; public static final int abc_font_family_subhead_material=0x7f0a0014; public static final int abc_font_family_title_material=0x7f0a0015; public static final int abc_search_hint=0x7f0a0016; public static final int abc_searchview_description_clear=0x7f0a0017; public static final int abc_searchview_description_query=0x7f0a0018; public static final int abc_searchview_description_search=0x7f0a0019; public static final int abc_searchview_description_submit=0x7f0a001a; public static final int abc_searchview_description_voice=0x7f0a001b; public static final int abc_shareactionprovider_share_with=0x7f0a001c; public static final int abc_shareactionprovider_share_with_application=0x7f0a001d; public static final int abc_toolbar_collapse_description=0x7f0a001e; public static final int search_menu_title=0x7f0a001f; public static final int status_bar_notification_info_overflow=0x7f0a0020; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0b0000; public static final int AlertDialog_AppCompat_Light=0x7f0b0001; public static final int Animation_AppCompat_Dialog=0x7f0b0002; public static final int Animation_AppCompat_DropDownUp=0x7f0b0003; public static final int Animation_AppCompat_Tooltip=0x7f0b0004; public static final int Base_AlertDialog_AppCompat=0x7f0b0005; public static final int Base_AlertDialog_AppCompat_Light=0x7f0b0006; public static final int Base_Animation_AppCompat_Dialog=0x7f0b0007; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b0008; public static final int Base_Animation_AppCompat_Tooltip=0x7f0b0009; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b000b; public static final int Base_DialogWindowTitle_AppCompat=0x7f0b000a; public static final int Base_TextAppearance_AppCompat=0x7f0b000c; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b000d; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b000e; public static final int Base_TextAppearance_AppCompat_Button=0x7f0b000f; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0010; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0011; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0012; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0013; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0014; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0015; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b0016; public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0017; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b0018; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0019; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b001a; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b001b; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b001d; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b001e; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b001f; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0020; public static final int Base_TextAppearance_AppCompat_Small=0x7f0b0021; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b0022; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b0023; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b0024; public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0025; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b0026; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0b0027; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0028; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0029; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b002a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b002b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b002e; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b002f; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0030; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0031; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0032; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0033; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0034; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0035; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0036; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0037; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0038; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0039; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b003a; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b003b; public static final int Base_ThemeOverlay_AppCompat=0x7f0b004a; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b004b; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b004c; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b004d; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b004e; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b004f; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b0050; public static final int Base_Theme_AppCompat=0x7f0b003c; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b003d; public static final int Base_Theme_AppCompat_Dialog=0x7f0b003e; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0042; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b003f; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b0040; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0041; public static final int Base_Theme_AppCompat_Light=0x7f0b0043; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b0044; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0045; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0049; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0046; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b0047; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0048; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b0053; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0051; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0052; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0054; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0055; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b005a; public static final int Base_V21_Theme_AppCompat=0x7f0b0056; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0057; public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0058; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0059; public static final int Base_V22_Theme_AppCompat=0x7f0b005b; public static final int Base_V22_Theme_AppCompat_Light=0x7f0b005c; public static final int Base_V23_Theme_AppCompat=0x7f0b005d; public static final int Base_V23_Theme_AppCompat_Light=0x7f0b005e; public static final int Base_V26_Theme_AppCompat=0x7f0b005f; public static final int Base_V26_Theme_AppCompat_Light=0x7f0b0060; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0b0061; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b0066; public static final int Base_V7_Theme_AppCompat=0x7f0b0062; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b0063; public static final int Base_V7_Theme_AppCompat_Light=0x7f0b0064; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b0065; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b0067; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b0068; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0b0069; public static final int Base_Widget_AppCompat_ActionBar=0x7f0b006a; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b006b; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b006c; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b006d; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b006e; public static final int Base_Widget_AppCompat_ActionButton=0x7f0b006f; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0070; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0071; public static final int Base_Widget_AppCompat_ActionMode=0x7f0b0072; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b0073; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0074; public static final int Base_Widget_AppCompat_Button=0x7f0b0075; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007b; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b007c; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b0076; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b0077; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0078; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b0079; public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007a; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b007d; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b007e; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b007f; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b0080; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b0081; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082; public static final int Base_Widget_AppCompat_EditText=0x7f0b0083; public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0084; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b0085; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0086; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0087; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0088; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0089; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b008a; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b008b; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b008c; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b008d; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b008e; public static final int Base_Widget_AppCompat_ListView=0x7f0b008f; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0090; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0091; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0092; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0093; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b0094; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b0095; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0096; public static final int Base_Widget_AppCompat_RatingBar=0x7f0b0097; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b0098; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b0099; public static final int Base_Widget_AppCompat_SearchView=0x7f0b009a; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b009b; public static final int Base_Widget_AppCompat_SeekBar=0x7f0b009c; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b009d; public static final int Base_Widget_AppCompat_Spinner=0x7f0b009e; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b009f; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b00a0; public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00a1; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00a2; public static final int Platform_AppCompat=0x7f0b00a3; public static final int Platform_AppCompat_Light=0x7f0b00a4; public static final int Platform_ThemeOverlay_AppCompat=0x7f0b00a5; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b00a6; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b00a7; public static final int Platform_V11_AppCompat=0x7f0b00a8; public static final int Platform_V11_AppCompat_Light=0x7f0b00a9; public static final int Platform_V14_AppCompat=0x7f0b00aa; public static final int Platform_V14_AppCompat_Light=0x7f0b00ab; public static final int Platform_V21_AppCompat=0x7f0b00ac; public static final int Platform_V21_AppCompat_Light=0x7f0b00ad; public static final int Platform_V25_AppCompat=0x7f0b00ae; public static final int Platform_V25_AppCompat_Light=0x7f0b00af; public static final int Platform_Widget_AppCompat_Spinner=0x7f0b00b0; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b00b1; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b00b2; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b00b3; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b00b4; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b00b5; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b00b6; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b00bc; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b00b7; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b00b8; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b00b9; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b00ba; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b00bb; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b00bd; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b00be; public static final int TextAppearance_AppCompat=0x7f0b00bf; public static final int TextAppearance_AppCompat_Body1=0x7f0b00c0; public static final int TextAppearance_AppCompat_Body2=0x7f0b00c1; public static final int TextAppearance_AppCompat_Button=0x7f0b00c2; public static final int TextAppearance_AppCompat_Caption=0x7f0b00c3; public static final int TextAppearance_AppCompat_Display1=0x7f0b00c4; public static final int TextAppearance_AppCompat_Display2=0x7f0b00c5; public static final int TextAppearance_AppCompat_Display3=0x7f0b00c6; public static final int TextAppearance_AppCompat_Display4=0x7f0b00c7; public static final int TextAppearance_AppCompat_Headline=0x7f0b00c8; public static final int TextAppearance_AppCompat_Inverse=0x7f0b00c9; public static final int TextAppearance_AppCompat_Large=0x7f0b00ca; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00cb; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00cc; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00cd; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ce; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00cf; public static final int TextAppearance_AppCompat_Medium=0x7f0b00d0; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00d1; public static final int TextAppearance_AppCompat_Menu=0x7f0b00d2; public static final int TextAppearance_AppCompat_Notification=0x7f0b00d3; public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b00d4; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b00d5; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00d6; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00d7; public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b00d8; public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b00d9; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b00da; public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b00db; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b00dc; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00dd; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00de; public static final int TextAppearance_AppCompat_Small=0x7f0b00df; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00e0; public static final int TextAppearance_AppCompat_Subhead=0x7f0b00e1; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00e2; public static final int TextAppearance_AppCompat_Title=0x7f0b00e3; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00e4; public static final int TextAppearance_AppCompat_Tooltip=0x7f0b00e5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00e6; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00e7; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00e8; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00e9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ea; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b00eb; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b00ec; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b00ed; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b00ee; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b00ef; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00f0; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00f1; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00f2; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00f3; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b00f4; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b00f5; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b00f6; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b00f7; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00f8; public static final int TextAppearance_Compat_Notification=0x7f0b00f9; public static final int TextAppearance_Compat_Notification_Info=0x7f0b00fa; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0b00fb; public static final int TextAppearance_Compat_Notification_Line2=0x7f0b00fc; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0b00fd; public static final int TextAppearance_Compat_Notification_Media=0x7f0b00fe; public static final int TextAppearance_Compat_Notification_Time=0x7f0b00ff; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0b0100; public static final int TextAppearance_Compat_Notification_Title=0x7f0b0101; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0b0102; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0103; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0104; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0105; public static final int ThemeOverlay_AppCompat=0x7f0b011b; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b011c; public static final int ThemeOverlay_AppCompat_Dark=0x7f0b011d; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b011e; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b011f; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0120; public static final int ThemeOverlay_AppCompat_Light=0x7f0b0121; public static final int Theme_AppCompat=0x7f0b0106; public static final int Theme_AppCompat_CompactMenu=0x7f0b0107; public static final int Theme_AppCompat_DayNight=0x7f0b0108; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0109; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b010a; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b010d; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b010b; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b010c; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b010e; public static final int Theme_AppCompat_Dialog=0x7f0b010f; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0112; public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0110; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0111; public static final int Theme_AppCompat_Light=0x7f0b0113; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0114; public static final int Theme_AppCompat_Light_Dialog=0x7f0b0115; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0118; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b0116; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0117; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b0119; public static final int Theme_AppCompat_NoActionBar=0x7f0b011a; public static final int Widget_AppCompat_ActionBar=0x7f0b0122; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0123; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0124; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0125; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0126; public static final int Widget_AppCompat_ActionButton=0x7f0b0127; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b0128; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0129; public static final int Widget_AppCompat_ActionMode=0x7f0b012a; public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012b; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b012c; public static final int Widget_AppCompat_Button=0x7f0b012d; public static final int Widget_AppCompat_ButtonBar=0x7f0b0133; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0134; public static final int Widget_AppCompat_Button_Borderless=0x7f0b012e; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b012f; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0130; public static final int Widget_AppCompat_Button_Colored=0x7f0b0131; public static final int Widget_AppCompat_Button_Small=0x7f0b0132; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0135; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0136; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0137; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0138; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0139; public static final int Widget_AppCompat_EditText=0x7f0b013a; public static final int Widget_AppCompat_ImageButton=0x7f0b013b; public static final int Widget_AppCompat_Light_ActionBar=0x7f0b013c; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b013d; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b013e; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b013f; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0140; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0141; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0142; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0143; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0144; public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0145; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0146; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0147; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0148; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0149; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014a; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014b; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b014c; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b014d; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b014e; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b014f; public static final int Widget_AppCompat_Light_SearchView=0x7f0b0150; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0151; public static final int Widget_AppCompat_ListMenuView=0x7f0b0152; public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0153; public static final int Widget_AppCompat_ListView=0x7f0b0154; public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0155; public static final int Widget_AppCompat_ListView_Menu=0x7f0b0156; public static final int Widget_AppCompat_PopupMenu=0x7f0b0157; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0158; public static final int Widget_AppCompat_PopupWindow=0x7f0b0159; public static final int Widget_AppCompat_ProgressBar=0x7f0b015a; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015b; public static final int Widget_AppCompat_RatingBar=0x7f0b015c; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b015d; public static final int Widget_AppCompat_RatingBar_Small=0x7f0b015e; public static final int Widget_AppCompat_SearchView=0x7f0b015f; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0160; public static final int Widget_AppCompat_SeekBar=0x7f0b0161; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0162; public static final int Widget_AppCompat_Spinner=0x7f0b0163; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0164; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0165; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b0166; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b0167; public static final int Widget_AppCompat_Toolbar=0x7f0b0168; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0169; public static final int Widget_Compat_NotificationActionContainer=0x7f0b016a; public static final int Widget_Compat_NotificationActionText=0x7f0b016b; } 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.thinkpad.lottitapply.test:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.example.thinkpad.lottitapply.test:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.example.thinkpad.lottitapply.test:backgroundStacked}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.thinkpad.lottitapply.test:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.thinkpad.lottitapply.test:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.thinkpad.lottitapply.test:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.example.thinkpad.lottitapply.test:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.example.thinkpad.lottitapply.test:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.thinkpad.lottitapply.test:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.thinkpad.lottitapply.test:customNavigationLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.example.thinkpad.lottitapply.test:displayOptions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_divider com.example.thinkpad.lottitapply.test:divider}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_elevation com.example.thinkpad.lottitapply.test:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_height com.example.thinkpad.lottitapply.test:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.thinkpad.lottitapply.test:hideOnContentScroll}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.thinkpad.lottitapply.test:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.example.thinkpad.lottitapply.test:homeLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_icon com.example.thinkpad.lottitapply.test:icon}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.thinkpad.lottitapply.test:indeterminateProgressStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.example.thinkpad.lottitapply.test:itemPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_logo com.example.thinkpad.lottitapply.test:logo}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.example.thinkpad.lottitapply.test:navigationMode}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.example.thinkpad.lottitapply.test:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.example.thinkpad.lottitapply.test:progressBarPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.example.thinkpad.lottitapply.test:progressBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.example.thinkpad.lottitapply.test:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.thinkpad.lottitapply.test:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_title com.example.thinkpad.lottitapply.test:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.example.thinkpad.lottitapply.test: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={ 0x7f020031, 0x7f020032, 0x7f020033, 0x7f020057, 0x7f020058, 0x7f020059, 0x7f02005a, 0x7f02005b, 0x7f02005c, 0x7f02005e, 0x7f020062, 0x7f020063, 0x7f02006e, 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020085, 0x7f020088, 0x7f0200c0, 0x7f0200d0, 0x7f0200db, 0x7f0200de, 0x7f0200df, 0x7f0200f9, 0x7f0200fc, 0x7f020117, 0x7f020120 }; /** * 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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:background */ public static final int ActionBar_background=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:divider */ public static final int ActionBar_divider=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:elevation */ public static final int ActionBar_elevation=12; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:height */ public static final int ActionBar_height=13; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:icon */ public static final int ActionBar_icon=17; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:logo */ public static final int ActionBar_logo=20; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subtitle */ public static final int ActionBar_subtitle=25; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:title */ public static final int ActionBar_title=27; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.example.thinkpad.lottitapply.test:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.example.thinkpad.lottitapply.test:closeItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_height com.example.thinkpad.lottitapply.test:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.thinkpad.lottitapply.test:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.example.thinkpad.lottitapply.test: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={ 0x7f020031, 0x7f020032, 0x7f020046, 0x7f02007c, 0x7f0200fc, 0x7f020120 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:background */ public static final int ActionMode_background=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:height */ public static final int ActionMode_height=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.thinkpad.lottitapply.test:initialActivityCount}</code></td><td></td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f02006f, 0x7f020086 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.example.thinkpad.lottitapply.test:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.example.thinkpad.lottitapply.test:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.thinkpad.lottitapply.test:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.example.thinkpad.lottitapply.test:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.thinkpad.lottitapply.test: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, 0x7f02003e, 0x7f0200b7, 0x7f0200b8, 0x7f0200cd, 0x7f0200ef, 0x7f0200f0 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listItemLayout */ public static final int AlertDialog_listItemLayout=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listLayout */ public static final int AlertDialog_listLayout=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:showTitle */ public static final int AlertDialog_showTitle=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=6; /** * 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.thinkpad.lottitapply.test:srcCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.example.thinkpad.lottitapply.test:tint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.example.thinkpad.lottitapply.test: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, 0x7f0200f5, 0x7f020115, 0x7f020116 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:tint */ public static final int AppCompatImageView_tint=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:tickMark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.thinkpad.lottitapply.test:tickMarkTint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.thinkpad.lottitapply.test: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, 0x7f020112, 0x7f020113, 0x7f020114 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:autoSizeMaxTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.example.thinkpad.lottitapply.test:autoSizeMinTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.example.thinkpad.lottitapply.test:autoSizePresetSizes}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.example.thinkpad.lottitapply.test:autoSizeStepGranularity}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.example.thinkpad.lottitapply.test:autoSizeTextType}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.example.thinkpad.lottitapply.test:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.thinkpad.lottitapply.test: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, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020071, 0x7f020102 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontFamily */ public static final int AppCompatTextView_fontFamily=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:actionBarDivider}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.thinkpad.lottitapply.test:actionBarItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.thinkpad.lottitapply.test:actionBarPopupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.thinkpad.lottitapply.test:actionBarSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.thinkpad.lottitapply.test:actionBarSplitStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.thinkpad.lottitapply.test:actionBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.thinkpad.lottitapply.test:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.thinkpad.lottitapply.test:actionBarTabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.thinkpad.lottitapply.test:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.thinkpad.lottitapply.test:actionBarTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.thinkpad.lottitapply.test:actionBarWidgetTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.thinkpad.lottitapply.test:actionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.thinkpad.lottitapply.test:actionDropDownStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.thinkpad.lottitapply.test:actionMenuTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.thinkpad.lottitapply.test:actionMenuTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.thinkpad.lottitapply.test:actionModeBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.thinkpad.lottitapply.test:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.thinkpad.lottitapply.test:actionModeCloseDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.thinkpad.lottitapply.test:actionModeCopyDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.thinkpad.lottitapply.test:actionModeCutDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.thinkpad.lottitapply.test:actionModeFindDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.thinkpad.lottitapply.test:actionModePasteDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.thinkpad.lottitapply.test:actionModePopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.thinkpad.lottitapply.test:actionModeSelectAllDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.thinkpad.lottitapply.test:actionModeShareDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.thinkpad.lottitapply.test:actionModeSplitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.thinkpad.lottitapply.test:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.thinkpad.lottitapply.test:actionModeWebSearchDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.thinkpad.lottitapply.test:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.thinkpad.lottitapply.test:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.thinkpad.lottitapply.test:activityChooserViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.thinkpad.lottitapply.test:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.thinkpad.lottitapply.test:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.thinkpad.lottitapply.test:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.thinkpad.lottitapply.test:alertDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.thinkpad.lottitapply.test:autoCompleteTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.thinkpad.lottitapply.test:borderlessButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.thinkpad.lottitapply.test:buttonBarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.thinkpad.lottitapply.test:buttonBarNegativeButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.thinkpad.lottitapply.test:buttonBarNeutralButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.thinkpad.lottitapply.test:buttonBarPositiveButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.thinkpad.lottitapply.test:buttonBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.thinkpad.lottitapply.test:buttonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.thinkpad.lottitapply.test:buttonStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.thinkpad.lottitapply.test:checkboxStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.thinkpad.lottitapply.test:checkedTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.thinkpad.lottitapply.test:colorAccent}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.thinkpad.lottitapply.test:colorBackgroundFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.thinkpad.lottitapply.test:colorButtonNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.thinkpad.lottitapply.test:colorControlActivated}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.thinkpad.lottitapply.test:colorControlHighlight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.thinkpad.lottitapply.test:colorControlNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.example.thinkpad.lottitapply.test:colorError}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.thinkpad.lottitapply.test:colorPrimary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.thinkpad.lottitapply.test:colorPrimaryDark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.thinkpad.lottitapply.test:colorSwitchThumbNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.thinkpad.lottitapply.test:controlBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.thinkpad.lottitapply.test:dialogPreferredPadding}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.thinkpad.lottitapply.test:dialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.thinkpad.lottitapply.test:dividerHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.thinkpad.lottitapply.test:dividerVertical}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.thinkpad.lottitapply.test:dropDownListViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.thinkpad.lottitapply.test:dropdownListPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.thinkpad.lottitapply.test:editTextBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.thinkpad.lottitapply.test:editTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.thinkpad.lottitapply.test:editTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.thinkpad.lottitapply.test:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.thinkpad.lottitapply.test:imageButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.thinkpad.lottitapply.test:listChoiceBackgroundIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.thinkpad.lottitapply.test:listDividerAlertDialog}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.thinkpad.lottitapply.test:listMenuViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.thinkpad.lottitapply.test:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.thinkpad.lottitapply.test:listPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.thinkpad.lottitapply.test:listPreferredItemHeightLarge}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.thinkpad.lottitapply.test:listPreferredItemHeightSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.thinkpad.lottitapply.test:listPreferredItemPaddingLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.thinkpad.lottitapply.test:listPreferredItemPaddingRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.thinkpad.lottitapply.test:panelBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.thinkpad.lottitapply.test:panelMenuListTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.thinkpad.lottitapply.test:panelMenuListWidth}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.thinkpad.lottitapply.test:popupMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.thinkpad.lottitapply.test:popupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.thinkpad.lottitapply.test:radioButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.thinkpad.lottitapply.test:ratingBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.thinkpad.lottitapply.test:ratingBarStyleIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.thinkpad.lottitapply.test:ratingBarStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.thinkpad.lottitapply.test:searchViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.thinkpad.lottitapply.test:seekBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.thinkpad.lottitapply.test:selectableItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.thinkpad.lottitapply.test:selectableItemBackgroundBorderless}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.thinkpad.lottitapply.test:spinnerDropDownItemStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.thinkpad.lottitapply.test:spinnerStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.thinkpad.lottitapply.test:switchStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.thinkpad.lottitapply.test:textAppearanceLargePopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.thinkpad.lottitapply.test:textAppearanceListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.example.thinkpad.lottitapply.test:textAppearanceListItemSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.thinkpad.lottitapply.test:textAppearanceListItemSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.thinkpad.lottitapply.test:textAppearancePopupMenuHeader}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.thinkpad.lottitapply.test:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.thinkpad.lottitapply.test:textAppearanceSearchResultTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.thinkpad.lottitapply.test:textAppearanceSmallPopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.thinkpad.lottitapply.test:textColorAlertDialogListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.thinkpad.lottitapply.test:textColorSearchUrl}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.thinkpad.lottitapply.test:toolbarNavigationButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.thinkpad.lottitapply.test:toolbarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.example.thinkpad.lottitapply.test:tooltipForegroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.example.thinkpad.lottitapply.test:tooltipFrameBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.thinkpad.lottitapply.test:windowActionBar}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.thinkpad.lottitapply.test:windowActionBarOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.thinkpad.lottitapply.test:windowActionModeOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.thinkpad.lottitapply.test:windowFixedHeightMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.thinkpad.lottitapply.test:windowFixedHeightMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.thinkpad.lottitapply.test:windowFixedWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.thinkpad.lottitapply.test:windowFixedWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.thinkpad.lottitapply.test:windowMinWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.thinkpad.lottitapply.test:windowMinWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.thinkpad.lottitapply.test: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, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020037, 0x7f020038, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003f, 0x7f020040, 0x7f020043, 0x7f020044, 0x7f02004a, 0x7f02004b, 0x7f02004c, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f02005d, 0x7f020060, 0x7f020061, 0x7f020064, 0x7f020066, 0x7f020069, 0x7f02006a, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02007e, 0x7f020084, 0x7f0200b5, 0x7f0200b6, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200dc, 0x7f0200e2, 0x7f0200e3, 0x7f0200e4, 0x7f0200e5, 0x7f0200e8, 0x7f0200e9, 0x7f0200ea, 0x7f0200eb, 0x7f0200f2, 0x7f0200f3, 0x7f020100, 0x7f020103, 0x7f020104, 0x7f020105, 0x7f020106, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f020121, 0x7f020122, 0x7f020123, 0x7f020124, 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f02012d, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=59; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dialogTheme */ public static final int AppCompatTheme_dialogTheme=60; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=61; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dividerVertical */ public static final int AppCompatTheme_dividerVertical=62; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=63; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=64; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:editTextBackground */ public static final int AppCompatTheme_editTextBackground=65; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:editTextColor */ public static final int AppCompatTheme_editTextColor=66; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:editTextStyle */ public static final int AppCompatTheme_editTextStyle=67; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=68; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=69; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=70; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=71; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=72; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=73; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=74; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=75; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=76; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=77; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=78; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:panelBackground */ public static final int AppCompatTheme_panelBackground=79; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=80; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=81; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=82; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=83; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=84; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=85; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=86; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=87; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=88; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=89; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=90; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=91; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=92; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=93; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:switchStyle */ public static final int AppCompatTheme_switchStyle=94; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=95; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=96; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=97; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=98; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=99; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=101; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=103; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=104; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=105; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=106; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=107; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=108; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowActionBar */ public static final int AppCompatTheme_windowActionBar=109; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=110; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=111; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=112; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=113; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=114; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=115; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=116; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=117; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=118; /** * 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.thinkpad.lottitapply.test:allowStacking}</code></td><td></td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f020026 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:allowStacking */ public static final int ButtonBarLayout_allowStacking=0; /** * 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.thinkpad.lottitapply.test: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, 0x7f020027 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:buttonTint}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.thinkpad.lottitapply.test:buttonTintMode}</code></td><td></td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f020041, 0x7f020042 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:constraintSet}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.example.thinkpad.lottitapply.test:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.example.thinkpad.lottitapply.test:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.example.thinkpad.lottitapply.test:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.example.thinkpad.lottitapply.test:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.example.thinkpad.lottitapply.test:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.example.thinkpad.lottitapply.test:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.example.thinkpad.lottitapply.test:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.example.thinkpad.lottitapply.test:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.example.thinkpad.lottitapply.test:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.example.thinkpad.lottitapply.test:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.example.thinkpad.lottitapply.test:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.example.thinkpad.lottitapply.test:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.example.thinkpad.lottitapply.test:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.example.thinkpad.lottitapply.test:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.example.thinkpad.lottitapply.test:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.example.thinkpad.lottitapply.test:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.example.thinkpad.lottitapply.test:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.example.thinkpad.lottitapply.test:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.example.thinkpad.lottitapply.test:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.example.thinkpad.lottitapply.test:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.example.thinkpad.lottitapply.test:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.example.thinkpad.lottitapply.test:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.example.thinkpad.lottitapply.test:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.example.thinkpad.lottitapply.test:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.example.thinkpad.lottitapply.test:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.example.thinkpad.lottitapply.test:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.example.thinkpad.lottitapply.test:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.example.thinkpad.lottitapply.test:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.example.thinkpad.lottitapply.test:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.example.thinkpad.lottitapply.test:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.example.thinkpad.lottitapply.test:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.example.thinkpad.lottitapply.test:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.example.thinkpad.lottitapply.test:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.example.thinkpad.lottitapply.test:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.example.thinkpad.lottitapply.test:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.example.thinkpad.lottitapply.test:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.example.thinkpad.lottitapply.test:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.example.thinkpad.lottitapply.test:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.example.thinkpad.lottitapply.test:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.example.thinkpad.lottitapply.test:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.example.thinkpad.lottitapply.test:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.example.thinkpad.lottitapply.test:layout_goneMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.example.thinkpad.lottitapply.test: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, 0x7f020055, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=8; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=9; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=10; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=12; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=13; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=14; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end=15; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=16; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default=17; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max=18; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min=19; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=20; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=21; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=22; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=23; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=24; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=25; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator=26; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=27; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=28; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=29; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=30; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator=31; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=32; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=33; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=34; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=35; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=36; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default=37; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max=38; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min=39; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX=40; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY=41; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom=42; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd=43; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft=44; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight=45; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart=46; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop=47; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.example.thinkpad.lottitapply.test:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.example.thinkpad.lottitapply.test:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.example.thinkpad.lottitapply.test:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.example.thinkpad.lottitapply.test:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.example.thinkpad.lottitapply.test:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.example.thinkpad.lottitapply.test:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.example.thinkpad.lottitapply.test:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.example.thinkpad.lottitapply.test:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.example.thinkpad.lottitapply.test:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.example.thinkpad.lottitapply.test:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.example.thinkpad.lottitapply.test:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.example.thinkpad.lottitapply.test:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.example.thinkpad.lottitapply.test:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.example.thinkpad.lottitapply.test:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.example.thinkpad.lottitapply.test:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.example.thinkpad.lottitapply.test:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.example.thinkpad.lottitapply.test:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.example.thinkpad.lottitapply.test:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.example.thinkpad.lottitapply.test:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.example.thinkpad.lottitapply.test:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.example.thinkpad.lottitapply.test:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.example.thinkpad.lottitapply.test:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.example.thinkpad.lottitapply.test:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.example.thinkpad.lottitapply.test:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.example.thinkpad.lottitapply.test:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.example.thinkpad.lottitapply.test:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.example.thinkpad.lottitapply.test:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.example.thinkpad.lottitapply.test:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.example.thinkpad.lottitapply.test:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.example.thinkpad.lottitapply.test:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.example.thinkpad.lottitapply.test:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.example.thinkpad.lottitapply.test:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.example.thinkpad.lottitapply.test:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.example.thinkpad.lottitapply.test:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.example.thinkpad.lottitapply.test:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.example.thinkpad.lottitapply.test:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.example.thinkpad.lottitapply.test:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.example.thinkpad.lottitapply.test:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.example.thinkpad.lottitapply.test:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.example.thinkpad.lottitapply.test:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.example.thinkpad.lottitapply.test: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, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator=22; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=23; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator=24; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf=25; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf=26; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio=27; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf=28; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf=29; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin=30; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end=31; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent=32; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default=33; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max=34; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min=35; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias=36; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=37; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight=38; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator=39; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf=40; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf=41; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator=42; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf=43; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf=44; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf=45; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf=46; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator=47; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf=48; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf=49; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias=50; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle=51; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight=52; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default=53; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max=54; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min=55; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX=56; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY=57; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom=58; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd=59; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft=60; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight=61; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart=62; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop=63; /** * 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.thinkpad.lottitapply.test:arrowHeadLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.thinkpad.lottitapply.test:arrowShaftLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.thinkpad.lottitapply.test:barLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.example.thinkpad.lottitapply.test:color}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.thinkpad.lottitapply.test:drawableSize}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.thinkpad.lottitapply.test:gapBetweenBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.thinkpad.lottitapply.test:spinBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.thinkpad.lottitapply.test: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={ 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f020049, 0x7f020067, 0x7f02007a, 0x7f0200f1, 0x7f02010e }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:color */ public static final int DrawerArrowToggle_color=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:thickness */ public static final int DrawerArrowToggle_thickness=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.thinkpad.lottitapply.test:fontProviderAuthority}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.example.thinkpad.lottitapply.test:fontProviderCerts}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.example.thinkpad.lottitapply.test:fontProviderFetchStrategy}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.example.thinkpad.lottitapply.test:fontProviderFetchTimeout}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.example.thinkpad.lottitapply.test:fontProviderPackage}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.example.thinkpad.lottitapply.test: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={ 0x7f020072, 0x7f020073, 0x7f020074, 0x7f020075, 0x7f020076, 0x7f020077 }; /** * 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.thinkpad.lottitapply.test:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.example.thinkpad.lottitapply.test:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.example.thinkpad.lottitapply.test:fontWeight}</code></td><td></td></tr> * </table> * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont={ 0x7f020070, 0x7f020078, 0x7f020079 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:font */ public static final int FontFamilyFont_font=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontStyle */ public static final int FontFamilyFont_fontStyle=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontWeight */ public static final int FontFamilyFont_fontWeight=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * 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.thinkpad.lottitapply.test:divider}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.thinkpad.lottitapply.test:dividerPadding}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.thinkpad.lottitapply.test:measureWithLargestChild}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.thinkpad.lottitapply.test: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, 0x7f020063, 0x7f020065, 0x7f0200cc, 0x7f0200ed }; /** * 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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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 LottieAnimationView. * <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 #LottieAnimationView_lottie_autoPlay com.example.thinkpad.lottitapply.test:lottie_autoPlay}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_cacheStrategy com.example.thinkpad.lottitapply.test:lottie_cacheStrategy}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_colorFilter com.example.thinkpad.lottitapply.test:lottie_colorFilter}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_enableMergePathsForKitKatAndAbove com.example.thinkpad.lottitapply.test:lottie_enableMergePathsForKitKatAndAbove}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_fileName com.example.thinkpad.lottitapply.test:lottie_fileName}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_imageAssetsFolder com.example.thinkpad.lottitapply.test:lottie_imageAssetsFolder}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_loop com.example.thinkpad.lottitapply.test:lottie_loop}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_progress com.example.thinkpad.lottitapply.test:lottie_progress}</code></td><td></td></tr> * <tr><td><code>{@link #LottieAnimationView_lottie_scale com.example.thinkpad.lottitapply.test:lottie_scale}</code></td><td></td></tr> * </table> * @see #LottieAnimationView_lottie_autoPlay * @see #LottieAnimationView_lottie_cacheStrategy * @see #LottieAnimationView_lottie_colorFilter * @see #LottieAnimationView_lottie_enableMergePathsForKitKatAndAbove * @see #LottieAnimationView_lottie_fileName * @see #LottieAnimationView_lottie_imageAssetsFolder * @see #LottieAnimationView_lottie_loop * @see #LottieAnimationView_lottie_progress * @see #LottieAnimationView_lottie_scale */ public static final int[] LottieAnimationView={ 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_autoPlay} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.thinkpad.lottitapply.test:lottie_autoPlay */ public static final int LottieAnimationView_lottie_autoPlay=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_cacheStrategy} * attribute's value can be found in the {@link #LottieAnimationView} 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>strong</td><td>2</td><td></td></tr> * <tr><td>weak</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.thinkpad.lottitapply.test:lottie_cacheStrategy */ public static final int LottieAnimationView_lottie_cacheStrategy=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_colorFilter} * attribute's value can be found in the {@link #LottieAnimationView} 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.thinkpad.lottitapply.test:lottie_colorFilter */ public static final int LottieAnimationView_lottie_colorFilter=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_enableMergePathsForKitKatAndAbove} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.thinkpad.lottitapply.test:lottie_enableMergePathsForKitKatAndAbove */ public static final int LottieAnimationView_lottie_enableMergePathsForKitKatAndAbove=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_fileName} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.thinkpad.lottitapply.test:lottie_fileName */ public static final int LottieAnimationView_lottie_fileName=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_imageAssetsFolder} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.thinkpad.lottitapply.test:lottie_imageAssetsFolder */ public static final int LottieAnimationView_lottie_imageAssetsFolder=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_loop} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.thinkpad.lottitapply.test:lottie_loop */ public static final int LottieAnimationView_lottie_loop=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_progress} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.thinkpad.lottitapply.test:lottie_progress */ public static final int LottieAnimationView_lottie_progress=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.R.attr#lottie_scale} * attribute's value can be found in the {@link #LottieAnimationView} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.thinkpad.lottitapply.test:lottie_scale */ public static final int LottieAnimationView_lottie_scale=8; /** * 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.thinkpad.lottitapply.test:actionLayout}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.example.thinkpad.lottitapply.test:actionProviderClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.example.thinkpad.lottitapply.test:actionViewClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.example.thinkpad.lottitapply.test:alphabeticModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.example.thinkpad.lottitapply.test:contentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.example.thinkpad.lottitapply.test:iconTint}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.example.thinkpad.lottitapply.test:iconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.example.thinkpad.lottitapply.test:numericModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.example.thinkpad.lottitapply.test:showAsAction}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.example.thinkpad.lottitapply.test: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, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f020056, 0x7f020081, 0x7f020082, 0x7f0200d1, 0x7f0200ec, 0x7f020125 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:iconTint */ public static final int MenuItem_iconTint=18; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:preserveIconSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.example.thinkpad.lottitapply.test: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, 0x7f0200dd, 0x7f0200f7 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subMenuArrow */ public static final int MenuView_subMenuArrow=8; /** * 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.thinkpad.lottitapply.test: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, 0x7f0200d2 }; /** * 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.thinkpad.lottitapply.test:state_above_anchor}</code></td><td></td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f0200f6 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:paddingBottomNoButtons}</code></td><td></td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.example.thinkpad.lottitapply.test:paddingTopNoTitle}</code></td><td></td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f0200d3, 0x7f0200d6 }; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle=1; /** * 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.thinkpad.lottitapply.test:closeIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.example.thinkpad.lottitapply.test:commitIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.example.thinkpad.lottitapply.test:defaultQueryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_goIcon com.example.thinkpad.lottitapply.test:goIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.thinkpad.lottitapply.test:iconifiedByDefault}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_layout com.example.thinkpad.lottitapply.test:layout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.example.thinkpad.lottitapply.test:queryBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryHint com.example.thinkpad.lottitapply.test:queryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.example.thinkpad.lottitapply.test:searchHintIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.example.thinkpad.lottitapply.test:searchIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.example.thinkpad.lottitapply.test:submitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.thinkpad.lottitapply.test:suggestionRowLayout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.example.thinkpad.lottitapply.test: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, 0x7f020045, 0x7f020054, 0x7f02005f, 0x7f02007b, 0x7f020083, 0x7f020089, 0x7f0200e0, 0x7f0200e1, 0x7f0200e6, 0x7f0200e7, 0x7f0200f8, 0x7f0200fd, 0x7f020129 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:goIcon */ public static final int SearchView_goIcon=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:layout */ public static final int SearchView_layout=9; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:queryHint */ public static final int SearchView_queryHint=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * 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.thinkpad.lottitapply.test: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, 0x7f0200db }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:showText}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.example.thinkpad.lottitapply.test:splitTrack}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.thinkpad.lottitapply.test:switchMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.example.thinkpad.lottitapply.test:switchPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.thinkpad.lottitapply.test:switchTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.thinkpad.lottitapply.test:thumbTextPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.example.thinkpad.lottitapply.test:thumbTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.thinkpad.lottitapply.test:thumbTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_track com.example.thinkpad.lottitapply.test:track}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.example.thinkpad.lottitapply.test:trackTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.thinkpad.lottitapply.test: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, 0x7f0200ee, 0x7f0200f4, 0x7f0200fe, 0x7f0200ff, 0x7f020101, 0x7f02010f, 0x7f020110, 0x7f020111, 0x7f020126, 0x7f020127, 0x7f020128 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:showText */ public static final int SwitchCompat_showText=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:track */ public static final int SwitchCompat_track=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * 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.thinkpad.lottitapply.test:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.example.thinkpad.lottitapply.test: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, 0x7f020071, 0x7f020102 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * 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.thinkpad.lottitapply.test:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.thinkpad.lottitapply.test:collapseContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.example.thinkpad.lottitapply.test:collapseIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.thinkpad.lottitapply.test:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.thinkpad.lottitapply.test:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.thinkpad.lottitapply.test:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.example.thinkpad.lottitapply.test:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.example.thinkpad.lottitapply.test:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.thinkpad.lottitapply.test:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logo com.example.thinkpad.lottitapply.test:logo}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.example.thinkpad.lottitapply.test:logoDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.thinkpad.lottitapply.test:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.thinkpad.lottitapply.test:navigationContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.example.thinkpad.lottitapply.test:navigationIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.example.thinkpad.lottitapply.test:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.example.thinkpad.lottitapply.test:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.thinkpad.lottitapply.test:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.thinkpad.lottitapply.test:subtitleTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_title com.example.thinkpad.lottitapply.test:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.example.thinkpad.lottitapply.test:titleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.thinkpad.lottitapply.test:titleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.thinkpad.lottitapply.test:titleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.example.thinkpad.lottitapply.test:titleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.example.thinkpad.lottitapply.test:titleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.example.thinkpad.lottitapply.test:titleMargins}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.thinkpad.lottitapply.test:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.example.thinkpad.lottitapply.test: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, 0x7f02003d, 0x7f020047, 0x7f020048, 0x7f020057, 0x7f020058, 0x7f020059, 0x7f02005a, 0x7f02005b, 0x7f02005c, 0x7f0200c0, 0x7f0200c1, 0x7f0200cb, 0x7f0200ce, 0x7f0200cf, 0x7f0200db, 0x7f0200f9, 0x7f0200fa, 0x7f0200fb, 0x7f020117, 0x7f020118, 0x7f020119, 0x7f02011a, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:logo */ public static final int Toolbar_logo=11; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:title */ public static final int Toolbar_title=20; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleMargins */ public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test:paddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingStart com.example.thinkpad.lottitapply.test:paddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #View_theme com.example.thinkpad.lottitapply.test: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, 0x7f0200d4, 0x7f0200d5, 0x7f02010d }; /** * 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.thinkpad.lottitapply.test:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.thinkpad.lottitapply.test:backgroundTintMode}</code></td><td></td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f020034, 0x7f020035 }; /** * <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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test: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.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:paddingEnd */ public static final int View_paddingEnd=2; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:paddingStart */ public static final int View_paddingStart=3; /** * <p>This symbol is the offset where the {@link com.example.thinkpad.lottitapply.test.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.thinkpad.lottitapply.test:theme */ public static final int View_theme=4; } }
[ "guowg5@ziroom.com" ]
guowg5@ziroom.com
a8c45eb6a97b5e6a34be6cc187e23a5f1f7739bb
f39f6a0790b9b4255ba792538e97c5dc73a1af27
/jb-code-sharing/src/com/lw/boc/code/sharing/lulu/java-lessons4/com/lulu/datetime/DateTimeTest04.java
dc7d84724b9186d21ad7bfb40d6da46a70adc1c5
[]
no_license
lw-be/boc-code-sharing
3d09259c4aaafdd34e192543d88454616fdd8a0a
8ac6819f5c28163845f73ac8a3fb94b2a530d6d7
refs/heads/master
2020-09-07T18:57:06.093147
2020-05-09T08:51:06
2020-05-09T08:51:06
220,883,980
2
0
null
null
null
null
UTF-8
Java
false
false
721
java
package com.lulu.datetime; import java.time.DayOfWeek; import java.time.LocalDateTime; import java.time.temporal.TemporalAdjusters; /** * TemporalAdjuster 时间校正器 * TemporalAdjusters TemporalAdjuster的实现 */ public class DateTimeTest04 { public static void main(String[] args) { LocalDateTime now = LocalDateTime.now(); // 一月中最后一个 周几 是哪天 System.out.println(now.with(TemporalAdjusters.lastInMonth(DayOfWeek.MONDAY))); // 一月中第一个 周几 是哪天 System.out.println(now.with(TemporalAdjusters.firstInMonth(DayOfWeek.SATURDAY))); // 下一个 周几 是哪天 System.out.println(now.with(TemporalAdjusters.next(DayOfWeek.FRIDAY))); } }
[ "lulu@lvwan.com" ]
lulu@lvwan.com
6769cf2496a6a6f3341baf27d071f05f3d4ebd83
1a10310379cc5a228148b3b3796bd32011d07bb3
/hanxi/src/main/java/com/bcjd/hanxi/commom/DataUtils.java
14d482acfc36d3acbd20f290e25a74b1c699c4d8
[]
no_license
Sandiey-CC/hanxi
7f1d9955e3692107f7525317ef539679afa841b3
7e51b2e29967c19f3cda699ee2954e5415da4019
refs/heads/master
2022-12-15T00:14:13.677890
2020-09-01T04:48:24
2020-09-01T04:48:24
291,892,005
0
1
null
null
null
null
UTF-8
Java
false
false
879
java
package com.bcjd.hanxi.commom; import java.math.BigDecimal; import java.text.DateFormat; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.UUID; public class DataUtils { //价格规范 public static String formatPrice(BigDecimal price) { DecimalFormat df = new DecimalFormat("#,###.00"); String xs = df.format(price); return xs; } //简单日期 public static String getFormatDate(Date date) { DateFormat df = new SimpleDateFormat("yyyy-MM-dd"); return df.format(date); } //生成32位唯一序列(UUID) public static String getUUID() { return UUID.randomUUID().toString().replace("-", ""); } //生成随机3位字符 public static String getRandomCode() { return getUUID().substring(0, 3).toUpperCase(); } }
[ "1121480319@qq.com" ]
1121480319@qq.com
3841665ac74fd15d47b8b1f55f0f2b7822c86dca
58da62dfc6e145a3c836a6be8ee11e4b69ff1878
/src/main/java/com/alipay/api/response/AlipayFundTransBatchCreateorderResponse.java
7870c40051dbff346989634a5dbbcba0abaa197d
[ "Apache-2.0" ]
permissive
zhoujiangzi/alipay-sdk-java-all
00ef60ed9501c74d337eb582cdc9606159a49837
560d30b6817a590fd9d2c53c3cecac0dca4449b3
refs/heads/master
2022-12-26T00:27:31.553428
2020-09-07T03:39:05
2020-09-07T03:39:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,149
java
package com.alipay.api.response; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.fund.trans.batch.createorder response. * * @author auto create * @since 1.0, 2019-01-07 20:51:15 */ public class AlipayFundTransBatchCreateorderResponse extends AlipayResponse { private static final long serialVersionUID = 6523793685535335513L; /** * 业务类型 */ @ApiField("biz_type") private String bizType; /** * 扩展信息;创建付款单时传入的相关数据 */ @ApiField("ext_param") private String extParam; /** * 单据号 */ @ApiField("transfer_no") private String transferNo; public void setBizType(String bizType) { this.bizType = bizType; } public String getBizType( ) { return this.bizType; } public void setExtParam(String extParam) { this.extParam = extParam; } public String getExtParam( ) { return this.extParam; } public void setTransferNo(String transferNo) { this.transferNo = transferNo; } public String getTransferNo( ) { return this.transferNo; } }
[ "ben.zy@antfin.com" ]
ben.zy@antfin.com
1085e049e67a34bcbe2878a1658a394cd831789f
10462ada75188c7e6a18815b54856323d5cac76e
/src/com/codecool/termlib/Game.java
e946015cf020aa8d41d263bf356cb195ca40b05c
[]
no_license
CodecoolGlobal/freestyle-project-java-vanity-fair
7ebde017c4f1f7479c3254c54ef51b0bd9a3f486
43127e3fd312f55ac42cd64f7a538ba949e198ae
refs/heads/master
2022-10-04T00:53:51.378817
2020-06-08T15:42:23
2020-06-08T15:42:23
266,711,062
0
0
null
null
null
null
UTF-8
Java
false
false
11,632
java
package com.codecool.termlib; import java.util.Arrays; import java.util.Scanner; public class Game implements GameInterface { private int[][] board; private int nRows; private int nCols; private Terminal terminal; private int player; private int moveCounter; private boolean userQuit; private int[] move; // move[0] = row; move[1] = col /** * Build new board with nRows x nCols dimensions * * @param nRows rows number * @param nCols cols number */ public Game(int nRows, int nCols) { this.nRows = nRows; this.nCols = nCols; this.board = new int[nRows][nCols]; player = 1; moveCounter = 0; terminal = new Terminal(); userQuit = false; for (int row = 0; row < nRows; ++row) { for (int col = 0; col < nCols; ++col) { this.board[row][col] = 0; } } } /** * Board getter * * @return game board */ public int[][] getBoard() { return board; } /** * Board setter * * @param board // game board */ public void setBoard(int[][] board) { this.board = board; } /** * Asks for user input and returns the coordinates of a valid move on board. * * @param player number of player (1 or 2) * @return array of 2 int [row, col] */ public int[] getMove(int player) { move = new int[2]; // move[0] = row; move[1] = col move[0] = -1; move[1] = -1; boolean wrongUserInput = true; Scanner scan = new Scanner(System.in); while (wrongUserInput) { System.out.printf("Player %d choice: ", player); String userInput = scan.nextLine().toUpperCase(); if (userInput.equals("QUIT")) { userQuit = true; break; } wrongUserInput = false; //get valid row try { char rowChar = userInput.charAt(0); if (rowChar >= 'A' && rowChar <= 'Z') { move[0] = rowChar - 'A'; } else { wrongUserInput = true; } } catch (Exception e) { wrongUserInput = true; } //get valid col try { move[1] = Integer.parseInt(userInput.substring(1)) - 1; } catch (Exception e) { wrongUserInput = true; } //check if move on board if (move[0] < 0 || move[0] > nRows - 1 || move[1] < 0 || move[1] > nCols - 1) { wrongUserInput = true; } //check if position free if (!wrongUserInput && board[move[0]][move[1]] != 0) { wrongUserInput = true; } if (wrongUserInput) { System.out.println("Wrong coordinates! Please try again!"); } } return move; } public int[] getAiMove(int player) { return null; } /** * Writes the value of player (a 1 or 2) into the row & col element of the board * * @param player number of player (1 or 2) * @param row line number * @param col column number */ public void mark(int player, int row, int col) { if (row >= 0 && row < nRows && col >= 0 && col < nCols && board[row][col] == 0) { board[row][col] = player; moveCounter++; } } /** * Returns true if player (of value 1 or 2) has howMany marks in a row on the board * * @param player (X or O) * @param howMany default is 5 * @return boolean */ public boolean hasWon(int player, int howMany) { int row = move[0]; int col = move[1]; int winCounter = 1; // check victory for rows for (int i = col + 1; i < nCols && board[row][i] == player; i++) { winCounter++; } for (int i = col - 1; i >= 0 && board[row][i] == player; i--) { winCounter++; } if (winCounter >= howMany) { for (int i = col + 1; i < nCols && board[row][i] == player; i++) { if (player == 1) { board[row][i] = 3; } else { board[row][i] = 4; } } for (int i = col - 1; i >= 0 && board[row][i] == player; i--) { if (board[row][i] == player) { if (player == 1) { board[row][i] = 3; } else { board[row][i] = 4; } } } if (board[row][col] == 1) { board[row][col] = 3; } else { board[row][col] = 4; } return true; } // check victory for cols winCounter = 1; for (int i = row + 1; i < nRows && board[i][col] == player; i++) { winCounter++; } for (int i = row - 1; i >= 0 && board[i][col] == player; i--) { winCounter++; } if (winCounter >= howMany) { for (int i = row + 1; i < nRows && board[i][col] == player; i++) { if (board[i][col] == 1) { board[i][col] = 3; } else { board[i][col] = 4; } } for (int i = row - 1; i >= 0 && board[i][col] == player; i--) { if (board[i][col] == 1) { board[i][col] = 3; } else { board[i][col] = 4; } } if (board[row][col] == 1) { board[row][col] = 3; } else { board[row][col] = 4; } return true; } // check victory for main diagonal winCounter = 1; for (int i = row + 1, j = col + 1; i < nRows && j < nCols && board[i][j] == player; i++, j++) { winCounter++; } for (int i = row - 1, j = col - 1; i >= 0 && j >= 0 && board[i][j] == player; i--, j--) { winCounter++; } if (winCounter >= howMany) { for (int i = row + 1, j = col + 1; i < nRows && j < nCols && board[i][j] == player; i++, j++) { if (board[i][j] == 1) { board[i][j] = 3; } else { board[i][j] = 4; } } for (int i = row - 1, j = col - 1; i >= 0 && j >= 0 && board[i][j] == player; i--, j--) { if (board[i][j] == 1) { board[i][j] = 3; } else { board[i][j] = 4; } } if (board[row][col] == 1) { board[row][col] = 3; } else { board[row][col] = 4; } return true; } // check victory for secondary diagonal winCounter = 1; for (int i = row + 1, j = col - 1; i < nRows && j >= 0 && board[i][j] == player; i++, j--) { winCounter++; } for (int i = row - 1, j = col + 1; i >= 0 && j < nCols && board[i][j] == player; i--, j++) { winCounter++; } if (winCounter >= howMany) { for (int i = row + 1, j = col - 1; i < nRows && j >= 0 && board[i][j] == player; i++, j--) { if (board[i][j] == 1) { board[i][j] = 3; } else { board[i][j] = 4; } } for (int i = row - 1, j = col + 1; i >= 0 && j < nCols && board[i][j] == player; i--, j++) { if (board[i][j] == 1) { board[i][j] = 3; } else { board[i][j] = 4; } } if (board[row][col] == 1) { board[row][col] = 3; } else { board[row][col] = 4; } return true; } return false; } /** * Returns true if the board is full. * * @return boolean */ public boolean isFull() { return moveCounter == nRows * nCols; } /** * Prints the board on the screen */ public void printBoard() { // clears old screen this.terminal.clearScreen(); this.terminal.moveTo(0, 0); // prints cols numbers for (int col = 0; col < this.nCols; ++col) { System.out.printf("%3d", col + 1); } // prints table for (int row = 0; row < this.nRows; ++row) { System.out.printf("\n%c", 'A' + row); for (int col = 0; col < this.nCols; ++col) { if (this.board[row][col] == 0) { System.out.print(" . "); } else if (this.board[row][col] == 1) { terminal.setColor(Color.BLUE); System.out.print(" X "); terminal.resetStyle(); } else if (this.board[row][col] == 2) { terminal.setColor(Color.YELLOW); System.out.print(" O "); terminal.resetStyle(); } else if (this.board[row][col] == 3) { terminal.setColor(Color.BLUE); terminal.setStyle(Attribute.UNDERSCORE); terminal.setStyle(Attribute.ITALIC); System.out.print(" X "); terminal.resetStyle(); } else { terminal.setColor(Color.YELLOW); terminal.setStyle(Attribute.UNDERSCORE); terminal.setStyle(Attribute.ITALIC); System.out.print(" O "); terminal.resetStyle(); } } } System.out.println("\n"); } /** * Displays the result of the game. * * @param player winner */ public void printResult(int player) { if (!userQuit) { if (isFull()) { System.out.println("It's a tie!"); } else if (player == 1) { System.out.println("X won!"); } else { System.out.println("O won!"); } } } public void enableAi(int player) { } /** * Runs a whole 2-players game. Parameter howMany sets the win condition of the game * * @param howMany elements in a winning line */ public void play(int howMany) { int winner = 0; // game loop while (!isFull()) { printBoard(); // get player next move move = getMove(player); if (userQuit) { break; } mark(player, move[0], move[1]); // check winning if (hasWon(player, howMany)) { printBoard(); winner = player; printResult(winner); Scanner scan = new Scanner(System.in); System.out.print("Press any key to return to main menu: "); boolean userInput = scan.hasNext(); if (userInput) { break; } } // change player if (player == 1) { player = 2; } else { player = 1; } } } }
[ "tudor.ist@gmail.com" ]
tudor.ist@gmail.com
e225b84c771b33f43eadf36ca4cd56aa082df189
396bc8a8aca710b70ef1a47962b78a09d69cbe87
/test.java
c727ad37a9cc05223328e612e3967d4bc3f43cf1
[]
no_license
8788808434/GitPractice
12b2ab86abb464e0c9dd4d53e9b3632f1b172e55
9ff27c58c9b7c6af13e4a6ac883c298792733721
refs/heads/master
2020-07-03T12:40:43.955441
2019-08-12T11:01:02
2019-08-12T11:01:02
201,907,255
0
0
null
null
null
null
UTF-8
Java
false
false
74
java
class Test{ public void m1(){ System.out.println("Hello Method m1"); } }
[ "Avinash" ]
Avinash
a75b4130f1833dd01d1b884449c75081c6fd3ba4
8b87b240a5f42302250e1a7af24bf42ce4e8e30b
/src/com/xiangfa/logssystem/dao/mysqlimpl/ProjectDao.java
534d1ec6672c9a9828e4cdbb2fab0c0413e14ddf
[]
no_license
ConstructionNoteSystem/ConstructionNote
87978b52fcbd705dc5b50d12fcafe2dc984e0994
f8b403ccdba1c475564fca826e814c0ae33a8ee3
refs/heads/master
2021-01-10T19:23:21.923354
2014-07-14T16:25:48
2014-07-14T16:25:48
null
0
0
null
null
null
null
GB18030
Java
false
false
4,933
java
package com.xiangfa.logssystem.dao.mysqlimpl; import java.io.Serializable; import java.sql.Connection; import java.sql.Date; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Savepoint; import java.util.ArrayList; import java.util.List; import com.xiangfa.logssystem.dao.IProjectDao; import com.xiangfa.logssystem.entity.Project; import com.xiangfa.logssystem.entity.RecordItem; public class ProjectDao extends BaseDao<Project> implements IProjectDao { /** * 查询工程信息 * @param 所属用户编号 * @param 分页信息 * @return 工程列表 */ private List<Project> listProjects(Serializable uid,Date maxDate, Date minDate) { String sql = "select p.pid,p.projectName from project p " + " where userId=? " ; sql+=" order by createDate desc "; PreparedStatement psmt = null; List<Project> projects = null; try { psmt = super.getStatement(sql); psmt.setInt(1, (Integer) uid); ResultSet rs = psmt.executeQuery(); projects = new ArrayList<Project>(); Project p = null; while(rs.next()){ p = new Project(); p.setPid(rs.getInt(1)); p.setProjectName(rs.getString(2)); projects.add(p); } for(Project ps : projects){ Connection conn = psmt.getConnection(); psmt = null; rs = null; psmt = conn.prepareStatement("select ritemId,ritemName from RecordItem where pid=?"); psmt.setInt(1, ps.getPid()); rs = psmt.executeQuery(); RecordItem item = null; while(rs.next()){ item = new RecordItem(); item.setRitemId(rs.getInt(1)); item.setRitemName(rs.getString(2)); ps.getRecordItems().add(item); } } //关闭ResultSet rs.close(); } catch (Exception e) { }finally{ super.close(psmt); } return projects; } @Override public List<Project> listProjects(Serializable uid) { return listProjects(uid,null,null); } @Override public boolean add(Project c) throws Exception { String sql = "insert into Project (userId,projectName,buildingUnits,workingSpace,designUnits,constructionUnits" + ",supervisingUnits,superviserName,createDate) values" + "(?,?,?,?,?,?,?,?,?)"; return super.add(sql, c); } @Override public boolean delete(Serializable oid) { String sql = "delete from Project where pid=?"; //如果工程有分类,但没有日志,直接删除 if(!super.delete(sql, oid)){ return deleteCascadeRecordItem(oid); } return true; } /** * * @param oid * @param cascadeRecordItem * @return */ private boolean deleteCascadeRecordItem(Serializable oid){ PreparedStatement psmt = null; Savepoint sp = null; Connection conn = null; try { psmt = super.getStatement(""); conn = psmt.getConnection(); conn.setAutoCommit(false); psmt = null; sp = conn.setSavepoint(); String sql = "delete from RecordItem where pid=?"; psmt = conn.prepareStatement(sql); psmt.setInt(1, (Integer) oid); if(psmt.executeUpdate()==0){ conn.rollback(sp); return false; } psmt = null; String sql2 = "delete from Project where pid=?"; psmt = conn.prepareStatement(sql2); psmt.setInt(1, (Integer) oid); if(psmt.executeUpdate()==0){ conn.rollback(sp); return false; } return true; } catch (Exception e) { if(null!=sp){ try { conn.rollback(sp); } catch (SQLException e1) { } } return false; }finally{ super.close(psmt); } } @Override public boolean update(Project c) throws Exception { String sql = "update Project set projectName=?,buildingUnits=?,constructionUnits=?" + ",workingSpace=?,designUnits=?,supervisingUnits=?,superviserName=?" + ",createDate=? where pid=?"; return super.update(sql, c); } @Override public Project get(Serializable pid) { String sql = "select pid,projectName,buildingUnits,constructionUnits,createDate,designUnits" + ",superviserName,supervisingUnits,workingSpace from Project where pid=?"; PreparedStatement psmt = null; try { psmt = super.getStatement(sql); psmt.setInt(1, (Integer) pid); ResultSet rs = psmt.executeQuery(); if(rs.next()){ Project p = new Project(); p.setPid(rs.getInt(1)); p.setProjectName(rs.getString(2)); p.setBuildingUnits(rs.getString(3)); p.setConstructionUnits(rs.getString(4)); p.setCreateDate(rs.getDate(5)); p.setDesignUnits(rs.getString(6)); p.setSuperviserName(rs.getString(7)); p.setSupervisingUnits(rs.getString(8)); p.setWorkingSpace(rs.getString(9)); return p; } rs.close(); } catch (Exception e) { } return null; } @Override public Serializable add(Serializable p) throws Exception { if(add((Project)p)) return super.getGenerateKey(); return -1; } @Override public List<Project> listProjectsByDateScope(Serializable uid, Date maxDate, Date minDate) { return listProjects(uid,maxDate,minDate); } }
[ "willower@qq.com" ]
willower@qq.com
5b4cc70cc8691f2dbad168464c6dbe36fb80519d
0b7b6b5c62545bb65cb67b6533011f45d568b60a
/SmartMenu_Shop/app/src/main/java/com/example/luyan/smartmenu_shop/Metadata/USERITEM.java
7985ee1e7fe76ee9c4e0a4378a70f6fc1d939cc4
[]
no_license
luyanisme/smart-menu-android-shop
d14199968cfef57cabc9e3a8700f36bf07815462
fd8e8344c035aa7ef6ec21644dbf7b625806b82d
refs/heads/master
2020-09-04T11:30:02.810157
2017-12-08T06:01:03
2017-12-08T06:01:03
94,409,670
0
0
null
null
null
null
UTF-8
Java
false
false
1,255
java
package com.example.luyan.smartmenu_shop.Metadata; import android.os.Parcel; import android.os.Parcelable; /** * Created by luyan on 28/08/2017. */ public class USERITEM implements Parcelable { private String username; private String password; public USERITEM(Parcel in) { username = in.readString(); password = in.readString(); } public USERITEM() { } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(username); dest.writeString(password); } @Override public int describeContents() { return 0; } public static final Creator<USERITEM> CREATOR = new Creator<USERITEM>() { @Override public USERITEM createFromParcel(Parcel in) { return new USERITEM(in); } @Override public USERITEM[] newArray(int size) { return new USERITEM[size]; } }; 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; } }
[ "297523939@qq.com" ]
297523939@qq.com
934a7987f73d7e8ce7a2c1fc8215a6f97c0656e0
bd61361f4eeb4ea60a365c618695a0017989c76f
/app/src/main/java/adapter/notes_adapter.java
94623918bf7072437f6a57decdfe065b1923479c
[]
no_license
sagar632/cots
2c4462a5a5083d0d77c6de251b94f2cd0959606d
4245099a6e6004aa2dcb52fe4606d89c35760fd1
refs/heads/main
2023-08-27T20:07:40.822566
2021-11-07T05:51:51
2021-11-07T05:51:51
425,420,218
0
0
null
null
null
null
UTF-8
Java
false
false
2,167
java
package adapter; import android.support.annotation.NonNull; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import com.example.cots.R; import java.util.List; import model.notes; import model.project; public class notes_adapter extends RecyclerView.Adapter<notes_adapter.viewholder> { private final List<model.notes> projectList; private final notes_adapter.OnItemClickListener listener; public notes_adapter(List<model.notes> projectList,OnItemClickListener listener) { this.projectList = projectList; this.listener=listener; } public interface OnItemClickListener{ void OnItemClick(model.notes notes); } @NonNull @Override public viewholder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) { View view= LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.res_prooject_layout,viewGroup,false); return new viewholder(view); } @Override public void onBindViewHolder(@NonNull viewholder viewholder, int i) { String heading=projectList.get(i).getFaculty_name(); viewholder.setdata(heading); viewholder.bindi(projectList.get(i),listener); } @Override public int getItemCount() { return projectList.size(); } public class viewholder extends RecyclerView.ViewHolder{ public Button project_heading; public viewholder(@NonNull View itemView) { super(itemView); project_heading=itemView.findViewById(R.id.heading); } public void setdata(String heading_title){ project_heading.setText(heading_title); } public void bindi(final notes notes, final OnItemClickListener listener) { project_heading.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Log.d("jello","hello"); listener.OnItemClick(notes); } }); } } }
[ "sagar632aryal@gmail.com" ]
sagar632aryal@gmail.com
5cc56ae202ba8504cc073ac24d1b941d98e7ca54
a00326c0e2fc8944112589cd2ad638b278f058b9
/src/main/java/000/127/482/CWE134_Uncontrolled_Format_String__File_printf_68b.java
3f1a925baf8035faab47471eb98c44b5de2cdc1a
[]
no_license
Lanhbao/Static-Testing-for-Juliet-Test-Suite
6fd3f62713be7a084260eafa9ab221b1b9833be6
b095b11c7cb6d4a5bb2b76181e35d6ee00e96e68
refs/heads/master
2020-08-24T13:34:04.004149
2019-10-25T09:26:00
2019-10-25T09:26:00
216,822,684
0
1
null
2019-11-08T09:51:54
2019-10-22T13:37:13
Java
UTF-8
Java
false
false
1,680
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE134_Uncontrolled_Format_String__File_printf_68b.java Label Definition File: CWE134_Uncontrolled_Format_String.label.xml Template File: sources-sinks-68b.tmpl.java */ /* * @description * CWE: 134 Uncontrolled Format String * BadSource: File Read data from file (named c:\data.txt) * GoodSource: A hardcoded string * Sinks: printf * GoodSink: dynamic printf format with string defined * BadSink : dynamic printf without validation * Flow Variant: 68 Data flow: data passed as a member variable in the "a" class, which is used by a method in another class in the same package * * */ public class CWE134_Uncontrolled_Format_String__File_printf_68b { public void badSink() throws Throwable { String data = CWE134_Uncontrolled_Format_String__File_printf_68a.data; if (data != null) { /* POTENTIAL FLAW: uncontrolled string formatting */ System.out.printf(data); } } /* goodG2B() - use goodsource and badsink */ public void goodG2BSink() throws Throwable { String data = CWE134_Uncontrolled_Format_String__File_printf_68a.data; if (data != null) { /* POTENTIAL FLAW: uncontrolled string formatting */ System.out.printf(data); } } /* goodB2G() - use badsource and goodsink */ public void goodB2GSink() throws Throwable { String data = CWE134_Uncontrolled_Format_String__File_printf_68a.data; if (data != null) { /* FIX: explicitly defined string formatting */ System.out.printf("%s%n", data); } } }
[ "anhtluet12@gmail.com" ]
anhtluet12@gmail.com
1b9a98fca590ea89277449f472634de604c51e9e
b86639b319993c51287b9cbb40a1ccef6795bbf6
/src/main/java/com/baoyi/springbootdemo/config/WebConfig.java
c62d2f28fd5919e7940bd70b9d9b07d19f1fe0dd
[]
no_license
jamesbaoyi/springbootdemo
c598eeb3606eb366607645a93fb5eb09ba84bcd0
ce6faf68d9696b35862f98c292a36de7e69abd03
refs/heads/master
2020-05-09T13:57:59.473256
2019-04-28T14:51:46
2019-04-28T14:51:46
181,175,881
0
0
null
null
null
null
UTF-8
Java
false
false
804
java
package com.baoyi.springbootdemo.config; import com.baoyi.springbootdemo.web.UserModelMethodArgumentResolver; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import java.util.List; @Configuration public class WebConfig implements WebMvcConfigurer { @Override public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) { argumentResolvers.add(userModelMethodArgumentResolver()); } @Bean public UserModelMethodArgumentResolver userModelMethodArgumentResolver() { return new UserModelMethodArgumentResolver(); } }
[ "457237252@qq.com" ]
457237252@qq.com
6539759f7ac89821d22ddeee465151bb63e4ff25
45d94749ccbe10dc6dea5e8a40d5f391d6c98676
/app/src/main/java/com/example/drawernavigation/ui/home/HomeFragment.java
9f6d1e3bc08725a36e60d6defd33bb725fafdfcb
[]
no_license
eman-batool/drawer_navigation
72aaf4d1bca2039fb14e2c97e51f9682a7643c8c
0e94bc4fe781167a137b2912428437d210bf8bb2
refs/heads/master
2023-05-17T09:06:21.615083
2021-06-10T10:45:03
2021-06-10T10:45:03
375,660,106
0
0
null
null
null
null
UTF-8
Java
false
false
1,165
java
package com.example.drawernavigation.ui.home; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.fragment.app.Fragment; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProvider; import com.example.drawernavigation.R; public class HomeFragment extends Fragment { private HomeViewModel homeViewModel; public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { homeViewModel = new ViewModelProvider(this).get(HomeViewModel.class); View root = inflater.inflate(R.layout.fragment_home, container, false); final TextView textView = root.findViewById(R.id.text_home); homeViewModel.getText().observe(getViewLifecycleOwner(), new Observer<String>() { @Override public void onChanged(@Nullable String s) { textView.setText(s); } }); return root; } }
[ "bsef18a022@pucit.edu.pk" ]
bsef18a022@pucit.edu.pk
3257041298016f91cb5ef595478a7a70692a88a0
44f6bf098e5d5547168904174fe2458360d161c8
/org/omg/PortableInterceptor/ServerRequestInterceptorOperations.java
96816d9843495106b02c9dba72d08c00f1e090ad
[]
no_license
ltltlt/java-stdlib
b5019dbcc2effd212f6d9a6d16221c72001ede93
ef23e9ea7d2b16c9f653cad2e7739d55c38b25c8
refs/heads/master
2020-07-14T09:07:43.699139
2019-08-30T02:28:12
2019-08-30T02:28:12
205,289,342
0
0
null
null
null
null
UTF-8
Java
false
false
10,714
java
package org.omg.PortableInterceptor; /** * org/omg/PortableInterceptor/ServerRequestInterceptorOperations.java . * Generated by the IDL-to-Java compiler (portable), version "3.2" * from /build/openjdk-8-fPix8r/openjdk-8-8u212-b03/src/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl * Friday, April 26, 2019 2:04:44 AM UTC */ /** * Server-side request interceptor. * <p> * A request Interceptor is designed to intercept the flow of a * request/reply sequence through the ORB at specific points so that * services can query the request information and manipulate the service * contexts which are propagated between clients and servers. The primary * use of request Interceptors is to enable ORB services to transfer * context information between clients and servers. There are two types * of request Interceptors: client-side and server-side. * <p> * To write a server-side Interceptor, implement the * ServerRequestInterceptor interface. * * @see ServerRequestInfo */ public interface ServerRequestInterceptorOperations extends org.omg.PortableInterceptor.InterceptorOperations { /** * Allows the interceptor to process service context information. * <p> * At this interception point, Interceptors must get their service * context information from the incoming request transfer it to * <code>PortableInterceptor.Current</code>'s slots. * <p> * This interception point is called before the servant manager is called. * Operation parameters are not yet available at this point. This * interception point may or may not execute in the same thread as * the target invocation. * <p> * This interception point may throw a system exception. If it does, * no other Interceptors' <code>receive_request_service_contexts</code> * operations are called. Those Interceptors on the Flow Stack are * popped and their <code>send_exception</code> interception points are * called. * <p> * This interception point may also throw a <code>ForwardRequest</code> * exception. If an Interceptor throws this exception, no other * Interceptors' <code>receive_request_service_contexts</code> operations * are called. Those Interceptors on the Flow Stack are popped and * their <code>send_other</code> interception points are called. * <p> * Compliant Interceptors shall properly follow * <code>completion_status</code> semantics if they throw a system * exception from this interception point. The * <code>completion_status</code> shall be COMPLETED_NO. * * @param ri Information about the current request being intercepted. * @exception ForwardRequest If thrown, indicates to the ORB that a * retry of the request should occur with the new object given in * the exception. */ void receive_request_service_contexts (org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest; /** * Allows an Interceptor to query request information after all the * information, including operation parameters, are available. This * interception point shall execute in the same thread as the target * invocation. * <p> * In the DSI model, since the parameters are first available when * the user code calls <code>arguments</code>, <code>receive_request</code> * is called from within <code>arguments</code>. It is possible that * <code>arguments</code> is not called in the DSI model. The target * may call <code>set_exception</code> before calling * <code>arguments</code>. The ORB shall guarantee that * <code>receive_request</code> is called once, either through * <code>arguments</code> or through <code>set_exception</code>. If it * is called through <code>set_exception</code>, requesting the * arguments will result in <code>NO_RESOURCES</code> being thrown with * a standard minor code of 1. * <p> * This interception point may throw a system exception. If it does, no * other Interceptors' <code>receive_request</code> operations are * called. Those Interceptors on the Flow Stack are popped and their * <code>send_exception</code> interception points are called. * <p> * This interception point may also throw a <code>ForwardRequest</code> * exception. If an Interceptor throws this exception, no other * Interceptors' <code>receive_request</code> operations are called. * Those Interceptors on the Flow Stack are popped and their * <code>send_other</code> interception points are called. * <p> * Compliant Interceptors shall properly follow * <code>completion_status</code> semantics if they throw a system * exception from this interception point. The * <code>completion_status</code> shall be <code>COMPLETED_NO</code>. * * @param ri Information about the current request being intercepted. * @exception ForwardRequest If thrown, indicates to the ORB that a * retry of the request should occur with the new object given in * the exception. */ void receive_request (org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest; /** * Allows an Interceptor to query reply information and modify the * reply service context after the target operation has been invoked * and before the reply is returned to the client. This interception * point shall execute in the same thread as the target invocation. * <p> * This interception point may throw a system exception. If it does, * no other Interceptors' <code>send_reply</code> operations are called. * The remaining Interceptors in the Flow Stack shall have their * <code>send_exception</code> interception point called. * <p> * Compliant Interceptors shall properly follow * <code>completion_status</code> semantics if they throw a * system exception from this interception point. The * <code>completion_status</code> shall be <code>COMPLETED_YES</code>. * * @param ri Information about the current request being intercepted. */ void send_reply (org.omg.PortableInterceptor.ServerRequestInfo ri); /** * Allows an Interceptor to query the exception information and modify * the reply service context before the exception is thrown to the client. * When an exception occurs, this interception point is called. This * interception point shall execute in the same thread as the target * invocation. * <p> * This interception point may throw a system exception. This has the * effect of changing the exception which successive Interceptors * popped from the Flow Stack receive on their calls to * <code>send_exception</code>. The exception thrown to the client will * be the last exception thrown by an Interceptor, or the original * exception if no Interceptor changes the exception. * <p> * This interception point may also throw a <code>ForwardRequest</code> * exception. If an Interceptor throws this exception, no other * Interceptors' <code>send_exception</code> operations are called. The * remaining Interceptors in the Flow Stack shall have their * <code>send_other</code> interception points called. * <p> * If the <code>completion_status</code> of the exception is not * <code>COMPLETED_NO</code>, then it is inappropriate for this * interception point to throw a <code>ForwardRequest</code> exception. * The request's at-most-once semantics would be lost. * <p> * Compliant Interceptors shall properly follow * <code>completion_status</code> semantics if they throw a system * exception from this interception point. If the original exception * is a system exception, the <code>completion_status</code> of the new * exception shall be the same as on the original. If the original * exception is a user exception, then the <code>completion_status</code> * of the new exception shall be <code>COMPLETED_YES</code>. * * @param ri Information about the current request being intercepted. * @exception ForwardRequest If thrown, indicates to the ORB that a * retry of the request should occur with the new object given in * the exception. */ void send_exception (org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest; /** * Allows an Interceptor to query the information available when a * request results in something other than a normal reply or an * exception. For example, a request could result in a retry * (e.g., a GIOP Reply with a <code>LOCATION_FORWARD</code> status was * received). This interception point shall execute in the same thread * as the target invocation. * <p> * This interception point may throw a system exception. If it does, * no other Interceptors' <code>send_other</code> operations are called. * The remaining Interceptors in the Flow Stack shall have their * <code>send_exception</code> interception points called. * <p> * This interception point may also throw a <code>ForwardRequest</code> * exception. If an Interceptor throws this exception, successive * Interceptors' <code>send_other</code> operations are called with * the new information provided by the <code>ForwardRequest</code> * exception. * <p> * Compliant Interceptors shall properly follow * <code>completion_status</code> semantics if they throw a system * exception from this interception point. The * <code>completion_status</code> shall be <code>COMPLETED_NO</code>. * * @param ri Information about the current request being intercepted. * @exception ForwardRequest If thrown, indicates to the ORB that a * retry of the request should occur with the new object given in * the exception. */ void send_other (org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest; } // interface ServerRequestInterceptorOperations
[ "liutaiyuan@xiaomi.com" ]
liutaiyuan@xiaomi.com
8ea1ea0ecb8db63c1db1476dd21beac25ea6888a
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/14/14_385d4745a3ae28e4eea9d96d977ffd08a69fcbc4/menuBarObjects/14_385d4745a3ae28e4eea9d96d977ffd08a69fcbc4_menuBarObjects_s.java
56463e6bf912c38b46a96c741c9dbf715e9ca241
[]
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,175
java
import java.awt.AWTException; import java.awt.Color; import java.awt.MenuItem; import java.awt.PopupMenu; import java.awt.SystemTray; import java.awt.TrayIcon; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class menuBarObjects { public static TrayIcon trayIcon; public static PopupMenu popup; public static SystemTray tray; static MenuItem onoff; static MenuItem pref; static MenuItem quit; public static void setImage(String s, Color t){ trayIcon.setImage(textToImage.getImage(s,t)); } public static void initTray(){ popup = new PopupMenu(); trayIcon = new TrayIcon(textToImage.getImage(" PAUSE" , Color.BLACK/*Pref.getPauseColor()*/)); tray = SystemTray.getSystemTray(); pref = new MenuItem("Preferences"); onoff = new MenuItem("Start Pinging"); quit = new MenuItem("Quit"); addListeners(); popup.add(onoff); popup.addSeparator(); popup.add(pref); popup.addSeparator(); popup.add(quit); trayIcon.setPopupMenu(popup); trayIcon.setImageAutoSize(true); try { tray.add(trayIcon); } catch (AWTException e) { System.out.println("TrayIcon could not be added."); } } public static void addListeners(){ quit.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { tray.remove(trayIcon); System.exit(0); } }); onoff.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { PingMonitorTool.togglePinger(); } }); pref.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { PreferenceGUIWindow.main(null); } }); } public static void pingLabel_isStarted(boolean rr){ if (rr==true){ onoff.setLabel("Stop Pinging"); }else{ onoff.setLabel("Start Pinging"); } } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
1233e2ac3b9a5601520ba21b405d060c40260163
e29070dce8a5699969d1aafa8f013e8983d09483
/src/main/java/com/example/demo/controller/InvoiceController.java
940586129741dc9b2cfe48c56646c83ee8767201
[]
no_license
petunokido/FinalProjectTeam5-
070570c6bf7e6ce12a8335996b0f0cb2c9805be7
83f6817ac438882b38d7e2f51160e6a0c8d67f0c
refs/heads/master
2023-08-31T17:19:52.722468
2021-11-03T16:18:55
2021-11-03T16:18:55
423,856,501
0
1
null
2021-11-02T16:48:57
2021-11-02T13:33:33
Java
UTF-8
Java
false
false
1,360
java
package com.example.demo.controller; import com.example.demo.request.InvoiceRequest; import com.example.demo.model.Invoice; import com.example.demo.service.InvoiceService; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.Authorization; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; @RestController public class InvoiceController { @Autowired InvoiceService invoiceService; //Get all Invoices @ApiOperation(value = "Update registration detail", authorizations = { @Authorization(value="basicAuth") }) @GetMapping("/invoices") public List<Invoice> getAllInvoices() { return invoiceService.getAllInvoice();} //Get Invoice by Id @ApiOperation(value = "Update registration detail", authorizations = { @Authorization(value="basicAuth") }) @GetMapping("/invoices/{id}") public Invoice getInvoiceById(int invoiceid) { return invoiceService.getInvoiceById(invoiceid);} //Create new Invoice @ApiOperation(value = "Update registration detail", authorizations = { @Authorization(value="basicAuth") }) @PutMapping("/invoices") public Invoice createInvoice(@RequestBody InvoiceRequest invoice){ return invoiceService.createInvoice(invoice);} }
[ "diogoferdasildias@gmail.com" ]
diogoferdasildias@gmail.com
b8e3bfa797a2f246f8377f2d4e2917662d4ccbf1
46ef04782c58b3ed1d5565f8ac0007732cddacde
/platform.core/metamodel.implementation/src/org/modelio/metamodel/impl/bpmn/processCollaboration/BpmnLaneData.java
27dc98129a9cf9fe397bc6b54300f605ec74adad
[]
no_license
daravi/modelio
844917412abc21e567ff1e9dd8b50250515d6f4b
1787c8a836f7e708a5734d8bb5b8a4f1a6008691
refs/heads/master
2020-05-26T17:14:03.996764
2019-05-23T21:30:10
2019-05-23T21:30:45
188,309,762
0
1
null
null
null
null
UTF-8
Java
false
false
1,762
java
/* * Copyright 2013-2018 Modeliosoft * * This file is part of Modelio. * * Modelio is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Modelio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Modelio. If not, see <http://www.gnu.org/licenses/>. * */ /* WARNING: GENERATED FILE - DO NOT EDIT Metamodel: Standard, version 2.3.00, by Modeliosoft Generator version: 3.8.00 Generated on: Sep 7, 2018 */ package org.modelio.metamodel.impl.bpmn.processCollaboration; import java.util.List; import com.modeliosoft.modelio.javadesigner.annotations.objid; import org.modelio.metamodel.impl.bpmn.rootElements.BpmnBaseElementData; import org.modelio.vcore.smkernel.SmObjectImpl; @objid ("0074d240-c4bf-1fd8-97fe-001ec947cd2a") public class BpmnLaneData extends BpmnBaseElementData { @objid ("9090cfe4-2d71-41f7-83be-7249bbee9717") SmObjectImpl mChildLaneSet; @objid ("2046f49e-54cf-4e3c-94e7-3026b8e9c733") List<SmObjectImpl> mFlowElementRef = null; @objid ("d21980c9-bf4e-4bb4-b2aa-9710620699e5") SmObjectImpl mLaneSet; @objid ("5fd27481-37b0-40de-8d6e-3415091af179") SmObjectImpl mBpmnPartitionElementRef; @objid ("5eaa4fbe-2d40-429d-bde8-cd7479f6588c") public BpmnLaneData(BpmnLaneSmClass smClass) { super(smClass); } }
[ "puya@motionmetrics.com" ]
puya@motionmetrics.com
3fccb0604ad4179f4a62a66a2476a29fd87db569
668f027a19098f595d75367ae3612fd559724632
/app/src/main/java/com/project/assistant/sliit/DBHelper.java
b920b283dc71b9adc2b424f3c02c036d8b92851b
[ "MIT" ]
permissive
fasrinaleem/SLIIT-STUDENT-ASSISTANT---Android-Application
b671cfc0c2350e72ce3e81f3c00629d3b2440586
5b917d2e0e19d134ca1173390351c97fa0b43617
refs/heads/master
2020-03-31T21:19:48.078524
2019-06-25T17:55:11
2019-06-25T17:55:11
152,576,167
0
0
null
null
null
null
UTF-8
Java
false
false
2,524
java
package com.project.assistant.sliit; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; public class DBHelper extends SQLiteOpenHelper { private static final String DATABASE_NAME = "slide.db"; private static final String TABLE_NAME = "slides"; private static final String COLUMN_SLIDEID = "slideid"; private static final String COLUMN_SLIDES = "slides"; private static final String COLUMN_SUBJECTTYPE = "subjecttype"; private static final String COLUMN_YEAR = "year"; public DBHelper(Context context) { super(context,DATABASE_NAME,null,1); SQLiteDatabase db = this.getWritableDatabase(); } @Override public void onCreate(SQLiteDatabase db) { db.execSQL("CREATE TABLE "+ TABLE_NAME + "(slideid TEXT PRIMARY KEY,slides TEXT,subjecttype TEXT,year INT)"); } @Override public void onUpgrade(SQLiteDatabase db, int i, int i1) { db.execSQL("DROP TABLE IF EXISTS "+TABLE_NAME); onCreate(db); } public boolean onAdd(String slideid, String slides, String subjecttype, int year) { SQLiteDatabase db = this.getWritableDatabase(); ContentValues values = new ContentValues(); values.put(COLUMN_SLIDEID,slideid); values.put(COLUMN_SLIDES,slides); values.put(COLUMN_SUBJECTTYPE,subjecttype); values.put(COLUMN_YEAR,year); long result = db.insert(TABLE_NAME, null, values); if(result == -1) { return false; } else { return true; } } public Cursor viewAllData() { SQLiteDatabase db = this.getWritableDatabase(); Cursor result = db.rawQuery("SELECT * FROM "+TABLE_NAME, null); return result; } public boolean onUpdate(String slideid, String slides, String subjecttype, int year) { SQLiteDatabase db = this.getWritableDatabase(); ContentValues values = new ContentValues(); values.put(COLUMN_SLIDEID,slideid); values.put(COLUMN_SLIDES,slides); values.put(COLUMN_SUBJECTTYPE,subjecttype); values.put(COLUMN_YEAR,year); long result = db.update(TABLE_NAME, values, "slideid", new String[]{slideid}); if(result == -1) { return false; } else { return true; } } }
[ "fasrinaleem@gmail.com" ]
fasrinaleem@gmail.com
402e30db1b00c4d8c90f8cf65bf5e34c2c7ea682
5ef2539a9b9a00d49abbb5e0ea6fa897f7ef513a
/app/src/main/java/com/sincar/customer/entity/CouponeDataEntity.java
a4034fc5d491ec786fb0c8416ee42af10ae2ff1f
[]
no_license
rixk-kim/junggipark-sincarproject_200524
8dc22aa630484143ddcfd881f9250e144e53f1a7
16f887c7a1aa3098c25b2418d479ff0d59be230c
refs/heads/master
2022-08-06T21:17:36.369725
2020-05-25T09:49:09
2020-05-25T09:49:09
266,517,991
0
0
null
null
null
null
UTF-8
Java
false
false
1,228
java
package com.sincar.customer.entity; import com.sincar.customer.network.DataObject; import java.util.ArrayList; public class CouponeDataEntity { private String totalPage; // 전체페이지 private String currentPage; // 현재페이지 private String currentNum; // 현재갯수 private ArrayList<DataObject> couponeObject; //쿠폰 데이타 리스트 public String getTotalPage() { return totalPage; } public void setTotalPage(String totalPage) { this.totalPage = totalPage; } public String getCurrentPage() { return currentPage; } public void setCurrentPage(String currentPage) { this.currentPage = currentPage; } public String getCurrentNum() { return currentNum; } public void setCurrentNum(String currentNum) { this.currentNum = currentNum; } /** * 쿠폰 seq * 제목 * 내용 * 유효기간 * 사용유무 */ public ArrayList<DataObject> getCouponeObject() { return couponeObject; } public void setCouponeObject(ArrayList<DataObject> couponeObject) { this.couponeObject = couponeObject; } }
[ "64937256+rixk-kim@users.noreply.github.com" ]
64937256+rixk-kim@users.noreply.github.com
14302a1ff82187a9aaf98de22195b1491f4f7485
81a6dca5c8f3dec7f0495b2c3ef8007c8a060612
/hybris/bin/platform/bootstrap/gensrc/de/hybris/platform/ruleengineservices/model/RuleEngineCronJobModel.java
92693cbfbf02c11a896f23fe294a8677b3685ef8
[]
no_license
BaggaShivanshu/hybris-hy400
d8dbf4aba43b3dccfef7582b687480dafaa69b0b
6914d3fc7947dcfb2bbe87f59d636525187c72ad
refs/heads/master
2020-04-22T09:41:49.504834
2018-12-04T18:44:28
2018-12-04T18:44:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,877
java
/* * ---------------------------------------------------------------- * --- WARNING: THIS FILE IS GENERATED AND WILL BE OVERWRITTEN! --- * --- Generated at May 8, 2018 2:42:44 PM --- * ---------------------------------------------------------------- * * [y] hybris Platform * Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved. * This software is the confidential and proprietary information of SAP * ("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 SAP. */ package de.hybris.platform.ruleengineservices.model; import de.hybris.bootstrap.annotations.Accessor; import de.hybris.platform.core.model.ItemModel; import de.hybris.platform.cronjob.model.CronJobModel; import de.hybris.platform.cronjob.model.JobModel; import de.hybris.platform.ruleengineservices.model.SourceRuleModel; import de.hybris.platform.servicelayer.model.ItemModelContext; import java.util.List; /** * Generated model class for type RuleEngineCronJob first defined at extension ruleengineservices. */ @SuppressWarnings("all") public class RuleEngineCronJobModel extends CronJobModel { /**<i>Generated model type code constant.</i>*/ public static final String _TYPECODE = "RuleEngineCronJob"; /** <i>Generated constant</i> - Attribute key of <code>RuleEngineCronJob.sourceRules</code> attribute defined at extension <code>ruleengineservices</code>. */ public static final String SOURCERULES = "sourceRules"; /** <i>Generated constant</i> - Attribute key of <code>RuleEngineCronJob.srcModuleName</code> attribute defined at extension <code>ruleengineservices</code>. */ public static final String SRCMODULENAME = "srcModuleName"; /** <i>Generated constant</i> - Attribute key of <code>RuleEngineCronJob.targetModuleName</code> attribute defined at extension <code>ruleengineservices</code>. */ public static final String TARGETMODULENAME = "targetModuleName"; /** <i>Generated constant</i> - Attribute key of <code>RuleEngineCronJob.enableIncrementalUpdate</code> attribute defined at extension <code>ruleengineservices</code>. */ public static final String ENABLEINCREMENTALUPDATE = "enableIncrementalUpdate"; /** <i>Generated constant</i> - Attribute key of <code>RuleEngineCronJob.lockAcquired</code> attribute defined at extension <code>ruleengineservices</code>. */ public static final String LOCKACQUIRED = "lockAcquired"; /** * <i>Generated constructor</i> - Default constructor for generic creation. */ public RuleEngineCronJobModel() { 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 RuleEngineCronJobModel(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 _job initial attribute declared by type <code>CronJob</code> at extension <code>processing</code> */ @Deprecated public RuleEngineCronJobModel(final JobModel _job) { super(); setJob(_job); } /** * <i>Generated constructor</i> - for all mandatory and initial attributes. * @deprecated since 4.1.1 Please use the default constructor without parameters * @param _job initial attribute declared by type <code>CronJob</code> at extension <code>processing</code> * @param _owner initial attribute declared by type <code>Item</code> at extension <code>core</code> */ @Deprecated public RuleEngineCronJobModel(final JobModel _job, final ItemModel _owner) { super(); setJob(_job); setOwner(_owner); } /** * <i>Generated method</i> - Getter of the <code>RuleEngineCronJob.enableIncrementalUpdate</code> attribute defined at extension <code>ruleengineservices</code>. * @return the enableIncrementalUpdate */ @Accessor(qualifier = "enableIncrementalUpdate", type = Accessor.Type.GETTER) public Boolean getEnableIncrementalUpdate() { return getPersistenceContext().getPropertyValue(ENABLEINCREMENTALUPDATE); } /** * <i>Generated method</i> - Getter of the <code>RuleEngineCronJob.lockAcquired</code> attribute defined at extension <code>ruleengineservices</code>. * @return the lockAcquired */ @Accessor(qualifier = "lockAcquired", type = Accessor.Type.GETTER) public Boolean getLockAcquired() { return getPersistenceContext().getPropertyValue(LOCKACQUIRED); } /** * <i>Generated method</i> - Getter of the <code>RuleEngineCronJob.sourceRules</code> attribute defined at extension <code>ruleengineservices</code>. * Consider using FlexibleSearchService::searchRelation for pagination support of large result sets. * @return the sourceRules */ @Accessor(qualifier = "sourceRules", type = Accessor.Type.GETTER) public List<SourceRuleModel> getSourceRules() { return getPersistenceContext().getPropertyValue(SOURCERULES); } /** * <i>Generated method</i> - Getter of the <code>RuleEngineCronJob.srcModuleName</code> attribute defined at extension <code>ruleengineservices</code>. * @return the srcModuleName */ @Accessor(qualifier = "srcModuleName", type = Accessor.Type.GETTER) public String getSrcModuleName() { return getPersistenceContext().getPropertyValue(SRCMODULENAME); } /** * <i>Generated method</i> - Getter of the <code>RuleEngineCronJob.targetModuleName</code> attribute defined at extension <code>ruleengineservices</code>. * @return the targetModuleName */ @Accessor(qualifier = "targetModuleName", type = Accessor.Type.GETTER) public String getTargetModuleName() { return getPersistenceContext().getPropertyValue(TARGETMODULENAME); } /** * <i>Generated method</i> - Setter of <code>RuleEngineCronJob.enableIncrementalUpdate</code> attribute defined at extension <code>ruleengineservices</code>. * * @param value the enableIncrementalUpdate */ @Accessor(qualifier = "enableIncrementalUpdate", type = Accessor.Type.SETTER) public void setEnableIncrementalUpdate(final Boolean value) { getPersistenceContext().setPropertyValue(ENABLEINCREMENTALUPDATE, value); } /** * <i>Generated method</i> - Setter of <code>RuleEngineCronJob.lockAcquired</code> attribute defined at extension <code>ruleengineservices</code>. * * @param value the lockAcquired */ @Accessor(qualifier = "lockAcquired", type = Accessor.Type.SETTER) public void setLockAcquired(final Boolean value) { getPersistenceContext().setPropertyValue(LOCKACQUIRED, value); } /** * <i>Generated method</i> - Setter of <code>RuleEngineCronJob.sourceRules</code> attribute defined at extension <code>ruleengineservices</code>. * * @param value the sourceRules */ @Accessor(qualifier = "sourceRules", type = Accessor.Type.SETTER) public void setSourceRules(final List<SourceRuleModel> value) { getPersistenceContext().setPropertyValue(SOURCERULES, value); } /** * <i>Generated method</i> - Setter of <code>RuleEngineCronJob.srcModuleName</code> attribute defined at extension <code>ruleengineservices</code>. * * @param value the srcModuleName */ @Accessor(qualifier = "srcModuleName", type = Accessor.Type.SETTER) public void setSrcModuleName(final String value) { getPersistenceContext().setPropertyValue(SRCMODULENAME, value); } /** * <i>Generated method</i> - Setter of <code>RuleEngineCronJob.targetModuleName</code> attribute defined at extension <code>ruleengineservices</code>. * * @param value the targetModuleName */ @Accessor(qualifier = "targetModuleName", type = Accessor.Type.SETTER) public void setTargetModuleName(final String value) { getPersistenceContext().setPropertyValue(TARGETMODULENAME, value); } }
[ "richard.leiva@digitaslbi.com" ]
richard.leiva@digitaslbi.com
490c3e317218f867863e65f0f7186154f4ec8613
bda7e04a8b2490e57cbb5ea3d5efa1431c13dc5f
/Tools/src/tools/file/regex/delete/IndentBySpacesFileProcessor.java
5b373a9487bfcf8fa2d39c8b26fc80585b8a5e5e
[]
no_license
lanlan2017/MyJavaTools
67e88f00456c521ff3b38bd540279f6d8687d113
d729c525a1a4302e24fd5d62ecab3dcf36f92f87
refs/heads/master
2023-01-13T02:54:17.189651
2022-12-31T16:24:54
2022-12-31T16:24:54
184,512,626
0
1
null
null
null
null
UTF-8
Java
false
false
362
java
package tools.file.regex.delete; import tools.file.regex.RegexReplaceFileProcessor; /** * 文件处理器:使用空格作为缩进. */ public class IndentBySpacesFileProcessor extends RegexReplaceFileProcessor { public IndentBySpacesFileProcessor(String filePath) { super(filePath, "\t", " "); message = "使用空格缩进:"; } }
[ "18251956727@163.com" ]
18251956727@163.com
7d572d2a211a4b2db4ceb6e4a9202b66543f8270
0a026013ae6b7f50572988e96746aa27f365fe9c
/Bankas/src/main/java/Bankas/BankoSaskaita.java
68c7f7e5f306899438428c3211f660b3739d9c3c
[]
no_license
asag1/MokslaiJAVAjava
c229f72bcfe1a0c6f76848300b52eabf4ea9094e
650f8d921ff95b7704c2e2023eb4d1fbfaf046bb
refs/heads/master
2022-01-21T09:18:55.741119
2019-06-23T15:19:43
2019-06-23T15:19:43
193,347,071
0
0
null
null
null
null
UTF-8
Java
false
false
1,326
java
package Bankas; import org.apache.commons.lang3.RandomStringUtils; public class BankoSaskaita { private double likutis; Valiuta valiuta; Asmuo saskaitosValdytojas; final private String saskaita; public BankoSaskaita(double likutis, Valiuta valiuta, Asmuo saskaitosValdytojas) { this.likutis = likutis; this.valiuta = valiuta; this.saskaitosValdytojas = saskaitosValdytojas; this.saskaita = "LT" + RandomStringUtils.randomNumeric(18); } public Valiuta getValiuta() { return valiuta; } public Asmuo getSaskaitosValdytojas() { return saskaitosValdytojas; } public String getSaskaita() { return saskaita; } public double getLikutis() { return likutis; } public void ideti(double pinigai) { likutis = this.likutis + pinigai; } public double nuskaiciuoti(double norimaNurasytiSuma) { if (this.likutis > norimaNurasytiSuma) { likutis = likutis - norimaNurasytiSuma; return norimaNurasytiSuma; } return 0; } @Override public String toString() { return saskaitosValdytojas + " BankoSaskaita " + saskaita + ", valiuta " + valiuta + " likutis " + likutis; } }
[ "akvilina.galbuogyte@gmail.com" ]
akvilina.galbuogyte@gmail.com
f398160b092382f5bf5e8dbbe3a29d25449835e5
098cd1581827dbf9c3dfed39de079aaedb637704
/src/main/java/com/ameet/xml/model/IsSubjectToAuditType.java
8661a5936e45c12ba69386dd2e20800e90d4566d
[]
no_license
ameet123/xml_explode
7fd83b1d67145dab1122f7cf76ec0f20a0fbdc56
662b744297d2befa47ef2edc0bb2df36dc82c51d
refs/heads/master
2020-07-07T03:44:40.304231
2019-08-20T20:06:19
2019-08-20T20:06:19
203,234,634
0
0
null
null
null
null
UTF-8
Java
false
false
2,885
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2019.08.20 at 12:22:48 PM EDT // package com.ameet.xml.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for IsSubjectToAuditType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="IsSubjectToAuditType"> * &lt;simpleContent> * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string"> * &lt;attribute name="oldValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="curValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/extension> * &lt;/simpleContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IsSubjectToAuditType", propOrder = { "value" }) public class IsSubjectToAuditType { @XmlValue protected String value; @XmlAttribute(name = "oldValue") protected String oldValue; @XmlAttribute(name = "curValue") protected String curValue; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the oldValue property. * * @return * possible object is * {@link String } * */ public String getOldValue() { return oldValue; } /** * Sets the value of the oldValue property. * * @param value * allowed object is * {@link String } * */ public void setOldValue(String value) { this.oldValue = value; } /** * Gets the value of the curValue property. * * @return * possible object is * {@link String } * */ public String getCurValue() { return curValue; } /** * Sets the value of the curValue property. * * @param value * allowed object is * {@link String } * */ public void setCurValue(String value) { this.curValue = value; } }
[ "Ameet.Chaubal@accenture.com" ]
Ameet.Chaubal@accenture.com
0cd4fe2e6b754d4e5284bd46bbab74a8ca3bcd90
0d059e5b06fc62097f43b5dcd857879a82f8ec4d
/src/main/java/com/webCourses/app/controllers/TestController.java
d9dc6205d7b8f1fcb9e74f0db40e0e8e054424aa
[]
no_license
webcoursesapp/app
85608a88a65e8e27acdf2fc89da75207d3bf8c04
5f63ff1720923acac257c4a6401a713cf880255e
refs/heads/master
2020-12-24T13:44:18.403028
2015-03-23T22:10:24
2015-03-23T22:10:24
32,761,237
0
0
null
null
null
null
UTF-8
Java
false
false
9,310
java
package com.webCourses.app.controllers; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Collections; import java.util.Date; import java.util.List; import java.util.Locale; import javax.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.propertyeditors.CustomDateEditor; import org.springframework.context.MessageSource; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.validation.BindingResult; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.annotation.InitBinder; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.SessionAttributes; import org.springframework.web.servlet.ModelAndView; import com.webCourses.app.controllers.test.question.QuestionController; import com.webCourses.app.dao.course.CourseDAO; import com.webCourses.app.dao.group.GroupDAO; import com.webCourses.app.dao.test.TestDAO; import com.webCourses.app.dao.test.result.TestResultDAO; import com.webCourses.app.dao.user.UserDAO; import com.webCourses.app.model.course.Course; import com.webCourses.app.model.test.Test; import com.webCourses.app.model.test.answer.Answer; import com.webCourses.app.model.test.question.Question; import com.webCourses.app.model.test.result.AnswerResult; import com.webCourses.app.model.test.result.QuestionResult; import com.webCourses.app.model.test.result.TestResult; import com.webCourses.app.model.test.summary.TestSummary; import com.webCourses.app.model.user.User; import com.webCourses.app.utils.ApplicationUtils; @Controller @SessionAttributes({ "test", "testResult" }) @RequestMapping("/test") public class TestController { @Autowired private CourseDAO CourseDao; @Autowired private GroupDAO GroupDao; @Autowired private UserDAO UserDao; @Autowired private TestDAO TestDao; @Autowired private TestResultDAO TestResultDao; @Autowired private MessageSource messageSource; @InitBinder public void initBinder(WebDataBinder binder) { CustomDateEditor editor = new CustomDateEditor(new SimpleDateFormat("MM/dd/yyyy"), true); binder.registerCustomEditor(Date.class, editor); } @RequestMapping(value = { "/add" }, method = RequestMethod.GET) public String add(Locale locale, @RequestParam(value = "courseId", required = false) Long courseId, ModelMap model) { Test test = new Test(); Course course = CourseDao.getCourseById(courseId); test.setCourse(course); test.setUser(getLoggedUser()); model.addAttribute("test", test); return "test/addTest"; } @RequestMapping(value = { "/add", "/edit" }, method = RequestMethod.POST) public String addSubmit(@Valid Test test, BindingResult result, Locale locale, ModelMap model) { if (result.hasErrors()) { return "test/addTest"; } if (test.getRandom() && test.getQuestionsCount() == null) { result.rejectValue("questionsCount", "Test.add.questionsCount.error"); return "test/addTest"; } Long testId = test.getTestId(); if (test.getTestId() == null) { testId = TestDao.add(test); } else { TestDao.update(test); } return "redirect:/test/show?id=" + testId; } @RequestMapping(value = "/list", method = RequestMethod.GET) public String list(Locale locale, @RequestParam(value = "id", required = false) Long courseId, ModelMap model) { List<Test> tests = null; if (courseId == null) { tests = TestDao.getTestForUser(getLoggedUser()); } else { Course course = CourseDao.getCourseById(courseId); if (course.getUser().equals(getLoggedUser())) { tests = TestDao.getTestForCourse(course); model.addAttribute("course", course); } } model.addAttribute("testList", tests); return "test/testsList"; } @RequestMapping(value = "/show", method = RequestMethod.GET) public String show(Locale locale, @RequestParam(value = "id", required = false) Long testId, ModelMap model) { Test test = TestDao.get(testId); if (test.getUser().equals(getLoggedUser())) { model.addAttribute("test", test); } else { return "error"; } return "test/showTest"; } @RequestMapping(value = "/edit", method = RequestMethod.GET) public String edit(Locale locale, @RequestParam(value = "id") int testId, ModelMap model) { Test test = TestDao.get(testId); if (!isTestOwner(test)) { return "error"; } model.addAttribute("test", test); return "test/addTest"; } @RequestMapping(value = "/remove", method = RequestMethod.GET) public ModelAndView remove(Locale locale, @RequestParam(value = "id") Long testId) { Test testToRemove = TestDao.get(testId); TestDao.remove(testToRemove); return new ModelAndView("redirect:/test/list"); } public User getLoggedUser() { Authentication auth = SecurityContextHolder.getContext().getAuthentication(); return UserDao.getUserByEmail(auth.getName()); } private boolean isTestOwner(Test p_test) { return p_test.getUser().equals(getLoggedUser()); } @RequestMapping(value = "/run", method = RequestMethod.GET) public String run(Locale locale, @RequestParam(value = "id") Long testId, ModelMap model) { Test test = TestDao.get(testId); if (ApplicationUtils.isCourseMember(GroupDao, test.getCourse(), getLoggedUser())) { model.addAttribute("test", test); return "test/runTestPasswordForm"; } return "error"; } @RequestMapping(value = "/run", method = RequestMethod.POST) public String runSubmit(Locale locale, Test test, BindingResult result, ModelMap model, @RequestParam(value = "password", required = false) String password) { test = TestDao.get(test.getTestId()); List<String> errors = new ArrayList<String>(); if (!ApplicationUtils.isCourseMember(GroupDao, test.getCourse(), getLoggedUser())) { errors.add("User must be a member of course to"); } if (userDoneThisTest(test, getLoggedUser())) { errors.add("You already done this test"); } if (password != null && !password.equals(test.getPassword())) { model.addAttribute("test", test); errors.add("Wrong password"); } if (errors.size() > 0) { model.addAttribute("err", errors); return "test/runTestPasswordForm"; } else { model.addAttribute("testResult", prepareTestResult(test)); return "test/runTest"; } } private TestResult prepareTestResult(Test test) { TestResult testResult = new TestResult(); testResult.setTest(test); testResult.setStartDate(new Date()); testResult.setUser(getLoggedUser()); List<QuestionResult> questions = getQuestionResults(test, testResult); clearAnswers(questions); testResult.setQuestionResults(getQuestionResults(test, testResult)); return testResult; } private void clearAnswers(List<QuestionResult> questionResults) { for (QuestionResult questionResult : questionResults) { for (Answer answer : questionResult.getQuestion().getAnswers()) { answer.setCorrect(false); } } } @RequestMapping(value = "/saveResult", method = RequestMethod.POST) public String saveResult(Locale locale, TestResult testResult, BindingResult result, ModelMap model) { testResult.setEndDate(new Date()); testResult.setAnswerResults(getCheckedAnswers(testResult)); // save do bazy testResultu TestResultDao.add(testResult); Test test = TestDao.get(testResult.getTest().getTestId()); TestSummary testSummary = new TestSummary(test, testResult); model.addAttribute("testSummary", testSummary); return "test/showSummary"; } private List<AnswerResult> getCheckedAnswers(TestResult testResult) { List<AnswerResult> resultAnswer = new ArrayList<AnswerResult>(); for (QuestionResult questionResult : testResult.getQuestionResults()) { Question question = questionResult.getQuestion(); if (question.getType().equals(QuestionController.QUESTION_TYPE_RADIO)) { Answer rightAnswer = question.getAnswers().get(question.getRightAnswerIndex()); rightAnswer.setCorrect(true); resultAnswer.add(new AnswerResult(testResult, rightAnswer)); } if (question.getType().equals(QuestionController.QUESTION_TYPE_CHECKBOX)) { for (Answer answer : question.getAnswers()) { if (answer.getCorrect()) { resultAnswer.add(new AnswerResult(testResult, answer)); } } } } return resultAnswer; } private List<QuestionResult> getQuestionResults(Test test, TestResult testResult) { List<QuestionResult> resultList = new ArrayList<QuestionResult>(); if (test.getRandom()) { List<Question> randomQuestion = new ArrayList<Question>(test.getQuestions()); Collections.shuffle(randomQuestion); for (int i = 0; i < test.getQuestionsCount(); i++) { resultList.add(new QuestionResult(testResult, randomQuestion.get(i))); } } else { for (Question question : test.getQuestions()) { resultList.add(new QuestionResult(testResult, question)); } } return resultList; } private boolean userDoneThisTest(Test test, User loggedUser) { // if (TestResultDao.getTestResultForUserAndTest(loggedUser, test).size() > 0) { // return true; // } return false; } }
[ "webcoursesapp@gmail.com" ]
webcoursesapp@gmail.com
9d8f9eb48628a86c66020eec3d61304b6578145a
1a5b781153da475bdd0d65847a876e901aa92b9f
/src/main/java/com/spring/dev2chuc/nutritious_food/repository/RattingScheduleRepository.java
65bd7abcdcea09cba039e321b889d69ad2323f29
[]
no_license
duongtrong/nutritious-food
bd7612e96bc448fd063171ec966cc72e6d4f5d8e
f542afeaf632a883122759e4467f3e0a956b18f2
refs/heads/master
2023-05-05T20:13:28.231868
2021-01-17T05:22:37
2021-01-17T05:22:37
219,116,597
2
0
null
2023-04-14T17:32:54
2019-11-02T06:58:08
Java
UTF-8
Java
false
false
340
java
package com.spring.dev2chuc.nutritious_food.repository; import com.spring.dev2chuc.nutritious_food.model.RattingSchedule; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface RattingScheduleRepository extends JpaRepository<RattingSchedule, Long> { }
[ "trongdvd00543@fpt.edu.vn" ]
trongdvd00543@fpt.edu.vn
e25cdf23127009d9296538a4fa440bd17ea323ca
4d23ee5cf6c789dbb8b3e4a7c66036064b7b04e7
/app/src/main/java/com/liuh/imitate_prettygirls/app/RxUtils.java
e07e9ec0e7edfb2499075b718a745c3be56a5f42
[]
no_license
liuhuan2015/ImitatePrettyGirls
79cad093efd133da2282c27b831d997530ef46ee
defbf14734c2e322a0ce0084b73592072f6c1716
refs/heads/master
2020-03-23T19:55:51.420337
2018-08-11T03:42:28
2018-08-11T03:42:28
142,010,775
0
0
null
null
null
null
UTF-8
Java
false
false
852
java
package com.liuh.imitate_prettygirls.app; import com.liuh.imitate_prettygirls.util.LogUtil; import rx.functions.Action1; /** * used for Rx network error handling * Created by coder on 2018/1/23. */ public final class RxUtils { private RxUtils() { // no instance } public static final Action1<Throwable> NetErrorProcessor = throwable -> { //log it LogUtil.e(throwable.getMessage(), "RxUtils.NetErrorProcessor"); throwable.printStackTrace(); }; public static final Action1<Throwable> IgnoreErrorProcessor = throwable -> { // ignore it LogUtil.e(throwable.getMessage(), "RxUtils.IgnoreErrorProcessor"); }; public static <T> Action1<T> idleAction() { return IdleAction; } private static final Action1 IdleAction = t -> { // do nothing }; }
[ "2210712252@qq.com" ]
2210712252@qq.com
372bcd1fc66705df61867ef8704324db6b233558
87376bd5a1892f9359c10c5bdbf3c1a3440027a5
/0_Java_TutorialsPoint/src/com/qiuweiping/source/chapter1/NeedToRevisit.java
d5b8edee1fad69a93b1bd86e251293ed69b56ad2
[]
no_license
WeipingQiu/0_Java_TutorialsPoint
590b1590f2d281c14cdf0e483cd6ecaa48e97439
5396daab9d48ff587bf73a8c26f56eccaa1fb525
refs/heads/master
2021-01-19T05:28:52.067063
2015-07-09T07:57:48
2015-07-09T07:57:48
38,293,131
0
0
null
null
null
null
UTF-8
Java
false
false
80
java
package com.qiuweiping.source.chapter1; public class NeedToRevisit { }
[ "eweiqiu@CN00102234.ericsson.se" ]
eweiqiu@CN00102234.ericsson.se
10677b6f58b937e55e12d1d53c15880637a97e3e
d6fd5d49e8bb4e153bf2505be1b650c02e62940f
/FC-server/src/main/java/com/fc/openApi/kakaoMap/KakaoOpenApiMetaData.java
66d018eea263ebab8091d10667889c5844d53192
[]
no_license
wodyd202/FC-server
1241934ee4517488b10e03268c6f3b89ab58b39c
f75a1e3190403f5bcfb07af3af62b85558935d3c
refs/heads/master
2023-06-12T21:40:28.838887
2021-07-05T11:44:40
2021-07-05T11:44:40
370,548,780
0
0
null
null
null
null
UTF-8
Java
false
false
607
java
package com.fc.openApi.kakaoMap; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Getter; import lombok.NoArgsConstructor; @Getter @Builder @Component @AllArgsConstructor @NoArgsConstructor public class KakaoOpenApiMetaData { @Value("${kakao-openAPI.serviceKey}") private String serviceKey; @Value("${kakao-openAPI.path}") private String path; @Value("${kakao-openAPI.protocol}") private String protocol; @Value("${kakao-openAPI.host}") private String host; }
[ "wodyd202@naver.com" ]
wodyd202@naver.com
3dbba343c81a52f5c068e8dae317010ae323cff0
21f2918feebee4afa31534f4714ef497911c8c79
/java-basic/app/src/main/java/com/eomcs/oop/ex09/a1/after/HulWorker.java
d3305058750ae4c330ec86548a0a57d47f777a23
[]
no_license
eomjinyoung/bitcamp-20210607
276aab07d6ab067e998328d7946f592816e28baa
2f07da3993e3b6582d9f50a60079ce93ed3c261f
refs/heads/main
2023-06-14T23:47:21.139807
2021-06-25T09:48:48
2021-06-25T09:48:48
374,601,444
1
1
null
null
null
null
UTF-8
Java
false
false
132
java
package com.eomcs.oop.ex09.a1.after; public class HulWorker { public void execute() { System.out.println("헐....^^"); } }
[ "jinyoung.eom@gmail.com" ]
jinyoung.eom@gmail.com