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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e04a71e72c395ef6b67c1fe4caa421a26e26b03c
|
0559972c086b209a27a552ef31669ea6f2aceb58
|
/src/main/java/com/javadevelop/entity/UserEntity.java
|
b56ee2d63e5804402e6dabee200e7c7c00216069
|
[] |
no_license
|
nvnghia2212/PostManagement-JavaSpringBoot-SpringDataJPA
|
9299e8cce3791c86d01088656913dcdac19fd197
|
0659e5008f500ed8b3eabfea334c90e1ca6811b7
|
refs/heads/master
| 2023-03-24T04:18:52.936032 | 2021-03-05T07:55:45 | 2021-03-05T07:55:45 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,397 |
java
|
package com.javadevelop.entity;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.Table;
@Entity
@Table(name = "user")
public class UserEntity extends BaseEntity {
@Column(name="username")
private String userName;
@Column
private String password;
@Column(name="fullname")
private String fullName;
@Column
private Integer status;
@ManyToMany
@JoinTable(name="user_role", joinColumns = @JoinColumn(name = "user_id"),
inverseJoinColumns = @JoinColumn(name = "role_id"))
private List<RoleEntity> roles = new ArrayList<>();
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public List<RoleEntity> getRoles() {
return roles;
}
public void setRoles(List<RoleEntity> roles) {
this.roles = roles;
}
}
|
[
"[email protected]"
] | |
bbbed99ac1e1af78760beeb0beb11a0bc5c0967c
|
3d5178d03c5da40b93a3472a1b102133d7ead195
|
/LoginAndRegistration/src/main/java/controller/FilterDemo.java
|
b72fcaf85fe4c29d16f2d268cbb5672a104bb5b6
|
[] |
no_license
|
kavyaVarma421/advanceJava
|
4ed36924769cfd47963803bc614ae433bb7a7848
|
da449ca65ca4be8742054f1814640d1e60def76e
|
refs/heads/master
| 2020-11-23T21:46:32.853492 | 2019-12-28T10:04:23 | 2019-12-28T10:04:23 | 227,832,868 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,360 |
java
|
package controller;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
/*
*//**
* Servlet Filter implementation class FilterDemo
*//*
* @WebFilter("/LoginServlet") public class FilterDemo implements Filter {
*
* public void destroy() {
*
* }
*
* @SuppressWarnings("null") public void doFilter(ServletRequest request,
* ServletResponse response, FilterChain chain) throws IOException,
* ServletException { HttpServletRequest req = (HttpServletRequest) request;
* HttpServletResponse res = (HttpServletResponse) response; HttpSession session
* = req.getSession(false);
*
* if (session != null || session.getAttribute("name") != null) {
* chain.doFilter(req, res); // Logged-in user found, so just continue request.
*
* } else { res.sendRedirect("index.jsp");// No logged-in user found, so
* redirect to login page.
*
* } }
*
* public void init(FilterConfig fConfig) throws ServletException {
*
* }
*
* }
*/
|
[
"[email protected]"
] | |
aba9b7f52fd50ba17e40168fe42901045f4c6b59
|
1899907770f82a25889bb748f38bdcfd45b18da6
|
/src/org/designpattern/structural/adapterclass/Adaptee.java
|
c131493d0877deb3d4f8d61e45dfe99363e4df4c
|
[] |
no_license
|
kingcucumber/designpattern
|
196f44b88ffcd4163f8923067fa81bf7ca734cdf
|
4037e6b263ad9fa4d6ad259f6bb4cbe09af298e5
|
refs/heads/master
| 2021-01-01T05:31:11.112921 | 2013-07-29T13:25:10 | 2013-07-29T13:25:10 | 9,469,047 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 344 |
java
|
package org.designpattern.structural.adapterclass;
/**
* Created with IntelliJ IDEA.
* User: jinhuawa
* Date: 4/16/13
* Time: 7:36 PM
* To change this template use File | Settings | File Templates.
*/
public class Adaptee {
public void specificRequest(){
System.out.println("adaptee specificRequest!");
}
}
|
[
"[email protected]"
] | |
3e8eaaf9221e9f9c9270110941445e73dab3f376
|
d0415986c23f8dee4d37d8dd39071aa2f9b6427d
|
/1.4.2/src/com/company/Main.java
|
28e8ce441336529030cfc46810876614a7929382
|
[] |
no_license
|
temak22/IT_Academy_Samsung
|
142d90e7b416e23b82fedb446b37fde1abcf23c4
|
d449de9688e346792d82b10905381ab87b627032
|
refs/heads/main
| 2023-01-01T07:13:30.695676 | 2020-10-26T14:02:03 | 2020-10-26T14:02:03 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 296 |
java
|
package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
long number = 0;
number = (1 << n);
System.out.println(number);
}
}
|
[
"[email protected]"
] | |
6ae853ff1782cff20decd0cd7ea9c19ed64a8136
|
42631688fbfa2d2757e1af819f065b8a499bbc1c
|
/Code/PFriends.java
|
37bc4fe5d12cd6c8a782b66efd36700393b19d27
|
[] |
no_license
|
sanketnawle/What-s-Happening-
|
5810f75b1e6f5b0c519943836e30db67bc7347ea
|
9a4ede14d06ecf93eed2ed342712203d25d6d1e7
|
refs/heads/master
| 2021-01-21T08:24:06.533873 | 2017-05-17T22:56:07 | 2017-05-17T22:56:07 | 91,626,392 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,794 |
java
|
package com.example.sanketnawle.whatshappening;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.ListView;
import android.widget.Toast;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.List;
class Config1 {
public static final String DATA_URL = "http://whatshappening.16mb.com/getFriends.php?id=";
// public static final String DATA_URL2 = "http://whatshappening.16mb.com/removeData.php?id=";
// public static final String DATA_URL3 = "http://whatshappening.16mb.com/addData.php?id=";
public static final String KEY_UNAME = "user_name";
public static final String KEY_UPHONE = "user_phone";
public static final String KEY_STATUS = "status";
public static final String KEY_FPHONE = "friend_phone";
public static final String JSON_ARRAY = "result";
}
public class PFriends extends AppCompatActivity {
ArrayList<SelectPFriend> selectPFriends;
List<SelectPFriend> temp;
ListView listView;
PFriendsAdapter adapter;
public String userNumber,id;
private ProgressDialog loading;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pfriends);
Log.e("Entered Requests: ", "OnCreate");
Bundle broadcastData = getIntent().getExtras();
userNumber = broadcastData.getString("userNumber");
id = broadcastData.getString("id");
Log.e("User no from PFriends", userNumber);
selectPFriends = new ArrayList<SelectPFriend>();
listView = (ListView) findViewById(R.id.pfriends_list);
loading = ProgressDialog.show(PFriends.this, "Please wait...", "Fetching...", false, false);
String url = Config1.DATA_URL + userNumber;
Log.e("URL",url);
StringRequest stringRequest = new StringRequest(url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
loading.dismiss();
showJSON(response);
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.e("Error:", "OnErrorResponse");
Toast.makeText(PFriends.this, error.getMessage().toString(), Toast.LENGTH_LONG).show();
}
});
RequestQueue requestQueue = Volley.newRequestQueue(PFriends.this);
requestQueue.add(stringRequest);
listView.setFastScrollEnabled(true);
}
private void showJSON(String response) {
String user_phone = "";
String user_name = "";
String status = "";
String friend_phone="";
try {
JSONObject jsonObject = new JSONObject(response);
JSONArray result = jsonObject.getJSONArray(Config1.JSON_ARRAY);
Log.e("JSONArray:",result.toString());
for(int i=0;i<result.length();i++) {
JSONObject requestData = result.getJSONObject(i);
user_name = requestData.getString(Config1.KEY_UNAME);
user_phone = requestData.getString(Config1.KEY_UPHONE);
friend_phone = requestData.getString(Config1.KEY_FPHONE);
status = requestData.getString(Config1.KEY_STATUS);
Log.e("UserName: ", user_name);
Log.e("User Phone: ", user_phone);
Log.e("Friend Phone: ", friend_phone);
Log.e("Status: ", status);
SelectPFriend selectPFriend = new SelectPFriend();
// selectRequest.setThumb(bit_thumb);
selectPFriend.setName(user_name);
selectPFriend.setPhone(friend_phone);
selectPFriend.setUserNumber(userNumber);
selectPFriend.setId(id);
Log.e("userNo in PFriends: ", userNumber);
Log.e("Id in PFriends: ",id);
selectPFriends.add(selectPFriend);
adapter = new PFriendsAdapter(selectPFriends, PFriends.this);
listView.setAdapter(adapter);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
}
|
[
"[email protected]"
] | |
d7394f84b64b82774fb37b4cf96db3e15d92df8a
|
f889ee846d2a15c8d069e492d08ce836aaa2925b
|
/src/cli/org/codehaus/griffon/plugins/BasicGriffonPluginInfo.java
|
f1d8c5bed38ec0bf91b6298e1f7970ef62d2440d
|
[
"Apache-2.0"
] |
permissive
|
shemnon/griffon
|
eb2ab14c177852f33bb249267cb71e5d90a6c2f5
|
2e6b75000cdf1c3e54f4c6561a171ff71a9deedd
|
refs/heads/master
| 2020-04-07T15:36:19.091537 | 2010-08-02T11:32:43 | 2010-08-02T11:32:43 | 268,379 | 1 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,766 |
java
|
/*
* Copyright 2004-2010 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.codehaus.griffon.plugins;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.springframework.core.io.Resource;
import groovy.lang.GroovyObjectSupport;
import groovy.lang.MissingPropertyException;
/**
* Simple Javabean implementation of the GriffonPluginInfo interface
*
* @author Graeme Rocher (Grails 1.3)
*/
public class BasicGriffonPluginInfo extends GroovyObjectSupport implements GriffonPluginInfo {
private String name;
private String version;
private Map<String,Object> attributes = new ConcurrentHashMap<String,Object>();
private Resource descriptor;
public BasicGriffonPluginInfo(Resource pluginLocation) {
this.descriptor = pluginLocation;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Override
public void setProperty(String property, Object newValue) {
try {
super.setProperty(property, newValue);
} catch (MissingPropertyException e) {
attributes.put(property, newValue);
}
}
@Override
public Object getProperty(String property) {
try {
return super.getProperty(property);
} catch (MissingPropertyException e) {
return attributes.get(property);
}
}
public String getFullName() {
return this.name + '-' + this.version;
}
public Resource getDescriptor() {
return this.descriptor;
}
public Resource getPluginDir() {
try {
return this.descriptor.createRelative(".");
} catch (IOException e) {
return null;
}
}
public Map getProperties() {
Map props = new HashMap();
props.putAll(attributes);
props.put(NAME, name);
props.put(VERSION, version);
return props;
}
}
|
[
"[email protected]"
] | |
49f6e8c094909985439d2e541473970915179736
|
c1606e19b1d9229ed83126c01946b46263984b2b
|
/src/br/com/mobilitas/model/PCD.java
|
ad2c291d555f9b883fc57aeb24a10087a4f32839
|
[] |
no_license
|
mobilitas-project/backend-java
|
dc7377c7597a39b3675da6b3e37947c0929bd31c
|
cbd54f6386377c3558c81fe29115c1b3676ecfeb
|
refs/heads/master
| 2020-03-19T04:51:56.311889 | 2018-06-03T10:02:09 | 2018-06-03T10:02:09 | 135,876,028 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 851 |
java
|
package br.com.mobilitas.model;
public class PCD {
private String tipo;
private String descricao;
private String curso;
private String instalacoesAdaptadas;
private Opcao opcoes;
public String getTipo() {
return tipo;
}
public void setTipo(String tipo) {
this.tipo = tipo;
}
public String getDescricao() {
return descricao;
}
public void setDescricao(String descricao) {
this.descricao = descricao;
}
public String getCurso() {
return curso;
}
public void setCurso(String curso) {
this.curso = curso;
}
public String getInstalacoesAdaptadas() {
return instalacoesAdaptadas;
}
public void setInstalacoesAdaptadas(String instalacoesAdaptadas) {
this.instalacoesAdaptadas = instalacoesAdaptadas;
}
public Opcao getOpcoes() {
return opcoes;
}
public void setOpcoes(Opcao opcoes) {
this.opcoes = opcoes;
}
}
|
[
"[email protected]"
] | |
36e6c6e080d1c81544224ef5d3240f2061ba7c12
|
4a24d1d076283143e0079bf3c07e0f42b1c8a4f3
|
/app/src/main/java/com/example/achuan/materialtest/MainActivity.java
|
269dd693a6a339b63e734ce2ad809337b199c6a4
|
[
"Apache-2.0"
] |
permissive
|
lyc-changeworld/MaterialTest
|
8480ebf8edef694f63fbcf9969a4748d0f5ae7eb
|
2f8b6a1ea323a40e3e6eabe7275e4b6ebf54a648
|
refs/heads/master
| 2020-06-10T16:33:37.216880 | 2016-12-10T07:18:51 | 2016-12-10T07:18:51 | 75,935,217 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 8,604 |
java
|
package com.example.achuan.materialtest;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.NavigationView;
import android.support.design.widget.Snackbar;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
public class MainActivity extends AppCompatActivity {
@BindView(R.id.toolbar)
Toolbar mToolbar;
@BindView(R.id.drawer_layout)
DrawerLayout mDrawerLayout;
@BindView(R.id.nav_view)
NavigationView mNavView;
@BindView(R.id.fab)
FloatingActionButton mFab;
@BindView(R.id.recycler_view)
RecyclerView mRecyclerView;
@BindView(R.id.swipe_refresh)
SwipeRefreshLayout mSwipeRefresh;
private FruitAdapter mFruitAdapter;
private List<Fruit> fruitList = new ArrayList<>();
private Fruit[] fruits = {new Fruit("Apple", R.drawable.apple), new Fruit("Banana", R.drawable.banana),
new Fruit("Orange", R.drawable.orange), new Fruit("Watermelon", R.drawable.watermelon),
new Fruit("Pear", R.drawable.pear), new Fruit("Grape", R.drawable.grape),
new Fruit("Pineapple", R.drawable.pineapple), new Fruit("Strawberry", R.drawable.strawberry),
new Fruit("Cherry", R.drawable.cherry), new Fruit("Mango", R.drawable.mango)};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
setSupportActionBar(mToolbar);//将toolbar实例传入
ActionBar actionBar = getSupportActionBar();//获取传入的toolbar实例
//为toolbar添加导航按钮
if (actionBar != null) {
//让导航按钮显示出来,true:显示,false:不显示(默认效果)
actionBar.setDisplayHomeAsUpEnabled(true);
//设置自定义的导航按钮图标,如不设置,则使用系统默认生成的图标(指向左边的箭头)
actionBar.setHomeAsUpIndicator(R.drawable.ic_menu_white_24dp);
}
/***1-左侧滑动滑动菜单栏的监听事件***/
//设置默认选中的item项
mNavView.setCheckedItem(R.id.backup);
mNavView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
switch (item.getItemId()) {
case R.id.backup:
//针对不同的item实现不同的逻辑处理
break;
default:
break;
}
//点击左侧菜单栏中的item后将滑动菜单关闭
mDrawerLayout.closeDrawers();
return true;
}
});
/***2-设置数据集合,并将数据通过适配器显示到列表中去***/
initFruits();
mFruitAdapter = new FruitAdapter(fruitList);
//常用的布局:Linear(线性)|Grid(大小一样的网格)|StaggeredGrid(大小不一样的网格)
//1- 线性布局(单列或单行)(参数介绍:1-Context)
//LinearLayoutManager linearlayoutManager=new LinearLayoutManager(this);
//linearlayoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);
//2- 规则式网格布局(参数介绍:1-Context,2-列数)
GridLayoutManager gridlayoutManager = new GridLayoutManager(this, 3);
//gridlayoutManager.setOrientation(GridLayoutManager.HORIZONTAL);//设置方向
//3- 瀑布流式(不规则)网格布局(参数介绍:1-列数,2-方向)
//StaggeredGridLayoutManager staggeredGridLayoutManager=
//new StaggeredGridLayoutManager(3,StaggeredGridLayoutManager.VERTICAL);
mRecyclerView.setLayoutManager(gridlayoutManager);//为列表添加布局
mRecyclerView.setAdapter(mFruitAdapter);//为列表添加适配器
/***3-初始化下拉刷新控件***/
mSwipeRefresh.setColorSchemeResources(R.color.colorAccent);//设置进度条的颜色
mSwipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
refreshFruits();
}
});
}
//刷新数据集合的方法
private void refreshFruits(){
//开启一个子线程来进行刷新工作
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
//将线程切换回主线程
runOnUiThread(new Runnable() {
@Override
public void run() {
initFruits();//重新初始化数据集合
mFruitAdapter.notifyDataSetChanged();//刷新列表显示
mSwipeRefresh.setRefreshing(false);//隐藏刷新进度条
}
});
}
}).start();
}
//初始化数据集的方法
private void initFruits() {
fruitList.clear();
for (int i = 0; i < 50; i++) {
Random random = new Random();//获取一个随机数实例
//获去集合[0,fruits.length-1]中的随机一个数
int index = random.nextInt(fruits.length);
fruitList.add(fruits[index]);
}
}
//重写创建menu菜单的方法
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().//获得MenuInflater对象
inflate(R.menu.toolbar,//指定通过哪一个资源文件来创建菜单
menu);
return true;//返回true,表示允许创建的菜单显示出来
}
//重写菜单item的点击事件的方法
//HomeAsUp按钮的id永远都是android.R.id.home
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
//点击按钮打开显示左边的菜单,这里设置其显示的行为和XML中定义的一致
mDrawerLayout.openDrawer(GravityCompat.START);
break;
case R.id.backup:
Toast.makeText(this, "clicked backup", Toast.LENGTH_SHORT).show();
break;
case R.id.delete:
Toast.makeText(this, "clicked delete", Toast.LENGTH_SHORT).show();
break;
case R.id.settings:
Toast.makeText(this, "clicked settings", Toast.LENGTH_SHORT).show();
break;
default:
break;
}
return true;//返回true,表示允许item点击响应
}
@OnClick({R.id.fab})
public void onClick(View view) {
switch (view.getId()) {
case R.id.fab:
//Toast.makeText(this, "fab clicked", Toast.LENGTH_SHORT).show();
Snackbar.make(view, "Data deleted", Snackbar.LENGTH_SHORT)
//前面三个参数和Toast类似
//下面调用一个方法来设置一个动作按钮,使可以和用户进行交互
.setAction("Undo", new View.OnClickListener() {
//点击动作按钮后,Snackbar会立马消失
@Override
public void onClick(View view) {
Toast.makeText(MainActivity.this,
"Data restored",
Toast.LENGTH_SHORT).show();
}
}).show();//将Snackbar显示出来
break;
default:
break;
}
}
}
|
[
"achuan9301@gmail"
] |
achuan9301@gmail
|
f4cda6527ad02be8d4b65119a7d7c99d25cba112
|
12885b796833f5c629e5873fd1121da879a3803a
|
/141.java
|
8c9e8fe5496a6294eebbd667def666333bc745bb
|
[] |
no_license
|
jatinwatts007/LeetCode
|
9080e8a9c8515ea3064953e656498004e6bc3c44
|
d9d0348753e5efcb706f3a543960cdab432a8f6e
|
refs/heads/master
| 2022-06-23T05:55:55.066835 | 2022-06-02T17:45:31 | 2022-06-02T17:45:31 | 233,271,643 | 0 | 0 | null | 2020-01-11T17:41:12 | 2020-01-11T17:41:11 | null |
UTF-8
|
Java
| false | false | 769 |
java
|
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public boolean hasCycle(ListNode head) {
if(head==null || head.next==null){
return false;
}
ListNode slow=head.next;
ListNode fast=head.next.next;
if(fast==null){
return false;
}
while(slow!=fast){
slow=slow.next;
if(fast.next==null || fast.next.next==null){
return false;
}
fast=fast.next.next;
}
return true;
}
}
|
[
"[email protected]"
] | |
87cdbc8a0070f0cd08415716265756b0d9c52368
|
47798511441d7b091a394986afd1f72e8f9ff7ab
|
/src/main/java/com/alipay/api/domain/AntMerchantExpandItemOpenQueryModel.java
|
98e20d8917d058fa59ce41353ac2a611f38deb86
|
[
"Apache-2.0"
] |
permissive
|
yihukurama/alipay-sdk-java-all
|
c53d898371032ed5f296b679fd62335511e4a310
|
0bf19c486251505b559863998b41636d53c13d41
|
refs/heads/master
| 2022-07-01T09:33:14.557065 | 2020-05-07T11:20:51 | 2020-05-07T11:20:51 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,512 |
java
|
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询商品接口
*
* @author auto create
* @since 1.0, 2019-09-17 17:21:31
*/
public class AntMerchantExpandItemOpenQueryModel extends AlipayObject {
private static final long serialVersionUID = 7397228774572121352L;
/**
* 场景码(具体值请参见产品文档)
*/
@ApiField("scene")
private String scene;
/**
* 商品状态:EFFECT(有效)、INVALID(无效)
*/
@ApiField("status")
private String status;
/**
* 商品归属主体ID
例:商品归属主体类型为店铺,则商品归属主体ID为店铺ID;归属主体为小程序,则归属主体ID为小程序ID
*/
@ApiField("target_id")
private String targetId;
/**
* 商品归属主体类型:
5(店铺)
8(小程序)
*/
@ApiField("target_type")
private String targetType;
public String getScene() {
return this.scene;
}
public void setScene(String scene) {
this.scene = scene;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getTargetId() {
return this.targetId;
}
public void setTargetId(String targetId) {
this.targetId = targetId;
}
public String getTargetType() {
return this.targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
}
|
[
"[email protected]"
] | |
305984460c87773442dc54084c71d33c34ad98d8
|
065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be
|
/drjava_cluster/19834/src_1.java
|
f304b21bafffcfd2cca6025043e18e47f86d67bb
|
[] |
no_license
|
martinezmatias/GenPat-data-C3
|
63cfe27efee2946831139747e6c20cf952f1d6f6
|
b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4
|
refs/heads/master
| 2022-04-25T17:59:03.905613 | 2020-04-15T14:41:34 | 2020-04-15T14:41:34 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 14,888 |
java
|
/*BEGIN_COPYRIGHT_BLOCK
*
* Copyright (c) 2001-2008, JavaPLT group at Rice University ([email protected])
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the names of DrJava, the JavaPLT group, Rice University, nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software is Open Source Initiative approved Open Source Software.
* Open Source Initative Approved is a trademark of the Open Source Initiative.
*
* This file is part of DrJava. Download the current version of this project
* from http://www.drjava.org/ or http://sourceforge.net/projects/drjava/
*
* END_COPYRIGHT_BLOCK*/
package edu.rice.cs.drjava.model.definitions.reducedmodel;
/**
* Tests the interaction between quotes and backslashes.
* @version $Id$
*/
public final class SingleQuoteTest extends BraceReductionTestCase
implements ReducedModelStates
{
/** Tests the relationship between backslash characters and quote characters.
* It focuses on the case where the backslash is inserted first before the quote.
*/
public void testInsideQuotePrevious() {
model1.insertChar('\'');
model1.insertChar('\\');
model1.insertChar('\'');
model1.move(-2);
// "#\"
assertEquals("#0.0", "\\'", model1.currentToken().getType());
assertEquals("#0.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
model1.move(2);
model1.insertChar('\'');
model1.move(-1);
// '\'#'
assertEquals("#1.0", "\'", model1.currentToken().getType());
assertEquals("#1.1", FREE, stateOfCurrentToken(model1));
assertTrue("#1.2", model1.currentToken().isClosed());
model1.move(1);
model1.insertChar('\'');
model1.insertChar('\\');
model1.insertChar('\\');
model1.move(-2);
// '\'''#\\
assertEquals("#2.0", "\\\\", model1.currentToken().getType());
assertEquals("#2.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
model1.move(2);
model1.insertChar('\\');
model1.move(-1);
// '\'''\\#\
assertEquals("#3.0", "\\", model1.currentToken().getType());
assertEquals("#3.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
model1.move(1);
model1.insertChar('\'');
model1.move(-1);
// '\'''\\\#"
assertEquals("#4.0", "\\'", model1.currentToken().getType());
assertEquals("#4.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
}
/** Tests the relationship between backslashes and quotes.
* Focuses on the case where a backslash is inserted and turns a regular quote
* into an escaped quote.
*/
public void testInsideQuoteNext() {
model1.insertChar('\'');
model1.insertChar('\'');
model1.move(-1);
model1.insertChar('\\');
assertEquals("#0.0", "\\'", model1.currentToken().getType());
assertEquals("#0.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
assertEquals("#0.2", 1, model1.getBlockOffset());
model1.move(1);
model1.insertChar('\'');
model1.move(-1);
assertEquals("#1.0", "\'", model1.currentToken().getType());
assertEquals("#1.1", FREE, stateOfCurrentToken(model1));
assertTrue("#1.2", model1.currentToken().isClosed());
model1.move(1);
model1.insertChar('\'');
model1.insertChar('\\');
model1.move(-1);
model1.insertChar('\\');
assertEquals("#2.0", "\\\\", model1.currentToken().getType());
assertEquals("#2.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
assertEquals("#2.2", 6, model1.absOffset());
model1.move(-2);
model1.insertChar('{');
model1.move(-1);
assertEquals("#3.0", "{", model1.currentToken().getType());
assertEquals("#3.1", FREE, stateOfCurrentToken(model1));
model1.move(1);
model1.move(3);
model1.insertChar('\'');
model1.move(-1);
assertEquals("#4.0", "\'", model1.currentToken().getType());
assertEquals("#4.1", FREE, stateOfCurrentToken(model1));
assertTrue("#4.2", model1.currentToken().isClosed());
model1.insertChar('\\');
assertEquals("#5.0", "\\'", model1.currentToken().getType());
assertEquals("#5.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model1));
assertEquals("#5.2", 1, model1.getBlockOffset());
}
/** Tests the case when a backslash is inserted before two backslashes.
* The existing double escape is broken and the first two backslashes become
* a double escape with the third backslash ending up alone.
*/
public void testBackSlashBeforeDoubleEscape() {
model1.insertChar('\\');
model1.insertChar('\\');
model1.move(-2);
model1.insertChar('\\');
assertEquals("#0.0", "\\\\", model1.currentToken().getType());
assertEquals("#0.1", 2, model1.currentToken().getSize());
model1.move(1);
assertEquals("#0.2", "\\", model1.currentToken().getType());
model2.insertChar('\\');
model2.insertChar('\'');
model2.move(-2);
model2.insertChar('\\');
assertEquals("#1.0", "\\\\", model2.currentToken().getType());
assertEquals("#1.1", 1, model2.absOffset());
model2.move(1);
assertEquals("#1.2", "'", model2.currentToken().getType());
}
/** Tests the case where a backslash breaks up two backslashes together.
* The newly inserted backslash and the first backslash form a new double escape
* and the second backslash in the previous double escape becomes free.
*/
public void testInsertBetweenDoubleEscape() {
model1.insertChar('\\');
model1.insertChar('\\');
model1.move(-1);
model1.insertChar('\\');
model1.move(-2);
assertEquals("#0.0", "\\\\", model1.currentToken().getType());
model1.move(2);
assertEquals("#0.1", "\\", model1.currentToken().getType());
model2.insertChar('\\');
model2.insertChar('\'');
model2.move(-1);
model2.insertChar('\\');
model2.move(-2);
assertEquals("#1.0", "\\\\", model2.currentToken().getType());
model2.move(2);
assertEquals("#1.1", "\'", model2.currentToken().getType());
model0.insertChar('\\');
model0.insertChar('\\');
model0.move(-1);
model0.insertChar(')');
model0.move(-2);
assertEquals("#2.0", "\\", model0.currentToken().getType());
model0.move(1);
assertEquals("#2.1", ")", model0.currentToken().getType());
model0.move(1);
assertEquals("#2.2", "\\", model0.currentToken().getType());
model0.move(1);
model0.delete(-3);
model0.insertChar('\\');
model0.insertChar('\'');
model0.move(-1);
model0.insertChar(')');
model0.move(-2);
assertEquals("#3.0", "\\", model0.currentToken().getType());
model0.move(1);
assertEquals("#3.1", ")", model0.currentToken().getType());
model0.move(1);
assertEquals("#3.2", "'", model0.currentToken().getType());
}
/** Tests the case where deletion combines a backslash and a quote or two backslashes.
* The deletion of characters in between the two special characters brings them together
* and unites them into a 2-character special token.
*/
public void testDeleteAndCombine() {
model0.insertChar('\\');
insertGap(model0, 2);
model0.insertChar('\'');
model0.move(-1);
assertEquals("#0.0", "\'", model0.currentToken().getType());
model0.delete(-2);
assertEquals("#1.0", "\\'", model0.currentToken().getType());
assertEquals("#1.1", 1, model0.absOffset());
model0.delete(1);
insertGap(model0, 2);
model0.insertChar('\\');
model0.move(-1);
assertEquals("#2.0", "\\", model0.currentToken().getType());
model0.delete(-2);
assertEquals("#3.0", "\\\\", model0.currentToken().getType());
assertEquals("#3.1", 2, model0.currentToken().getSize());
}
/** Tests more of the same sort of cases as found in testDeleteAndCombine().
*/
public void testDeleteAndCombine2() {
model0.insertChar('\\');
model0.insertChar('\'');
model0.move(-1);
model0.delete(-1);
assertEquals("#0.0", "\'", model0.currentToken().getType());
assertEquals("#0.1", FREE, model0.getStateAtCurrent());
model1.insertChar('\\');
model1.insertChar('\\');
model1.delete(-1);
model1.move(-1);
assertEquals("#1.0", "\\", model1.currentToken().getType());
model1.move(1);
model1.insertChar('\\');
model1.move(-1);
model1.delete(-1);
assertEquals("#2.0", "\\", model1.currentToken().getType());
}
/** More of the same sort of cases as found in testDeleteAndCombine().
*/
public void testDeleteAndCombine3() {
model0.insertChar('\\');
model0.insertChar('\\');
insertGap(model0, 3);
model0.insertChar('\\');
model0.move(-1);
model0.delete(-4);
assertEquals("#0.0", "\\\\", model0.currentToken().getType());
assertEquals("#0.1", 1, model0.absOffset());
model1.insertChar('\\');
insertGap(model1, 3);
model1.insertChar('\\');
model1.insertChar('\'');
model1.move(-1);
model1.delete(-4);
assertEquals("#1.0", "\\\'", model1.currentToken().getType());
assertEquals("#1.1", 1, model1.absOffset());
}
/** Tests cases where a long chain of backslashes and quotes can be all altered with a simple
* insertion or deletion of a special character.
*/
public void testChainEffect() {
model0.insertChar('\'');
model0.insertChar('\\');
model0.insertChar('\'');
model0.insertChar('\'');
model0.insertChar('\'');
model0.insertChar('\\');
model0.insertChar('\'');
model0.insertChar('\'');
model0.insertChar('\'');
model0.insertChar('\\');
model0.insertChar('\'');
model0.insertChar('\'');
// '\'''\'''\''#
model0.move(-1);
assertEquals("#0.0", "\'", model0.currentToken().getType());
assertTrue("#0.1", model0.currentToken().isClosed());
model0.move(-2);
// '\'''\'''#\''
assertEquals("#1.0", "\\'", model0.currentToken().getType());
assertEquals("#1.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model0));
model0.move(-1);
assertEquals("#1.2", "'", model0.currentToken().getType());
assertEquals("#1.3", FREE, stateOfCurrentToken(model0));
assertTrue("#1.4", model0.currentToken().isOpen());
model0.move(1);
model0.insertChar('\\');
// '\'''\'''\#\''
assertEquals("#2.0", "\\\\", model0.currentToken().getType());
assertEquals("#2.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model0));
assertEquals("#2.2", 10, model0.absOffset());
model0.move(-2);
assertEquals("#2.3", "'", model0.currentToken().getType());
assertEquals("#2.4", FREE, stateOfCurrentToken(model0));
assertTrue("#2.5", model0.currentToken().isOpen());
model0.move(3);
assertEquals("#2.6", "'", model0.currentToken().getType());
assertEquals("#2.7", FREE, stateOfCurrentToken(model0));
assertTrue("#2.8", model0.currentToken().isClosed());
model0.move(-1);
model0.insertChar('\'');
// '\'''\'''\'#\''
assertEquals("#3.0", "\\'", model0.currentToken().getType());
assertEquals("#3.1", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model0));
assertEquals("#3.2", 11, model0.absOffset());
model0.move(-2);
assertEquals("#3.3", "\\'", model0.currentToken().getType());
assertEquals("#3.4", INSIDE_SINGLE_QUOTE, stateOfCurrentToken(model0));
model0.move(4);
assertEquals("#3.5", "'", model0.currentToken().getType());
assertEquals("#3.6", FREE, stateOfCurrentToken(model0));
assertTrue("#3.7", model0.currentToken().isClosed());
model0.move(-12);
// '#\'''\'''\'\''
model0.delete(1);
// '#'''\'''\'\''
model0.move(-1);
// #''''\'''\'\''
assertEquals("#4.0", "'", model0.currentToken().getType());
assertTrue("#4.1", model0.currentToken().isOpen());
assertEquals("#4.2", FREE, stateOfCurrentToken(model0));
model0.move(1);
// '#'''\'''\'\''
assertEquals("#4.3", "'", model0.currentToken().getType());
assertTrue("#4.4", model0.currentToken().isClosed());
assertEquals("#4.5", FREE, stateOfCurrentToken(model0));
model0.move(1);
// ''#''\'''\'\''
assertEquals("#5.0", "'", model0.currentToken().getType());
assertTrue("#5.1", model0.currentToken().isOpen());
assertEquals("#5.2", FREE, stateOfCurrentToken(model0));
model0.move(1);
// '''#'\'''\'\''
assertEquals("#5.3", "'", model0.currentToken().getType());
assertTrue("#5.4", model0.currentToken().isClosed());
assertEquals("#5.5", FREE, stateOfCurrentToken(model0));
model0.move(1);
// ''''#\'''\'\''
assertEquals("#5.6", "\\'", model0.currentToken().getType());
assertEquals("#5.7", FREE, stateOfCurrentToken(model0));
model0.move(2);
// ''''\'#''\'\''
assertEquals("#6.0", "'", model0.currentToken().getType());
assertTrue("#6.1", model0.currentToken().isOpen());
assertEquals("#6.2", FREE, stateOfCurrentToken(model0));
model0.move(1);
// ''''\''#'\'\''
assertEquals("#6.3", "'", model0.currentToken().getType());
assertTrue("#6.4", model0.currentToken().isClosed());
assertEquals("#6.5", FREE, stateOfCurrentToken(model0));
model0.move(1);
// ''''\'''#\'\''
assertEquals("#6.6", "\\'", model0.currentToken().getType());
assertEquals("#6.7", FREE, stateOfCurrentToken(model0));
model0.move(2);
// ''''\'''\'#\''
assertEquals("#6.0", "\\'", model0.currentToken().getType());
assertEquals("#6.1", FREE, stateOfCurrentToken(model0));
model0.move(2);
// ''''\'''\'\'#'
assertEquals("#6.2", "'", model0.currentToken().getType());
assertTrue("#6.3", model0.currentToken().isOpen());
assertEquals("#6.4", FREE, stateOfCurrentToken(model0));
}
}
|
[
"[email protected]"
] | |
90420125bb16b43355606545bbc4d23d1ae27c59
|
da9f6660eaa26607b36ef0aee1ea5f5aef0ddb9f
|
/apm-agent-plugins/apm-apache-httpclient/apm-apache-httpclient4-plugin/src/main/java/co/elastic/apm/agent/httpclient/v4/helper/FutureCallbackWrapper.java
|
ed90963baa74bc60861687bf602798f605c02b29
|
[
"BSD-3-Clause",
"CC0-1.0",
"CDDL-1.0",
"MIT",
"Apache-2.0",
"BSD-2-Clause"
] |
permissive
|
elastic/apm-agent-java
|
9d29e415cd9b37235ef8762bb8abc707fd8b82b8
|
b38dfee9a9365c3a5a406aeaa390b9974f843f38
|
refs/heads/main
| 2023-09-01T17:56:18.440597 | 2023-08-31T15:49:51 | 2023-08-31T15:49:51 | 121,236,494 | 566 | 341 |
Apache-2.0
| 2023-09-14T09:44:24 | 2018-02-12T11:05:32 |
Java
|
UTF-8
|
Java
| false | false | 3,917 |
java
|
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. 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 co.elastic.apm.agent.httpclient.v4.helper;
import co.elastic.apm.agent.tracer.Outcome;
import co.elastic.apm.agent.tracer.Span;
import co.elastic.apm.agent.tracer.pooling.Recyclable;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.concurrent.FutureCallback;
import org.apache.http.protocol.HttpContext;
import org.apache.http.protocol.HttpCoreContext;
import javax.annotation.Nullable;
public class FutureCallbackWrapper<T> implements FutureCallback<T>, Recyclable {
private final ApacheHttpAsyncClientHelper helper;
@Nullable
private FutureCallback<T> delegate;
@Nullable
private HttpContext context;
private volatile Span<?> span;
FutureCallbackWrapper(ApacheHttpAsyncClientHelper helper) {
this.helper = helper;
}
FutureCallbackWrapper<T> with(@Nullable FutureCallback<T> delegate, @Nullable HttpContext context, Span<?> span) {
this.delegate = delegate;
this.context = context;
// write to volatile field last
this.span = span;
return this;
}
@Override
public void completed(T result) {
try {
finishSpan(null);
} finally {
if (delegate != null) {
delegate.completed(result);
}
helper.recycle(this);
}
}
@Override
public void failed(Exception ex) {
try {
finishSpan(ex);
} finally {
if (delegate != null) {
delegate.failed(ex);
}
helper.recycle(this);
}
}
public void failedWithoutExecution(Throwable ex) {
try {
final Span<?> localSpan = span;
localSpan.captureException(ex);
localSpan.end();
} finally {
helper.recycle(this);
}
}
@Override
public void cancelled() {
try {
finishSpan(null);
} finally {
if (delegate != null) {
delegate.cancelled();
}
helper.recycle(this);
}
}
private void finishSpan(@Nullable Exception e) {
// start by reading the volatile field
final Span<?> localSpan = span;
try {
if (context != null) {
Object responseObject = context.getAttribute(HttpCoreContext.HTTP_RESPONSE);
if (responseObject instanceof HttpResponse) {
StatusLine statusLine = ((HttpResponse) responseObject).getStatusLine();
if (statusLine != null) {
span.getContext().getHttp().withStatusCode(statusLine.getStatusCode());
}
}
}
localSpan.captureException(e);
if (e != null) {
localSpan.withOutcome(Outcome.FAILURE);
}
} finally {
localSpan.end();
}
}
@Override
public void resetState() {
delegate = null;
context = null;
// write to volatile field last
span = null;
}
}
|
[
"[email protected]"
] | |
1d5a5ce6ebd4182ed229272f2b438a4f677a1fcb
|
f0ae1019be56ee4c8dadf77bcace381c9806ec97
|
/app/src/main/java/com/savka/audioplayer/Utils/GlobalVariables.java
|
0e224142dddac307aaed4bc68be9d69f236b7693
|
[] |
no_license
|
bigfatmonkey/AudioPlayer
|
1d66e584aa5a37813fe954eaa0e51a7ec83bd95a
|
d3d3582eaeb28e0e72c716d25fa8b830e411058f
|
refs/heads/master
| 2016-09-06T05:09:46.175372 | 2014-09-03T10:51:36 | 2014-09-03T10:51:36 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 170 |
java
|
package com.savka.audioplayer.Utils;
/**
* Created by vlad-pc on 01.09.2014.
*/
public class GlobalVariables {
public static boolean isMyServiceRunning = false;
}
|
[
"[email protected]"
] | |
f8c786c815fce68356f68bdf4b4eefadd60909ce
|
41abb611c700290da12a888e910f2e409f595e43
|
/src/cn/fcl/utils/PageBean.java
|
6acf651bffda5ac1db92b71ab4c7e628298352c5
|
[] |
no_license
|
ConnorTan/FCLShop
|
cb1439c721738c40ca155ade69a6612c97df905a
|
f0f90d04605ad6c75f926e66fdca97ac2a70c2b8
|
refs/heads/master
| 2021-08-07T13:51:32.294588 | 2017-11-08T07:43:59 | 2017-11-08T07:43:59 | 109,944,749 | 0 | 1 | null | null | null | null |
GB18030
|
Java
| false | false | 971 |
java
|
package cn.fcl.utils;
import java.util.List;
/**
* 分页类的封装
* @author 传智.郭嘉
*
*/
public class PageBean<T> {
private int page; // 当前页数
private int totalCount; // 总记录数
private int totalPage; // 总页数
private int limit; // 每页显示的记录数
private List<T> list; // 每页显示数据的集合.
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getTotalCount() {
return totalCount;
}
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
public int getTotalPage() {
return totalPage;
}
public void setTotalPage(int totalPage) {
this.totalPage = totalPage;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
public List<T> getList() {
return list;
}
public void setList(List<T> list) {
this.list = list;
}
}
|
[
"[email protected]"
] | |
5fb37fa0ef8f442a5753113de58569451f674323
|
1c785b15245b122d974c300e5004de60056ef55d
|
/projects/wfe/wfe-core/src/test/java/ru/runa/wfe/commons/bc/BusinessDurationParserTest.java
|
0fd323d8b687e71f053ad905d0aa00f3e7e8ae36
|
[] |
no_license
|
kuimovvg/RunaWFE-4.x
|
13e58f873d0fb751751a10294473d18b394a4b17
|
9b7d34f1e402d963213efda9dab9c305b090db0d
|
refs/heads/trunk
| 2020-12-25T20:30:53.442175 | 2015-07-29T16:03:24 | 2015-07-29T16:03:24 | 39,517,577 | 0 | 0 | null | 2015-07-22T16:36:09 | 2015-07-22T16:36:08 | null |
UTF-8
|
Java
| false | false | 1,840 |
java
|
package ru.runa.wfe.commons.bc;
import java.util.Calendar;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
public class BusinessDurationParserTest extends Assert {
@DataProvider
public Object[][] getDurations() {
return new Object[][] { { "1 business hours", new BusinessDuration(Calendar.MINUTE, 60, true) },
{ "1 hours", new BusinessDuration(Calendar.HOUR, 1, false) },
{ "15 business minutes", new BusinessDuration(Calendar.MINUTE, 15, true) },
{ "101 minutes", new BusinessDuration(Calendar.MINUTE, 101, false) },
{ "3 business days", new BusinessDuration(Calendar.DAY_OF_YEAR, 3, true) },
{ "14 days", new BusinessDuration(Calendar.DAY_OF_YEAR, 14, false) },
{ "11 seconds", new BusinessDuration(Calendar.SECOND, 11, false) },
{ "2 business weeks", new BusinessDuration(Calendar.DAY_OF_YEAR, 10, true) },
{ "1 business years", new BusinessDuration(Calendar.DAY_OF_YEAR, 220, true) },
{ "1 business months", new BusinessDuration(Calendar.DAY_OF_YEAR, 21, true) },
{ "1 months", new BusinessDuration(Calendar.MONTH, 1, false) },
{ "10 weeks", new BusinessDuration(Calendar.WEEK_OF_YEAR, 10, false) } };
}
@Test(dataProvider = "getDurations")
public void parseDurations(String durationString, BusinessDuration expected) {
BusinessDuration businessDuration = BusinessDurationParser.parse(durationString);
assertEquals(businessDuration, expected);
}
@Test(expectedExceptions = IllegalArgumentException.class)
public void parseBadDuration() {
BusinessDurationParser.parse("1 business week");
}
}
|
[
"gritsenko_s@999c22fd-c5eb-e245-b5be-d41808c6d2cd"
] |
gritsenko_s@999c22fd-c5eb-e245-b5be-d41808c6d2cd
|
0d3eca5a4675039ede5bd6758a7efe48e15a4c1d
|
bb86f2b5d188528b3d0044025443c78f71ad41f7
|
/src/test/java/com/crud/tasks/service/TrelloServiceTestSuite.java
|
9594c4d02b43d51eb6123654adde31a51bc8fdcc
|
[] |
no_license
|
mc139/REST-API
|
da4414ecb5478cb6dbdb0d29141e82232dbca800
|
cec8dcd0a56aaf171ba9dd84ab981c2d20efa07d
|
refs/heads/main
| 2023-07-12T19:16:53.571566 | 2021-08-24T14:38:38 | 2021-08-24T14:38:38 | 365,380,143 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,018 |
java
|
package com.crud.tasks.service;
import com.crud.tasks.config.AdminConfig;
import com.crud.tasks.domain.*;
import com.crud.tasks.trello.client.TrelloClient;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import java.util.ArrayList;
import java.util.List;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
public class TrelloServiceTestSuite {
@Mock
private AdminConfig adminConfig;
@InjectMocks
private TrelloService trelloService;
@Mock
private TrelloClient trelloClient;
@Mock
private SimpleEmailService emailService;
@Test
void shouldReturnEmptyListOfTrelloBoards() {
//GIVEN
when(trelloClient.getTrelloBoards()).thenReturn(new ArrayList<>());
//WHEN
List<TrelloBoardDto> expectedListOfTrelloBoardsDtos = trelloService.fetchTrelloBoards();
//THEN
Assertions.assertTrue(expectedListOfTrelloBoardsDtos.isEmpty());
}
@Test
void shouldCreateTrelloCards() {
//GIVEN
CreatedTrelloCardDto createdCard = new CreatedTrelloCardDto("1",
"card",
"test.com");
TrelloCardDto card = new TrelloCardDto("test card",
"test description",
"test pos",
"1");
when(trelloClient.createNewCard(card)).thenReturn(createdCard);
when(adminConfig.getAdminMail()).thenReturn("[email protected]");
//WHEN
CreatedTrelloCardDto expected = trelloService.createTrelloCard(card);
//THEN
Assertions.assertEquals(createdCard.getId(), expected.getId());
Assertions.assertEquals(createdCard.getName(), expected.getName());
Assertions.assertEquals(createdCard.getShortUrl(), expected.getShortUrl());
verify(adminConfig, times(1)).getAdminMail();
}
}
|
[
"[email protected]"
] | |
0d255381157c9a8172ece63910d84ac5ab5a5f51
|
89f611257a9542c35664cde7f01864f95dc65450
|
/dss-appconn/appconns/dss-schedulis-appconn/src/main/java/com/webank/wedatasphere/dss/appconn/schedulis/operation/SchedulisProjectDeletionOperation.java
|
0163655b8ee87e6e9a60da32b9931812df57cc13
|
[
"Apache-2.0"
] |
permissive
|
wushengyeyouya/DataSphereStudio
|
3754f96fec27106737485e3f47d26189cdafd921
|
b44652f45fbd1a280689e2efea8a48d3a630ef0a
|
refs/heads/master
| 2022-06-18T19:14:18.893729 | 2022-05-30T13:31:01 | 2022-05-30T13:31:01 | 223,753,345 | 1 | 0 |
Apache-2.0
| 2021-03-21T11:04:41 | 2019-11-24T14:01:19 |
Java
|
UTF-8
|
Java
| false | false | 3,151 |
java
|
/*
* Copyright 2019 WeBank
* 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.webank.wedatasphere.dss.appconn.schedulis.operation;
import com.webank.wedatasphere.dss.appconn.schedulis.ref.SchedulisProjectResponseRef;
import com.webank.wedatasphere.dss.appconn.schedulis.utils.SSORequestWTSS;
import com.webank.wedatasphere.dss.appconn.schedulis.utils.SchedulisExceptionUtils;
import com.webank.wedatasphere.dss.standard.app.structure.StructureService;
import com.webank.wedatasphere.dss.standard.app.structure.project.ProjectDeletionOperation;
import com.webank.wedatasphere.dss.standard.app.structure.project.ProjectRequestRef;
import com.webank.wedatasphere.dss.standard.app.structure.project.ProjectResponseRef;
import com.webank.wedatasphere.dss.standard.app.structure.project.ProjectService;
import com.webank.wedatasphere.dss.standard.common.exception.operation.ExternalOperationFailedException;
import java.util.HashMap;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class SchedulisProjectDeletionOperation implements ProjectDeletionOperation {
private static final Logger LOGGER = LoggerFactory.getLogger(SchedulisProjectDeletionOperation.class);
private ProjectService schedulisProjectService;
private String managerUrl;
public SchedulisProjectDeletionOperation(){
}
@Override
public void init() {
managerUrl = this.schedulisProjectService.getAppInstance().getBaseUrl().endsWith("/") ? this.schedulisProjectService.getAppInstance().getBaseUrl() + "manager" :
this.schedulisProjectService.getAppInstance().getBaseUrl() + "/manager";
}
@Override
public void setStructureService(StructureService service) {
schedulisProjectService = (ProjectService) service;
init();
}
@Override
public ProjectResponseRef deleteProject(ProjectRequestRef projectRef) throws ExternalOperationFailedException {
try {
Map<String, Object> params = new HashMap<>();
params.put("project", projectRef.getName());
params.put("delete", "true");
String responseContent =SSORequestWTSS.requestWTSSWithSSOGet(this.managerUrl,params,this.schedulisProjectService.getSSORequestService(),projectRef.getWorkspace());
LOGGER.info(" deleteWtssProject --response-->{}",responseContent);
} catch (Exception e){
SchedulisExceptionUtils.dealErrorException(60052, "failed to delete project in schedulis", e,
ExternalOperationFailedException.class);
}
return new SchedulisProjectResponseRef();
}
}
|
[
"[email protected]"
] | |
d7319489eeee61c85dc9ab15b9cc47e9e2384022
|
233d0dde2d80569c4b59ace18877b702371b18b1
|
/android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java
|
4b4e760c16b238588ea95d540d06b249bd0f5557
|
[
"Apache-2.0"
] |
permissive
|
aleaugustoplus/guava_gradle
|
4473b396faf13c8dda672c9de8bee30e2a256244
|
f6c1a96848e6bbdce740b0f73856bc3585be49d3
|
refs/heads/master
| 2022-12-29T17:01:32.262557 | 2019-11-19T22:48:52 | 2019-11-19T22:48:52 | 114,047,711 | 0 | 0 |
Apache-2.0
| 2020-10-12T21:16:49 | 2017-12-12T22:53:39 |
Java
|
UTF-8
|
Java
| false | false | 11,481 |
java
|
/*
* Copyright (C) 2005 The Guava 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 com.google.common.base;
import com.google.common.testing.GcFinalization;
import java.io.Closeable;
import java.lang.ref.WeakReference;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.net.URL;
import java.net.URLClassLoader;
import java.security.Permission;
import java.security.Policy;
import java.security.ProtectionDomain;
import java.util.concurrent.Callable;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
import junit.framework.TestCase;
/**
* Tests that the {@code ClassLoader} of {@link FinalizableReferenceQueue} can be unloaded. These
* tests are separate from {@link FinalizableReferenceQueueTest} so that they can be excluded from
* coverage runs, as the coverage system interferes with them.
*
* @author Eamonn McManus
*/
public class FinalizableReferenceQueueClassLoaderUnloadingTest extends TestCase {
/*
* The following tests check that the use of FinalizableReferenceQueue does not prevent the
* ClassLoader that loaded that class from later being garbage-collected. If anything continues
* to reference the FinalizableReferenceQueue class then its ClassLoader cannot be
* garbage-collected, even if there are no more instances of FinalizableReferenceQueue itself.
* The code in FinalizableReferenceQueue goes to considerable trouble to ensure that there are
* no such references and the tests here check that that trouble has not been in vain.
*
* When we reference FinalizableReferenceQueue in this test, we are referencing a class that is
* loaded by this test and that will obviously remain loaded for as long as the test is running.
* So in order to check ClassLoader garbage collection we need to create a new ClassLoader and
* make it load its own version of FinalizableReferenceQueue. Then we need to interact with that
* parallel version through reflection in order to exercise the parallel
* FinalizableReferenceQueue, and then check that the parallel ClassLoader can be
* garbage-collected after that.
*/
public static class MyFinalizableWeakReference extends FinalizableWeakReference<Object> {
public MyFinalizableWeakReference(Object x, FinalizableReferenceQueue queue) {
super(x, queue);
}
@Override
public void finalizeReferent() {}
}
private static class PermissivePolicy extends Policy {
@Override
public boolean implies(ProtectionDomain pd, Permission perm) {
return true;
}
}
private WeakReference<ClassLoader> useFrqInSeparateLoader() throws Exception {
final URLClassLoader myLoader = (URLClassLoader) getClass().getClassLoader();
final URL[] urls = myLoader.getURLs();
URLClassLoader sepLoader = new URLClassLoader(urls, myLoader.getParent());
// sepLoader is the loader that we will use to load the parallel FinalizableReferenceQueue (FRQ)
// and friends, and that we will eventually expect to see garbage-collected. The assumption
// is that the ClassLoader of this test is a URLClassLoader, and that it loads FRQ itself
// rather than delegating to a parent ClassLoader. If this assumption is violated the test will
// fail and will need to be rewritten.
Class<?> frqC = FinalizableReferenceQueue.class;
Class<?> sepFrqC = sepLoader.loadClass(frqC.getName());
assertNotSame(frqC, sepFrqC);
// Check the assumptions above.
// FRQ tries to load the Finalizer class (for the reference-collecting thread) in a few ways.
// If the class is accessible to the system ClassLoader (ClassLoader.getSystemClassLoader())
// then FRQ does not bother to load Finalizer.class through a separate ClassLoader. That happens
// in our test environment, which foils the purpose of this test, so we disable the logic for
// our test by setting a static field. We are changing the field in the parallel version of FRQ
// and each test creates its own one of those, so there is no test interference here.
Class<?> sepFrqSystemLoaderC =
sepLoader.loadClass(FinalizableReferenceQueue.SystemLoader.class.getName());
Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled");
disabled.setAccessible(true);
disabled.set(null, true);
// Now make a parallel FRQ and an associated FinalizableWeakReference to an object, in order to
// exercise some classes from the parallel ClassLoader.
AtomicReference<Object> sepFrqA = new AtomicReference<Object>(sepFrqC.newInstance());
Class<?> sepFwrC = sepLoader.loadClass(MyFinalizableWeakReference.class.getName());
Constructor<?> sepFwrCons = sepFwrC.getConstructor(Object.class, sepFrqC);
// The object that we will wrap in FinalizableWeakReference is a Stopwatch.
Class<?> sepStopwatchC = sepLoader.loadClass(Stopwatch.class.getName());
assertSame(sepLoader, sepStopwatchC.getClassLoader());
AtomicReference<Object> sepStopwatchA =
new AtomicReference<Object>(sepStopwatchC.getMethod("createUnstarted").invoke(null));
AtomicReference<WeakReference<?>> sepStopwatchRef =
new AtomicReference<WeakReference<?>>(
(WeakReference<?>) sepFwrCons.newInstance(sepStopwatchA.get(), sepFrqA.get()));
assertNotNull(sepStopwatchA.get());
// Clear all references to the Stopwatch and wait for it to be gc'd.
sepStopwatchA.set(null);
GcFinalization.awaitClear(sepStopwatchRef.get());
// Return a weak reference to the parallel ClassLoader. This is the reference that should
// eventually become clear if there are no other references to the ClassLoader.
return new WeakReference<ClassLoader>(sepLoader);
}
private void doTestUnloadable() throws Exception {
WeakReference<ClassLoader> loaderRef = useFrqInSeparateLoader();
GcFinalization.awaitClear(loaderRef);
}
public void testUnloadableWithoutSecurityManager() throws Exception {
// Test that the use of a FinalizableReferenceQueue does not subsequently prevent the
// loader of that class from being garbage-collected.
SecurityManager oldSecurityManager = System.getSecurityManager();
try {
System.setSecurityManager(null);
doTestUnloadable();
} finally {
System.setSecurityManager(oldSecurityManager);
}
}
public void testUnloadableWithSecurityManager() throws Exception {
// Test that the use of a FinalizableReferenceQueue does not subsequently prevent the
// loader of that class from being garbage-collected even if there is a SecurityManager.
// The SecurityManager environment makes such leaks more likely because when you create
// a URLClassLoader with a SecurityManager, the creating code's AccessControlContext is
// captured, and that references the creating code's ClassLoader.
Policy oldPolicy = Policy.getPolicy();
SecurityManager oldSecurityManager = System.getSecurityManager();
try {
Policy.setPolicy(new PermissivePolicy());
System.setSecurityManager(new SecurityManager());
doTestUnloadable();
} finally {
System.setSecurityManager(oldSecurityManager);
Policy.setPolicy(oldPolicy);
}
}
public static class FrqUser implements Callable<WeakReference<Object>> {
public static FinalizableReferenceQueue frq = new FinalizableReferenceQueue();
public static final Semaphore finalized = new Semaphore(0);
@Override
public WeakReference<Object> call() {
WeakReference<Object> wr =
new FinalizableWeakReference<Object>(new Integer(23), frq) {
@Override
public void finalizeReferent() {
finalized.release();
}
};
return wr;
}
}
public void testUnloadableInStaticFieldIfClosed() throws Exception {
Policy oldPolicy = Policy.getPolicy();
SecurityManager oldSecurityManager = System.getSecurityManager();
try {
Policy.setPolicy(new PermissivePolicy());
System.setSecurityManager(new SecurityManager());
WeakReference<ClassLoader> loaderRef = doTestUnloadableInStaticFieldIfClosed();
GcFinalization.awaitClear(loaderRef);
} finally {
System.setSecurityManager(oldSecurityManager);
Policy.setPolicy(oldPolicy);
}
}
// If you have a FinalizableReferenceQueue that is a static field of one of the classes of your
// app (like the FrqUser class above), then the app's ClassLoader will never be gc'd. The reason
// is that we attempt to run a thread in a separate ClassLoader that will detect when the FRQ
// is no longer referenced, meaning that the app's ClassLoader has been gc'd, and when that
// happens. But the thread's supposedly separate ClassLoader actually has a reference to the app's
// ClasLoader via its AccessControlContext. It does not seem to be possible to make a
// URLClassLoader without capturing this reference, and it probably would not be desirable for
// security reasons anyway. Therefore, the FRQ.close() method provides a way to stop the thread
// explicitly. This test checks that calling that method does allow an app's ClassLoader to be
// gc'd even if there is a still a FinalizableReferenceQueue in a static field. (Setting the field
// to null would also work, but only if there are no references to the FRQ anywhere else.)
private WeakReference<ClassLoader> doTestUnloadableInStaticFieldIfClosed() throws Exception {
final URLClassLoader myLoader = (URLClassLoader) getClass().getClassLoader();
final URL[] urls = myLoader.getURLs();
URLClassLoader sepLoader = new URLClassLoader(urls, myLoader.getParent());
Class<?> frqC = FinalizableReferenceQueue.class;
Class<?> sepFrqC = sepLoader.loadClass(frqC.getName());
assertNotSame(frqC, sepFrqC);
Class<?> sepFrqSystemLoaderC =
sepLoader.loadClass(FinalizableReferenceQueue.SystemLoader.class.getName());
Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled");
disabled.setAccessible(true);
disabled.set(null, true);
Class<?> frqUserC = FrqUser.class;
Class<?> sepFrqUserC = sepLoader.loadClass(frqUserC.getName());
assertNotSame(frqUserC, sepFrqUserC);
assertSame(sepLoader, sepFrqUserC.getClassLoader());
Callable<?> sepFrqUser = (Callable<?>) sepFrqUserC.newInstance();
WeakReference<?> finalizableWeakReference = (WeakReference<?>) sepFrqUser.call();
GcFinalization.awaitClear(finalizableWeakReference);
Field sepFrqUserFinalizedF = sepFrqUserC.getField("finalized");
Semaphore finalizeCount = (Semaphore) sepFrqUserFinalizedF.get(null);
boolean finalized = finalizeCount.tryAcquire(5, TimeUnit.SECONDS);
assertTrue(finalized);
Field sepFrqUserFrqF = sepFrqUserC.getField("frq");
Closeable frq = (Closeable) sepFrqUserFrqF.get(null);
frq.close();
return new WeakReference<ClassLoader>(sepLoader);
}
}
|
[
"[email protected]"
] | |
12845e881aedfefcf6ac58ab92d7e9366a3dbcc0
|
7bacbb40445ea2eeefd68905789b055807530978
|
/src/main/java/com/mixer/api/resource/chat/replies/ClearMessagesReply.java
|
c3ded0e8b8370c005aee2fb9d98121a66ef30fb2
|
[
"MIT"
] |
permissive
|
benjazzy/beam-client-java
|
37e209fe4df29b487124f25a67dda25d4beb470f
|
c6d80853e4b578ad8411dd91d4a4f1165116e3c6
|
refs/heads/master
| 2022-06-18T11:36:31.249380 | 2020-05-06T22:14:33 | 2020-05-06T22:14:33 | 260,603,914 | 0 | 0 |
MIT
| 2020-05-02T23:39:15 | 2020-05-02T03:08:48 |
Java
|
UTF-8
|
Java
| false | false | 265 |
java
|
package com.mixer.api.resource.chat.replies;
import com.google.gson.annotations.SerializedName;
import com.mixer.api.resource.chat.AbstractChatReply;
public class ClearMessagesReply extends AbstractChatReply {
public @SerializedName("data") String message;
}
|
[
"[email protected]"
] | |
fd2d9bfe48431d386c8bc88ea735155288ed9d69
|
277cb029be9bdffc892714f8402a34b55c9cac1e
|
/src/main/java/Main.java
|
8e53327ab08e746a6ba853e50f334d6392eb5512
|
[] |
no_license
|
sofflen/HW15
|
d8f009b528a56ce57572c032d17184412b5a9758
|
285db88916389f498bc2453eedf786d7967b8923
|
refs/heads/master
| 2020-09-14T00:04:18.991444 | 2019-11-24T18:15:31 | 2019-11-24T18:15:31 | 222,947,396 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 132 |
java
|
import orders.Order;
public class Main {
public static void main(String[] args) {
new Order().orderNumber();
}
}
|
[
"[email protected]"
] | |
0573b1e0d7d96c74ff02d66a60625d68d9ff1d52
|
27d51b8bbe93c3bc6f28eaca192c5a61b98205f0
|
/SCOS/app/src/main/java/es/source/code/model/Xml.java
|
a307019bf88c6f449732aa4ea91a4023ecad513c
|
[] |
no_license
|
fuyang1215246398/AS
|
5972ca5b08bd3d57b8ba46d6dab46804c149b94e
|
992488e6d96acce3f71f5326c5e775a2ada7f8ca
|
refs/heads/master
| 2020-03-29T18:21:11.687283 | 2018-11-09T04:35:55 | 2018-11-09T04:35:55 | 150,207,154 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 464 |
java
|
package es.source.code.model;
import java.util.List;
public class Xml extends Result {
// Food列表
private List<Food> dataList;
public Xml() {
}
public Xml(int RESULTCODE, String msg, List<Food> dataList) {
super(RESULTCODE,msg);
this.dataList = dataList;
}
public List<Food> getDataList() {
return dataList;
}
public void setDataList(List<Food> dataList) {
this.dataList = dataList;
}
}
|
[
"[email protected]"
] | |
d90b75447af669b502d245e51d711a71a8dca7fa
|
76199e4094730ecd3de3c38ef294f5281cafd49a
|
/Projeto/Video Locadora/src/telaLocacao.java
|
026cb091d567c431a589a4eeaa9496320ca1f77f
|
[] |
no_license
|
JonathanMoura/Video-locadora
|
e463c238f93b0b7893c1cf407ca0ee5004eac5f1
|
b2586062cb2ed5ce8c422f0d1f23fb75415d298d
|
refs/heads/master
| 2021-01-02T08:58:47.357738 | 2017-08-14T19:30:46 | 2017-08-14T19:30:46 | 99,108,953 | 0 | 0 | null | null | null | null |
ISO-8859-1
|
Java
| false | false | 10,146 |
java
|
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Image;
import java.awt.SystemColor;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import excecoes.*;
import negocio.Cliente;
import negocio.Filme;
import negocio.Fachada;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.ComboBoxModel;
import javax.swing.DefaultComboBoxModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JTextArea;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JComboBox;
public class telaLocacao extends JFrame {
private JPanel contentPane;
private static telaLocacao instance;
private JTextField textField;
private JTextField textField_1;
private JTextField textField_2;
private JTextField textFieldProcurar;
private JTextField textFieldEntrega;
private JTextField textFieldNomeFilme;
private JTextField textFieldValor;
private Fachada fachada;
public static JFrame getInstance(){
if(instance == null)
instance = new telaLocacao();
return instance;
}
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
telaLocacao frame = new telaLocacao();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public telaLocacao() {
setFont(new Font("Arial", Font.PLAIN, 14));
setTitle("Banco de dados - Alugueis");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 649, 312);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
ImageIcon filmes = new ImageIcon(telaFilmes.class.getResource("/icones/filmes.png"));
textFieldValor = new JTextField();
textFieldValor.setForeground(Color.BLACK);
textFieldValor.setFont(new Font("Arial", Font.PLAIN, 18));
textFieldValor.setColumns(10);
textFieldValor.setBounds(482, 28, 98, 29);
contentPane.add(textFieldValor);
textFieldProcurar = new JTextField();
textFieldProcurar.setForeground(SystemColor.windowBorder);
textFieldProcurar.setFont(new Font("Arial", Font.PLAIN, 18));
textFieldProcurar.setBounds(108, 149, 179, 29);
contentPane.add(textFieldProcurar);
textFieldProcurar.setText("Insira o CPF");
textFieldProcurar.setColumns(10);
textFieldNomeFilme = new JTextField();
textFieldNomeFilme.setForeground(Color.BLACK);
textFieldNomeFilme.setFont(new Font("Arial", Font.PLAIN, 18));
textFieldNomeFilme.setColumns(10);
textFieldNomeFilme.setBounds(108, 194, 179, 25);
contentPane.add(textFieldNomeFilme);
textFieldEntrega = new JTextField();
textFieldEntrega.setForeground(Color.BLACK);
textFieldEntrega.setFont(new Font("Arial", Font.PLAIN, 18));
textFieldEntrega.setColumns(10);
textFieldEntrega.setBounds(108, 234, 179, 25);
contentPane.add(textFieldEntrega);
JComboBox<String> comboBox = new JComboBox<String>();
comboBox.setForeground(SystemColor.windowBorder);
comboBox.setFont(new Font("Arial", Font.PLAIN, 18));
comboBox.setBounds(108, 25, 179, 29);
contentPane.add(comboBox);
String nomeFilme;
Filme filme = new Filme();
try{
nomeFilme = comboBox.getSelectedItem()+"";
filme = fachada.getInstance().procurarFilme(nomeFilme);
textFieldValor.setText(Double.toString(filme.getValor()));
}
catch(FilmeNaoEncontradoException fnee){
JOptionPane.showMessageDialog(null, fnee.getMessage());
}
catch(CampoVazioException cve){
JOptionPane.showMessageDialog(null, cve.getMessage());
}
JLabel lblValor = new JLabel("Valor total:");
lblValor.setForeground(SystemColor.windowBorder);
lblValor.setFont(new Font("Arial", Font.PLAIN, 18));
lblValor.setBounds(363, 40, 120, 14);
contentPane.add(lblValor);
JLabel lblCliente = new JLabel("Cliente:");
lblCliente.setForeground(SystemColor.windowBorder);
lblCliente.setFont(new Font("Arial", Font.PLAIN, 18));
lblCliente.setBounds(10, 158, 98, 14);
contentPane.add(lblCliente);
JLabel lblFilme = new JLabel("Filme:");
lblFilme.setForeground(SystemColor.windowBorder);
lblFilme.setFont(new Font("Arial", Font.PLAIN, 18));
lblFilme.setBounds(10, 200, 98, 14);
contentPane.add(lblFilme);
JLabel lblDataDeEntrega = new JLabel("Entrega:");
lblDataDeEntrega.setForeground(SystemColor.windowBorder);
lblDataDeEntrega.setFont(new Font("Arial", Font.PLAIN, 18));
lblDataDeEntrega.setBounds(10, 238, 98, 19);
contentPane.add(lblDataDeEntrega);
JButton btnProcurar = new JButton("Procurar");
btnProcurar.setForeground(SystemColor.windowBorder);
btnProcurar.setFont(new Font("Arial", Font.PLAIN, 18));
btnProcurar.setBounds(330, 148, 120, 31);
contentPane.add(btnProcurar);
btnProcurar.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e){
Cliente achouCliente = new Cliente();
Filme filme = new Filme();
String[] nomeFilme;
String filmeAlugado;
comboBox.removeAllItems();
try{
achouCliente = fachada.getInstance().procurarCliente(textFieldProcurar.getText());
nomeFilme = achouCliente.getFilmeAlugado();
if(nomeFilme == null){
SemAluguelException sae = new SemAluguelException();
throw sae;
}
for(int i = 0; i < nomeFilme.length; i++){
comboBox.addItem(nomeFilme[i]);
}
filmeAlugado = comboBox.getSelectedItem()+"";
//textFieldNomeFilme.setText(nomeFilme);
textFieldEntrega.setText(achouCliente.getDataEntrega());
filme = fachada.getInstance().procurarFilme(filmeAlugado);
textFieldValor.setText(Double.toString(filme.getValor()));
}
catch(SemAluguelException sae){
JOptionPane.showMessageDialog(null, sae.getMessage());
}
catch(FilmeNaoEncontradoException fnee){
JOptionPane.showMessageDialog(null, fnee.getMessage());
}
catch(ClienteNaoEncontradoException cnee){
JOptionPane.showMessageDialog(null, cnee.getMessage());
}
catch(CampoVazioException cve){
JOptionPane.showMessageDialog(null, cve.getMessage());
}
}
});
JButton btnLocar = new JButton("Locar");
btnLocar.setForeground(SystemColor.windowBorder);
btnLocar.setFont(new Font("Arial", Font.PLAIN, 18));
btnLocar.setBounds(330, 190, 120, 31);
contentPane.add(btnLocar);
btnLocar.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Filme filme = new Filme();
Cliente cliente = new Cliente();
int resposta;
String nome, CPF, data;
try{
resposta = JOptionPane.showConfirmDialog(null, "Confirmar aluguel?");
if(resposta == 0){
nome = textFieldNomeFilme.getText();
CPF = textFieldProcurar.getText();
data = textFieldEntrega.getText();
if(data.equals("")){
CampoVazioException cve = new CampoVazioException();
throw cve;
}
filme = fachada.getInstance().procurarFilme(nome);
textFieldValor.setText(Double.toString(filme.getValor()));
comboBox.addItem(nome);
cliente = fachada.getInstance().procurarCliente(CPF);
cliente.setFilmeAlugado(nome);
cliente.setDataEntrega(textFieldEntrega.getText());
JOptionPane.showMessageDialog(null, "Aluguel efetuado com sucesso");
textFieldNomeFilme.setText("");
textFieldEntrega.setText("");
}
}
catch(ClienteNaoEncontradoException cnee){
JOptionPane.showMessageDialog(null, cnee.getMessage());
}
catch(FilmeNaoEncontradoException fnee){
JOptionPane.showMessageDialog(null, fnee.getMessage());
}
catch(CampoVazioException cve){
JOptionPane.showMessageDialog(null, cve.getMessage());
}
}
});
JButton btnRemover = new JButton("Remover");
btnRemover.setForeground(SystemColor.windowBorder);
btnRemover.setFont(new Font("Arial", Font.PLAIN, 18));
btnRemover.setBounds(482, 190, 120, 31);
contentPane.add(btnRemover);
btnRemover.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Cliente cliente = new Cliente();
int resposta;
String CPF;
try{
if(textFieldNomeFilme.getText().equals("")){
CampoVazioException cve = new CampoVazioException();
throw cve;
}
CPF = textFieldProcurar.getText();
cliente = fachada.getInstance().procurarCliente(CPF);
cliente.setFilmeAlugado("");
cliente.setDataEntrega("");
resposta = JOptionPane.showConfirmDialog(null,"Confirmar remoção de " + textFieldNomeFilme.getText());
if(resposta == 0){
fachada.getInstance().atualizarCliente(cliente);
JOptionPane.showMessageDialog(null, "Filme removido com sucesso");
textFieldNomeFilme.setText("");
textFieldEntrega.setText("");
textFieldValor.setText("");
}
}
catch(ClienteNaoEncontradoException cnee){
JOptionPane.showMessageDialog(null, cnee.getMessage());
}
catch(CampoVazioException cve){
JOptionPane.showMessageDialog(null, cve.getMessage());
}
}
});
JButton btnSair = new JButton("Sair");
btnSair.setForeground(SystemColor.windowBorder);
btnSair.setFont(new Font("Arial", Font.PLAIN, 18));
btnSair.setBounds(482, 232, 120, 31);
contentPane.add(btnSair);
btnSair.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
textFieldProcurar.setText("");
textFieldValor.setText("");
textFieldNomeFilme.setText("");
comboBox.removeAllItems();
telaPrincipal.getInstance().setVisible(true);
dispose();
}
});
}
}
|
[
"[email protected]"
] | |
109155654f7f7ac94074ac33cba7b48ca6b2d7b5
|
5b728a069087d3b86c14dc72e822de1f16bc1a4f
|
/src/main/java/lt/zapasnikas/carscraper/model/CarParam.java
|
5e097aa750614c48a7d68990e4833163b1c77fac
|
[] |
no_license
|
azapasn/Scrapper
|
21628df17e5cc1cfb062580de8d4fc9b7d920951
|
b54774d89faa14a48469b6bd642a01d17a27278f
|
refs/heads/master
| 2022-09-09T03:06:03.516207 | 2021-10-06T07:29:29 | 2021-10-06T07:29:29 | 231,828,109 | 0 | 0 | null | 2022-09-08T01:05:17 | 2020-01-04T21:04:17 |
Java
|
UTF-8
|
Java
| false | false | 3,548 |
java
|
package lt.zapasnikas.carscraper.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import javax.persistence.*;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
@Entity
public class CarParam {
@Id
@GeneratedValue
@Column
private long id;
@JsonIgnore
@OneToOne
private Advertisement advertisement;
@Column
private String make;
@Column
private String model;
@Column
private String yearsProd;
@Column
private String engine;
@Column
private String fuelType;
@Column
private String color;
@Column
private String mileageKm;
@Column
private String driveTrain;
@Column
private String defects;
@Column
private String vinCode;
@Column
private String firstRegistrationCountry;
@Column
private String licencePlate;
@Column(insertable = false, updatable = false)
private LocalDateTime creationDate;
public String getCreationDate() {
return creationDate.format(DateTimeFormatter.ISO_LOCAL_DATE);
}
public int getCreationYear() {
return creationDate.getYear();
}
public int getCreationMonth() {
return creationDate.getMonthValue();
}
public int getCreationDay() {
return creationDate.getDayOfMonth();
}
public String getYearsProd() {
return yearsProd;
}
public void setYearsProd(String yearsProd) {
this.yearsProd = yearsProd;
}
public String getEngine() {
return engine;
}
public void setEngine(String engine) {
this.engine = engine;
}
public String getFuelType() {
return fuelType;
}
public void setFuelType(String fuelType) {
this.fuelType = fuelType;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public String getMileageKm() {
return mileageKm;
}
public void setMileageKm(String mileageKm) {
this.mileageKm = mileageKm;
}
public String getDriveTrain() {
return driveTrain;
}
public void setDriveTrain(String driveTrain) {
this.driveTrain = driveTrain;
}
public String getDefects() {
return defects;
}
public void setDefects(String defects) {
this.defects = defects;
}
public String getVinCode() {
return vinCode;
}
public void setVinCode(String vinCode) {
this.vinCode = vinCode;
}
public String getFirstRegistrationCountry() {
return firstRegistrationCountry;
}
public void setFirstRegistrationCountry(String firstRegistrationCountry) {
this.firstRegistrationCountry = firstRegistrationCountry;
}
public String getLicencePlate() {
return licencePlate;
}
public void setLicencePlate(String licencePlate) {
this.licencePlate = licencePlate;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getMake() {
return make;
}
public void setMake(String make) {
this.make = make;
}
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
public Advertisement getAdvertisement() {
return advertisement;
}
public void setAdvertisement(Advertisement advertisement) {
this.advertisement = advertisement;
}
}
|
[
"[email protected]"
] | |
345f301cf01ce5e4ace655226b78783fd5c5c2c8
|
4cabd5a6f32adaff374fc7a71ad84e41c1c1745a
|
/src/fxchart/NxLineChart.java
|
94b4cc465d107dc72eaa97fec5461d73da7f6272
|
[] |
no_license
|
nowgain-nowpain/fxchart
|
9559cb21f6be29808e81ccd72fb939efc0ff3f9d
|
8265f9ea86d8d2e73f3f4957a06898ab7a6a688b
|
refs/heads/master
| 2021-08-08T10:21:51.973283 | 2021-06-09T01:00:40 | 2021-06-09T01:00:40 | 23,290,640 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 28,662 |
java
|
package fxchart;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javafx.animation.FadeTransition;
import javafx.animation.Interpolator;
import javafx.animation.KeyFrame;
import javafx.animation.KeyValue;
import javafx.animation.Timeline;
import javafx.animation.Animation;
import javafx.beans.NamedArg;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.collections.FXCollections;
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableList;
import javafx.scene.Node;
import javafx.scene.layout.StackPane;
import javafx.scene.shape.LineTo;
import javafx.scene.shape.MoveTo;
import javafx.scene.shape.Path;
import javafx.scene.shape.PathElement;
import javafx.scene.shape.StrokeLineJoin;
import javafx.util.Duration;
import com.sun.javafx.charts.Legend;
import com.sun.javafx.charts.Legend.LegendItem;
import javafx.css.StyleableBooleanProperty;
import javafx.css.CssMetaData;
import com.sun.javafx.css.converters.BooleanConverter;
import java.util.*;
import javafx.css.Styleable;
import javafx.css.StyleableProperty;
/**
* Line Chart plots a line connecting the data points in a series. The data points
* themselves can be represented by symbols optionally. Line charts are usually used
* to view data trends over time or category.
* @since JavaFX 2.0
*/
public class NxLineChart<X,Y> extends NXYChart<X,Y> {
// -------------- PRIVATE FIELDS ------------------------------------------
/** A multiplier for the Y values that we store for each series, it is used to animate in a new series */
private Map<Series<X,Y>, DoubleProperty> seriesYMultiplierMap = new HashMap<>();
private Legend legend = new Legend();
private Timeline dataRemoveTimeline;
private Series<X,Y> seriesOfDataRemoved = null;
private Data<X,Y> dataItemBeingRemoved = null;
private FadeTransition fadeSymbolTransition = null;
private Map<Data<X,Y>, Double> XYValueMap =
new HashMap<Data<X,Y>, Double>();
private Timeline seriesRemoveTimeline = null;
// -------------- PUBLIC PROPERTIES ----------------------------------------
/** When true, CSS styleable symbols are created for any data items that don't have a symbol node specified. */
private BooleanProperty createSymbols = new StyleableBooleanProperty(true) {
@Override protected void invalidated() {
for (int seriesIndex=0; seriesIndex < getData().size(); seriesIndex ++) {
Series<X,Y> series = getData().get(seriesIndex);
for (int itemIndex=0; itemIndex < series.getData().size(); itemIndex ++) {
Data<X,Y> item = series.getData().get(itemIndex);
Node symbol = item.getNode();
if(get() && symbol == null) { // create any symbols
symbol = createSymbol(series, getData().indexOf(series), item, itemIndex);
getPlotChildren().add(symbol);
} else if (!get() && symbol != null) { // remove symbols
getPlotChildren().remove(symbol);
symbol = null;
item.setNode(null);
}
}
}
requestChartLayout();
}
@Override
public Object getBean() {
return NxLineChart.this;
}
@Override
public String getName() {
return "createSymbols";
}
@Override
public CssMetaData<NxLineChart<?,?>,Boolean> getCssMetaData() {
return StyleableProperties.CREATE_SYMBOLS;
}
};
/**
* Indicates whether symbols for data points will be created or not.
*
* @return true if symbols for data points will be created and false otherwise.
*/
public final boolean getCreateSymbols() { return createSymbols.getValue(); }
public final void setCreateSymbols(boolean value) { createSymbols.setValue(value); }
public final BooleanProperty createSymbolsProperty() { return createSymbols; }
// -------------- CONSTRUCTORS ----------------------------------------------
/**
* Construct a new LineChart with the given axis.
*
* @param xAxis The x axis to use
* @param yAxis The y axis to use
*/
public NxLineChart(@NamedArg("xAxis") Axis<X> xAxis, @NamedArg("yAxis") Axis<Y> yAxis, Axis<X> xAxis2) {
this(xAxis, yAxis, xAxis2, FXCollections.<Series<X, Y>>observableArrayList());
}
/**
* Construct a new LineChart with the given axis and data.
*
* @param xAxis The x axis to use
* @param yAxis The y axis to use
* @param data The data to use, this is the actual list used so any changes to it will be reflected in the chart
*/
public NxLineChart(@NamedArg("xAxis") Axis<X> xAxis, @NamedArg("yAxis") Axis<Y> yAxis, Axis<X> xAxis2, @NamedArg("data") ObservableList<Series<X,Y>> data) {
super(xAxis,yAxis, xAxis2);
setLegend(legend);
setData(data);
}
// -------------- METHODS ------------------------------------------------------------------------------------------
/** @inheritDoc */
@Override protected void updateAxisRange() {
final Axis<X> xa = getXAxis();
final Axis<X> xa2 = getXAxis2();
final Axis<Y> ya = getYAxis();
List<X> xData = null;
List<X> xData2 = null;
List<Y> yData = null;
if(xa.isAutoRanging()) xData = new ArrayList<X>();
if(xa2.isAutoRanging()) xData2 = new ArrayList<X>();
if(ya.isAutoRanging()) yData = new ArrayList<Y>();
if(xData != null || yData != null) {
int i = 0;
for(Series<X,Y> series : getData()) {
for(Data<X,Y> data: series.getData()) {
if(xData != null && i == 0) xData.add(data.getXValue());
if(yData != null) yData.add(data.getYValue());
}
i++;
}
// RT-32838 No need to invalidate range if there is one data item - whose value is zero.
if(xData != null && !(xData.size() == 1 && getXAxis().toNumericValue(xData.get(0)) == 0)) {
xa.invalidateRange(xData);
}
if(yData != null && !(yData.size() == 1 && getYAxis().toNumericValue(yData.get(0)) == 0)) {
ya.invalidateRange(yData);
}
}
if (xData2 != null) {
int i = 0;
for(Series<X,Y> series : getData()) {
if(i ==1) {
for(Data<X,Y> data: series.getData()) {
xData2.add(data.getXValue());
}
}
i++;
}
// RT-32838 No need to invalidate range if there is one data item - whose value is zero.
if(xData2 != null && !(xData2.size() == 1 && getXAxis2().toNumericValue(xData2.get(0)) == 0)) {
xa2.invalidateRange(xData2);
}
}
}
@Override protected void dataItemAdded(final Series<X,Y> series, int itemIndex, final Data<X,Y> item) {
final Node symbol = createSymbol(series, getData().indexOf(series), item, itemIndex);
if (shouldAnimate()) {
if (dataRemoveTimeline != null && dataRemoveTimeline.getStatus().equals(Animation.Status.RUNNING)) {
if (seriesOfDataRemoved == series) {
dataRemoveTimeline.stop();
dataRemoveTimeline = null;
getPlotChildren().remove(dataItemBeingRemoved.getNode());
removeDataItemFromDisplay(seriesOfDataRemoved, dataItemBeingRemoved);
seriesOfDataRemoved = null;
dataItemBeingRemoved = null;
}
}
boolean animate = false;
if (itemIndex > 0 && itemIndex < (series.getData().size()-1)) {
animate = true;
Data<X,Y> p1 = series.getData().get(itemIndex - 1);
Data<X,Y> p2 = series.getData().get(itemIndex + 1);
if (p1 != null && p2 != null) {
double x1 = getXAxis().toNumericValue(p1.getXValue());
double y1 = getYAxis().toNumericValue(p1.getYValue());
double x3 = getXAxis().toNumericValue(p2.getXValue());
double y3 = getYAxis().toNumericValue(p2.getYValue());
double x2 = getXAxis().toNumericValue(item.getXValue());
//double y2 = getYAxis().toNumericValue(item.getYValue());
if (x2 > x1 && x2 < x3) {
//1. y intercept of the line : y = ((y3-y1)/(x3-x1)) * x2 + (x3y1 - y3x1)/(x3 -x1)
double y = ((y3-y1)/(x3-x1)) * x2 + (x3*y1 - y3*x1)/(x3-x1);
item.setCurrentY(getYAxis().toRealValue(y));
item.setCurrentX(getXAxis().toRealValue(x2));
} else {
//2. we can simply use the midpoint on the line as well..
double x = (x3 + x1)/2;
double y = (y3 + y1)/2;
item.setCurrentX(getXAxis().toRealValue(x));
item.setCurrentY(getYAxis().toRealValue(y));
}
}
} else if (itemIndex == 0 && series.getData().size() > 1) {
animate = true;
item.setCurrentX(series.getData().get(1).getXValue());
item.setCurrentY(series.getData().get(1).getYValue());
} else if (itemIndex == (series.getData().size() - 1) && series.getData().size() > 1) {
animate = true;
int last = series.getData().size() - 2;
item.setCurrentX(series.getData().get(last).getXValue());
item.setCurrentY(series.getData().get(last).getYValue());
} else if(symbol != null) {
// fade in new symbol
symbol.setOpacity(0);
getPlotChildren().add(symbol);
FadeTransition ft = new FadeTransition(Duration.millis(500),symbol);
ft.setToValue(1);
ft.play();
}
if (animate) {
animate(
new KeyFrame(Duration.ZERO,
(e) -> { if (symbol != null && !getPlotChildren().contains(symbol)) getPlotChildren().add(symbol); },
new KeyValue(item.currentYProperty(),
item.getCurrentY()),
new KeyValue(item.currentXProperty(),
item.getCurrentX())),
new KeyFrame(Duration.millis(700), new KeyValue(item.currentYProperty(),
item.getYValue(), Interpolator.EASE_BOTH),
new KeyValue(item.currentXProperty(),
item.getXValue(), Interpolator.EASE_BOTH))
);
}
} else {
if (symbol != null) getPlotChildren().add(symbol);
}
}
@Override protected void dataItemRemoved(final Data<X,Y> item, final Series<X,Y> series) {
final Node symbol = item.getNode();
// remove item from sorted list
int itemIndex = series.getItemIndex(item);
if (shouldAnimate()) {
XYValueMap.clear();
boolean animate = false;
if (itemIndex > 0 && itemIndex < series.getDataSize()) {
animate = true;
int index=0; Data<X,Y> d;
for (d = series.begin; d != null && index != itemIndex - 1; d=d.next) index++;
Data<X,Y> p1 = d;
Data<X,Y> p2 = (d.next).next;
if (p1 != null && p2 != null) {
double x1 = getXAxis().toNumericValue(p1.getXValue());
double y1 = getYAxis().toNumericValue(p1.getYValue());
double x3 = getXAxis().toNumericValue(p2.getXValue());
double y3 = getYAxis().toNumericValue(p2.getYValue());
double x2 = getXAxis().toNumericValue(item.getXValue());
double y2 = getYAxis().toNumericValue(item.getYValue());
if (x2 > x1 && x2 < x3) {
// //1. y intercept of the line : y = ((y3-y1)/(x3-x1)) * x2 + (x3y1 - y3x1)/(x3 -x1)
double y = ((y3-y1)/(x3-x1)) * x2 + (x3*y1 - y3*x1)/(x3-x1);
item.setCurrentX(getXAxis().toRealValue(x2));
item.setCurrentY(getYAxis().toRealValue(y2));
item.setXValue(getXAxis().toRealValue(x2));
item.setYValue(getYAxis().toRealValue(y));
} else {
//2. we can simply use the midpoint on the line as well..
double x = (x3 + x1)/2;
double y = (y3 + y1)/2;
item.setCurrentX(getXAxis().toRealValue(x));
item.setCurrentY(getYAxis().toRealValue(y));
}
}
} else if (itemIndex == 0 && series.getDataSize() > 1) {
animate = true;
Iterator<Data<X,Y>> iter = getDisplayedDataIterator(series);
if (iter.hasNext()) { // get first data value
Data<X,Y> d = iter.next();
item.setXValue(d.getXValue());
item.setYValue(d.getYValue());
}
} else if (itemIndex == (series.getDataSize() - 1) && series.getDataSize() > 1) {
animate = true;
int last = series.getData().size() - 1;
item.setXValue(series.getData().get(last).getXValue());
item.setYValue(series.getData().get(last).getYValue());
} else {
// fade out symbol
if (symbol != null) {
fadeSymbolTransition = new FadeTransition(Duration.millis(500),symbol);
fadeSymbolTransition.setToValue(0);
fadeSymbolTransition.setOnFinished(actionEvent -> {
item.setSeries(null);
getPlotChildren().remove(symbol);
removeDataItemFromDisplay(series, item);
symbol.setOpacity(1.0);
});
fadeSymbolTransition.play();
}
}
if (animate) {
dataRemoveTimeline = createDataRemoveTimeline(item, symbol, series);
seriesOfDataRemoved = series;
dataItemBeingRemoved = item;
dataRemoveTimeline.play();
}
} else {
item.setSeries(null);
if (symbol != null) getPlotChildren().remove(symbol);
removeDataItemFromDisplay(series, item);
}
//Note: better animation here, point should move from old position to new position at center point between prev and next symbols
}
/** @inheritDoc */
@Override protected void dataItemChanged(Data<X, Y> item) {
}
@Override protected void seriesChanged(ListChangeListener.Change<? extends Series> c) {
// Update style classes for all series lines and symbols
// Note: is there a more efficient way of doing this?
for (int i = 0; i < getDataSize(); i++) {
final Series<X,Y> s = getData().get(i);
Node seriesNode = s.getNode();
if(seriesNode != null) seriesNode.getStyleClass().setAll("chart-series-line", "series" + i, s.defaultColorStyleClass);
}
}
@Override protected void seriesAdded(Series<X,Y> series, int seriesIndex) {
// create new path for series
Path seriesLine = new Path();
seriesLine.setStrokeLineJoin(StrokeLineJoin.BEVEL);
series.setNode(seriesLine);
// create series Y multiplier
DoubleProperty seriesYAnimMultiplier = new SimpleDoubleProperty(this, "seriesYMultiplier");
seriesYMultiplierMap.put(series, seriesYAnimMultiplier);
// handle any data already in series
if (shouldAnimate()) {
seriesLine.setOpacity(0);
seriesYAnimMultiplier.setValue(0d);
} else {
seriesYAnimMultiplier.setValue(1d);
}
getPlotChildren().add(seriesLine);
List<KeyFrame> keyFrames = new ArrayList<KeyFrame>();
if (shouldAnimate()) {
// animate in new series
keyFrames.add(new KeyFrame(Duration.ZERO,
new KeyValue(seriesLine.opacityProperty(), 0),
new KeyValue(seriesYAnimMultiplier, 0)
));
keyFrames.add(new KeyFrame(Duration.millis(200),
new KeyValue(seriesLine.opacityProperty(), 1)
));
keyFrames.add(new KeyFrame(Duration.millis(500),
new KeyValue(seriesYAnimMultiplier, 1)
));
}
for (int j=0; j<series.getData().size(); j++) {
Data<X,Y> item = series.getData().get(j);
final Node symbol = createSymbol(series, seriesIndex, item, j);
if(symbol != null) {
if (shouldAnimate()) symbol.setOpacity(0);
getPlotChildren().add(symbol);
if (shouldAnimate()) {
// fade in new symbol
keyFrames.add(new KeyFrame(Duration.ZERO, new KeyValue(symbol.opacityProperty(), 0)));
keyFrames.add(new KeyFrame(Duration.millis(200), new KeyValue(symbol.opacityProperty(), 1)));
}
}
}
if (shouldAnimate()) animate(keyFrames.toArray(new KeyFrame[keyFrames.size()]));
}
private void updateDefaultColorIndex(final Series<X,Y> series) {
int clearIndex = seriesColorMap.get(series);
series.getNode().getStyleClass().remove(DEFAULT_COLOR+clearIndex);
for (int j=0; j < series.getData().size(); j++) {
final Node node = series.getData().get(j).getNode();
if(node!=null) {
node.getStyleClass().remove(DEFAULT_COLOR+clearIndex);
}
}
}
@Override protected void seriesRemoved(final Series<X,Y> series) {
updateDefaultColorIndex(series);
// remove all symbol nodes
seriesYMultiplierMap.remove(series);
if (shouldAnimate()) {
// create list of all nodes we need to fade out
final List<Node> nodes = new ArrayList<Node>();
nodes.add(series.getNode());
if (getCreateSymbols()) { // RT-22124
// done need to fade the symbols if createSymbols is false
for (Data<X,Y> d: series.getData()) nodes.add(d.getNode());
}
// fade out old and symbols
KeyValue[] startValues = new KeyValue[nodes.size()];
KeyValue[] endValues = new KeyValue[nodes.size()];
for (int j=0; j < nodes.size(); j++) {
startValues[j] = new KeyValue(nodes.get(j).opacityProperty(),1);
endValues[j] = new KeyValue(nodes.get(j).opacityProperty(),0);
}
seriesRemoveTimeline = new Timeline();
seriesRemoveTimeline.getKeyFrames().addAll(
new KeyFrame(Duration.ZERO,startValues),
new KeyFrame(Duration.millis(900), actionEvent -> {
getPlotChildren().removeAll(nodes);
removeSeriesFromDisplay(series);
},endValues)
);
seriesRemoveTimeline.play();
} else {
getPlotChildren().remove(series.getNode());
for (Data<X,Y> d:series.getData()) getPlotChildren().remove(d.getNode());
removeSeriesFromDisplay(series);
}
}
/** @inheritDoc */
@Override protected void layoutPlotChildren() {
//ZCH: Modified to handle NaN values and remove the sorting.
List<PathElement> constructedPath = new ArrayList<>(getDataSize());
for (int seriesIndex=0; seriesIndex < getDataSize(); seriesIndex++) {
Series<X,Y> series = getData().get(seriesIndex);
final DoubleProperty seriesYAnimMultiplier = seriesYMultiplierMap.get(series);
if(series.getNode() instanceof Path) {
final ObservableList<PathElement> seriesLine = ((Path)series.getNode()).getElements();
seriesLine.clear();
//constructedPath.clear();
boolean connected = false;
for (Data<X,Y> item = series.begin; item != null; item = item.next) {
// double x = ( Double.isNaN((Double)item.getCurrentX()) == true || Float.isNaN((Float)item.getCurrentX()) == true) ?
// Double.NaN : getXAxis().getDisplayPosition(item.getCurrentX());
// double y = ( Double.isNaN((Double)item.getCurrentY()) == true || Float.isNaN((Float)item.getCurrentY()) == true) ?
// Double.NaN :
// getYAxis().getDisplayPosition(getYAxis().toRealValue(getYAxis().toNumericValue(item.getCurrentY()) * seriesYAnimMultiplier.getValue()));
double x = getXAxis().getDisplayPosition(item.getCurrentX());
double y = getYAxis().getDisplayPosition(getYAxis().toRealValue(getYAxis().toNumericValue(item.getCurrentY()) * seriesYAnimMultiplier.getValue()));
if (Double.isNaN(x) || Double.isNaN(y)) {
connected = false;
continue;
}
if (connected == true)
constructedPath.add(new LineTo(x, y));
else {
constructedPath.add(new MoveTo(x, y));
connected = true;
}
Node symbol = item.getNode();
if (symbol != null) {
final double w = symbol.prefWidth(-1);
final double h = symbol.prefHeight(-1);
symbol.resizeRelocate(x-(w/2), y-(h/2),w,h);
}
}
if (!constructedPath.isEmpty()) {
seriesLine.addAll(constructedPath);
}
//Collections.sort(constructedPath, (e1, e2) -> Double.compare(e1.getX(), e2.getX()));
// if (!constructedPath.isEmpty()) {
// LineTo first = (LineTo) constructedPath.get(0);
// seriesLine.add(new MoveTo(first.getX(), first.getY()));
// seriesLine.addAll(constructedPath);
// }
}
}
}
/** @inheritDoc */
@Override void dataBeingRemovedIsAdded(Data item, Series series) {
if (fadeSymbolTransition != null) {
fadeSymbolTransition.setOnFinished(null);
fadeSymbolTransition.stop();
}
if (dataRemoveTimeline != null) {
dataRemoveTimeline.setOnFinished(null);
dataRemoveTimeline.stop();
}
final Node symbol = item.getNode();
if (symbol != null) getPlotChildren().remove(symbol);
item.setSeries(null);
removeDataItemFromDisplay(series, item);
// restore values to item
Double value = XYValueMap.get(item);
if (value != null) {
item.setYValue(value);
item.setCurrentY(value);
}
XYValueMap.clear();
}
/** @inheritDoc */
@Override void seriesBeingRemovedIsAdded(Series<X,Y> series) {
if (seriesRemoveTimeline != null) {
seriesRemoveTimeline.setOnFinished(null);
seriesRemoveTimeline.stop();
getPlotChildren().remove(series.getNode());
for (Data<X,Y> d:series.getData()) getPlotChildren().remove(d.getNode());
removeSeriesFromDisplay(series);
}
}
private Timeline createDataRemoveTimeline(final Data<X,Y> item, final Node symbol, final Series<X,Y> series) {
Timeline t = new Timeline();
// save data values in case the same data item gets added immediately.
XYValueMap.put(item, ((Number)item.getYValue()).doubleValue());
t.getKeyFrames().addAll(new KeyFrame(Duration.ZERO, new KeyValue(item.currentYProperty(),
item.getCurrentY()), new KeyValue(item.currentXProperty(),
item.getCurrentX())),
new KeyFrame(Duration.millis(500), actionEvent -> {
if (symbol != null) getPlotChildren().remove(symbol);
removeDataItemFromDisplay(series, item);
XYValueMap.clear();
},
new KeyValue(item.currentYProperty(),
item.getYValue(), Interpolator.EASE_BOTH),
new KeyValue(item.currentXProperty(),
item.getXValue(), Interpolator.EASE_BOTH))
);
return t;
}
private Node createSymbol(Series<X, Y> series, int seriesIndex, final Data<X,Y> item, int itemIndex) {
Node symbol = item.getNode();
// check if symbol has already been created
if (symbol == null && getCreateSymbols()) {
symbol = new StackPane();
item.setNode(symbol);
}
// set symbol styles
if (symbol != null) symbol.getStyleClass().addAll("chart-line-symbol", "series" + seriesIndex,
"data" + itemIndex, series.defaultColorStyleClass);
return symbol;
}
/**
* This is called whenever a series is added or removed and the legend needs to be updated
*/
@Override protected void updateLegend() {
legend.getItems().clear();
if (getData() != null) {
for (int seriesIndex=0; seriesIndex < getData().size(); seriesIndex++) {
Series<X,Y> series = getData().get(seriesIndex);
LegendItem legenditem = new LegendItem(series.getName());
legenditem.getSymbol().getStyleClass().addAll("chart-line-symbol", "series"+seriesIndex, series.defaultColorStyleClass);
legend.getItems().add(legenditem);
}
}
if (legend.getItems().size() > 0) {
if (getLegend() == null) {
setLegend(legend);
}
} else {
setLegend(null);
}
}
// -------------- STYLESHEET HANDLING --------------------------------------
private static class StyleableProperties {
private static final CssMetaData<NxLineChart<?,?>,Boolean> CREATE_SYMBOLS =
new CssMetaData<NxLineChart<?,?>,Boolean>("-fx-create-symbols",
BooleanConverter.getInstance(), Boolean.TRUE) {
@Override
public boolean isSettable(NxLineChart<?,?> node) {
return node.createSymbols == null || !node.createSymbols.isBound();
}
@Override
public StyleableProperty<Boolean> getStyleableProperty(NxLineChart<?,?> node) {
return (StyleableProperty<Boolean>)node.createSymbolsProperty();
}
};
private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;
static {
final List<CssMetaData<? extends Styleable, ?>> styleables =
new ArrayList<CssMetaData<? extends Styleable, ?>>(NXYChart.getClassCssMetaData());
styleables.add(CREATE_SYMBOLS);
STYLEABLES = Collections.unmodifiableList(styleables);
}
}
/**
* @return The CssMetaData associated with this class, which may include the
* CssMetaData of its super classes.
* @since JavaFX 8.0
*/
public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {
return StyleableProperties.STYLEABLES;
}
/**
* {@inheritDoc}
* @since JavaFX 8.0
*/
@Override
public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {
return getClassCssMetaData();
}
}
|
[
"puppy@debian"
] |
puppy@debian
|
d52438b4667c80eb9e3eef6857183155fb81041e
|
0068813aa32ffe2c889cdb91163eb51880d5a842
|
/PlanetHProject/src/TP1/heuristique/Heuristique.java
|
be9c66fdc5d5ce34e94f77d8f8eed16b722258d2
|
[] |
no_license
|
helsing45/INF4230_TP1
|
24eefa4ec6ef887a00f61296eeb9db12d8ddcee6
|
b7e322a491e120c87e6783f04612b63524c6733d
|
refs/heads/master
| 2021-01-19T13:12:45.801331 | 2017-04-14T15:30:51 | 2017-04-14T15:30:51 | 80,376,043 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 694 |
java
|
package TP1.heuristique;/* INF4230 - Intelligence artificielle
* UQAM / Département d'informatique
* Hiver 2017
*/
import TP1.Emplacement;
import TP1.Etat;
import TP1.Planete;
public abstract class Heuristique {
private Planete planete;
public Heuristique(Planete planete) {
this.planete = planete;
}
protected Planete getPlanete(){
return planete;
}
/**
* Estime et retourne le coût restant pour atteindre le but à partir d'un état.
* Attention : pour être admissible, cette fonction heuristique ne doit pas
* surestimer le coût restant.
*/
public abstract double estimerCoutRestant(Etat etat, Emplacement but);
}
|
[
"[email protected]"
] | |
b5740f37329b9f43fc083ab0946458d7c926da5e
|
80c554e1ae4ce5ba774017772e2499b9f5337d7f
|
/app/shopping/src/main/java/com/example/shopping/moudel/bean/DeleteCarBean.java
|
1754a4d958c2176e7b87aaedc19063cb213f1b3d
|
[] |
no_license
|
z2033864981/dsx
|
e3fde4c28c79f37b18a7390630336bdfff79754d
|
d468db50305b4821dd6a0b8d936f0c428dc4e46b
|
refs/heads/master
| 2023-02-08T02:52:10.641588 | 2020-12-30T08:39:22 | 2020-12-30T08:39:22 | 325,498,671 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 9,035 |
java
|
package com.example.shopping.moudel.bean;
import java.util.List;
public class DeleteCarBean {
/**
* errno : 0
* errmsg :
* data : {"cartList":[{"id":667,"user_id":7,"session_id":"1","goods_id":1147048,"goods_sn":"1147048","product_id":228,"goods_name":"简约知性系列居家地毯 蓝灰格","market_price":559,"retail_price":559,"number":8,"goods_specifition_name_value":"","goods_specifition_ids":"","checked":0,"list_pic_url":"http://yanxuan.nosdn.127.net/fd7920a2eadd10fa10c0c03959a2abe0.png"},{"id":670,"user_id":7,"session_id":"1","goods_id":1051003,"goods_sn":"1051003","product_id":66,"goods_name":"Carat钻石奶锅18cm","market_price":148,"retail_price":148,"number":4,"goods_specifition_name_value":"","goods_specifition_ids":"","checked":0,"list_pic_url":"http://yanxuan.nosdn.127.net/6a54ccc389afb2459b163245bbb2c978.png"},{"id":675,"user_id":7,"session_id":"1","goods_id":1015007,"goods_sn":"1015007","product_id":21,"goods_name":"典雅美式全棉刺绣抱枕","market_price":59,"retail_price":59,"number":2,"goods_specifition_name_value":"","goods_specifition_ids":"","checked":0,"list_pic_url":"http://yanxuan.nosdn.127.net/a2045004de8a6225289376ad54317fc8.png"}],"cartTotal":{"goodsCount":14,"goodsAmount":5182,"checkedGoodsCount":0,"checkedGoodsAmount":0}}
*/
private int errno;
private String errmsg;
private DataBean data;
public int getErrno() {
return errno;
}
public void setErrno(int errno) {
this.errno = errno;
}
public String getErrmsg() {
return errmsg;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
public DataBean getData() {
return data;
}
public void setData(DataBean data) {
this.data = data;
}
public static class DataBean {
/**
* cartList : [{"id":667,"user_id":7,"session_id":"1","goods_id":1147048,"goods_sn":"1147048","product_id":228,"goods_name":"简约知性系列居家地毯 蓝灰格","market_price":559,"retail_price":559,"number":8,"goods_specifition_name_value":"","goods_specifition_ids":"","checked":0,"list_pic_url":"http://yanxuan.nosdn.127.net/fd7920a2eadd10fa10c0c03959a2abe0.png"},{"id":670,"user_id":7,"session_id":"1","goods_id":1051003,"goods_sn":"1051003","product_id":66,"goods_name":"Carat钻石奶锅18cm","market_price":148,"retail_price":148,"number":4,"goods_specifition_name_value":"","goods_specifition_ids":"","checked":0,"list_pic_url":"http://yanxuan.nosdn.127.net/6a54ccc389afb2459b163245bbb2c978.png"},{"id":675,"user_id":7,"session_id":"1","goods_id":1015007,"goods_sn":"1015007","product_id":21,"goods_name":"典雅美式全棉刺绣抱枕","market_price":59,"retail_price":59,"number":2,"goods_specifition_name_value":"","goods_specifition_ids":"","checked":0,"list_pic_url":"http://yanxuan.nosdn.127.net/a2045004de8a6225289376ad54317fc8.png"}]
* cartTotal : {"goodsCount":14,"goodsAmount":5182,"checkedGoodsCount":0,"checkedGoodsAmount":0}
*/
private CartTotalBean cartTotal;
private List<CartListBean> cartList;
public CartTotalBean getCartTotal() {
return cartTotal;
}
public void setCartTotal(CartTotalBean cartTotal) {
this.cartTotal = cartTotal;
}
public List<CartListBean> getCartList() {
return cartList;
}
public void setCartList(List<CartListBean> cartList) {
this.cartList = cartList;
}
public static class CartTotalBean {
/**
* goodsCount : 14
* goodsAmount : 5182
* checkedGoodsCount : 0
* checkedGoodsAmount : 0
*/
private int goodsCount;
private int goodsAmount;
private int checkedGoodsCount;
private int checkedGoodsAmount;
public int getGoodsCount() {
return goodsCount;
}
public void setGoodsCount(int goodsCount) {
this.goodsCount = goodsCount;
}
public int getGoodsAmount() {
return goodsAmount;
}
public void setGoodsAmount(int goodsAmount) {
this.goodsAmount = goodsAmount;
}
public int getCheckedGoodsCount() {
return checkedGoodsCount;
}
public void setCheckedGoodsCount(int checkedGoodsCount) {
this.checkedGoodsCount = checkedGoodsCount;
}
public int getCheckedGoodsAmount() {
return checkedGoodsAmount;
}
public void setCheckedGoodsAmount(int checkedGoodsAmount) {
this.checkedGoodsAmount = checkedGoodsAmount;
}
}
public static class CartListBean {
/**
* id : 667
* user_id : 7
* session_id : 1
* goods_id : 1147048
* goods_sn : 1147048
* product_id : 228
* goods_name : 简约知性系列居家地毯 蓝灰格
* market_price : 559
* retail_price : 559
* number : 8
* goods_specifition_name_value :
* goods_specifition_ids :
* checked : 0
* list_pic_url : http://yanxuan.nosdn.127.net/fd7920a2eadd10fa10c0c03959a2abe0.png
*/
private int id;
private int user_id;
private String session_id;
private int goods_id;
private String goods_sn;
private int product_id;
private String goods_name;
private int market_price;
private int retail_price;
private int number;
private String goods_specifition_name_value;
private String goods_specifition_ids;
private int checked;
private String list_pic_url;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getUser_id() {
return user_id;
}
public void setUser_id(int user_id) {
this.user_id = user_id;
}
public String getSession_id() {
return session_id;
}
public void setSession_id(String session_id) {
this.session_id = session_id;
}
public int getGoods_id() {
return goods_id;
}
public void setGoods_id(int goods_id) {
this.goods_id = goods_id;
}
public String getGoods_sn() {
return goods_sn;
}
public void setGoods_sn(String goods_sn) {
this.goods_sn = goods_sn;
}
public int getProduct_id() {
return product_id;
}
public void setProduct_id(int product_id) {
this.product_id = product_id;
}
public String getGoods_name() {
return goods_name;
}
public void setGoods_name(String goods_name) {
this.goods_name = goods_name;
}
public int getMarket_price() {
return market_price;
}
public void setMarket_price(int market_price) {
this.market_price = market_price;
}
public int getRetail_price() {
return retail_price;
}
public void setRetail_price(int retail_price) {
this.retail_price = retail_price;
}
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
}
public String getGoods_specifition_name_value() {
return goods_specifition_name_value;
}
public void setGoods_specifition_name_value(String goods_specifition_name_value) {
this.goods_specifition_name_value = goods_specifition_name_value;
}
public String getGoods_specifition_ids() {
return goods_specifition_ids;
}
public void setGoods_specifition_ids(String goods_specifition_ids) {
this.goods_specifition_ids = goods_specifition_ids;
}
public int getChecked() {
return checked;
}
public void setChecked(int checked) {
this.checked = checked;
}
public String getList_pic_url() {
return list_pic_url;
}
public void setList_pic_url(String list_pic_url) {
this.list_pic_url = list_pic_url;
}
}
}
}
|
[
"[email protected]"
] | |
5ecab2391ac741d66f300669f38bd38d2c299731
|
6d905d7a5c6dc618b3186aa835be0b60382fe5d7
|
/src/test/java/ec/gob/senescyt/commons/cifrado/GeneradorClavesSecretasTest.java
|
572089ddf25528cabf9121874921b15c519366a6
|
[] |
no_license
|
rodrosalazar/servicio-usuario
|
f87a8302c361a8f8179113391d6139e5f71a9073
|
cf11ff95bd08f290d85ab409ef4e6b0f20b777bd
|
refs/heads/master
| 2021-01-16T17:10:05.824847 | 2014-08-14T16:43:14 | 2014-08-15T15:10:55 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 682 |
java
|
package ec.gob.senescyt.commons.cifrado;
import org.junit.Test;
import javax.crypto.spec.SecretKeySpec;
import java.io.IOException;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;
public class GeneradorClavesSecretasTest {
@Test
public void debeGenerarClaveSecreta() throws IOException {
GeneradorClavesSecretas generadorClavesSecretas = new GeneradorClavesSecretas();
SecretKeySpec secretKeySpec = new SecretKeySpec("RAW".getBytes("UTF-8"),"AES");
SecretKeySpec clave = generadorClavesSecretas.generarClaveSecretaSpec();
assertThat(clave.getFormat(),is(secretKeySpec.getFormat()));
}
}
|
[
"[email protected]"
] | |
ef4aad37d0a4c19796e6b2338d79a2552088abad
|
26beb98d115531ac0bbb55d1e2870754612f0c9b
|
/java/Problema02SolucaoA.java
|
1dbc996c16ffb07db3d0ac3a1336ecc9ca044c66
|
[] |
no_license
|
welington-sousa/problemas
|
bedfecc27844ec6af809d9e52d3b853c55c0d8bf
|
934bb7015559ccf5695a77b2ff06842ca0b9e924
|
refs/heads/master
| 2021-01-11T22:02:49.312175 | 2017-01-14T02:24:26 | 2017-01-14T02:24:26 | 78,904,752 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 416 |
java
|
/*
* Faça um algoritmo que leia vários pares
* de números e imprima a soma de cada par
*/
import java.util.Scanner;
class Problema02SolucaoA {
public static void main(String ... args) {
Scanner entrada = new Scanner(System.in);
int a = entrada.nextInt();
int b = entrada.nextInt();
while (a != 0 || b != 0) {
System.out.println(a+b);
a = entrada.nextInt();
b = entrada.nextInt();
}
}
}
|
[
"[email protected]"
] | |
f8aa05d53f95af1611651c6fd4697374b342b7bf
|
f726aaa58e17f210cf1dec4ad4491f6f417f2b85
|
/findTarget.java
|
197eaee0763a386009ba5ee42cab5dce4e637fef
|
[] |
no_license
|
suleymanekmekci/leetcode-easy
|
3fd93ac0f818c04c5d3761f9dd3129ce9be783d8
|
168b525610f875b0d3a688e2693e93c7b1a1c5a7
|
refs/heads/master
| 2023-06-05T05:47:57.124781 | 2021-06-23T15:27:23 | 2021-06-23T15:27:23 | 278,472,637 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,910 |
java
|
/** 653. Two Sum IV - Input is a BST
* https://leetcode.com/problems/two-sum-iv-input-is-a-bst/
*
* Given the root of a Binary Search Tree and a target number k, return true if there exist two elements in the BST such that their sum is equal to the given target.
*
*
*
* Example 1:
*
*
* Input: root = [5,3,6,2,4,null,7], k = 9
* Output: true
* Example 2:
*
*
* Input: root = [5,3,6,2,4,null,7], k = 28
* Output: false
* Example 3:
*
* Input: root = [2,1,3], k = 4
* Output: true
* Example 4:
*
* Input: root = [2,1,3], k = 1
* Output: false
* Example 5:
*
* Input: root = [2,1,3], k = 3
* Output: true
*
*
* Constraints:
*
* The number of nodes in the tree is in the range [1, 104].
* -104 <= Node.val <= 104
* root is guaranteed to be a valid binary search tree.
* -105 <= k <= 105
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class findTarget {
Set<Integer> complementaries = new HashSet<>();
List<Integer> numbers = new ArrayList<>();
public boolean findTarget(TreeNode root, int k) {
helper(root);
System.out.println(numbers);
// Time O(n) , Space O(n) n = treeNode.length
for (int num : numbers) {
if (complementaries.contains(num)) {
return true;
}
else {
complementaries.add(k - num);
}
}
return false;
}
public void helper(TreeNode root) {
if (root == null) {
return;
}
helper(root.left);
numbers.add(root.val);
helper(root.right);
}
}
|
[
"[email protected]"
] | |
80cd6b9d59dc224897ae6659a391f65d7ee2c8aa
|
5ecbb72131f09915f64c5757721aa8c572f6a878
|
/app/src/main/java/com/example/bartosz/whereismyfriend/SearchAllUsers.java
|
1e2f6c274d1cb76ab296cde3b6823f9b0aa56bf2
|
[] |
no_license
|
bartek94ka/WhereIsMyFriend
|
3ef0c24f5b872e02c9ab39c54db7201c573c04a5
|
2cd741c40a6bd2c8fdc9da21d9668bc2d531e1c2
|
refs/heads/master
| 2021-01-01T18:27:08.582876 | 2017-09-17T18:08:34 | 2017-09-17T18:08:34 | 85,411,664 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 13,829 |
java
|
package com.example.bartosz.whereismyfriend;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.text.TextUtils;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.AbsListView;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
import com.example.bartosz.whereismyfriend.Models.User;
import com.example.bartosz.whereismyfriend.Services.UpdateUserLocationService;
import com.google.android.gms.maps.model.MarkerOptions;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.android.gms.tasks.Task;
import com.google.android.gms.tasks.TaskCompletionSource;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import com.baoyz.swipemenulistview.SwipeMenu;
import com.baoyz.swipemenulistview.SwipeMenuCreator;
import com.baoyz.swipemenulistview.SwipeMenuItem;
import com.baoyz.swipemenulistview.SwipeMenuListView;
import static android.R.id.list;
public class SearchAllUsers extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
private FirebaseAuth _firebaseAuth;
private FirebaseDatabase database;
private ListView _listViewUser;
private UserListAdapter _userListAdapter;
private List<User> userList;
private User _currentUser;
private UserManager _userManager;
public Handler _handler;
public View _view;
public boolean isLoading = false;
public int currentId=11;
private Button _searchButton;
private EditText _searchFullName;
private Button _inviteUserButton;
private Button _userDetailsButton;
private String fullName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_search_all_users);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
drawer.requestDisallowInterceptTouchEvent(true);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
_firebaseAuth = FirebaseAuth.getInstance();
database = FirebaseDatabase.getInstance();
_listViewUser = (ListView) findViewById(R.id.listview_users);
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
_view = inflater.inflate(R.layout.footer_view, null);
_handler = new MyHandler();
userList = new ArrayList<>();
//pobranie danych
_searchButton = (Button) findViewById(R.id.searchButton);
_searchFullName = (EditText) findViewById(R.id.searchFullName);
SetSearchButtonAction();
_userManager = new UserManager();
_userManager.getUserData(_firebaseAuth.getCurrentUser().getUid()).addOnSuccessListener(new OnSuccessListener<User>() {
@Override
public void onSuccess(User user) {
_currentUser = user;
}
});
_userListAdapter = new UserListAdapter(getApplicationContext(), userList);
_listViewUser.setAdapter(_userListAdapter);
_listViewUser.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//Do something
//Ex: display msg with product id get from view.getTag
Toast.makeText(getApplicationContext(), "Clicked product id =" + view.getTag(), Toast.LENGTH_SHORT).show();
}
});
SetListViewSetOnScrollListener();
}
private void SetSearchButtonAction(){
_searchButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
fullName = _searchFullName.getText().toString().trim();
boolean isValid = ValidateForm();
if(isValid){
_userListAdapter.ClearList();
Thread thread = new ThreadGetMoreData();
thread.start();
}
}
});
}
private void SetListViewSetOnScrollListener(){
_listViewUser.setOnScrollListener(new AbsListView.OnScrollListener() {
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
}
@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
int a = totalItemCount;
//Check when scroll to last item in listview, in this tut, init data in listview = 10 item
/*
if(view.getLastVisiblePosition() == totalItemCount-1 && _listViewUser.getCount() >=10 && isLoading == false)
*/
/*
if(view.getLastVisiblePosition() == totalItemCount-1 && _listViewUser.getCount() >= 3 && isLoading == false){
isLoading = true;
Thread thread = new ThreadGetMoreData();
//Start thread
thread.start();
}
*/
}
});
}
private boolean ValidateForm(){
if(TextUtils.isEmpty(fullName))
{
Toast.makeText(this, "Field can not be empty", Toast.LENGTH_SHORT).show();
return false;
}
return true;
}
private Task<ArrayList<User>> getUserData()
{
final TaskCompletionSource<ArrayList<User>> taskCompletionSource = new TaskCompletionSource<>();
final ArrayList<User> list = new ArrayList<>();
final DatabaseReference reference = database.getReference().child("Users");
reference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot child : dataSnapshot.getChildren()){
User user = child.getValue(User.class);
boolean isContatin = user.FullName.contains(fullName);
boolean isMyUser = child.getKey().equals(_firebaseAuth.getCurrentUser().getUid());
boolean isInvitationSend = false;
boolean isInvitationRecived = false;
boolean isFriend = false;
if(_currentUser != null){
if(_currentUser.SendInvitations != null){
isInvitationSend = _currentUser.SendInvitations.contains(child.getKey());
}
if(_currentUser.RecivedInvitations != null){
isInvitationRecived = _currentUser.RecivedInvitations.contains(child.getKey());
}
if(_currentUser.FriendsId != null){
isFriend = _currentUser.FriendsId.contains(child.getKey());
}
}
if(isContatin == true && isMyUser == false && isInvitationSend == false &&
isInvitationRecived == false && isFriend == false){
user.Id = child.getKey();
list.add(user);
}
}
taskCompletionSource.setResult(list);
reference.removeEventListener(this);
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
return taskCompletionSource.getTask();
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
//getMenuInflater().inflate(R.menu.home, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.nav_mylocation) {
Intent intent = new Intent(SearchAllUsers.this, MyLocation.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if (id == R.id.home) {
Intent intent = new Intent(SearchAllUsers.this, Home.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if(id == R.id.nav_friendsInNearby){
Intent intent = new Intent(SearchAllUsers.this, FriendsInNearbyActivity.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if (id == R.id.nav_logout){
Intent intent = new Intent(SearchAllUsers.this, LoginActivity.class);
stopService(new Intent(this, UpdateUserLocationService.class));
_firebaseAuth.signOut();
startActivity(intent);
SearchAllUsers.this.finish();
} else if (id == R.id.settings){
Intent intent = new Intent(SearchAllUsers.this, Settings.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if(id == R.id.search_all_users) {
Intent intent = new Intent(SearchAllUsers.this, SearchAllUsers.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if (id == R.id.nav_recived_invitations){
Intent intent = new Intent(SearchAllUsers.this, RecivedInvitationsActivity.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if (id == R.id.nav_sended_invitations){
Intent intent = new Intent(SearchAllUsers.this, SendedInvitationsActivity.class);
startActivity(intent);
SearchAllUsers.this.finish();
} else if (id == R.id.nav_myfreindsList){
Intent intent = new Intent(SearchAllUsers.this, MyFriendsListActivity.class);
startActivity(intent);
SearchAllUsers.this.finish();
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
public class MyHandler extends Handler {
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case 0:
//Add loading view during search processing
_listViewUser.addFooterView(_view);
break;
case 1:
//Update data adapter and UI
_userListAdapter.addListItemToAdapter((ArrayList<User>)msg.obj);
//Remove loading view after update listview
_listViewUser.removeFooterView(_view);
isLoading=false;
break;
default:
break;
}
}
}
public class ThreadGetMoreData extends Thread {
@Override
public void run() {
getUserData().addOnCompleteListener(new OnCompleteListener<ArrayList<User>>() {
@Override
public void onComplete(@NonNull Task<ArrayList<User>> task) {
_handler.sendEmptyMessage(0);
ArrayList<User> lstResult = task.getResult();
Message msg = _handler.obtainMessage(1, lstResult);
/*try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}*/
_handler.sendMessage(msg);
}
});
}
}
}
|
[
"[email protected]"
] | |
69afa7d60b9e0100d6fdac949f2fcf717bbb5dcd
|
ab7777f0c0a164bbf2f400dfaf2c7ee6d0cf1acf
|
/src/student/information/system/Login.java
|
3f2b1f507c5f5d03899a90fa1741c51046419c16
|
[] |
no_license
|
Saxena224pawan/Online-Admission-Counselling
|
ba685574e3800af69d29e11c4ed657b1a0636f51
|
4456348113d82ff46232248dcde32d138f79837c
|
refs/heads/master
| 2023-02-17T09:31:11.460900 | 2020-12-29T14:53:37 | 2020-12-29T14:53:37 | 111,820,990 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 10,933 |
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 student.information.system;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.GregorianCalendar;
import javax.swing.JOptionPane;
import com.sun.glass.events.KeyEvent;
import java.awt.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import javax.swing.*;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author Hyrex
*/
public class Login extends javax.swing.JFrame {
public static Writer newWriter,SortWriter;
Connection conn=null;
ResultSet rs=null;
PreparedStatement pst=null;
/**
* Creates new form Login
*/
public Login() {
initComponents();
conn=db.java_db();
Toolkit toolkit = getToolkit();
Dimension size = toolkit.getScreenSize();
setLocation(size.width/2 - getWidth()/2,
size.height/2 - getHeight()/2);
currentDate();
}
public void currentDate (){
Calendar cal =new GregorianCalendar();
int month = cal.get(Calendar.MONTH);
int year = cal.get(Calendar.YEAR);
int day = cal.get(Calendar.DAY_OF_MONTH);
txt_date.setText((month+1)+"/"+day+"/"+year);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();
txt_username = new javax.swing.JTextField();
txt_password = new javax.swing.JPasswordField();
txt_combo = new javax.swing.JComboBox<>();
jLabel4 = new javax.swing.JLabel();
jLabel1 = new javax.swing.JLabel();
jMenuBar1 = new javax.swing.JMenuBar();
txt_date = new javax.swing.JMenu();
txt_time = new javax.swing.JMenu();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setResizable(false);
jPanel1.setLayout(null);
jLabel2.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jLabel2.setForeground(new java.awt.Color(255, 255, 255));
jLabel2.setText("Username :");
jPanel1.add(jLabel2);
jLabel2.setBounds(20, 280, 90, 17);
jLabel3.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jLabel3.setForeground(new java.awt.Color(255, 255, 255));
jLabel3.setText("Password :");
jPanel1.add(jLabel3);
jLabel3.setBounds(20, 320, 80, 17);
jButton1.setText("Login");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jPanel1.add(jButton1);
jButton1.setBounds(180, 390, 70, 30);
txt_username.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txt_usernameActionPerformed(evt);
}
});
jPanel1.add(txt_username);
txt_username.setBounds(110, 270, 160, 30);
jPanel1.add(txt_password);
txt_password.setBounds(110, 310, 160, 30);
txt_combo.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Admin", "Student" }));
txt_combo.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txt_comboActionPerformed(evt);
}
});
jPanel1.add(txt_combo);
txt_combo.setBounds(110, 350, 160, 30);
jLabel4.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jLabel4.setForeground(new java.awt.Color(255, 255, 255));
jLabel4.setText("Division :");
jPanel1.add(jLabel4);
jLabel4.setBounds(20, 360, 70, 17);
jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/student/information/system/images/Presentation1.jpg"))); // NOI18N
jPanel1.add(jLabel1);
jLabel1.setBounds(0, 0, 660, 430);
txt_date.setText("Date");
jMenuBar1.add(txt_date);
txt_time.setText("Time");
jMenuBar1.add(txt_time);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, 661, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, 433, Short.MAX_VALUE)
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
String access;
access = this.txt_combo.getSelectedItem().toString();
String p=String.valueOf(this.txt_password.getPassword());
if(access.equals("Admin") && this.txt_username.getText().equals("admin") && p.equals("admin")) {
JOptionPane.showMessageDialog(null,"Sucess" );
MainMenu j = new MainMenu();
j.setVisible(true);
this.dispose();
Date currentDate = GregorianCalendar.getInstance().getTime();
DateFormat df = DateFormat.getDateInstance();
String dateString = df.format(currentDate);
Date d = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String timeString = sdf.format(d);
String value0 = timeString;
String values = dateString;
this.dispose();
}
else if(access.equals("Student")){
this.jLabel2.setText("Firstname");
this.jLabel3.setText("12h Roll No");
File f=new File("output.txt");
Scanner sc = null;
try {
sc = new Scanner(f);
} catch (FileNotFoundException ex) {
Logger.getLogger(StudentInformation.class.getName()).log(Level.SEVERE, null, ex);
}
while(sc.hasNextLine()){
String data = sc.nextLine();
System.out.println(data);
String variable[] = data.split("\\s+");
String user=variable[0];
String perc=variable[3];
if(perc.equals(String.valueOf(this.txt_password.getPassword())) && user.equals(String.valueOf(this.txt_username.getText()))){
new StudentInformation(perc).setVisible(true);
this.setVisible(false);
}
}
}//GEN-LAST:event_jButton1ActionPerformed
}
private void txt_usernameActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txt_usernameActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txt_usernameActionPerformed
private void txt_comboActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txt_comboActionPerformed
// TODO add your handling code here:
String id1=this.txt_combo.getSelectedItem().toString();
if(id1.equals("Student")){
this.jLabel2.setText("Firstname");
this.jLabel3.setText("12h Roll No");
}
}//GEN-LAST:event_txt_comboActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Login().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JPanel jPanel1;
private javax.swing.JComboBox<String> txt_combo;
private javax.swing.JMenu txt_date;
private javax.swing.JPasswordField txt_password;
private javax.swing.JMenu txt_time;
private javax.swing.JTextField txt_username;
// End of variables declaration//GEN-END:variables
}
|
[
"[email protected]"
] | |
c3cedaaa588c06271d92ad56fe9097eb7a662190
|
62ae7f4467a4e9f6f04e8da54fb131d56a4a9254
|
/src/co/grandcircus/MyArrayList.java
|
306f430730531f72242a0fc4b46a37bbe07e565d
|
[] |
no_license
|
NathanielLong/Lab19
|
103b0b4da85d303612cf1165d9b3dd01422b8f86
|
72d5fbc001c2f95947c5d89177fc2d855809944d
|
refs/heads/master
| 2020-09-06T17:59:43.878558 | 2019-11-08T16:04:38 | 2019-11-08T16:04:38 | 220,502,516 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,780 |
java
|
package co.grandcircus;
import java.util.Arrays;
public class MyArrayList implements MyList {
private String[] arr = new String[4];
private int myLength = 0;
//We will use this method as a helper inside this class
private boolean isFull() {
return arr.length == myLength;
}
//we will use this as a helper method as well to dynamically increase
//the size of the array when a value is entered
private void doubleLength() {
//make a copy of the array that is twice as long
arr = Arrays.copyOf(arr, arr.length * 2);
}
@Override
public void addAtBeginning(String data) {
if (isFull()) {
doubleLength();
}
//Loop backwards and shift all the items over to make room for the new data
for (int i = myLength; i > 0; i--) {
arr[i] = arr[i - 1]; //This is assigning the element that was before it to the new index
}
arr[0] = data;
myLength++;
}
@Override
public void removeFromBeginning() {
if (myLength != 0) {
for (int i = 1; i < myLength; i++) {
arr[i - 1] = arr[i];
}
myLength--;
}
}
@Override
public void addAtEnd(String data) {
if (isFull()) {
doubleLength();
}
for (int i = myLength; i > 0; i--) {
arr[i] = arr[i - 1];
}
arr[myLength] = data;
myLength++;
}
@Override
public void removeFromEnd() {
myLength--;
}
@Override
public String get(int index) {
if (index >= myLength) {
throw new ArrayIndexOutOfBoundsException("Index out of bounds...");
}
return arr[index];
}
@Override
public int size() {
return myLength;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("[ ");
for (int i = 0; i < myLength; i++) {
sb.append(arr[i]);
if(i != myLength - 1) {
sb.append(", ");
}
}
sb.append(" ]");
return sb.toString();
}
}
|
[
"[email protected]"
] | |
ee9fee5f19bf6a2dba0358ff5eba08527f415c53
|
fccf49ceb86b27fc9c01fdb906cbe9d70da1cdf3
|
/src/main/java/controller/Woman.java
|
d462bf05845f83a62180249d1e31e4ae23ccbe6d
|
[] |
no_license
|
djahanqa/SeleniumPagefactoryFramework
|
59a211de0ebf42f6b4696411d5fdeb62528c0944
|
8bf629736f6422792ac8c6c9ca3585e713d585c1
|
refs/heads/master
| 2020-08-04T19:56:55.285269 | 2019-10-04T13:45:46 | 2019-10-04T13:45:46 | 197,936,323 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,538 |
java
|
package controller;
import base.ScriptBase;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import java.util.logging.Logger;
public class Woman extends ScriptBase {
public static final Logger log=Logger.getLogger(Woman .class.getName());
@FindBy(xpath = "//*//a[@title='Women']")
WebElement title;
@FindBy(xpath = "//*[@id='block_top_menu']//a[@title='Tops']")
WebElement tops;
@FindBy(xpath = "//*/ul/li[1]//a[@title='Dresses']")
WebElement dresses;
@FindBy(css = "#block_top_menu > ul > li:nth-child(1) > a")
WebElement womenTab;
@FindBy(css = "#categories_block_left > h2")
WebElement womenFilterTab;
public Woman(WebDriver driver) {
PageFactory.initElements(driver, this);
}
public void topssearch(WebDriver driver, String design) {
title.click();
log.info("title clicked");
tops.isDisplayed();
log.info("tops displayed");
mouseOver(driver.findElement(By.xpath("//*//a[@title='" + design + "']")), driver);
log.info("concertinate design");
}
public void dressSearch(WebDriver driver, String dress) {
title.click();
log.info("title clicked");
dresses.isDisplayed();
log.info("Dresses displayed");
mouseOver(driver.findElement(By.xpath("//*//li[1]//li//a[@title='" + dress + "']")), driver);
log.info("concertinate dress");
}
private void mouseOver(WebElement element, WebDriver driver) {
Actions action = new Actions(driver);
element = element;
action.moveToElement(element).perform();
}
public void womenCatalogeFilterTop(String filterCatagory, String dressCatagory, WebDriver driver) {
womenTab.click();
if (womenFilterTab.isDisplayed()) {
driver.findElement(By.xpath("//*[@id='categories_block_left']/div/ul/li/a[contains(text(),'" + filterCatagory + "')]")).click();
if (womenFilterTab.isDisplayed()) {
driver.findElement(By.xpath("//*[@id='categories_block_left']/div/ul/li/a[contains(text(),'" + dressCatagory + "')]")).isDisplayed();
} else {
System.out.println("Women Filter tab not found " + womenFilterTab);
}
} else System.out.println("Women Filter Tab not found " + womenFilterTab);
}
}
|
[
"[email protected]"
] | |
177b1c1748a7ff35f2ca937b60b29ea74643f0c3
|
b41ba3bf12e0922173388fd3cc7b459a69a125c4
|
/ExerciseInheritencCh4/src/ChevalCourse.java
|
3be88639bbdad5d5d745e90c6cda351ee441328c
|
[] |
no_license
|
benlmaoujoud/TPs-Solution-FSO
|
44d5359f721063e9a3459d9b40cae19012488163
|
809b05487c412ce67503104ff6bc59391a530dc2
|
refs/heads/main
| 2023-05-31T15:30:48.634914 | 2020-10-29T09:15:56 | 2020-10-29T09:15:56 | 308,273,363 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 235 |
java
|
public class ChevalCourse extends Cheval {
private int NombrCourse;
public int getNombrCourse() {
return NombrCourse;
}
public void setNombrCourse(int nombrCourse) {
NombrCourse = nombrCourse;
}
}
|
[
"[email protected]"
] | |
221c6b57524cd748d2d89c641df117485378ae87
|
a7d85dd9655c354226a8834ca83a4fc003475097
|
/src/main/java/jammazwan/xbd/RecipientListRoutes.java
|
b6f391b14f03691cb2d4a917140c9d17caafbd58
|
[] |
no_license
|
jammazwan/xbd_EIPdistributionComparison
|
186f2b9c0603a146d0e24db9456ca8345305eb72
|
994b6791927af46ce00327d0318ad10b61d88932
|
refs/heads/master
| 2021-01-17T17:46:50.191740 | 2016-07-20T12:31:12 | 2016-07-20T12:31:12 | 62,014,517 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,530 |
java
|
package jammazwan.xbd;
import java.util.List;
import java.util.Map;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.model.ModelCamelContext;
import org.apache.camel.model.RouteDefinition;
import org.springframework.beans.factory.annotation.Autowired;
import jammazwan.xbd.util.NamesActiveInactive;
public class RecipientListRoutes extends RouteBuilder {
@Autowired
private RsvpProcessor rsvpProcessor;
@Autowired
private SetupHeadersProcessor setupHeadersProcessor;
@Autowired
private RecipientListBean recipientListBean;
@Override
public void configure() throws Exception {
// addMemberRoutes() includes RSVP functionality for each invited member
addMemberRoutes(getContext());
from("direct:recipientlist").process(setupHeadersProcessor).to("file://./")
.bean(recipientListBean);
}
private void addMemberRoutes(ModelCamelContext context) throws Exception {
Map<String, List<String>> members = NamesActiveInactive.get();
for (String name : members.get("inactiveMembers")) {
RouteDefinition routeDefinition = new RouteDefinition("direct:" + name);
routeDefinition.process(rsvpProcessor).to("file://./?allowNullBody=true&fileExist=Append");
context.addRouteDefinition(routeDefinition);
}
for (String name : members.get("activeMembers")) {
RouteDefinition routeDefinition = new RouteDefinition("direct:" + name);
routeDefinition.process(rsvpProcessor).to("file://./?allowNullBody=true&fileExist=Append");
context.addRouteDefinition(routeDefinition);
}
}
}
|
[
"[email protected]"
] | |
96923c80eb7e972a2e5c61fec9aea442e6561459
|
aac32b22e8be1420139bfb537fa7039b634799cc
|
/src/Modelo/AND.java
|
3fccf4525e6553d51a955a60347ee15d8222af94
|
[] |
no_license
|
juanpcs/Editor-de-Diagramas-de-circuitos
|
a992036d7f1965fa41cb77ad355f1bbe287ea16a
|
ae26afa1456f495802990f3a4d04a18657d6b55f
|
refs/heads/master
| 2020-07-26T13:28:45.494166 | 2019-09-29T23:06:18 | 2019-09-29T23:06:18 | 208,658,777 | 0 | 0 | null | null | null | null |
ISO-8859-2
|
Java
| false | false | 3,048 |
java
|
package Modelo;
import javax.swing.JOptionPane;
import Controlador.controlador;
/**
* Esta clase es la AND, la cual es una clase hija de compuerta logica, encargada del funcionamiento de la compuerta AND
* @author: Juan Pablo Carrillo Salazar
* @version: java version "10.0.1" 2018-04-17 / Java(TM) SE Runtime Environment 18.3 (build 10.0.1+10)
*/
public class AND extends Compuerta_Logica{
//Campos de la clase
Compuerta_Logica C = new Compuerta_Logica();
/**
* Constructor para la compuerta AND
*/
public AND() {
}
/**
* Método que devuelve el calculo de la salida de la compuerta
* @return La salida determinada con base en las entradas
*/
@Override
public int resultado() {
super.entrada = Integer.parseInt(JOptionPane.showInputDialog(null, "Ingrese el valor de la primera entrada"));
super.entrada2 = Integer.parseInt(JOptionPane.showInputDialog(null, "Ingrese el valor de la segunda entrada"));
super.setEntrada(super.entrada);
super.setEntrada2(super.entrada2);
if (super.entrada !=1 || super.entrada2 !=1) {
super.salida=0;
super.setSalida(super.salida);
}
else {
super.salida=1;
super.setSalida(super.salida);
}
return super.salida;
}
/**
* Método que devuelve el calculo de la salida de la compuerta
* @return La salida determinada con base en las entradas
* @param ent1 El parámetro ent1 define la primera entrada a utilizar
* @param ent2 El parámetro ent2 define la segunda entrada a utilizar
*/
@Override
public int resultado2(int ent, int ent2) {
super.entrada=ent;
super.entrada2=ent2;
super.setEntrada(super.entrada);
super.setEntrada2(super.entrada2);
if (super.entrada !=1 || super.entrada2 !=1) {
super.salida=0;
super.setSalida(super.salida);
}
else {
super.salida=1;
super.setSalida(super.salida);
}
return super.salida;}
/**
* Método que devuelve la tabla de verdad de la compuerta
* @return La tabla creada para la compuerta
*/
@Override
public String tabla() {
String tabla="INPUT | OUTPUT\r\n" +
"A B A AND B\r\n" +
"0 0 0\r\n" +
"0 1 0\r\n" +
"1 0 0\r\n" +
"1 1 1\r\n" +
"";
return tabla;
}
/**
* Método que devuelve la entrada1 de la compuerta
* @return El dato asignado a la entrada1
*/
public int entrada1() {
return super.entrada;
}
/**
* Método que devuelve la entrada2 de la compuerta
* @return El dato asignado a la entrada2
*/
public int entrada2() {
return super.entrada2;
}
/**
* Método que devuelve la salida de la compuerta
* @return El dato determinado para la salida de la compuerta
*/
public int salida() {
return super.salida;
}
}
|
[
"[email protected]"
] | |
bb8579734a83eeea1d8b92e9170a15e98cfbe09d
|
bfdfd0a1572ae695b24e9061cae05d3e9207223b
|
/src/main/java/com/ebrain/api/mapper/DataCheckResultMapper.java
|
48697d12763f8f168cab9bf0c587a3a4af98c9d1
|
[] |
no_license
|
Marciagm/api-ebrain
|
f67be15572479e325991b706af5af4144a5e6cb2
|
ec0e9f508c8fe701bde06d1bc08ff0bd94e2caf6
|
refs/heads/master
| 2021-04-12T08:00:02.826862 | 2018-03-19T06:16:39 | 2018-03-19T06:16:39 | 125,808,979 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,001 |
java
|
package com.ebrain.api.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.ebrain.api.entities.DataCheckResult;
import com.ebrain.api.entities.DataCheckResultWithBLOBs;
public interface DataCheckResultMapper {
int deleteByPrimaryKey(String tid);
int insert(DataCheckResultWithBLOBs record);
int insertSelective(DataCheckResultWithBLOBs record);
DataCheckResultWithBLOBs selectByPrimaryKey(String tid);
int updateByPrimaryKeySelective(DataCheckResultWithBLOBs record);
int updateByPrimaryKeyWithBLOBs(DataCheckResultWithBLOBs record);
int updateByPrimaryKey(DataCheckResult record);
DataCheckResultWithBLOBs selectByJobId(@Param("projectId") String projectId,@Param("jobId") String jobId, @Param("jobSequence")int jobSequence);
List<DataCheckResult> list(String jobId);
void delete(@Param("projectId") String projectId, @Param("jobId") String jobId, @Param("jobSequence") Integer sequence);
}
|
[
"[email protected]"
] | |
850789652242b31af17b6cccbda806c0950005d1
|
863acb02a064a0fc66811688a67ce3511f1b81af
|
/sources/com/google/android/gms/internal/location/zzan.java
|
f0d0d7c45fd2133514e12e38f41c788cbd6d78bf
|
[
"MIT"
] |
permissive
|
Game-Designing/Custom-Football-Game
|
98d33eb0c04ca2c48620aa4a763b91bc9c1b7915
|
47283462b2066ad5c53b3c901182e7ae62a34fc8
|
refs/heads/master
| 2020-08-04T00:02:04.876780 | 2019-10-06T06:55:08 | 2019-10-06T06:55:08 | 211,914,568 | 1 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 890 |
java
|
package com.google.android.gms.internal.location;
import android.app.PendingIntent;
import android.os.Parcel;
import android.os.RemoteException;
public abstract class zzan extends zzb implements zzam {
public zzan() {
super("com.google.android.gms.location.internal.IGeofencerCallbacks");
}
/* access modifiers changed from: protected */
/* renamed from: a */
public final boolean mo32494a(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
if (i == 1) {
mo32496a(parcel.readInt(), parcel.createStringArray());
} else if (i == 2) {
mo32497b(parcel.readInt(), parcel.createStringArray());
} else if (i != 3) {
return false;
} else {
mo32495a(parcel.readInt(), (PendingIntent) zzc.m31756a(parcel, PendingIntent.CREATOR));
}
return true;
}
}
|
[
"[email protected]"
] | |
aad03256c588a3da65616d4a7f19c873c8fc4e72
|
882cbee0d2e824e9a664f8d2e5bd655cabe5415e
|
/app/src/main/java/com/order/design5/Out1.java
|
8d52dbf384d2fbbbbe32ac49db91bff80cd9d13b
|
[] |
no_license
|
shehabashour1992/project1
|
656e9d99a13f2fa9fba9be0032feb6bb4bc53043
|
4b7bdfd627b10ad02be3175356800e26791950c7
|
refs/heads/master
| 2021-09-01T01:52:06.348604 | 2017-12-24T08:21:24 | 2017-12-24T08:21:24 | 115,244,597 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 996 |
java
|
package com.order.design5;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;
public class Out1 extends AppCompatActivity {
TextView text1,text2,text3,text4,text5;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_out1);
text1=findViewById(R.id.text1);//id
text2=findViewById(R.id.text2);//name
text3=findViewById(R.id.text3);//address
text4=findViewById(R.id.text4);//salary
text5=findViewById(R.id.text5);//job
Intent i=getIntent();
EmployeesClass e= (EmployeesClass) getIntent().getSerializableExtra("table");
text1.setText(String.valueOf(e.getId()));
text2.setText(e.getName());
text3.setText(e.getAddress());
text4.setText(String.valueOf(e.getSalary()));
text5.setText(e.getJob());
}
}
|
[
"[email protected]"
] | |
0947c899f7c13600ae5abf6a10e71fbc4006dc89
|
7ca8aca7d82d40b37ec2cfbe2ab3591400e03d79
|
/jung-extensions/src/test/java/net/stuarthendren/jung/utils/UnorderedPairTest.java
|
7328ae1613357282894588f3e740da975b10bd8f
|
[
"MIT"
] |
permissive
|
stuarthendren/Jung-Extensions
|
db08af041d686e66677ef35263d9f32d7e1ebeda
|
3aeda47eefb8d570c643b943335bba9bd9bdb32e
|
refs/heads/master
| 2020-12-25T15:28:58.306684 | 2016-08-05T08:10:29 | 2016-08-05T08:10:29 | 3,674,384 | 4 | 2 | null | 2018-10-18T10:47:57 | 2012-03-09T20:16:32 |
Java
|
UTF-8
|
Java
| false | false | 1,466 |
java
|
package net.stuarthendren.jung.utils;
import org.junit.Test;
import static junit.framework.Assert.assertTrue;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
public class UnorderedPairTest {
@Test
public void testGettersWhenDifferent() {
UnorderedPair<Integer> pair = new UnorderedPair<Integer>(1, 2);
Integer a = pair.getA();
Integer b = pair.getB();
assertTrue((a.equals(1) || a.equals(2)));
assertTrue((b.equals(1) || b.equals(2)));
}
@Test
public void testGettersWhenSame() {
UnorderedPair<Integer> pair = new UnorderedPair<Integer>(1, 1);
assertEquals(Integer.valueOf(1), pair.getA());
assertEquals(Integer.valueOf(1), pair.getB());
}
@Test
public void testEqualsObject() {
UnorderedPair<Integer> pair1 = new UnorderedPair<Integer>(1, 2);
UnorderedPair<Integer> pair2 = new UnorderedPair<Integer>(1, 2);
UnorderedPair<Integer> pair3 = new UnorderedPair<Integer>(2, 1);
UnorderedPair<Integer> pair4 = new UnorderedPair<Integer>(3, 2);
assertEquals(pair1, pair2);
assertEquals(pair2, pair3);
assertFalse(pair3.equals(pair4));
}
@Test
public void testHashCode() {
UnorderedPair<Integer> pair1 = new UnorderedPair<Integer>(1, 2);
UnorderedPair<Integer> pair2 = new UnorderedPair<Integer>(1, 2);
UnorderedPair<Integer> pair3 = new UnorderedPair<Integer>(2, 1);
assertEquals(pair1.hashCode(), pair2.hashCode());
assertEquals(pair2.hashCode(), pair3.hashCode());
}
}
|
[
"[email protected]"
] | |
a767adb406948b756c08ceb3d976810b9aa0d01e
|
e77103f4f2f32089f31c9fd9a66b3a93859093a2
|
/app/src/androidTest/java/com/example/pierre/projetandroidbarcode/ApplicationTest.java
|
eb51edb79341d589516daec4e6c442c750d61640
|
[] |
no_license
|
pierretuaillon/ProjetAndroidBarCode
|
c088f15f805644a1792aac1f8389863936d27b07
|
282009c1409c3357c32314b6fd1024846bf4dced
|
refs/heads/master
| 2021-03-27T13:54:02.223768 | 2018-02-23T22:21:36 | 2018-02-23T22:21:36 | 108,011,338 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 370 |
java
|
package com.example.pierre.projetandroidbarcode;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
|
[
"[email protected]"
] | |
13ef535925dbf2b293640e116db09d1fe4d602b6
|
51934a954934c21cae6a8482a6f5e6c3b3bd5c5a
|
/output/259c25c04715412fb23dae0e6b632d0f.java
|
19d655f9bfb3d68e894d767ccc848bfc2c5b3528
|
[
"MIT",
"Apache-2.0"
] |
permissive
|
comprakt/comprakt-fuzz-tests
|
e8c954d94b4f4615c856fd3108010011610a5f73
|
c0082d105d7c54ad31ab4ea461c3b8319358eaaa
|
refs/heads/master
| 2021-09-25T15:29:58.589346 | 2018-10-23T17:33:46 | 2018-10-23T17:33:46 | 154,370,249 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 38,229 |
java
|
class SJAZXZ27w9 {
public int[][][][][] W5pchlJkicDrZ_;
public static void WPngxVbWUNy (String[] dY) {
boolean Fx;
boolean[] BadaJAY2vgpc6 = 3722.AxLuQ_;
if ( new int[ this.IH8aB8U4()][ !!-null.v()]) while ( 89439298.mB4C) true.bk8R4ztW();
int[] dimlIn_kc;
int EsK = -true.SssLpjuN();
;
void ruzBe = new ENLHEOp[ new aVaxq8Z54kOnTl().t4OJY()].y() = !!pBIRvBo5jT_J[ !!-false[ !this.ImV()]];
while ( 2.nMbsz8l8r3AY()) ;
void[][] lPE0Fne = x8dk36_UoB().obTOGXkeewLnd() = --false[ ( -!Q6nA3qq.VGTDwk)[ !ILnHA0ypw().eLSy7EMF0SFKHK]];
;
if ( this.LIdq6f) !icqL.sGu0hvcIYj5ZCB();
;
FQi9h9sn mSYyiLuhIHQo = null.tgi9x() = -false[ true[ null.ZjxDPYsYgL6]];
boolean[] l87uX0wOd;
{
zcg[] GjiHI;
int[] zrHCsA_vr6Eb;
if ( !9[ false.ETCQy54fR()]) while ( !XyyLF6YB3lBE().eRhqdc6rC9qe()) while ( new boolean[ -new Qq4jFbpq().mh7H()].g3p3A3ppNn()) {
;
}
if ( !new int[ 4513[ !LepAgsN0P.FK4K6B()]].Jf7wMsy()) while ( false.ulC0pJk) if ( 118235.uRYMhh9ZM2g) return;
!!oX()[ !-!( new hx[ aybZYEnk7e[ null[ new friEX8().VJbe]]].El8OlspD_TjX).igJa42eJ7xN];
WUyq2nl_i9TCPn ClFxvgCW;
int[] CYlQvTDr8rs;
boolean rBtmsRO8Lf3UK;
while ( true.mc4p7fCFNNuCGN) ;
while ( -bocg7A_jg().QNjZ1L4z9T821) {
while ( --new Cka9CeuT8dMUS5().OKKg9Ct4iu7) return;
}
-( this.uWlOkmVDcR()).Qbo8wqiyKnVTP5();
boolean hLVBr8fS6edNI;
mdLzsoqjpt[] e;
int[] srr;
{
4988.zjLsQamcooKfZ();
}
while ( -!false[ this.vLCnQwg_Vr4p()]) -!-new ysl8IHXMfRtmw[ ( !new BfOZoK2Uq1jZ()[ -!85032[ new YbJMuTN5vTU().DBg9m0nrx()]])[ -( -true.WRVZIcJgC979O())[ null.Mx()]]].zehpGDpEUdje();
boolean x7E8WL6dIp;
boolean[] zyv3up;
}
void zbiV;
int s;
while ( !!!--new emsAu().boFRVcnzG_pMLN) new HTPSz5z().qdRtpuLmtq;
void oBL4ifyW;
int[] vqfMyMgbFhvASy = -G0H5nlNZCA()[ !!false[ false.hUkpoF18pv()]];
}
public static void bg3Dq (String[] RDnQCMr) throws LpaXz9MJXbHc {
if ( new ZuF675gc[ false[ !!-!new kAvX7()[ NEpRbac2w().sy4K()]]].q0z2oT()) ;
( false.Qb0qQXPi).x;
this.hqVH1A2bKlH9();
boolean[] m8fCZJbE6iE2XB = --new boolean[ !new YNSuc9EC().GgcrD()].cI3VNwJ_();
boolean r6;
boolean[][][][] qJpGRsi = --null.mMmEH2savAE() = Gz9lpCJBlcy_A.RJz;
ESoR[][] ZE;
while ( true.qJQX) return;
void Oef3n8p;
{
boolean R051Ecjz_;
int FvQwlfnch3c_;
Bazr fNk8t7r;
void isUoeDKf;
uz_Tw[][][][] Gy2pdSI1QX;
int a;
}
boolean q8yWaQwAM = ---null.cRj_xL0auA();
int[] S2i = !!false[ null.ZSlYLBA7t()] = true.o6;
;
if ( 081.Evbl_rK8EFzd) while ( --!!( !taLu.CBTEdkD())[ --new rhJIwmi().id()]) ;else if ( new void[ ( null.TBKhQmIHZ).hlBjeQNyEiGuy()].UatjNHW7c()) -!--new V42wO8[ RwNs.nR3z9h()].lR;
CtlRzbCwR mODEoaI0FUaoay = -!yUPghJmsrt.l2rM;
void C7SX4CpEIYM8 = -this.EvezAWHsety = --new cykSmgNR[ --!!!-!null.Grhjpaycc()][ o5s1qE[ 5.TAtX]];
-null[ D[ -zb1b.BLosNL4Uu()]];
while ( -!925425.ARnLJJsWAL) return;
}
public static void KNK1j9g (String[] xyC) {
while ( Tviv507wW7qyPS.MmmR9wvl9NK4Q()) while ( !true.vXVErLsTN()) return;
return;
nAzkMNABW7 CaFIM = !-this.wN3rt6xR();
void[] n2wQt = null.bBMbWpHB7ygft() = false[ !!!!!( true[ new fGiPdug().u]).Yu2Ry];
boolean FqkGMnyXvmAR = Oe.Co8aiRFt() = ---new rEyMGeCgB2DEK().WH8j2K95CyotgF;
nY().Dk3fdbJlcU;
-488700.GBZJtCv;
;
{
int[] cntlAwVLzKXLoM;
boolean[][] hXogY;
if ( -this.f3OEvh_3tO) ;
void A6YgoGxiM;
int[] QezcdKHN5U1Z;
void[][][] gmjqXOuXAp;
boolean q326hsd9;
void[][] T_3BkHcARrmzRN;
;
int UyYp;
int[][][] ME2nprKQn;
void[][] vxCHSxIBnR;
void pkHJf9h;
boolean[] geXpXItD;
boolean[] ha6MM1cc21;
}
;
}
public static void he (String[] fne) throws IR9VoKl8RAAo {
while ( false.XRU()) false.pA8_OOZ();
{
if ( null.TafJ0KPwu_A) while ( !new sY438().HaC5O_6qt) {
{
return;
}
}
;
e4vN_lq4[][][] M;
if ( -new drIN8cLCSu().u) ;
71164393[ !-zOP1ejDrwVHCj()[ false.fS4Xe]];
!new ev4T_NSZ7C18M().R6();
int[][] WM;
int hwztwFoRCl;
boolean DAr7V;
while ( !!false.pdkMne()) if ( null[ --!new boolean[ !-true.un68s9s0sLPE()][ SeF52q74().LIovf2OLWv0rt()]]) -BVPJ_1hz().fRT7tLo();
int GwxDQE;
int[][][][][][][][][][][][][][] sRWjhhnTJl;
}
int XMA = --( false.aH()).wigeRD() = ( new void[ new wrJ_eig9().WG83NxDENGiM].r5RNyEF()).St();
return null.jzcxu();
!--!!-A.LrjhbnuBB;
while ( _wbMeKyaY()[ !true.tUv3oCrJ]) return;
{
Nic C;
void ei4D35z4VQQ2W;
int[] Z8rq3oNgvEA;
;
U PlzsN;
void[] b8fWfGif8E;
while ( true.RKIdRDkZB) while ( new HT_e2ac7OasU().c4bZqMc) while ( !-false[ 209.U3mg3Fzy]) ;
this[ gwFp._Y];
return;
int[][][][] kI;
}
return;
while ( ( -932312[ !new boolean[ true.Qaw5HzV].dLo3GJn]).lNFlg6zR()) ;
boOmnn i = 35603.sLpRhjITVP() = null[ E6siQ().p6lfp()];
return;
}
public static void kippauX25L6 (String[] VH5pqI) {
void[] QJK8KuMVDsB = --new uYrF_()[ ( !!-fwKZLL()[ n5bCJ[ -xZNmBI9TE.WDfGbJ9OWE()]]).OFjnDoAaTFZ()] = !!( null.LYpTud0K6Tvq).GztLioUtrsn1G;
while ( new Wd9pgXcF5xL().RWuvYA1ek) null.Dr();
while ( ( --HMGvWq.QZQQ6I()).uhEzEtZw()) if ( 7977322[ 73[ !true.FXoJRTbYH()]]) {
return;
}
while ( 10594[ new int[ false.C()].zkr4iN8X()]) return;
this.s();
;
void[][][][] frU7;
G Bfb1GYYVMs = -gkcklD_izmGV[ !!!-( -false[ false._4TroiZsMA]).MAUxza1()] = -BUC0Mc.ZjA();
boolean[][][] VVcK_;
while ( null.eJgo4d()) while ( true.KMd_Afl39wJ()) ;
void j = this.xxe() = --( PgSu().dT0Da).ddTDg1Ipz();
PcPZ v = -!true[ bMUf6LMX1yx().GeRmfNkrqbLm] = apseNqX[ -!new Ds1_48()[ false[ new RNcdWoS_9[ ---true[ this.NKc]][ -I().t_nwOUgf8nDD]]]];
void TYg = null[ !!!( -new void[ --this[ !!false.wE74PlZe()]].DX1Yyv)[ false[ ( new int[ null.K].Znf()).ycoEg()]]] = false[ ( true.PpaI4m4KzKVP()).rIXsnbH7NIa7yT];
}
public void eb (void[] V_bVZpjh5H) throws UNehqpRMJ0t2S {
-!null.r();
void gTN8tzeTiyW;
boolean[][][] Cf = ( ( !new boolean[ -false[ --true.ID3r2v9ZF6sE_w]][ --!!!!false.UA()]).j()).yriz2v();
boolean hTJ = new FpNKyn[ true.QPi98uGgAmx()].o6Lr() = !!-!63915.ATn;
RFWbaB[][][] MBmJ__VrhoLr = null[ -442[ true.EWsS]] = !new AaCNHKmmU55bK()[ -!!this.qZzyX];
A q;
;
return;
while ( new XHX().gIp()) while ( null.pgKA) if ( true[ cmFeCNz.tHtbBz()]) {
int TqpTf2btq;
}
int N2VzUWhrWDrr;
void[][][] MNXmUi4 = --( new JGqiV7pGe_sC().wfqheivIo)[ !-ENqC3Zgm9h4().x8CwS99709DXbp];
if ( -3553.gPpMvZNBT9bd) ;else ;
while ( false.biQ2GX26O()) ;
tqNWD tlbQapohgxN7 = !aSGGJvg()[ twQz[ -!new iy9bAfjUY()[ -( new boolean[ true[ -!new QuHWK7ncBu2().ikIYGRj_fF()]][ new boolean[ true.X].fEFZjLhoi()]).SBxC]]] = null.njQPhvS();
fm1K4YRx7[][][][][][] nYeveVXVcgqpst;
S_9p2L3vp9k[] GyYCplr4kzX0T_ = !HSGZAY7F()[ true.U()];
if ( !!c4vHSY.wR977PVms5Zh()) if ( -!null[ 773402208.v9h5ATl2qQ()]) ;
boolean[][][][][] f = -new void[ -!DYOaAj[ !this[ new x0DUi().wv]]].FgGM5ckFroSR() = 35712998.seSBm2();
}
public PIpCj6Hk[][][] Lt7C8D4sR;
public static void D (String[] zlf) {
if ( true.Fw) ;else return;
--!( new unmXitCc().CN1j84).weJ;
return f5qYWqwgAd0tDo().KruVD4();
boolean W;
boolean[] _61 = NYYwm9A()[ null.krrnpI()] = !new int[ -s[ new tuwjM().DvujAAwgdVCm()]].VxFaJ7B2SuR9H;
}
public int[][][] uB7;
public static void T (String[] EKQCwyw_) throws jb75PNoGxz {
S eeRV8_rDUHIB2;
if ( new int[ new int[ -137[ null.YH5YDSEpf9A0()]].pvzrZFK8sr][ --null.rrC1()]) ;else if ( nqXO7Tx6().EPjlk()) while ( new void[ this.VETBP2KBkyi3X()].Uq8R) {
;
}
while ( -!--false.mbObo) {
return;
}
while ( -null[ null[ ( this.z()).Swqad7l]]) while ( -new Z1YIz6Ju().YRyu()) if ( --( -!!-new AckO().w5jdeAnYfXl4TZ)[ true.mvTuGaqe29bbo]) ;
{
;
m9U6u22gssJE[][][] v;
if ( !-this[ 81484108.j7mCwdsmRdDSR]) {
-!new void[ -this.Dd_EhcdNoP()][ -286.ELN9bQgr4u5el()];
}
l00OtrfEKmA gUPism;
void[] jzrPxoj;
boolean[] L;
;
while ( new hMr6[ !nXI9gPO5i.m7BS5U3tK_()][ -7[ ---N21yewMuT_H5y().J5()]]) !!!( !!null[ new Zklh6Px7CJ()[ null.q]]).Coqr8EzVo();
void[] vuC;
int DiK8SqDTlOV9lG;
while ( L5HZYBFavt.cub1S) {
null.ZfrdXPRo;
}
void[] sz5VrhH;
false.BDy_WW;
{
false.lBiRwNqhin;
}
qWLsQ7Z qorKeVGwEp8Ac;
ndnpHcgk_IS_wy.urRR71jkbpVGXp;
while ( LfzE3664Lkuj42.IPFo1FgHYL9ZsF()) {
int boF7VY;
}
}
while ( this[ new void[ !--false.BZ1eQJ].y]) false[ Stdh.QaEb4];
KeRcgYecqTmY6i[][][] TvKx2Mu0dvTn4 = -false[ --new void[ new void[ E.cQ4fzNhdH9()].tbfr2C][ 505.DlSDJnxUMN3oah]] = ---!( rPgew7R8VJm3hm().Uz859Uzc)[ !new void[ null[ ( -new Da4jxbIfSGb().ij2cdOwpQY5)[ -true[ true.BaTh6zyI()]]]][ !( -!syw[ this.EpNAxcSbeg])[ !--R73cBYhGeIl[ !!-!jxytE1.YHu]]]];
int[] eAcu3r3Nd5;
jI2t_9Fj[] VzsJGT;
CWfrZTU[] uQSGNlb;
{
boolean[] QWfgen9pHFm;
while ( isLR3oiFwB6QpU.jgcMhBqI9ViLy()) while ( pri9DqF()._) false[ !!true.jH5S()];
boolean[][] HGvu9Oh04;
gihN6gp aBpDQDoz;
int sd0dfg1vaRBrrt;
return;
boolean[][] XkrX50;
void[][][][][] CtIDJuSD4DFut;
void vhO3sbTU1afpT;
int xnGiyamoNA1;
!--new void[ --!false[ ---new JkGR().SW50()]].ktFl_;
boolean BxyVQaYhP4CFI;
boolean ZfgJR;
}
;
void _NTr0CSU31If_u;
if ( -this.D4opeGO7()) return;
}
public int[][][] O3xMOrAi7rHpMM () {
{
while ( -( !!!null.kKMxn()).gK19ZPX60()) return;
while ( !-( false.LWuBuxgwDOE92E).l8hDIbGs) ;
int[][] EUsQRItD5xBDu;
boolean p;
int[][][] q7hYX9xz;
-LW8Fk2HI4FVd.lQji9_4pLMMU6;
;
void ZIN45Er;
if ( !hQ48eHI7K.o()) !new tC_ZPB12mZzf[ new q0().n9fT9h6].bXd5L3CYFrMZ();
true.Riej86t353kOlH;
lrELS4hPaGg7 p;
this[ this.ppxBlPjzL()];
boolean[][] X9E5;
{
-true[ !null.wTze8mBmlq6kL];
}
void i5fsbSOeM;
void[] V;
;
while ( -new int[ --!true.bis6bHhOmrvX()].guJFcd545) while ( new rDvijP2VTVPsF().lZPwzgzn) if ( ( new void[ !h7u16ggl4hJw_1()[ --!!-!-qBzUaQpLR().keESSFFmA9CUNv]].GZJ0vbIKNrW()).fXbU) if ( ---q.PGJItU) !-648776827.oZpwpPFQpDAn();
{
boolean[][] Ylt0X14J_;
}
}
int rLwzljP;
void[] YoKv1aM6;
void[][][][][][][][] yCHDrX4;
aF B3R;
{
400.oSYjnEn1GZ9xD;
while ( !new void[ false[ --!5848.MpRpZ5FHMzyu()]].ZVD3F76qn) return;
while ( false.DC0vXCl1XWYYv()) this[ wAPY5kr7TKzQV[ !!!this.lj15911cBiBLdK()]];
g1INnVUfyBFUti[] Z5t3aPj0Rmqx;
boolean[][][][] T;
if ( !false.Mx()) !-tPhw6Hf44.UTmsds69zzZ;
while ( -( !n()[ new int[ !null.vI7pu][ new okvPQet5()[ --!true.HXM8JxEUL4twb]]]).wY5S()) while ( !CJWVXd6WG8k3[ !---03758.PX]) while ( !!new boolean[ -new myw_NUJx0().h].P) while ( !( false.VC9xmRvPc()).fciGPKCCXBKpIG) return;
euxLO[][][] OI8C37oxr;
int kYXl2;
int[] SCGecb9W;
true[ -true[ true[ !( ( this.UcOs7GwyXm()).Xdl4ohPfuhL8b())[ k7ogQ()[ new int[ !--!!null.U1KL1AVhBIPvua].KLiJq0PPODA0v]]]]];
return;
return;
if ( ( !false[ this.jdvKb])[ -!DLsJL()[ !true[ this.vY8H2DDPwcN]]]) {
boolean WYkwK;
}
while ( ( -!new boolean[ -e2U8XhHX.S].REYXU()).rJFJnvFE) while ( ( !-new lXsuTnsU8jNX()[ !( true.yeX()).e3zAU])[ fOWJB[ true.FgbOoXdaxQE39()]]) new int[ JR[ 0936[ -!( -true.vG8aNwKW())[ !iQlXZIqTLYdBm().Y2zXPWBp]]]].As4L7yuKub0BYd();
if ( new int[ this[ !!new K[ -null.ItuUbHR5()].mrDg8I2kGZK()]].JHtW5T()) !-!zSZi5iTmz_i.pd6oCHsdneL72();
boolean[] rkAhfWP72TV;
while ( this.Vt99ELGuv) {
;
}
boolean[] wDEsmfX854Q;
;
}
return this[ 18963.Q()];
while ( new boolean[ !this.IV58eiGg()].aYntKL()) {
boolean[] GpxAmpTvd;
}
}
public void DS87B89yQRALN;
}
class nvbCE4MV {
}
class uPK {
}
class ZnUatApuwGYbR9 {
public boolean[][] FvL;
public vo[] NkS8p1VG5ATs;
public boolean[] LSD_VrG;
public static void V (String[] MLeDD8) throws hqzA1nlua {
void G4;
while ( uViQ1PA0Mzk88F().GOMXaqt()) return;
while ( new zGhF[ !-BOxcappakk_dGT[ !false[ !true.v]]].iY0N8O()) return;
int[][] dW;
while ( false.e_6KwprMJq0) return;
void[][] oi16t7mxZSM = vu_Q()[ this.yTbDeSyNBLfq()];
this.QFaH4It7ux;
;
void[][] EexiiVN;
{
!new RP5UmmH73K()[ null.a1mh0pBIG5tl];
if ( 3.afyPZDzYn_tM()) while ( -!!!2118207[ -444.sYJfL()]) if ( this.hc) if ( -!!false[ new tPh()[ !332.CPsFwgftR()]]) {
while ( false.UN0PVztpiDk5m5()) {
while ( -!kXSof()[ lXAMjeUn9().Rq0rtqb]) while ( !!new ozwHJkOcQLd()[ -null.MgDHPKaeSXFT()]) if ( -878923712.oRAw()) ;
}
}
if ( -new Lae().B()) this[ -null.J2dpkKMK];
;
void BhyQMgC5;
boolean[] AlU;
;
if ( !-( -!--!new hzrl4s().qZQk())[ new PUQ()[ true.R0XyduXjctRdo]]) while ( false[ -( !--!( !!( -new FEwoNzXTi6()[ !this[ null.TX0yLBIBB()]]).n9uRLWhX4())[ 229.kjB7q]).YSK]) {
while ( this[ new boolean[ !!-null[ RxwRyrD.Sk_peUz()]][ !null.vWQ9EB]]) while ( null.sFo8Z_k) {
{
int fSw;
}
}
}
return;
!-this.oJk2BVS03f9;
if ( null.BMvAPTO4Zq) ;
;
void AW11;
}
int wE2tvJf_fH = new _B16[ -false[ !new QwP7UonVPuhWfa()[ !-!new odaK()[ null[ false.iX()]]]]][ -nZpeWY7JP[ ---new fALmfcTN0SR()[ 52398[ -new boolean[ !!--this.okRhr1CEE3].ckx0HYREtwIs()]]]];
void GWbVHiwpRpqGGp = --this.wrMPyX2D();
return !false.hl0bUW5JC;
void ztap7CEdqdf;
;
;
return !fthyeJ2TCdh().J;
;
void Z92LNvnLpP4e4T = !-new QwL()[ -this[ JkXeS460BBxKWl()[ -!tBj9.K6lC_Iqi]]] = !false.Qn7QJUyP8lO5();
int[][] RIHzre5ZnbGTwG = -tEGpYFPo.j;
}
public int vHqUbMC4_0t;
public boolean[][] mCmlymB (void[][] HYtnZB4x) throws m76n {
void[][] FNS9a74U42Em7g = null.RhHev_y() = LswAYxPyKm1K()[ new boolean[ -false[ this[ null.ZRpnFO3eF]]].oElP0AG];
( null.jS_q9e2iB9()).BuRrA;
void tSEV_7B_9FEW;
}
public int ewEyDgd;
public int[][][][][][][] pVRF4yISTUG;
}
class VyW {
public static void RGPHcQqC5 (String[] Z6BpVlVuDHP) throws nDYIBK34T16qqL {
boolean Z;
jU1rtHe824 C_jLVb7R;
if ( true[ ( -!new AMw7VW().ZpSYa)[ new int[ XvNI3qBGHQpJj().eDA7qeiCfrkQJg()].Jq5VwK()]]) ;
;
while ( this[ X.L2Cfn6QP()]) while ( QW2[ VEFpj1().B7M]) while ( 18.O) if ( false.p7tBfNT_()) -HD92HDNo().K9Q;
new utfIFBUtlCOE[ true.Ugb7ZYe][ this.NMGMSOU9LCkyv()];
MSWbuc6KE[] IGOji = new PXW40f[ !446486720.aHv3eCaLhBK()].Rgry8QcViSR() = --!false.YJZCEt_go;
while ( ( uK().c0O3r()).jYTsm3jTrEYMjT) !HMFED().I;
{
int[][] iGGW5AlE;
return;
int[] Y4x5;
if ( 04.nS5()) while ( new boolean[ -!-null[ --true[ -true[ !!QqgzBRwP2U.wym]]]].R21MTW7FesvCT) {
void GKYtTTa;
}
if ( 709.N8RfgF()) while ( !false.jCNKplYd()) ;
int yxyyUw6gW2;
if ( zr.RNt__2K) ;
}
{
int[] A;
{
void[][][][] zyeGV9yW5u;
}
zf8ywRg qS6i1_iQu;
{
boolean[] AZmRcH44UH;
}
int[][] f6mxTCs;
int XR;
HnYJhogBpP[][][][] s3Rhos;
while ( new int[ !789665[ !this.Cs]][ !-new int[ 9797435[ false.NM()]].PUdrzIuIU]) return;
int Y2LU;
boolean uKnIm5slKPAC;
{
void RwK90Shgt;
}
{
{
if ( !-false.OahM6lT()) {
return;
}
}
}
if ( --!true.wwZsoI_6L()) -new fY8VA03aYuNy[ sTP()[ this.V6P()]].qJ5a;
if ( false[ !--!this.jA()]) {
return;
}
;
T gxLoSPWBly5;
;
}
qTjaUS EaGd5LFI4Co7M;
boolean IGTm1k6oj;
boolean pSJwE0iOM;
QMFca sugDWC9J8p3H5;
}
public boolean[] e5yvzZphU () throws FZ365le {
if ( !null.apzislk()) {
void sG6;
}
;
boolean SHRggS;
IgHjXvhfv3R[][] sbwF7TFzfXC = -!!new Qjpff[ false.cV()].m75Bczm = !( UkTat()[ GWC3mIYR6Cay.b_7O892]).x;
;
int[][][][] c6LlhY9xRhW = !--!f.eZ0BruySrU = this.Iv();
void[][][][] bVi1ggB;
boolean Sxs8krwX = true.EObQ9DS;
while ( UUnN7Yi._RXwejb8kv) {
Ni6stzs7b[] r;
}
boolean[] fBl_bVX8O = new dfTlLkzAIlhS71().ubO() = !!----!-!-LQFz7c5FfIb2().zv();
}
public static void vzY8F (String[] aYVc) throws uXTB5KWP3hLY2 {
if ( !( false[ !!!!!--new void[ -!!Mwr[ -( ( 07358.V6y_K)[ bEZ4o().eSTUZ3c()]).JyR0LMHWcLnyq_()]].Fnja8z]).XMnOqeWvGj()) return;
void[][] _eId2qAa1bdBOS;
Lm3pgIC v6EqeVc = -!true.JWgrLOn() = !new kORFy5BBhbCK().oV2Iv4pKZ7;
if ( true.ghn6KubUz) if ( false[ --pkVI().YyB]) while ( new b().Bw10) return;
doJ wMkPS3HUyjdjty;
void Ofv7sD78YqFe0 = false[ V5.EOM6R5wZSPx()] = 3493.k1k2Mh;
{
while ( -h_hbZjY.Ij9GUTEl()) return;
-PIatr8ikT7OQo().mktADlv;
}
return;
while ( this.dRZcUKirxY()) if ( -r()[ new ofOje().p9afivl0znlu3e()]) {
{
;
}
}
if ( ( uYMALD81()[ -_arzxlxCa8j5()[ !!--new int[ -!-false.l8SrxMeoDZ()].V2DC5x5]]).gf) {
void[][][][][] TFtF39f;
}
boolean[] NsKdYf1SER;
while ( u1wLcR_75T().hMChPfe44) while ( new FsytwQP8CIWDP().D4_clSwDMdK()) {
return;
}
!false.y_ojLP_;
XvQrc3xGdOkz[] WLzgiVa = D_omRPDJdvR.vLj = this.TyG8tW;
}
public static void v_ZRkekul_ (String[] I) {
void[][][] vcd = !--h3_c0f[ this.tzXodoemzp];
return new void[ ( true[ --!new uavcmNNG()[ -6920820.GDsPEVlM1A()]])[ -null.oGBwAVD_lAjKYS]].PVJrUE;
return new void[ ( -false.CYD)[ --!-new lhlmEKduW[ !-!-!!-!--!716.paic()].uO_9eXj]].y3bmRjbbz();
!--false.k8RZswJSJgHt_;
{
void T;
this._Ak7C5();
sTIyWic6Qea[][][][] l;
return;
}
return;
-dvaF.ILIc9la;
boolean N;
if ( new void[ false.SnbCUxIh].t2rFjp()) ;else return;
int efFp6 = !new void[ -!true._EN6ebZrQY6Cm4].dcV0fjJDu0q() = this.qCtV6PKjSA;
null.sf9wHfo;
FD6[][] v8Zx;
;
w_OpvYw[] KpotKNBrj3w;
return;
int Hr = !false[ 6754511[ zsFYP6oBxx().SuzI30_()]] = q4meZl5w53DLu.Rbj();
boolean[] ynMLogiCVWy5EO = ( -38573700[ this.VZ7v()]).F8();
}
public g i_HqjQ (boolean[][] AZK4L5) {
;
{
return;
h0V3_R8 IQk;
dhl876IT8L H1y9eTGtZjLf;
while ( -Zc5b6KRRj().E3Iv72K3()) while ( this.xtCPZFt) null.OTAcyz1AV();
return;
void[][][][] r9alPHAl;
while ( !!this[ -!-9897480[ new A().a3UByZ()]]) true[ -!pGWOwR().K_];
while ( -false.a3OApr()) return;
int[] scgbi;
int U5fyAMEiSCZgQq;
while ( EkaApWbXMHoQ()[ !--!new VB91xJ7()[ -null[ --( ( ---true.CgP0oGzx8Tf_jM()).uV7lmQb()).WO6w6]]]) ;
lmhK[] EP6;
void[][][] w1hKmj;
return;
while ( ---new RTd7cYwMh602[ !t1PCglx.dGgNyECUNnPI()][ !--!-!( -!!-true.vKjX())[ --ECUsnNw().QzxU9wWDk6f()]]) if ( !false._z()) -this.j94;
}
void bfkuMzx;
void QhiRHS;
return;
;
yckJ9w[][] IOCBxAESt;
void[][][] f;
{
d3Hf6HS[] vKKuENikV;
int VEz;
{
boolean D7Cr_IrnUqPkVs;
}
if ( new qtiR7jO().Czq3Sz()) while ( false.p()) {
boolean[][] uZ68UgG17l;
}
boolean[] PYU2ydeOv9FK2p;
void yzVJ;
-!ldSAIU7[ -!!true.DVLm];
void IxwM3S7w;
}
while ( !null.ULxHzHCSlofbw) return;
void NL;
void u;
;
return;
return null[ !false.v1NSs5R5eAJr];
boolean[][] pwyZh7UgvFsdop = null.R3WvvXiVJ = LgoF1D.xBBAcPffVhp();
boolean cH9YSNlNVah;
;
boolean O;
return;
}
public boolean gY (BZJbEWw GZ54) throws fwJj {
CL[][] IAoLKiQNVS;
;
;
if ( -zB0vRr()[ --XziX5Xgc.WuRO24K4RRJqz]) return;
while ( null[ !( -85.xq58ZMg3Sa6F()).Jmsj()]) while ( !null[ CGAD1yHJ().qEen2()]) while ( !mB.HvmTzTOCwept) {
if ( null[ !--!472.YgRlo3]) if ( new EgxoeUlzj[ new jmeoJ2HhP().K8R][ -!!RNst5vIAtsGW()[ Z()[ !-this.dj]]]) if ( false[ !new void[ true._ZNh77skuD][ !obQ15TedLOFF[ OfBqilX_V[ !null.afov()]]]]) while ( !!73[ !--1161.xMjOD]) while ( -new int[ !null[ gG5gZL().alY9p]][ ( !-06305.U).UB2ZIqGY8HQjq1]) while ( !( !z4x[ new void[ -!-ju_Y6IgJr95tP[ -new XLLMLNyCSvv71M[ !-!!null[ !2[ 55.AaQT]]][ !322957947.b]]].sID7oNphxVJc()]).RP) -!!!false.pNqe1Xur;
}
while ( true.r55G3Jkqg9tH) while ( emrVugar8().FU6m5GkLiO) {
{
void[] INe4_;
}
}
while ( ---9338048[ true.Fpr]) while ( !!null.Nnipg) return;
int[][] mcC3HMAG6j82G = Enet0gc().gwtzb = aEpjZgS()[ -!-true[ !148918.VVVoSm84ny_8Ql]];
return false.Ab7PUjn4XqAp7();
return null.Y7jqvB4Lbwxio;
boolean BLO7Ui5PAcD;
void[][][][][] J5kGH = new dtVNSd().gGCP4TsEnagm;
void[] aYVPKSLDbcVe;
boolean Z4iliCeWWQu;
boolean[] sGlz = null.CnrFjkc = -OoES2.SJpqPTih();
return;
return new jIiOTsn().FATh_();
boolean[] km = 2743.Yp4() = !!-!qktPel.YCQL0;
int c1hngVV2LkH = 658250.wFJjAH;
}
public boolean[] HDvrVtTed () throws chr_Z8i1y {
{
boolean zu;
int nVCcDyWX_n;
M4K[] zQEtXpHPAqoii3;
!true.KZxt();
int[] ULf9v5sn;
boolean[][][][][][] uOGuJ;
while ( new hPBwwVZCn1kS().w()) while ( _iBj4u.ewKgXfW) while ( new int[ !!876705[ 150069.oRg_kvg_3Ct]].w7saF9VF1YXXDt()) while ( !zTsldYvMzcGtk[ iRHX().K0mY5GU]) while ( -new void[ true.cJfz()][ true[ 667496079[ !-!-!-new yeCR3ItVip63V().yI1M5wiHDMU5Bu]]]) ;
RT[] xTbrO;
return;
-( dkNSFrIbZTmi().N9wbjeCsZR2()).kR2ks7aGFHRSr();
while ( !!!-523619.zSVt2()) ;
void[][] dHG;
;
5.TFMCB;
void[] ji;
}
}
public ywGDJOWrpimE g5tQbeq6ScN (void[] adzBK, void[][] _cxCo3, boolean[][] KGM7uCtsxi, void[][] h8, int[][] Fm2BzNv0jbbFA, void[][] SRHZoHdjhPkH2, AiOAvYjYT j_LK) {
;
if ( --!9353894[ !!!false[ true[ !!fcUkQ().KGJ9RgOU7yA5()]]]) return;
t7[] h5ur73QgqanLp;
if ( -this.QntT7pNLuHY0) while ( new KsiJH_SttSjP().OSH()) return;else ;
void[][][] l00ihP_ = -sdJd0E[ J[ this[ new VGW8BKs8[ null.Zb3pB4Z9()].G5ODbLsd97()]]] = --( --!-null.G3BUHGSLACfXN()).RM094FLx;
JMOecXvmYkIb Vnjo6HpZ = !null.OWe2HTlFr48z62 = new PBnC[ !null.L4vPmcVbFEA()].sBSo();
void[][] d36Wnn2h;
if ( !!!this[ --true[ !-46869348[ --true.GXQE5()]]]) return;else if ( !!-!--( !false.kHVYIHeGTwDZ).aGV2ZBnM9o) ;
Irsms oWuzEI0KBVjuP;
!!this.sADb4n2;
while ( true[ -new dcWqOSprxTor2[ new N6iI().OqowciIR].DTd3yfDmgbZ()]) ;
while ( -!!!PYO4V_().TS) while ( lr2qMROT[ -!!--631.UtEI_0YEJcQ]) return;
return;
}
public void[] K;
}
class ySbEQbk67RGE {
}
class K7Wa {
}
class l_X8SCT5 {
}
class DJjaPK_uwWz4 {
public boolean[] D4RUcAEylP (boolean[][][] YLIntQVyo) throws HvPcr8 {
{
while ( null.R3PiY30v) return;
return;
boolean[] TRLh;
void[][][] VbvtcYZpy;
;
!!new prN6dpuzVDr()._();
boolean jRDJoo51v8E7;
{
u xjPB7sqqGz;
}
X QGx5noNIm7o;
void pftpUe;
{
while ( !new int[ c_hlrb0d()[ !-new boolean[ EAx6rfEA[ -new LKJ7nEXALZRa().HOcktNp7kqt]][ this.ohyZ1]]].nP5j01SYYJTXAR) {
void j0BITh;
}
}
-Cb()[ 6863.Ob9zU7v2B4oT_t()];
}
int[] y = !-new int[ UMV4().HRdqpMjP5()].lAGn();
mLMOMxOgdSsjI().gRxPOf0kT;
while ( ( null.ZJ17OJSfwcbMw())[ !new cVpu7zYQOlMx().BaIyAtueP]) if ( -new mdCAQv().emuG) !40188.XX0tQ;
boolean MUAo47;
cY4qy3QJpjN7U _ = eXkTNS4.ls5();
{
KKm2mEz[] h2ciaW;
B MN97Q;
int[][] u1wU1K_ok7j;
void DUKbVSG8DZVu;
int HfYDZAbhb5;
int TRBAX82KzfH;
{
leXrd_c6f RmNstIxhtWo;
}
zwVJSmg YgvP0;
}
{
{
--new int[ new ys().sd1z0d][ -EqEigU.TB7wICHsPPgeX()];
}
void[] GaDOU;
void[] DUh;
while ( !new Yo()[ !!false.pTPOoC7hm_b()]) -new int[ this.go].RtrQBV_Mu_p;
boolean ImVL2ypxopdZ;
int jsrm;
void O_HgRm1Vg0w;
void[] wewqGjW;
while ( kf2mRozEIF.zuaGwM28L()) return;
eG[] NoyVf4iKB94pB8;
;
{
JmeQu22VP[][] hF5uV1f;
}
wpK[][][] oJonNJQ;
TcOOuFzsE[][] jrI8bdiEoWU;
--!!!!!nnT().lMD;
void[][][][] slMJ98aNOTE;
return;
zEGckMqpxCT9z V8lxlt;
if ( !--u4D4YAaF0t9qQ.sKQQeBQ()) !70.DGo4QeGEDXnCsX();
}
while ( -SK6P.WdkOu6cnPL7F) if ( --X6R7Qed3B57c().PEewWLz3()) return;
WyTqyQ[] OfWhSeKUF = new oSLYMo_RANk[ -new l0zxHhdw().p][ true[ D4sbZN()[ !!263854729.tnL0()]]];
int[] CKh65mid;
}
public void ie7276n;
public static void coMiCtj23 (String[] E2Qh) throws BjxExPQoj {
boolean[][] loza0cYijy = !-new DZfHQJ().fryo5PQnzRTV;
int[] zElg = !this.bCAD();
LoRP[][] CS = --16[ false[ true[ -!null.Z2imQ0t5hnAv()]]] = false[ -new wn3NQ2vut()[ -!-11987._CRszgklOX()]];
( new T3gt().vWTY3z).OYxP();
;
void[] NS1wh;
{
DsC3qYr e;
while ( !-new Yrn().YCk) if ( this.LrQfS1tMYU()) while ( !true.M7C8) while ( !!!false.C3_B_iYLno3_g()) ;
return;
l49m a7yOr8SvO03;
return;
int[] ch;
{
void[] BmAY;
}
;
if ( f2.eFt8ZKihuvLuc) {
return;
}
if ( -null.qRNO()) {
int nh4g;
}
int[] kx6btZLHw1B;
int[] ej4;
!-!!!---KgNfQwfUP.zbGStEngirj1;
{
{
this.RnhSryf1Merpr();
}
}
}
;
if ( new Ay().EML()) {
{
if ( new QCdJw3XiP().jTHL25FGI()) --this.ThYL_SYMZ();
}
}
boolean BMWepXX_UZV2;
}
public static void _Z (String[] LPeg) {
if ( this[ 144061866[ !2774.VRCzci0cIe1()]]) ;else return;
int np8bk9gZYjB = new eRW9t9().E1d7wuV12;
;
-!-this.t23EMOHJF3();
YusFy[] Sozl9AA10;
int[] BrdvzbhelTdy;
while ( new JZXS()[ new k1UZM6gk_6B3Lp().OIf()]) ---!624795.Qokjfz2309;
int F7SSb;
mG2eoxDoRVUCdO[][] UmryYcHC0dlbC;
return 88497[ ----------!dH9P8().p36a];
;
int yUw_uKDCfqy8B;
}
public Zrk2 B32lE1QJc_r8R;
public static void UI6C (String[] ci3MM6l) {
;
null[ !new Hu6cnpfRzdzb().VnE3sB];
int DA;
boolean[] UsTDgOGK6XMZIU = -556636185.Xrm6 = false[ this[ null[ ES9dlilUI[ new boolean[ !!null.NvYO73Xu1ijm()].EFD_sHA6lYT5T7()]]]];
int[][][][][][] mfsgYfJxR5qqi = -null.wHF();
int[][][] QFN = Ol68K.cYNh = !966465101[ !this[ -false.fCuKpEYW()]];
return new zpq4O4dfYNAOM_()[ !new GY()[ !null[ !!!--true[ -false.lXViBljZZV9b38()]]]];
It1E[][] pw = -iZtP3U().Q() = !this.z();
void[] jr6VdQRdRNZ;
while ( -this.n81jjaJSXGXN()) ;
zlt17GTd[] mi;
{
int[] BX;
-false[ !5[ -155.PwnJ38aVc]];
huSO_[][] nUcxmDTsufYqU;
boolean esInMN;
boolean[] WKKNn54KiJhTH;
if ( !-!-!!this.qJ9PwdCuu) {
void[] dxK7Qg9;
}
int[][][] RpfKWR7D244RJ;
return;
if ( true.tlJWUBCu) return;
{
{
while ( false.O()) if ( !a3()[ --( ( new boolean[ !this.BRI3a5HncOk()].cyWb9yyeQBnhi)[ true.eb45ejA()]).ulAbO]) while ( !( this.gS()).HkoIGR()) return;
}
}
xY Y1WC7K9;
-false[ -new Vr[ ( !---new int[ !false.x_vLBgMHFVfuNn].SyLUfFN()).rSaR7iVoh5()][ -!-!-4668086[ --!( new R().csY()).c]]];
boolean G3G;
mwMOdaIFzFPu4m[][] K;
boolean[][][][] g_5ZDN27ymZ;
if ( new ts8fmX[ !!new Jm().oZCZg14u3p()].iuB_dP_ZWp()) ;
void SQoTtA6MyhIVu;
int Y1yfrjczBh;
if ( ----( 800[ !-!-false.NWu6kKbItLN]).zsqPibN()) ;
!null.j2dDbwU();
}
;
void Laq3VjhtAxzo = -!true.H() = -qFP_YEe()[ !false[ !--( !99430[ true.nJ()])[ ( true[ Yxo5u_uXWD().bgz530ZDSgi()]).HNx84Wp6adhS2R]]];
void[][][][] VT96ltNoUiY64j = !new fFv()[ ABMmnrg_().GlXM] = !!bBZTJ3ef2p().V4fVkuj_OAo272;
if ( !81.eWOclfW6TfnAGL) while ( -new void[ CZrv8ZQRChEo6()[ new void[ !-!new boolean[ KdxVErYErutJ().fTij1JPOBb()].tSY84DDkb].CPcxGKc3VW36NA()]][ -true.x0SpgZS()]) ;else {
while ( 0571690.mH577imKruF) return;
}
}
public boolean EtI;
public boolean Re9s () throws L {
;
void vHvsQWnz9b = ---true.kskLG7Vo3() = null.n1xKuf4xOi();
;
if ( -true.l1()) {
null.diaOBpWUx_qgW;
}else ;
;
int TGcqgrlV_5I = -XPyYKKLVEP()[ -this.snynz79()];
;
int O1PbfTrr9tC = --false.a2gtFWoUTFL();
while ( true.PJFGIfU0vZWTx) return;
while ( null.IP) if ( -!new ikMVPjUwoCf6[ false.bjgLyr3Os].IJ) return;
;
78068656[ new void[ 38.aS][ !!BjtGhSeY56x.Zl7u3J7N_()]];
{
boolean[] Lxhu9FN;
if ( !nRxvEoo3KLF().oT2dk9()) ;
boolean p3WXdw;
boolean[][] KcxhIrLfRTKGMH;
f hlkS63MJfBu88;
return;
void[] aS7s_Z7ubYY;
qBTc6[][][] ekbQMJyqsf8zV;
boolean akXs6x6H6Aei1;
return;
-!null.uz6P6();
if ( !aVt0zIY4uq().x6fcWGKb2KWW) ;
while ( false[ !true[ -false.abGs40XBBVm()]]) return;
;
}
new I()[ 950[ this.RLG4Vrd1Q678_H]];
gAMdY83GV1DN GIl0x4I3yxcdvj = this[ null[ !new isw().lGIVV1dY]];
while ( XrXtn1NQLkWYP().CI7lGgQ8DuzEf) return;
boolean PYOU_CtzbvBw = this[ --false[ BVGiMO.EEKe()]];
if ( --new void[ null.uF][ !( !Q0_87yZHmxfEax.oK()).w82SKUB9RtlR]) ;else ;
}
public static void eATnXHLfXST5 (String[] aPHLojEsVHD) {
void qIJJIKPb5;
boolean[][][][][] d8bYL2;
;
boolean qwTvSTNZijV = !this.tKWgA8R = !-!new A6olUWmgccU[ -( !zlP()[ AIGI0.aEoToNkrxU()])[ IbicC1XH[ new LFr_1d()[ !!2[ !null.lxpRMKT()]]]]].jwFLP2FmYNS;
boolean[][] vMMhhHNuzuo = -!!!223657509.OW = new int[ -kIRqARUr4yq.imrgkwxkgtglbc()].UXvmx8x8QiFeDM;
boolean dd8TvukHDW7on;
false[ ---!GUVmH()[ false[ !W2h().s]]];
int[] GBfgfMT0Yc = !-null[ false.KHBkl6IW6r1vW()];
if ( ( false.ZWIOnHfj).o()) ;else {
return;
}
;
boolean[] _K = false.hTgpg38;
return;
if ( !-true[ ( !P13()._yfivQUx()).ws75()]) ;else while ( new boolean[ -a()[ -true[ !false[ QP2aN().CrYrkNz5()]]]][ -!!false.ngOig5Mk1n27Q7()]) new int[ !-!new a().shhCJA].uAymcZUJ;
void p3m_ = ( true.LE2ugU).C1T6Q5Htaq3;
int[][][] bnA21AuxwI;
while ( false[ -new wjB3XgSItQ()[ new void[ true.L1DRANmdbQfQ].qVQBf96xIL]]) if ( !--022128[ !UCS9FcEvHQbzd().AaJOGdRnLB()]) {
;
}
boolean[] S;
}
public ze87MVxo3[] mSW3oH2;
public void[] qvVtB4 () throws F4VKKFe09C25 {
emFWsYyxrS fx6noj;
while ( !5775818.kfxpIM()) ;
boolean[] WRb5FWITgsV;
void jZumm72mT = !MHkj1L().rslEKtrtR668D = -!new ByaER[ new QXI7tsD5Hg4D().HHzG4Fko][ !!--!!!null[ !!false.sWFk()]];
boolean fP6T1q1h_Mez;
{
void[][][][] TvMvuNh;
if ( !this[ !null.FOK_SvOioyV]) if ( !new int[ !10663._LGVZ][ -this.Avbg]) 0[ 910486495[ false.t1162jUuq3GID2()]];
{
while ( !!false.kXw2VZH1) while ( !new G()[ true[ !!false[ true.v]]]) {
if ( !-false[ new XCnsqPaU883i0()[ !-!new Le02[ new void[ false.XwkkwUrD].PjwP].a_]]) return;
}
}
return;
int[] gpgYfW;
if ( null.hM()) ( 801[ --false[ new Am4Ix_kXEl[ ( !--( this.OikbtOkU8j5gq9).KCatKnLJZ)[ ( !null.UsTjO05f1bx4g1()).m1vh0sn2QV49()]].pnM2Df()]]).kBs();
void[] CHKEc9_wE;
{
;
}
new svnL8eX()[ false[ ( new boolean[ !XEA5qNDnaoV.j0z16Uh].FaIjZ6).QX8P28K6SG()]];
int nCaE2wJ;
{
{
;
}
}
return;
if ( -!-new int[ -new boolean[ ( c2().QR9V())[ !298426.FlbTAt7REla()]].BqCc].YD1S9otskqgKK) {
23.rZjzU9QPB();
}
{
{
while ( !( this.SJWhOoGQhNn8()).xCfMLy03B1b4()) ;
}
}
{
if ( this[ !new wY()[ !new rAguGSRxquD3xP[ -!true.Y()].I2L6vHZ4VDem]]) -!DqWRIwxuY5W.O51Nt_Dpf3;
}
;
if ( new void[ true.XFggJNLs()].Dp()) {
ngxc9IZICmOcO UTmJDt0Y;
}
!!900027.mc5Z2();
boolean[] NYQluUy24;
if ( false.bO()) ;
}
void w;
int dT = new afd4BV_fbjCr().v();
while ( !4528.Cj3ooUgNKnkkq1) while ( !-true.ixfMxq()) !!( !true.bTmDbP()).v3VWF();
QmQJrqM5[][][] ykrSc6im;
!!!( false.R()).rCfk;
int[] W5P5RHlsKS9wC = --new Qs53QYKq3qD()._ntOC25b;
;
if ( RNqlYX8idYh068.f) {
boolean[][] C9yoxh;
}else if ( !!this.A4()) rO0QudKxmR().eogA6aq0qu();
NkQ[][][][] VI2wP = !!--new JINVT7u[ new pLNsEQ7t_SOVH()[ -new void[ false.ieshA3Mmnhu1E()][ ( ( new boolean[ !NdEbO().rMCGKV9()][ -true[ Q1KnHbEQ.a5FHl_()]]).YoaSvXF9o()).yCMK]]][ y1swvQST9my().NnNM1XDhQ8()];
boolean[][][] i9YRM_M = new Osb()[ ( -this.iziilgo).bV_z1xzo0()] = ( !this[ !!qZfwpBn().Ia8SEvikG_b_]).K();
{
vL2OIVf7 W8sMJEfv;
QOqz071P[] _FyGtp73GV;
void[][] BUcSfdgN30CX;
yRjIso6yjlzJ[] pNa3;
return;
{
jN5Xa2ISO AV8__5mX;
}
---822812.fI3ezjWkI();
int[][] xTx9h;
if ( !!!---!!!null.YzW()) ;
FbIXE6ZQQY.Vg17wr_oT();
return;
;
void bdnXmShPy;
}
if ( !( !!!!--!!true[ 89.h]).Stj()) zlE_6G()[ CxM0e.zB()];
}
public void[] uAS;
}
|
[
"[email protected]"
] | |
ddd68a56d52631a2183f380118dffc759cba1c54
|
764419bfba54f2701729abbc4423e856c8d22f09
|
/sm-shop-model/src/main/java/com/salesmanager/shop/model/catalog/product/ReadableProduct.java
|
7fdb7bd03ded5881af28c2f6823e3f2cf5472dca
|
[
"Apache-2.0"
] |
permissive
|
shopizer-ecommerce/shopizer
|
972c86b7bebc607bfa7b6138ddb47fa3c1e90cc7
|
054a3bde1ea8894d13b0a8fb4e28f9db17262224
|
refs/heads/main
| 2023-08-30T16:24:57.981774 | 2023-04-26T02:47:50 | 2023-04-26T02:47:50 | 6,789,509 | 3,532 | 3,174 |
Apache-2.0
| 2023-09-13T14:37:38 | 2012-11-21T03:42:39 |
Java
|
UTF-8
|
Java
| false | false | 4,398 |
java
|
package com.salesmanager.shop.model.catalog.product;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import com.salesmanager.shop.model.catalog.category.ReadableCategory;
import com.salesmanager.shop.model.catalog.manufacturer.ReadableManufacturer;
import com.salesmanager.shop.model.catalog.product.attribute.ReadableProductAttribute;
import com.salesmanager.shop.model.catalog.product.attribute.ReadableProductOption;
import com.salesmanager.shop.model.catalog.product.attribute.ReadableProductProperty;
import com.salesmanager.shop.model.catalog.product.product.ProductEntity;
import com.salesmanager.shop.model.catalog.product.product.variant.ReadableProductVariant;
import com.salesmanager.shop.model.catalog.product.type.ReadableProductType;
public class ReadableProduct extends ProductEntity implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private ProductDescription description;
private ReadableProductPrice productPrice;
private String finalPrice = "0";
private String originalPrice = null;
private boolean discounted = false;
private ReadableImage image;
private List<ReadableImage> images = new ArrayList<ReadableImage>();
private ReadableManufacturer manufacturer;
private List<ReadableProductAttribute> attributes = new ArrayList<ReadableProductAttribute>();
private List<ReadableProductOption> options = new ArrayList<ReadableProductOption>();
private List<ReadableProductVariant> variants = new ArrayList<ReadableProductVariant>();
private List<ReadableProductProperty> properties = new ArrayList<ReadableProductProperty>();
private List<ReadableCategory> categories = new ArrayList<ReadableCategory>();
private ReadableProductType type;
private boolean canBePurchased = false;
// RENTAL
private RentalOwner owner;
public ProductDescription getDescription() {
return description;
}
public void setDescription(ProductDescription description) {
this.description = description;
}
public String getFinalPrice() {
return finalPrice;
}
public void setFinalPrice(String finalPrice) {
this.finalPrice = finalPrice;
}
public String getOriginalPrice() {
return originalPrice;
}
public void setOriginalPrice(String originalPrice) {
this.originalPrice = originalPrice;
}
public boolean isDiscounted() {
return discounted;
}
public void setDiscounted(boolean discounted) {
this.discounted = discounted;
}
public void setImages(List<ReadableImage> images) {
this.images = images;
}
public List<ReadableImage> getImages() {
return images;
}
public void setImage(ReadableImage image) {
this.image = image;
}
public ReadableImage getImage() {
return image;
}
public void setAttributes(List<ReadableProductAttribute> attributes) {
this.attributes = attributes;
}
public List<ReadableProductAttribute> getAttributes() {
return attributes;
}
public void setManufacturer(ReadableManufacturer manufacturer) {
this.manufacturer = manufacturer;
}
public ReadableManufacturer getManufacturer() {
return manufacturer;
}
public boolean isCanBePurchased() {
return canBePurchased;
}
public void setCanBePurchased(boolean canBePurchased) {
this.canBePurchased = canBePurchased;
}
public RentalOwner getOwner() {
return owner;
}
public void setOwner(RentalOwner owner) {
this.owner = owner;
}
public List<ReadableCategory> getCategories() {
return categories;
}
public void setCategories(List<ReadableCategory> categories) {
this.categories = categories;
}
public List<ReadableProductOption> getOptions() {
return options;
}
public void setOptions(List<ReadableProductOption> options) {
this.options = options;
}
public ReadableProductType getType() {
return type;
}
public void setType(ReadableProductType type) {
this.type = type;
}
public ReadableProductPrice getProductPrice() {
return productPrice;
}
public void setProductPrice(ReadableProductPrice productPrice) {
this.productPrice = productPrice;
}
public List<ReadableProductProperty> getProperties() {
return properties;
}
public void setProperties(List<ReadableProductProperty> properties) {
this.properties = properties;
}
public List<ReadableProductVariant> getVariants() {
return variants;
}
public void setVariants(List<ReadableProductVariant> variants) {
this.variants = variants;
}
}
|
[
"[email protected]"
] | |
2ecbf1f4caeb0845b7a0c5185a2d04da3679aa08
|
a3ecc03e1f8cb4ea1ee68cd8faafb25d41c13a97
|
/MainShopCharger.java
|
51b2608e94267119c593de1ba1fa7317ce557ba8
|
[] |
no_license
|
Kshoki/edu_180116-
|
1ffff796206a8ba9169c4e7f70c43257306e944e
|
28ecbc6fc75699e03d37b6bc355d46c2d9057f06
|
refs/heads/master
| 2021-05-11T12:06:36.300559 | 2018-01-16T07:53:58 | 2018-01-16T07:53:58 | 117,651,696 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,400 |
java
|
public class MainShopCharger {
public static void main(String[] args){ //main
ICCharger charger1 = new ICCharger();
ICCharger charger2 = new ICCharger(); //チャージャーは増やせる
StudentCard studentCard1 = new StudentCard("0001","佐藤太郎");
StudentCard studentCard2 = new StudentCard("0002","鈴木花子");
//チャージャー1で処理
charger1.insertStudentCard(studentCard1);
charger1.chargeMoney(3000); //studentCard1に3000円チャージ
charger1.printAccountBalance(); //studentCard1の残高とチャージ年月日を出力
charger1.changeText("こんにちは、僕は佐藤です。趣味はサッカーです。よろしくお願いします。");
charger1.printText();
//チャージャー2で処理
charger2.insertStudentCard(studentCard2);
charger2.chargeMoney(5000); //studentCard2に5000円チャージ
charger2.printAccountBalance(); //studentCard2の残高とチャージ年月日を出力
charger2.changeText("こんにちは、私は鈴木です。好きな食べ物はカレーライスです。よろしくお願いします。");
charger2.printText();
//チャージャー2で譲渡
charger2.moveMoney(4000,studentCard1); //鈴木→佐藤へ4000円譲渡
//チャージャー1で譲渡
charger1.moveMoney(1000,studentCard2); //佐藤→鈴木へ1000円譲渡
}
}
|
[
"[email protected]"
] | |
00772c1f9f4e6037e8b39438d9acaad9fb182edf
|
19b1ed801a2453c4f93e758ee4e2c39cb0fbe913
|
/PartitionList.java
|
b133643455059c3d278f70535a8391fcac880678
|
[] |
no_license
|
guaguahuahua/Leetcode
|
c1ea867b98f2e493c3686fa9b8d089af5ecccecc
|
95b5554b6d8e44cd0c4fe4e23b316517791dd1a7
|
refs/heads/master
| 2021-01-23T01:56:09.973798 | 2017-04-07T14:26:12 | 2017-04-07T14:26:12 | 85,947,329 | 0 | 0 | null | null | null | null |
GB18030
|
Java
| false | false | 1,576 |
java
|
package com.xjtuse.easy;
public class PartitionList {
public static ListNode partition(ListNode head, int x){
ListNode virtual=new ListNode(0);
ListNode insert=null,back,temp,t;
boolean flag=false;//如果删除节点的行为发生,那么不移动t的位置
virtual.next=head;
t=virtual;
//第一次遍历,找到插入点
while(t.next!=null){
if(t.next.val>=x){
insert=t;
t=t.next;//将遍历指针t向后移动一位
break;
}
t=t.next;
}
System.out.print(insert.val+"\t");
t=head;
//第二次遍历,第二个参数是保证了找到了插入点
while(t!=null && t.next!=null){//第二次遍历,寻找小于x的节点,并插入到相应的位置
if(t.next.val<x){
temp=t.next;
t.next=t.next.next;//删除节点
back=insert.next;//将该节点插入到insert位置之后
insert.next=temp;
temp.next=back;
insert=insert.next;//向后移动插入节点,保证相对顺序
flag=true;
}
if(flag){
flag=false;
continue;
}
t=t.next;
}
return virtual.next;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
ListNode n1=new ListNode(1);
ListNode n2=new ListNode(4);
ListNode n3=new ListNode(3);
ListNode n4=new ListNode(2);
ListNode n5=new ListNode(5);
ListNode n6=new ListNode(2);
// ListNode n7=new ListNode(5);
n1.next=n2;
n2.next=n3;
n3.next=n4;
n4.next=n5;
n5.next=n6;
// n6.next=n7;
ListNode head=partition(n1,3);
while(head!=null){
System.out.print(head.val+" ");
head=head.next;
}
}
}
|
[
"[email protected]"
] | |
53d48e470c06583012bebe91acfbd75607d8c11c
|
e49984fbc42159a422a0622cdc1b0a1ba6da6a51
|
/src/main/java/today/vse/Controller.java
|
ec67642cc56399373142bba6fef08acf1672baf1
|
[] |
no_license
|
Vsevololod/FileFindFX
|
8dca87b9114aaa081184db0f78d2917fc489be6a
|
78de4de68154fffe76f18ab1ac6f83745ebdb8a4
|
refs/heads/master
| 2020-03-29T21:06:33.314425 | 2018-09-28T15:55:19 | 2018-09-28T15:55:19 | 150,350,017 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,861 |
java
|
package today.vse;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.scene.input.MouseEvent;
import javafx.stage.DirectoryChooser;
import javafx.stage.Stage;
import javafx.util.Duration;
import java.io.File;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Comparator;
import java.util.List;
import java.util.concurrent.ConcurrentLinkedQueue;
public class Controller {
private ConcurrentLinkedQueue<Path> filePatchQueue = new ConcurrentLinkedQueue<>();
private Path rootPath = Paths.get(System.getProperty("user.dir"));
private TreeItem<Path> rootTreeItem = new TreeItem<>(rootPath);
public TabPane mainTabPane;
@FXML
public ChoiceBox<String> charsetBox;
@FXML
public TextField searchText;
@FXML
public TextField searchPattern;
@FXML
public Button searchButton;
@FXML
public TreeView<Path> mainTreeView;
@FXML
private Button buttonChooseRoot;
@FXML
private TextField rootPathField;
private TreeItem<Path> findByValue(List<TreeItem<Path>> list, Object value) {
for (TreeItem<Path> p : list) {
if (p.getValue().equals(value)) {
return p;
}
}
return null;
}
private void updateRootPath(Path path) {
rootPath = path;
rootPathField.setText(path.toString());
rootTreeItem.setValue(path);
}
private void update() {
while (!filePatchQueue.isEmpty()) {
Path temp = filePatchQueue.poll();
Path subPath = temp.subpath(rootPath.getNameCount(), temp.getNameCount());
TreeItem<Path> tempTreeItem = rootTreeItem;
for (Path path : subPath) {
ObservableList<TreeItem<Path>> children = tempTreeItem.getChildren();
TreeItem<Path> targetNode = findByValue(children, path);
if (targetNode != null) {
tempTreeItem = targetNode;
} else {
TreeItem<Path> newPath = new TreeItem<>(path);
children.add(newPath);
tempTreeItem = newPath;
}
children.sort(Comparator.comparing(TreeItem::getValue));
}
}
}
private void setListeners() {
searchButton.setOnMouseClicked(mouseEvent -> {
FileSearchThread fileSearch = new FileSearchThread(rootPath, searchPattern.getText(), searchText.getText(), filePatchQueue,charsetBox.getValue());
fileSearch.run();
try {
fileSearch.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
});
buttonChooseRoot.addEventHandler(MouseEvent.MOUSE_CLICKED, mouseEvent -> {
Stage showDialog = new Stage();
DirectoryChooser directoryChooser = new DirectoryChooser();
directoryChooser.setTitle("Open Resource File");
File selectedFile = directoryChooser.showDialog(showDialog);
if (selectedFile != null) {
updateRootPath(selectedFile.toPath());
}
});
mainTreeView.setOnMouseClicked(mouseEvent -> {
if (mouseEvent.getClickCount() == 2) {
TreeItem<Path> item = mainTreeView.getSelectionModel().getSelectedItem();
Path file = item.getValue();
for (TreeItem<Path> it = item.getParent(); it != null; it = it.getParent()) {
file = Paths.get(it.getValue().toString(), file.toString());
}
mainTabPane.getTabs().add(new FileTab(file).getTab());
}
});
rootPathField.focusedProperty().addListener((observableValue, aBoolean, t1) -> {
if (!t1) {
updateRootPath(Paths.get(rootPathField.getText()));
}
});
}
@FXML
public void initialize() {
Timeline fiveSecondsWonder = new Timeline(new KeyFrame(Duration.seconds(5), event -> update()));
fiveSecondsWonder.setCycleCount(Timeline.INDEFINITE);
fiveSecondsWonder.play();
rootPathField.setText(rootPath.toString());
mainTreeView.setRoot(rootTreeItem);
charsetBox.getItems().add(StandardCharsets.UTF_8.name());
charsetBox.getItems().add(StandardCharsets.US_ASCII.name());
charsetBox.getItems().add(StandardCharsets.ISO_8859_1.name());
if(Charset.isSupported("windows-1251")){
charsetBox.getItems().add("windows-1251");
}
charsetBox.setValue(StandardCharsets.UTF_8.name());
setListeners();
}
}
|
[
"[email protected]"
] | |
d9755b9a4d10ba26faea9aee1a270908e216a04d
|
08c17ec05b4ed865c2b9be53f19617be7562375d
|
/aws-java-sdk-qldbsession/src/main/java/com/amazonaws/services/qldbsession/model/transform/OccConflictExceptionUnmarshaller.java
|
3c2c306828d02a8e96fba0b6607bfc719901d666
|
[
"Apache-2.0"
] |
permissive
|
shishir2510GitHub1/aws-sdk-java
|
c43161ac279af9d159edfe96dadb006ff74eefff
|
9b656cfd626a6a2bfa5c7662f2c8ff85b7637f60
|
refs/heads/master
| 2020-11-26T18:13:34.317060 | 2019-12-19T22:41:44 | 2019-12-19T22:41:44 | 229,156,587 | 0 | 1 |
Apache-2.0
| 2020-02-12T01:52:47 | 2019-12-19T23:45:32 | null |
UTF-8
|
Java
| false | false | 2,843 |
java
|
/*
* Copyright 2014-2019 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.qldbsession.model.transform;
import java.math.*;
import javax.annotation.Generated;
import com.amazonaws.services.qldbsession.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
import static com.fasterxml.jackson.core.JsonToken.*;
/**
* OccConflictException JSON Unmarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class OccConflictExceptionUnmarshaller extends EnhancedJsonErrorUnmarshaller {
private OccConflictExceptionUnmarshaller() {
super(com.amazonaws.services.qldbsession.model.OccConflictException.class, "OccConflictException");
}
@Override
public com.amazonaws.services.qldbsession.model.OccConflictException unmarshallFromContext(JsonUnmarshallerContext context) throws Exception {
com.amazonaws.services.qldbsession.model.OccConflictException occConflictException = new com.amazonaws.services.qldbsession.model.OccConflictException(
null);
int originalDepth = context.getCurrentDepth();
String currentParentElement = context.getCurrentParentElement();
int targetDepth = originalDepth + 1;
JsonToken token = context.getCurrentToken();
if (token == null)
token = context.nextToken();
if (token == VALUE_NULL) {
return null;
}
while (true) {
if (token == null)
break;
if (token == FIELD_NAME || token == START_OBJECT) {
} else if (token == END_ARRAY || token == END_OBJECT) {
if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
if (context.getCurrentDepth() <= originalDepth)
break;
}
}
token = context.nextToken();
}
return occConflictException;
}
private static OccConflictExceptionUnmarshaller instance;
public static OccConflictExceptionUnmarshaller getInstance() {
if (instance == null)
instance = new OccConflictExceptionUnmarshaller();
return instance;
}
}
|
[
""
] | |
c78223c0e9ac470542398175dbed6644ab8f56a7
|
141e2c3d08714382cc6d673ca41003c6175d5c6e
|
/app/src/androidTest/java/com/thenewboston/mieon/ApplicationTest.java
|
ac0b7c87aeae7b3f3591c4f3da7dad0ef0819c09
|
[] |
no_license
|
RahulYadavNITW/MIEON
|
1281249076ade99c224feb750e1a91755629adf5
|
01970a07ead833c52c4fba158faf883d649283a9
|
refs/heads/master
| 2021-01-10T16:07:21.668872 | 2015-11-06T10:36:39 | 2015-11-06T10:36:39 | 45,662,370 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 353 |
java
|
package com.thenewboston.mieon;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
|
[
"[email protected]"
] | |
4cdc514ca3e433da76e52354ddde5e14e26239a1
|
8dc988b551092178e391ba8ea9ded2fbe5b3b50f
|
/de.gammarcraft.aqua/src-gen/de/gammarcraft/aqua/aqua/impl/UnitImpl.java
|
b1580c177dfb7756b3b40d873e128ce218c56bca
|
[] |
no_license
|
kuniss/Aqua
|
d6a45f9e55b5739449ed17b0bd442f13a386a7f7
|
90e29346bfcba9e3c1360a91110165f1e2dfb560
|
refs/heads/master
| 2016-09-06T14:14:26.759352 | 2014-12-25T15:37:34 | 2014-12-25T15:37:34 | 28,485,504 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,634 |
java
|
/**
*/
package de.gammarcraft.aqua.aqua.impl;
import de.gammarcraft.aqua.aqua.AquaPackage;
import de.gammarcraft.aqua.aqua.Declaration;
import de.gammarcraft.aqua.aqua.Unit;
import java.util.Collection;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Unit</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link de.gammarcraft.aqua.aqua.impl.UnitImpl#getDeclarations <em>Declarations</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class UnitImpl extends UnitOrBoardImpl implements Unit
{
/**
* The cached value of the '{@link #getDeclarations() <em>Declarations</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDeclarations()
* @generated
* @ordered
*/
protected EList<Declaration> declarations;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UnitImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass()
{
return AquaPackage.Literals.UNIT;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Declaration> getDeclarations()
{
if (declarations == null)
{
declarations = new EObjectContainmentEList<Declaration>(Declaration.class, this, AquaPackage.UNIT__DECLARATIONS);
}
return declarations;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
switch (featureID)
{
case AquaPackage.UNIT__DECLARATIONS:
return ((InternalEList<?>)getDeclarations()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType)
{
switch (featureID)
{
case AquaPackage.UNIT__DECLARATIONS:
return getDeclarations();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue)
{
switch (featureID)
{
case AquaPackage.UNIT__DECLARATIONS:
getDeclarations().clear();
getDeclarations().addAll((Collection<? extends Declaration>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID)
{
switch (featureID)
{
case AquaPackage.UNIT__DECLARATIONS:
getDeclarations().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID)
{
switch (featureID)
{
case AquaPackage.UNIT__DECLARATIONS:
return declarations != null && !declarations.isEmpty();
}
return super.eIsSet(featureID);
}
} //UnitImpl
|
[
"[email protected]"
] | |
32f97c81417ddf705dbf9c1034fe78c9eb2b9417
|
1b422ba91dc8315ba0f6ecdcb5b4c96d6da37524
|
/src/com/jude/json/FilterPropertyMapper.java
|
489037543bc576cddb2161cacdbdb1fd55700eaa
|
[
"Apache-2.0"
] |
permissive
|
hairlun/customer-visit-web
|
b02580196e97b746588c2a888685b2fc2463b794
|
b9200f78abe3a33710503c43af6211d524164221
|
refs/heads/master
| 2020-04-15T13:38:36.221967 | 2016-12-22T02:15:00 | 2016-12-22T02:15:00 | 59,732,623 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,001 |
java
|
package com.jude.json;
public abstract class FilterPropertyMapper<T> implements PropertyMapper<T> {
public void map(JSONObject node, T t) {
}
public String[] include() {
return null;
}
public String[] exclude() {
return null;
}
@SuppressWarnings("unchecked")
public PropertyFilter<T> getFilter() {
return new PropertyFilter<T>() {
public boolean apply(T t, String name, Object value) {
String[] exclude = FilterPropertyMapper.this.exclude();
if (exclude != null) {
for (String i : exclude) {
if (i == null) {
continue;
}
if (i.equals(name)) {
return true;
}
}
return false;
}
String[] include = FilterPropertyMapper.this.include();
if (include != null) {
for (String i : include) {
if (i == null) {
continue;
}
if (i.equals(name)) {
return false;
}
}
return true;
}
return false;
}
};
}
}
|
[
"[email protected]"
] | |
8fbfa84b8151d54e36cd8dea4f33901a4bbc38bb
|
c0cfa9431a5c04d0b1e74cc4c3fa6f11618a53e4
|
/PlaylistFragment.java
|
8d97f9af3c8571d7341b842eac01e256dc75a81c
|
[] |
no_license
|
ollywho/downdog_samples
|
42cd91897c9fbabe6a0e4c4b206c0ac0a43a9f52
|
171714fbcbd4d91aee281014d20a5b7126a8bdee
|
refs/heads/master
| 2021-01-12T11:39:23.203246 | 2016-10-30T00:30:28 | 2016-10-30T00:30:28 | 72,249,652 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,857 |
java
|
package com.downdogapp.sequence;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
import com.downdogapp.R;
import com.downdogapp.proto.Song;
import com.downdogapp.singleton.App;
import com.downdogapp.singleton.FileSystem;
import com.downdogapp.widget.LayoutFile;
import com.downdogapp.widget.PortraitFragment;
import com.squareup.picasso.Picasso;
import java.io.File;
import java.util.List;
@LayoutFile(R.layout.playlist_fragment)
public class PlaylistFragment extends PortraitFragment {
public static final String TAG = PlaylistFragment.class.getSimpleName();
@BindView(R.id.list_view) ListView listView;
private List<Song> songs;
public static PlaylistFragment newInstance(List<Song> songs) {
PlaylistFragment playlistFragment = new PlaylistFragment();
playlistFragment.songs = songs;
return playlistFragment;
}
@Override
public void onViewCreated(View view) {
App.INSTANCE.initBlur(view, PostPracticeFragment.TAG, this, false);
listView.setAdapter(new PlaylistAdapter());
}
@OnClick(R.id.back_button)
public void backButtonClicked() {
App.INSTANCE.popFragment();
}
private class PlaylistAdapter extends ArrayAdapter<Song> {
public PlaylistAdapter() {
super(App.INSTANCE.activity, R.layout.playlist_fragment_row, songs);
}
@Override
public View getView(int position, View view, ViewGroup parent) {
Song song = getItem(position);
ViewHolder holder;
if (view != null) {
holder = (ViewHolder) view.getTag();
} else {
view = LayoutInflater.from(getContext()).inflate(R.layout.playlist_fragment_row, parent, false);
holder = new ViewHolder(view);
view.setTag(holder);
}
holder.songTitle.setText(song.title);
holder.artist.setText(song.artist);
FileSystem.INSTANCE.maybeMoveArtworkFromCacheDir(song.artwork);
File file = new File(FileSystem.INSTANCE.getArtworkDir(), song.artwork);
if (file.exists()) {
holder.artwork.setImageDrawable(App.INSTANCE.getDrawable(file));
} else {
Picasso.with(getContext()).load(App.MANIFEST.artworkUrl + song.artwork).into(holder.artwork);
}
view.setOnClickListener(v ->
App.INSTANCE.pushFragment(SongFragment.newInstance(song, false, PlaylistFragment.TAG)));
return view;
}
}
static class ViewHolder {
@BindView(R.id.song_title) TextView songTitle;
@BindView(R.id.artist) TextView artist;
@BindView(R.id.artwork) ImageView artwork;
public ViewHolder(View view) {
ButterKnife.bind(this, view);
}
}
}
|
[
"[email protected]"
] | |
26c6352d14b5783cad2b0b02508456ee5d5c0992
|
10db4c28454aeed47396fc2874f635f9e88823c5
|
/src/main/java/com/mangmangbang/apigateway/filter/AddResponseHeaderFilter.java
|
aefcd27be74f8c86857dc848d07cfd5b7ce757d7
|
[] |
no_license
|
zhangjingchuan/api-gateway
|
0838c31b804ed4f42cfca1534e6f117d151dd799
|
727e14cdc1446393105a7d2e602440b962bcdec3
|
refs/heads/master
| 2020-12-06T00:39:25.581495 | 2020-01-10T09:10:21 | 2020-01-10T09:10:21 | 232,290,430 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,254 |
java
|
package com.mangmangbang.apigateway.filter;
import com.netflix.zuul.ZuulFilter;
import com.netflix.zuul.context.RequestContext;
import com.netflix.zuul.exception.ZuulException;
import org.springframework.cloud.netflix.zuul.filters.support.FilterConstants;
import org.springframework.stereotype.Component;
import javax.servlet.http.HttpServletResponse;
import java.util.UUID;
/**
*
* 后置过滤器
* created by zhangjingchuan on 2020/1/8
*/
@Component
public class AddResponseHeaderFilter extends ZuulFilter {
@Override
public String filterType() {
return FilterConstants.POST_TYPE;
}
@Override
public int filterOrder() {
return FilterConstants.SEND_RESPONSE_FILTER_ORDER - 1 ;
}
@Override
public boolean shouldFilter() {
return true;
}
@Override
public Object run() throws ZuulException {
//通过zuul封装的RequestContext获取上下文
RequestContext requestContext = RequestContext.getCurrentContext();
//获取response
HttpServletResponse response = requestContext.getResponse();
//想头信息中设置x-Foo的值为一个随机数
response.setHeader("x-Foo",UUID.randomUUID().toString());
return null;
}
}
|
[
"[email protected]"
] | |
47689268afdd100e9748ac0ee62a43b8f2f2105f
|
7bf1677aecf7cc12e776f97c29b073226a117e35
|
/idata-common/src/main/java/org/idata/core/support/BaseController.java
|
1a4da0b880ae59c6e157ad2c20f8fabe0acee2ee
|
[] |
no_license
|
PhoenixHai/idata
|
62b746f70472bca5cc1e73f19fad5ba93da7fe0e
|
b551004241f9b66a04eba872d54e61aa877105ee
|
refs/heads/master
| 2021-01-20T18:01:10.096493 | 2016-06-03T16:57:53 | 2016-06-03T16:57:53 | 60,249,321 | 4 | 6 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,830 |
java
|
/**
*
*/
package org.idata.core.support;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang3.StringUtils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.idata.core.Constants;
import org.idata.core.support.exception.BusinessException;
import org.idata.core.util.WebUtil;
import org.springframework.http.ResponseEntity;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ExceptionHandler;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.serializer.SerializerFeature;
/**
* 控制器基类
*
* @author ShenHuaJie
* @version 2016年5月20日 下午3:47:58
*/
public abstract class BaseController {
protected final Logger logger = LogManager.getLogger(this.getClass());
/** 获取当前用户Id */
protected Integer getCurrUser() {
return WebUtil.getCurrentUser();
}
/** 设置成功响应代码 */
protected ResponseEntity<ModelMap> setSuccessModelMap(ModelMap modelMap) {
return setSuccessModelMap(modelMap, null);
}
/** 设置成功响应代码 */
protected ResponseEntity<ModelMap> setSuccessModelMap(ModelMap modelMap, Object data) {
return setModelMap(modelMap, HttpCode.OK, data);
}
/** 设置响应代码 */
protected ResponseEntity<ModelMap> setModelMap(ModelMap modelMap, HttpCode code) {
return setModelMap(modelMap, code, null);
}
/** 设置响应代码 */
protected ResponseEntity<ModelMap> setModelMap(ModelMap modelMap, HttpCode code, Object data) {
modelMap.remove("void");
if (data != null) {
modelMap.put("data", data);
}
modelMap.put("httpCode", code.value());
modelMap.put("msg", code.msg());
modelMap.put("timestamp", System.currentTimeMillis());
return ResponseEntity.ok(modelMap);
}
/** 异常处理 */
@ExceptionHandler(RuntimeException.class)
public void exceptionHandler(HttpServletResponse response, Exception ex) throws Exception {
logger.error(Constants.Exception_Head, ex);
ModelMap modelMap = new ModelMap();
if (ex instanceof IllegalArgumentException) {
if (StringUtils.isNotBlank(ex.getMessage())) {
modelMap.put("httpCode", HttpCode.BAD_REQUEST.value());
modelMap.put("msg", ex.getMessage());
} else {
setModelMap(modelMap, HttpCode.BAD_REQUEST);
}
} else if (ex instanceof BusinessException) {
if (StringUtils.isNotBlank(ex.getMessage())) {
modelMap.put("httpCode", HttpCode.CONFLICT.value());
modelMap.put("msg", ex.getMessage());
} else {
setModelMap(modelMap, HttpCode.CONFLICT);
}
} else {
setModelMap(modelMap, HttpCode.INTERNAL_SERVER_ERROR);
}
response.setContentType("application/json;charset=UTF-8");
byte[] bytes = JSON.toJSONBytes(modelMap, SerializerFeature.DisableCircularReferenceDetect);
response.getOutputStream().write(bytes);
}
}
|
[
"[email protected]"
] | |
38234a8de09639d584dd6de77394e0727a4e891e
|
9640a4191c6098f0c59dddb5559f690186800687
|
/src/test/java/org/virutor/chess/standard/PgnDateTests.java
|
0110ae969a969771721441f417bf29b7b4cc8d74
|
[] |
no_license
|
vicsyl/chess-tools
|
73c6f4c42916c59d966cf23971758f1ee1d02aa4
|
403c1aeb80a2ac4afae1caea3feb380b4813926c
|
refs/heads/master
| 2021-01-10T02:10:26.720829 | 2016-01-16T23:42:59 | 2016-01-16T23:42:59 | 49,162,813 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,334 |
java
|
package org.virutor.chess.standard;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.List;
import junit.framework.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import org.virutor.chess.standard.PgnDate;
@RunWith(Parameterized.class)
public class PgnDateTests {
private static final DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy.MM.dd");
private static class ExpectedData {
public Date exactDate;
public boolean shouldFail;
public ExpectedData(Date exactDate) {
this.exactDate = exactDate;
}
public ExpectedData(Date exactDate, boolean shouldFail) {
this.exactDate = exactDate;
this.shouldFail = shouldFail;
}
public ExpectedData() {}
}
private String inputString;
private ExpectedData expectedData;
public PgnDateTests(String inputString, ExpectedData expectedData) {
this.inputString = inputString;
this.expectedData = expectedData;
}
//TODO add
@Parameters
public static Collection<Object[]> getData() throws ParseException {
List<Object[]> ret = new ArrayList<Object[]>();
ret.add(new Object[]{"????.??.??", new ExpectedData()});
ret.add(new Object[]{"2023.??.??", new ExpectedData()});
ret.add(new Object[]{"????.10.10", new ExpectedData()});
ret.add(new Object[]{"10??.??.??", new ExpectedData()});
ret.add(new Object[]{"xx??.??.??", new ExpectedData(null, true)});
ret.add(new Object[]{"?.??.??.??", new ExpectedData(null, true)});
String dateString = "2011.08.31";
Date date = DATE_FORMAT.parse(dateString);
ret.add(new Object[]{dateString,new ExpectedData(date)});
return ret;
}
@Test
public void creationTests() {
PgnDate pgnDate = new PgnDate(inputString);
Assert.assertEquals(inputString, pgnDate.getOriginalString());
if(expectedData.shouldFail) {
Assert.assertEquals(PgnDate.UNKNOWN, pgnDate.toString());
return;
}
if(expectedData.exactDate != null) {
Assert.assertEquals(expectedData.exactDate, pgnDate.getExactDate());
}
}
}
|
[
"vicsyl@27bf3eb0-c72c-4dfa-b5f9-f7a6064c582b"
] |
vicsyl@27bf3eb0-c72c-4dfa-b5f9-f7a6064c582b
|
40c948645b38e50a6303441354522e3192054376
|
32b72e1dc8b6ee1be2e80bb70a03a021c83db550
|
/ast_results/jonasoreland_runnerup_/app/src/org/runnerup/util/Formatter.java
|
c3f5e9832170eb4e458639af517810ffd198ef30
|
[] |
no_license
|
cmFodWx5YWRhdjEyMTA5/smell-and-machine-learning
|
d90c41a17e88fcd99d543124eeb6e93f9133cb4a
|
0564143d92f8024ff5fa6b659c2baebf827582b1
|
refs/heads/master
| 2020-07-13T13:53:40.297493 | 2019-01-11T11:51:18 | 2019-01-11T11:51:18 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 27,539 |
java
|
// isComment
package org.runnerup.util;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Build;
import android.preference.PreferenceManager;
import android.text.format.DateUtils;
import android.util.Log;
import org.runnerup.R;
import org.runnerup.workout.Dimension;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class isClassOrIsInterface implements OnSharedPreferenceChangeListener {
private Context isVariable = null;
private Resources isVariable = null;
private LocaleResources isVariable = null;
private SharedPreferences isVariable = null;
private java.text.DateFormat isVariable = null;
private java.text.DateFormat isVariable = null;
private java.text.DateFormat isVariable = null;
private java.text.DateFormat isVariable = null;
// isComment
private boolean isVariable = true;
private String isVariable = "isStringConstant";
private double isVariable = isNameExpr;
private boolean isVariable = true;
public static final double isVariable = isDoubleConstant;
public static final double isVariable = isDoubleConstant;
private static final double isVariable = isDoubleConstant;
public enum Format {
// isComment
CUE,
// isComment
CUE_SHORT,
// isComment
CUE_LONG,
// isComment
TXT,
// isComment
TXT_SHORT,
// isComment
TXT_LONG,
// isComment
TXT_TIMESTAMP
}
public isConstructor(Context isParameter) {
isNameExpr = isNameExpr;
isNameExpr = isNameExpr.isMethod();
isNameExpr = isMethod(isNameExpr);
isNameExpr = isNameExpr.isMethod(isNameExpr);
isNameExpr.isMethod(this);
isNameExpr = isNameExpr.isFieldAccessExpr.isFieldAccessExpr.isFieldAccessExpr.isMethod(isNameExpr);
isNameExpr = isNameExpr.isFieldAccessExpr.isFieldAccessExpr.isFieldAccessExpr.isMethod(isNameExpr);
isNameExpr = new SimpleDateFormat("isStringConstant", isNameExpr.isFieldAccessExpr);
isNameExpr = new SimpleDateFormat("isStringConstant", isNameExpr.isFieldAccessExpr);
isNameExpr = isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr), true);
// isComment
isMethod();
}
private class isClassOrIsInterface {
final Resources isVariable;
final Configuration isVariable;
final Locale isVariable;
final Locale isVariable;
isConstructor(Context isParameter, Locale isParameter) {
isNameExpr = isNameExpr.isMethod();
isNameExpr = isNameExpr.isMethod();
if (isNameExpr.isFieldAccessExpr.isFieldAccessExpr >= isNameExpr.isFieldAccessExpr.isFieldAccessExpr && !isNameExpr.isMethod().isMethod().isMethod().isMethod()) {
isNameExpr = isNameExpr.isMethod().isMethod(isIntegerConstant);
} else {
// isComment
isNameExpr = isNameExpr.isFieldAccessExpr;
}
if (isNameExpr == null) {
isNameExpr = isNameExpr;
} else {
isNameExpr = isNameExpr;
}
}
void isMethod(Locale isParameter) {
if (isNameExpr.isFieldAccessExpr.isFieldAccessExpr >= isIntegerConstant) {
isNameExpr.isMethod(isNameExpr);
} else {
// isComment
isNameExpr.isFieldAccessExpr = isNameExpr;
}
isNameExpr.isMethod(isNameExpr, isNameExpr.isMethod());
}
public String isMethod(int isParameter) throws Resources.NotFoundException {
isMethod(isNameExpr);
String isVariable = isNameExpr.isMethod(isNameExpr);
isMethod(isNameExpr);
return isNameExpr;
}
// isComment
public String isMethod(int isParameter, int isParameter, Object isParameter) throws Resources.NotFoundException {
isMethod(isNameExpr);
String isVariable = isNameExpr.isMethod(isNameExpr, isNameExpr, isNameExpr);
isMethod(isNameExpr);
return isNameExpr;
}
}
public static Locale isMethod(Context isParameter) {
Resources isVariable = isNameExpr.isMethod();
SharedPreferences isVariable = isNameExpr.isMethod(isNameExpr);
if (isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr))) {
isNameExpr.isMethod("isStringConstant", "isStringConstant" + isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr), null));
return new Locale(isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr), "isStringConstant"));
}
return null;
}
private LocaleResources isMethod(Context isParameter) {
Locale isVariable = isMethod(isNameExpr);
return new LocaleResources(isNameExpr, isNameExpr);
}
public String isMethod(int isParameter) {
return isNameExpr.isMethod(isNameExpr);
}
@Override
public void isMethod(SharedPreferences isParameter, String isParameter) {
if (isNameExpr != null && isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr).isMethod(isNameExpr))
isMethod();
}
private void isMethod() {
isNameExpr = isMethod(isNameExpr.isMethod(), isNameExpr, null);
if (isNameExpr) {
isNameExpr = "isStringConstant";
isNameExpr = isNameExpr;
} else {
isNameExpr = "isStringConstant";
isNameExpr = isNameExpr;
}
}
public String isMethod(Format isParameter) {
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
case isNameExpr:
case isNameExpr:
// isComment
case isNameExpr:
case isNameExpr:
return isNameExpr.isMethod(isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr);
}
return null;
}
public static boolean isMethod(Resources isParameter, SharedPreferences isParameter, Editor isParameter) {
boolean isVariable;
String isVariable = isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr), null);
if (isNameExpr == null)
isNameExpr = isMethod(isNameExpr, isNameExpr, isNameExpr);
else if (isNameExpr.isMethod("isStringConstant"))
isNameExpr = true;
else if (isNameExpr.isMethod("isStringConstant"))
isNameExpr = true;
else
isNameExpr = isMethod(isNameExpr, isNameExpr, isNameExpr);
return isNameExpr;
}
private static boolean isMethod(Resources isParameter, SharedPreferences isParameter, Editor isParameter) {
String isVariable = isNameExpr.isMethod().isMethod();
isNameExpr.isMethod("isStringConstant", "isStringConstant" + isNameExpr);
if (isNameExpr == null)
// isComment
return true;
String isVariable = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr);
if ("isStringConstant".isMethod(isNameExpr) || "isStringConstant".isMethod(isNameExpr)) {
if (isNameExpr != null)
isNameExpr.isMethod(isNameExpr, "isStringConstant");
return true;
} else {
if (isNameExpr != null)
isNameExpr.isMethod(isNameExpr, "isStringConstant");
}
return true;
}
public double isMethod() {
return this.isFieldAccessExpr;
}
public static double isMethod(Resources isParameter, SharedPreferences isParameter) {
if (isMethod(isNameExpr, isNameExpr, null))
return isNameExpr;
else
return isNameExpr;
}
public String isMethod() {
return this.isFieldAccessExpr;
}
public String isMethod(Format isParameter, Dimension isParameter, double isParameter) {
switch(isNameExpr) {
case isNameExpr:
return isMethod(isNameExpr, isNameExpr.isMethod(isNameExpr));
case isNameExpr:
return isMethod(isNameExpr, isNameExpr.isMethod(isNameExpr));
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
// isComment
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
// isComment
return isMethod(isNameExpr, isNameExpr);
}
return "isStringConstant";
}
public String isMethod(Format isParameter, long isParameter) {
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
return isMethod(isNameExpr, true);
case isNameExpr:
return isMethod(isNameExpr, true);
case isNameExpr:
case isNameExpr:
return isNameExpr.isMethod(isNameExpr);
case isNameExpr:
return isMethod(isNameExpr);
case isNameExpr:
return isMethod(isNameExpr);
}
return "isStringConstant";
}
private String isMethod(long isParameter, boolean isParameter) {
int isVariable = isIntegerConstant;
int isVariable = isIntegerConstant;
if (isNameExpr >= isIntegerConstant) {
isNameExpr = (int) (isNameExpr / isIntegerConstant);
isNameExpr -= isNameExpr * isIntegerConstant;
}
if (isNameExpr >= isIntegerConstant) {
isNameExpr = (int) (isNameExpr / isIntegerConstant);
isNameExpr -= isNameExpr * isIntegerConstant;
}
StringBuilder isVariable = new StringBuilder();
if (isNameExpr) {
if (isNameExpr > isIntegerConstant) {
isNameExpr = true;
isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, isNameExpr, isNameExpr));
}
if (isNameExpr > isIntegerConstant) {
if (isNameExpr > isIntegerConstant)
isNameExpr.isMethod("isStringConstant");
isNameExpr = true;
isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, isNameExpr, isNameExpr));
}
if (isNameExpr > isIntegerConstant) {
if (isNameExpr > isIntegerConstant || isNameExpr > isIntegerConstant)
isNameExpr.isMethod("isStringConstant");
if (isNameExpr) {
isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, (int) isNameExpr, (int) isNameExpr));
} else {
isNameExpr.isMethod(isNameExpr);
}
}
} else {
// isComment
if (isNameExpr > isIntegerConstant) {
String isVariable = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
isNameExpr.isMethod(isNameExpr).isMethod("isStringConstant").isMethod(isNameExpr);
} else {
isNameExpr.isMethod(isNameExpr);
}
isNameExpr.isMethod("isStringConstant");
if (isNameExpr > isIntegerConstant) {
String isVariable = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
isNameExpr.isMethod(isNameExpr);
} else {
isNameExpr.isMethod(isNameExpr);
}
}
return isNameExpr.isMethod();
}
private String isMethod(long isParameter) {
long isVariable = isIntegerConstant;
long isVariable = isIntegerConstant;
if (isNameExpr >= isIntegerConstant) {
isNameExpr = isNameExpr / isIntegerConstant;
isNameExpr -= isNameExpr * isIntegerConstant;
}
if (isNameExpr >= isIntegerConstant) {
isNameExpr = isNameExpr / isIntegerConstant;
isNameExpr -= isNameExpr * isIntegerConstant;
}
StringBuilder isVariable = new StringBuilder();
if (isNameExpr > isIntegerConstant) {
isNameExpr.isMethod(isNameExpr).isMethod("isStringConstant").isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
}
if (isNameExpr > isIntegerConstant) {
if (isNameExpr > isIntegerConstant)
isNameExpr.isMethod("isStringConstant");
if (isNameExpr > isIntegerConstant || isNameExpr > isIntegerConstant)
isNameExpr.isMethod(isNameExpr).isMethod("isStringConstant").isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
else
isNameExpr.isMethod(isNameExpr).isMethod("isStringConstant").isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
}
if (isNameExpr > isIntegerConstant) {
if (isNameExpr > isIntegerConstant || isNameExpr > isIntegerConstant)
isNameExpr.isMethod("isStringConstant");
isNameExpr.isMethod(isNameExpr).isMethod("isStringConstant").isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
}
return isNameExpr.isMethod();
}
/**
* isComment
*/
public String isMethod(Format isParameter, double isParameter) {
int isVariable = (int) isNameExpr.isMethod(isNameExpr);
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
case isNameExpr:
if (isNameExpr) {
return isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, isNameExpr, isNameExpr);
} else {
return isNameExpr.isMethod(isNameExpr);
}
case isNameExpr:
case isNameExpr:
case isNameExpr:
return isNameExpr.isMethod(isNameExpr);
}
return "isStringConstant";
}
/**
* isComment
*/
public String isMethod(Format isParameter, double isParameter) {
int isVariable = (int) isNameExpr.isMethod(isNameExpr);
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
case isNameExpr:
if (isNameExpr) {
return isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, isNameExpr, isNameExpr);
} else {
return isNameExpr.isMethod(isNameExpr);
}
case isNameExpr:
case isNameExpr:
case isNameExpr:
return isNameExpr.isMethod(isNameExpr);
}
return "isStringConstant";
}
private String isMethod(Format isParameter, double isParameter) {
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
return isNameExpr.isMethod((int) isNameExpr.isMethod(isNameExpr));
case isNameExpr:
return isNameExpr.isMethod(isNameExpr.isMethod(isDoubleConstant * isNameExpr) / isDoubleConstant);
case isNameExpr:
String isVariable = isNameExpr.isMethod((int) isNameExpr.isMethod(isNameExpr));
if (isNameExpr) {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr) + "isStringConstant" + isNameExpr;
}
return isNameExpr;
case isNameExpr:
case isNameExpr:
isNameExpr = isNameExpr.isMethod(isNameExpr.isMethod(isDoubleConstant * isNameExpr) / isDoubleConstant);
if (isNameExpr) {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr) + "isStringConstant" + isNameExpr;
}
return isNameExpr;
}
return "isStringConstant";
}
/**
* isComment
*/
public String isMethod(Format isParameter, double isParameter) {
Double isVariable = (isNameExpr == isIntegerConstant || isNameExpr.isMethod(isNameExpr)) ? null : isIntegerConstant / isNameExpr;
return isMethod(isNameExpr, isNameExpr);
}
/**
* isComment
*/
public String isMethod(Format isParameter, Double isParameter) {
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
case isNameExpr:
return isMethod(isNameExpr);
case isNameExpr:
case isNameExpr:
return isMethod(isNameExpr, true);
case isNameExpr:
return isMethod(isNameExpr, true);
}
return "isStringConstant";
}
/**
* isComment
*/
public String isMethod() {
// isComment
int isVariable = isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr;
return isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr) + "isStringConstant" + isNameExpr.isMethod(isNameExpr);
}
/**
* isComment
*/
private String isMethod(Double isParameter, boolean isParameter) {
String isVariable;
final double isVariable = isNameExpr / isIntegerConstant / isIntegerConstant;
if (isNameExpr == null || isNameExpr.isMethod(isNameExpr) || isNameExpr <= isNameExpr) {
isNameExpr = "isStringConstant";
} else {
long isVariable = isNameExpr.isMethod(isNameExpr / isNameExpr);
isNameExpr = isNameExpr.isMethod(isNameExpr);
}
if (isNameExpr) {
isNameExpr = isNameExpr + "isStringConstant" + isNameExpr.isMethod((isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
}
return isNameExpr;
}
private String isMethod(Double isParameter) {
// isComment
final double isVariable = isNameExpr / isIntegerConstant / isIntegerConstant;
if (isNameExpr == null || isNameExpr.isMethod(isNameExpr) || isNameExpr <= isNameExpr) {
return isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr);
}
int isVariable = (int) isNameExpr.isMethod(isNameExpr / isNameExpr);
int isVariable = isIntegerConstant;
if (isNameExpr >= isIntegerConstant) {
isNameExpr = isNameExpr / isIntegerConstant;
isNameExpr -= isNameExpr * isIntegerConstant;
}
StringBuilder isVariable = new StringBuilder();
if (isNameExpr) {
if (isNameExpr > isIntegerConstant) {
isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, isNameExpr, isNameExpr));
}
if (isNameExpr > isIntegerConstant) {
if (isNameExpr > isIntegerConstant)
isNameExpr.isMethod("isStringConstant");
isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, isNameExpr, isNameExpr));
}
isNameExpr.isMethod("isStringConstant").isMethod(isNameExpr.isMethod(isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
} else {
String isVariable = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
isNameExpr.isMethod(isNameExpr).isMethod("isStringConstant").isMethod(isNameExpr);
}
return isNameExpr.isMethod();
}
/**
* isComment
*/
private String isMethod(Format isParameter, double isParameter) {
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
case isNameExpr:
return isMethod(isNameExpr);
case isNameExpr:
case isNameExpr:
return isMethod(isNameExpr, true);
case isNameExpr:
return isMethod(isNameExpr, true);
}
return "isStringConstant";
}
/**
* isComment
*/
private String isMethod(double isParameter, boolean isParameter) {
double isVariable = isNameExpr * isIntegerConstant / isNameExpr;
String isVariable = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
if (!isNameExpr)
return isNameExpr;
else {
int isVariable = isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr;
return isNameExpr + isNameExpr.isMethod(isNameExpr) + "isStringConstant" + isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr);
}
}
private String isMethod(double isParameter) {
double isVariable = isNameExpr * isIntegerConstant / isNameExpr;
String isVariable = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
if (isNameExpr) {
return isNameExpr.isMethod(isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr, (int) isNameExpr, isNameExpr);
} else {
return isNameExpr;
}
}
/**
* isComment
*/
public String isMethod(Date isParameter) {
return isNameExpr.isMethod(isNameExpr);
}
/**
* isComment
*/
public String isMethod(Date isParameter) {
return isNameExpr.isMethod(isNameExpr);
}
/**
* isComment
*/
public String isMethod(long isParameter) {
// isComment
return isNameExpr.isMethod(isNameExpr * isIntegerConstant) + "isStringConstant" + isNameExpr.isMethod(isNameExpr * isIntegerConstant);
}
/**
* isComment
*/
public String isMethod(Format isParameter, double isParameter) {
// isComment
DecimalFormat isVariable = new DecimalFormat("isStringConstant");
if (isNameExpr) {
return isNameExpr.isMethod(isNameExpr) + "isStringConstant";
} else {
return isNameExpr.isMethod(isNameExpr / isNameExpr) + "isStringConstant";
}
}
/**
* isComment
*/
public String isMethod(Format isParameter, long isParameter) {
switch(isNameExpr) {
case isNameExpr:
case isNameExpr:
case isNameExpr:
return isMethod(isNameExpr, true);
case isNameExpr:
return isMethod(isNameExpr);
case isNameExpr:
return isMethod(isNameExpr, true);
case isNameExpr:
return isNameExpr.isMethod(isNameExpr) + "isStringConstant";
}
return null;
}
private double isMethod(long isParameter) {
double isVariable = isIntegerConstant;
return isMethod(isNameExpr / isNameExpr, isNameExpr);
}
private String isMethod(long isParameter) {
return isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isMethod(isNameExpr));
}
private String isMethod(long isParameter, boolean isParameter) {
String isVariable;
if (isNameExpr >= isNameExpr) {
double isVariable = isMethod(isNameExpr);
if (isNameExpr) {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr, isNameExpr.isMethod(isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
} else {
// isComment
String isVariable;
if (isNameExpr < isIntegerConstant) {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
} else {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr);
}
if (isNameExpr) {
isNameExpr = isNameExpr.isMethod(isNameExpr ? isNameExpr.isFieldAccessExpr.isFieldAccessExpr : isNameExpr.isFieldAccessExpr.isFieldAccessExpr, (int) isNameExpr, isNameExpr);
} else {
isNameExpr = isNameExpr;
}
}
} else {
// isComment
if (isNameExpr) {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, "isStringConstant", isNameExpr, isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr));
} else {
if (isNameExpr) {
isNameExpr = isNameExpr.isMethod(isNameExpr.isFieldAccessExpr.isFieldAccessExpr, (int) isNameExpr, isNameExpr);
} else {
isNameExpr = isNameExpr.isMethod(isNameExpr);
}
}
}
return isNameExpr;
}
public String isMethod(Format isParameter, Dimension isParameter, double isParameter) {
switch(isNameExpr) {
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
return isMethod(isNameExpr, isNameExpr);
case isNameExpr:
case isNameExpr:
case isNameExpr:
case isNameExpr:
case isNameExpr:
case isNameExpr:
default:
break;
}
return "isStringConstant";
}
private String isMethod(Format isParameter, double isParameter) {
return isMethod(isNameExpr, isNameExpr.isMethod(isNameExpr));
}
private String isMethod(Format isParameter, double isParameter) {
return isMethod(isNameExpr, isNameExpr.isMethod(isNameExpr));
}
public String isMethod(String isParameter, String isParameter) {
if (isNameExpr != null && isNameExpr != null)
return isNameExpr + "isStringConstant" + isNameExpr;
else if (isNameExpr == null && isNameExpr != null)
return isNameExpr;
else if (isNameExpr != null)
/*isComment*/
return isNameExpr;
return "isStringConstant";
}
private String isMethod(long isParameter) {
return isNameExpr.isMethod(isNameExpr * isIntegerConstant);
}
public static double isMethod(double isParameter, double isParameter) {
double isVariable = isNameExpr.isMethod(isIntegerConstant, isNameExpr);
return isNameExpr.isMethod(isNameExpr * isNameExpr) / isNameExpr;
}
public static double isMethod(Context isParameter) {
return isMethod(isNameExpr.isMethod(), isNameExpr.isMethod(isNameExpr));
}
}
|
[
"[email protected]"
] | |
178f1a04f2b9ff10479e74552f7a38ab5c25f3b8
|
b9c47dfe81709837fc547bb8fd1b3d9e0ede1e67
|
/taskmaster-service-helper/src/main/java/com/github/bordertech/taskmaster/service/exception/RejectedServiceException.java
|
4d1070d2d849261978643f611e9962f2f3730a59
|
[
"MIT"
] |
permissive
|
BorderTech/java-taskmaster
|
255c2d2e1344f58ea1e422d80bb0c093ec437aaa
|
e55f9a14a97febb9d1c06e6a7521b7ebcddbf184
|
refs/heads/master
| 2022-06-09T17:37:48.679943 | 2022-05-05T02:00:16 | 2022-05-05T02:00:16 | 120,703,320 | 0 | 0 |
MIT
| 2022-05-05T02:00:17 | 2018-02-08T03:05:16 |
Java
|
UTF-8
|
Java
| false | false | 872 |
java
|
package com.github.bordertech.taskmaster.service.exception;
/**
* Service Helper could not execute this task.
*
* @author Jonathan Austin
* @since 1.0.0
*/
public class RejectedServiceException extends Exception {
/**
* Creates a RejectedException with the specified message.
*
* @param msg the message.
*/
public RejectedServiceException(final String msg) {
super(msg);
}
/**
* Creates a RejectedException with the specified message and cause.
*
* @param msg the message.
* @param throwable the cause of the exception.
*/
public RejectedServiceException(final String msg, final Throwable throwable) {
super(msg, throwable);
}
/**
* Creates a RejectedException with the specified cause.
*
* @param throwable the cause of the exception.
*/
public RejectedServiceException(final Throwable throwable) {
super(throwable);
}
}
|
[
"[email protected]"
] | |
7622596987ffc1e23d40b21f15d5341caf5ca224
|
591c2983ef62a192a8ded1e2e45937e139814642
|
/week4_paths2/1_dijkstra/Dijkstra.java
|
139022e896870d2ac023fce216932beabcdf3fa8
|
[] |
no_license
|
polymath-raval/coursera-introduction-to-graphs
|
1e205355fed65aa815daabc5a99be0d9372dc1f5
|
059e73bdc9a458018c1950892ef7a470f62491d3
|
refs/heads/master
| 2020-09-22T07:41:38.816560 | 2019-12-18T05:36:14 | 2019-12-18T05:36:14 | 225,107,312 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,023 |
java
|
import java.util.*;
public class Dijkstra {
private static int distance(ArrayList<Integer>[] adj, ArrayList<Integer>[] cost, int s, int t) {
int[] distanceMatrix = new int[adj.length];
for(int i = 0; i < distanceMatrix.length; i++)
distanceMatrix[i] = Integer.MAX_VALUE;
PriorityQueue<Node> minHeap = createQueue(adj, cost, s);
while(!minHeap.isEmpty()) {
Node node = minHeap.remove();
if(distanceMatrix[node.vertex] > node.distance) {
distanceMatrix[node.vertex] = node.distance;
for(int i = 0; i < node.neighbours.size(); i++) {
int neighbourVertex = node.neighbours.get(i);
minHeap.add(new Node(neighbourVertex,
adj[neighbourVertex],
cost[neighbourVertex],
node.cost.get(i) + node.distance));
}
}
}
//System.out.printf("distance matrix : %s\n", Arrays.toString(distanceMatrix));
return distanceMatrix[t] == Integer.MAX_VALUE ? -1 : distanceMatrix[t];
}
private static PriorityQueue<Node> createQueue(ArrayList<Integer>[] adj,
ArrayList<Integer>[] cost, int s) {
PriorityQueue<Node> minHeap = new PriorityQueue<>();
for(int i = 0; i < adj.length; i++) {
minHeap.add(new Node(i, adj[i], cost[i], Integer.MAX_VALUE));
}
minHeap.add(new Node(s, adj[s], cost[s], 0));
return minHeap;
}
private static class Node implements Comparable<Node>{
public final int vertex;
public final ArrayList<Integer> neighbours;
public final ArrayList<Integer> cost;
public final int distance;
Node(int vertex, ArrayList<Integer> neighbours, ArrayList<Integer> cost, int distance) {
this.vertex = vertex;
this.neighbours = neighbours;
this.cost = cost;
this.distance = distance;
}
public int compareTo(Node other){
return Integer.compare(this.distance, other.distance);
}
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
int m = scanner.nextInt();
ArrayList<Integer>[] adj = (ArrayList<Integer>[])new ArrayList[n];
ArrayList<Integer>[] cost = (ArrayList<Integer>[])new ArrayList[n];
for (int i = 0; i < n; i++) {
adj[i] = new ArrayList<Integer>();
cost[i] = new ArrayList<Integer>();
}
for (int i = 0; i < m; i++) {
int x, y, w;
x = scanner.nextInt();
y = scanner.nextInt();
w = scanner.nextInt();
adj[x - 1].add(y - 1);
cost[x - 1].add(w);
}
int x = scanner.nextInt() - 1;
int y = scanner.nextInt() - 1;
System.out.println(distance(adj, cost, x, y));
}
}
|
[
"[email protected]"
] | |
705762bb610c902a26e4dad5133bdea90cce40f0
|
70a485ed1753225a699ecb424f93e3fa77262afb
|
/mdm-model/src/main/java/com/avatech/edi/mdm/bo/MDMMasterData.java
|
25b2c7b20219d7074998abe25e7f49ba68d765d3
|
[
"Apache-2.0"
] |
permissive
|
okzhangyu/mdm.application
|
4eb84efe6a7128c57dd52a3091bb176e40f016f2
|
b5ab8168c2d2e5d927dce9c1be7bbdb986bc05ce
|
refs/heads/master
| 2020-03-28T20:26:27.328565 | 2019-10-11T07:28:42 | 2019-10-11T07:28:42 | 149,070,741 | 0 | 2 | null | 2018-09-17T04:55:45 | 2018-09-17T04:55:45 | null |
UTF-8
|
Java
| false | false | 309 |
java
|
package com.avatech.edi.mdm.bo;
public class MDMMasterData implements IMDMMasterData {
private String uniqueKey;
@Override
public String getUniqueKey() {
return uniqueKey;
}
@Override
public void setUniqueKey(String uniqueKey) {
this.uniqueKey = uniqueKey;
}
}
|
[
"[email protected]"
] | |
af4679f1d1047dbd403c025b4a3e3b55ca39ffdc
|
32b72e1dc8b6ee1be2e80bb70a03a021c83db550
|
/ast_results/cgeo_c-geo-opensource/main/src/cgeo/geocaching/files/ImportLocFileThread.java
|
3779fd8076f8bf6887a33312b356bec466294462
|
[] |
no_license
|
cmFodWx5YWRhdjEyMTA5/smell-and-machine-learning
|
d90c41a17e88fcd99d543124eeb6e93f9133cb4a
|
0564143d92f8024ff5fa6b659c2baebf827582b1
|
refs/heads/master
| 2020-07-13T13:53:40.297493 | 2019-01-11T11:51:18 | 2019-01-11T11:51:18 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,193 |
java
|
// isComment
package cgeo.geocaching.files;
import cgeo.geocaching.R;
import cgeo.geocaching.models.Geocache;
import cgeo.geocaching.utils.DisposableHandler;
import cgeo.geocaching.utils.Log;
import android.os.Handler;
import java.io.File;
import java.io.IOException;
import java.util.Collection;
class isClassOrIsInterface extends AbstractImportThread {
private final File isVariable;
isConstructor(final File isParameter, final int isParameter, final Handler isParameter, final DisposableHandler isParameter) {
super(isNameExpr, isNameExpr, isNameExpr);
this.isFieldAccessExpr = isNameExpr;
}
@Override
protected Collection<Geocache> isMethod() throws IOException, ParserException {
isNameExpr.isMethod("isStringConstant" + isNameExpr.isMethod());
isNameExpr.isMethod(isNameExpr.isMethod(isNameExpr.isFieldAccessExpr, isNameExpr.isFieldAccessExpr.isFieldAccessExpr, (int) isNameExpr.isMethod(), isMethod()));
final LocParser isVariable = new LocParser(isNameExpr);
return isNameExpr.isMethod(isNameExpr, isNameExpr);
}
@Override
protected String isMethod() {
return isNameExpr.isMethod();
}
}
|
[
"[email protected]"
] | |
c6b509a79cf0b6ebe0cf6ae8b8c9bae7f5504b87
|
88f19041bd003502b4d0025731ad640ffb1c1e5a
|
/src/domain/Entity.java
|
ae3ba795e6b2d67ccdf94ddc9d7b1eaeda3897ef
|
[] |
no_license
|
andrei-toterman/students_timetable
|
ef5fdc9cc26aa36360f0fb6cfa7e4753a4e929ba
|
b76d603b78e979029213f9a4eae7b750a50d4497
|
refs/heads/master
| 2021-07-19T10:56:43.217534 | 2021-06-02T16:50:50 | 2021-06-02T16:50:50 | 249,996,470 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 813 |
java
|
package domain;
import java.io.Serializable;
import java.util.Objects;
public class Entity implements Serializable {
protected int id;
public Entity() {
}
public Entity(int id) {
this.id = id;
}
public int getId() {
return id;
}
@Override
public String toString() {
return "id: " + id;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
Entity entity = (Entity) o;
return id == entity.id;
}
@Override
public int hashCode() {
return Objects.hash(id);
}
public String toCsvLine() {
return String.valueOf(id);
}
}
|
[
"[email protected]"
] | |
d1c384c7fed9ef748acf66a7ae5af34ab5ba6131
|
178e15ff046550c6b478bc01f166b2c89f84a3b1
|
/app/src/main/java/lili/tesla/foxdivination/presentation/screen/japan/hokku/result/view/HokkuResultView.java
|
2cbfc09f3a8bc0886882810909b64d1fe13a57b1
|
[] |
no_license
|
lilitesla/FoxDivination
|
a4d6206eae9f45a5b67ea4b73712e3d31d8a75ab
|
5ce4ece54e23c7dffe5f1672d4e6682d624b2966
|
refs/heads/master
| 2021-08-24T03:17:46.104166 | 2017-12-07T21:01:07 | 2017-12-07T21:01:07 | 111,825,541 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 274 |
java
|
package lili.tesla.foxdivination.presentation.screen.japan.hokku.result.view;
import lili.tesla.foxdivination.data.Hokku;
/**
* Created by Лилия on 05.12.2017.
*/
public interface HokkuResultView {
void showMainScreen();
void showResult(Hokku hokku);
}
|
[
"[email protected]"
] | |
7e1ef6023b5aeaa47ec6ba61e1a2fa668cd59072
|
dbd11e14967a7b0008faef12c2eb7705b721099a
|
/src/main/java/src/zhengZe/ZhengZeTest1.java
|
1d89ebf7d1c62a5fa0f59c49826fe7f403da6706
|
[] |
no_license
|
dpggithub/test
|
4e6015048bafdb49668ce040d39d23ecd2751398
|
adabb34547953bda6a21b17165b48d4d97b6c98a
|
refs/heads/master
| 2023-07-14T21:51:58.310920 | 2021-03-27T02:25:57 | 2021-03-27T02:25:57 | 332,931,431 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 592 |
java
|
package src.zhengZe;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class ZhengZeTest1 {
public static void main(String[] args) {
String re = "(0\\d{2,3})-(\\d{7,8})";
Pattern p=Pattern.compile(re);
String[] strings=new String[]{"010-12345678", "020-9999999", "0755-7654321"};
for(String string : strings){
Matcher matcher= p.matcher(string);
if(matcher.matches()){
System.out.println(matcher.group(1));
System.out.println(matcher.group(2));
}
}
}
}
|
[
"[email protected]"
] | |
e763c008c5c1d9e6fdc3e8040111c3f5d7ea9f88
|
cd96825e371c52e35ba6419d174f1378e349d1bd
|
/src/main/java/cn/njiuyag/springboot/blog/vo/ProfileVO.java
|
f984445d0be4b05e3882a9a9ae30360c3fb3e384
|
[
"Apache-2.0"
] |
permissive
|
njiuyag/spring-boot-blog
|
e238af1d077d7ea467064c121923e6c7385241d3
|
d86f1cb6074f061ee0c27587fd7a02a03840d49d
|
refs/heads/main
| 2023-02-10T08:54:21.214871 | 2021-01-08T09:30:13 | 2021-01-08T09:30:13 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 772 |
java
|
package cn.njiuyag.springboot.blog.vo;
/**
* @author hjx
* @date 2020/12/30
*/
public class ProfileVO extends AbstractVO{
private String loginUserName;
private String nickName;
public String getLoginUserName() {
return loginUserName;
}
public void setLoginUserName(String loginUserName) {
this.loginUserName = loginUserName;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
@Override
public String toString() {
return "ProfileVO{" +
"loginUserName='" + loginUserName + '\'' +
", nickName='" + nickName + '\'' +
'}'+" parent:"+super.toString();
}
}
|
[
"[email protected]"
] | |
7832357f915d0fcc8970fc93e947eefe8df93ced
|
435095e448b6be944bd8428facbc73d36d635eb0
|
/commons-2.3/common-jee/src/test/java/ru/prbb/common/cdi/sampleclass/Intf2.java
|
be64b6490948553309837ba8013c92e72ffc84c7
|
[
"Apache-2.0"
] |
permissive
|
lesinsa/horn-soft-pub
|
19e4f0eb943385bc8b6381c580bb2b2724d5f801
|
b2b9aa4613c43362600138dd2a8719108bf71feb
|
refs/heads/master
| 2021-06-23T06:35:26.569915 | 2019-09-02T17:37:35 | 2019-09-02T17:37:35 | 44,608,666 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 108 |
java
|
package ru.prbb.common.cdi.sampleclass;
/**
* @author lesinsa on 23.03.14.
*/
public interface Intf2 {
}
|
[
"[email protected]"
] | |
2383543700443d4cc951fecaf973a5d93ebd192d
|
7dac83ac3094af7ef9e6227f1e45c01178f36cf2
|
/src/manalit/unixtools/cli/Tail.java
|
b14d6ffb6626d0f223fc0f8447537d60051c7f1d
|
[] |
no_license
|
manalith/unix-tools
|
585b1a90dfd5e745bf7aad556215055d69fa24df
|
58da75a1b6e21bc1a90090b04f741325f6e9cc80
|
refs/heads/master
| 2021-05-27T04:38:47.970136 | 2014-01-27T04:20:47 | 2014-01-27T04:20:47 | 15,727,914 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,587 |
java
|
package manalit.unixtools.cli;
import manalit.unixtools.ReadFile;
import manalit.unixtools.TailLib;
import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;
public class Tail {
public static void main(String args[]) throws IOException {
Tail tailcli = new Tail();
ReadFile fs = new ReadFile();
TailLib tail = new TailLib();
String properArgv[] = tailcli.getArguments(args);
String fileData = fs.read(properArgv[0]);
int size;
if (properArgv[1] != null)
size = Integer.parseInt(properArgv[1].substring(1));
else {
try {
String user_config = System.getenv("UNIX") + "/config.properties";
FileReader reader = new FileReader(user_config);
Properties properties = new Properties();
properties.load(reader);
size = Integer.parseInt(properties.getProperty("default-tail-lines"));
} catch (IOException e) {
size = 10;
}
}
String columnData = tail.tailCount(size, fileData);
System.out.println(columnData);
}
String[] getArguments(String[] arg) {
String options[] = new String[2];
for (int i = 0; i < arg.length; i++) {
if (Tail.isNumber(arg[i]))
options[1] = arg[i];
if (!Tail.isNumber(arg[i]))
options[0] = arg[i];
}
return options;
}
static boolean isNumber(String arg) {
return arg.matches("-.*");
}
}
|
[
"[email protected]"
] | |
d97fdc752cdb834ce10214d04d6d5f20dafb7d9e
|
155c25f37ede044f75f3957d9c380f369be8aa7f
|
/app/src/test/java/com/example/taya/hello/ExampleUnitTest.java
|
88a1574859f22875955034086c807ee423207911
|
[] |
no_license
|
thehien0112/Hello
|
3652c685aea2638785af852a068b183b1dc09ae6
|
c8694f88ecb4166cddc0fcb8cd8d3785902a27c0
|
refs/heads/master
| 2021-05-16T17:26:35.715902 | 2017-08-16T06:50:02 | 2017-08-16T06:50:02 | 100,457,390 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 400 |
java
|
package com.example.taya.hello;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
|
[
"[email protected]"
] | |
f5e83bb56538d7318a131d1f98a413ec4ddd25a8
|
8aceca23733be8c36a4d12f323361ce1645c4f66
|
/src/main/java/io/smartcat/ranger/core/arithmetic/MultiplicationValueByte.java
|
afecbbc3c222665fd6dd89a7cc406ce4d34346f7
|
[
"Apache-2.0"
] |
permissive
|
hemanthkilari/ranger
|
238941a339919326c125d3d3f2ce43a2badb2d76
|
e7bfdcc4cea1ea2ad0fd490d22ed80825a64b360
|
refs/heads/dev
| 2020-03-25T02:56:53.053008 | 2018-08-03T07:29:48 | 2018-08-03T07:29:48 | 143,306,957 | 0 | 0 |
Apache-2.0
| 2018-08-02T14:38:58 | 2018-08-02T14:38:55 |
Java
|
UTF-8
|
Java
| false | false | 1,083 |
java
|
package io.smartcat.ranger.core.arithmetic;
import io.smartcat.ranger.core.Value;
/**
* Multiplies two values and returns result as {@code Byte} type.
*/
public class MultiplicationValueByte extends Value<Byte> {
@SuppressWarnings("rawtypes")
private final Value factor1;
@SuppressWarnings("rawtypes")
private final Value factor2;
/**
* Creates Multiplication value with specified <code>factor1</code> and <code>factor2</code>.
*
* @param factor1 Value which will be used as factor1 for this multiplication.
* @param factor2 Value which will be used as factor2 for this multiplication.
*/
@SuppressWarnings("rawtypes")
public MultiplicationValueByte(Value factor1, Value factor2) {
this.factor1 = factor1;
this.factor2 = factor2;
}
@Override
public void reset() {
super.reset();
factor1.reset();
factor2.reset();
}
@Override
protected void eval() {
val = (byte) (((Number) factor1.get()).byteValue() * ((Number) factor2.get()).byteValue());
}
}
|
[
"[email protected]"
] | |
f097d2673707b650108df48b6a923ccc35afd55e
|
90dc888dd24c9ed3fea097f0ed0f41c8f9a52439
|
/src/main/java/com/cxg/weChat/core/config/BDSessionListener.java
|
f5cc9bbaef925579d0188a5837d5b82376eb5c00
|
[
"Apache-2.0"
] |
permissive
|
NULLcaption/wxappH5
|
ec9b55f8012112ca96a3523f0e28d1c320549d5c
|
4f3aeb670b79719315afc85fd11e10ac0e86e77d
|
refs/heads/master
| 2022-07-19T23:03:32.678701 | 2021-05-28T02:01:37 | 2021-05-28T02:01:37 | 183,537,104 | 1 | 0 |
Apache-2.0
| 2022-07-06T20:41:30 | 2019-04-26T01:47:52 |
JavaScript
|
UTF-8
|
Java
| false | false | 646 |
java
|
package com.cxg.weChat.core.config;
import org.apache.shiro.session.Session;
import org.apache.shiro.session.SessionListener;
import java.util.concurrent.atomic.AtomicInteger;
public class BDSessionListener implements SessionListener {
private final AtomicInteger sessionCount = new AtomicInteger(0);
@Override
public void onStart(Session session) {
sessionCount.incrementAndGet();
}
@Override
public void onStop(Session session) {
sessionCount.decrementAndGet();
}
@Override
public void onExpiration(Session session) {
sessionCount.decrementAndGet();
}
public int getSessionCount() {
return sessionCount.get();
}
}
|
[
"[email protected]"
] | |
98881558438702fda94c0ee33b4ac17807598939
|
46719835215b0c92e191a12d6adbbb115fef653d
|
/src/test/java/omid/springframework/repositories/UnitOfMeasureRepositoryIT.java
|
c6c6cf2e0030c7eab4209088dbdd97fb9ed8c9ca
|
[] |
no_license
|
omid-joukar/spring5-recipe-app
|
caba47cefe47f5c62455dc6c3ca32138e6453c41
|
97786769385f8310c47ba794373fac6e3cdd2e39
|
refs/heads/master
| 2023-02-13T20:42:15.289853 | 2020-12-28T22:58:40 | 2020-12-28T22:58:40 | 322,797,075 | 1 | 0 | null | 2020-12-24T10:01:53 | 2020-12-19T08:01:39 |
Java
|
UTF-8
|
Java
| false | false | 1,129 |
java
|
package omid.springframework.repositories;
import omid.springframework.domain.UnitOfMeasure;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.Optional;
import static org.junit.Assert.*;
@RunWith(SpringRunner.class)
@DataJpaTest
public class UnitOfMeasureRepositoryIT {
@Autowired
UnitOfMeasureRepository unitOfMeasureRepository;
@Before
public void setUp() throws Exception {
}
@Test
public void findByDescription() {
Optional<UnitOfMeasure> unitOfMeasureOptional = unitOfMeasureRepository.findByDescription("Teaspoon");
assertEquals("Teaspoon",unitOfMeasureOptional.get().getDescription());
}
@Test
public void findByDescriptionCup() {
Optional<UnitOfMeasure> unitOfMeasureOptional = unitOfMeasureRepository.findByDescription("Cup");
assertEquals("Cup",unitOfMeasureOptional.get().getDescription());
}
}
|
[
"[email protected]"
] | |
b88464be57744b304b2b4df90d888421ddaaf1e3
|
3ba8f21c3c7d6254157748457fc35822ecd7c4f1
|
/Graph/src/main/java/MinimumSpanningTree/PrimsMST.java
|
6b07eaeccdf42e49ddc17acbf788e212de9bcc8c
|
[] |
no_license
|
theDataMonster/Data-Structures-and-Algorithms
|
cc5bc916fce4f9c2b3fb7a88bb3c5da68ae3355a
|
4b04a69d36ac9f78ed0287e1a23168f2da56c5dc
|
refs/heads/master
| 2021-07-25T15:14:51.082610 | 2020-02-17T11:16:07 | 2020-02-17T11:16:07 | 226,094,717 | 0 | 0 | null | 2020-10-13T19:27:08 | 2019-12-05T12:13:48 |
JavaScript
|
UTF-8
|
Java
| false | false | 1,345 |
java
|
package MinimumSpanningTree;
public class PrimsMST {
private static final int V=5;
int minKey(int key[], Boolean[] mstSet) {
int min= Integer.MAX_VALUE, min_index = -1;
for(int v=0; v< V; v++) {
if(mstSet[v]==false && key[v] < min) {
min= key[v];
min_index = v;
}
}
return min_index;
}
void printMST(int parent[], int graph[][]) {
System.out.println("Edge \tWeight");
for(int i=1;i< V; i++) {
System.out.println(parent[i]+ " - "+i+"\t"+graph[i][parent[i]]);
}
}
void primMST(int graph[][]) {
int parent[]= new int[V];
int key[]= new int[V];
Boolean mstSet[]= new Boolean[V];
for(int i=0; i< V; i++) {
key[i]= Integer.MAX_VALUE;
mstSet[i]= false;
}
key[0]=0;
parent[0] =-1;
for(int count=0; count< V-1; count++) {
int u=minKey(key,mstSet);
mstSet[u]=true;
for(int v=0; v<V; v++) {
if(graph[u][v] !=0 && mstSet[v] == false && graph[u][v] < key[v]) {
parent[v]=u;
key[v]=graph[u][v];
}
}
}
printMST(parent,graph);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
PrimsMST t=new PrimsMST();
int graph[][]= {{0,2,0,6,0},
{2,0,3,8,5},
{0,3,0,0,7},
{6,8,0,0,9},
{0,5,7,9,0}};
t.primMST(graph);
}
}
|
[
"[email protected]"
] | |
275612131d1bb143b411732aa02afebdf65f7a08
|
4eb8df759e4037c5d71a6c2b71016e5cea586ec1
|
/app/src/main/java/com/assettagging/model/movement_dimension/ListAccount.java
|
2f2d62a15a43331291a5cb1e33d00fc83beab1ce
|
[] |
no_license
|
aarati-vashisht/Asset-Tagging
|
523edf0243e396b0c2c66f2242afe03e8d21b10c
|
d0ec165962abaf1953a4541f8334943e3ea02f23
|
refs/heads/master
| 2020-04-13T14:11:08.906728 | 2019-01-10T07:29:22 | 2019-01-10T07:29:22 | 160,633,878 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 678 |
java
|
package com.assettagging.model.movement_dimension;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class ListAccount {
@SerializedName("MainAccountNo")
@Expose
private String mainAccountNo;
@SerializedName("Name")
@Expose
private String name;
public String getMainAccountNo() {
return mainAccountNo;
}
public void setMainAccountNo(String mainAccountNo) {
this.mainAccountNo = mainAccountNo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ListAccount() {
}
@Override
public String toString() {
return mainAccountNo+" - "+name;
}
}
|
[
"[email protected]"
] | |
98c74a4203cee4dc829e28a6cd1415319d49668d
|
307625deb8ba75bb2f7ffcc8cc15bfa547c21ed0
|
/android/app/src/main/java/com/kii/app/android/thingifsample/MainActivity.java
|
edc943c1065939919696ce4162dafda0194e34ca
|
[] |
no_license
|
ryoichi-kawahara/thing-if-samples
|
9505058de24ef519a9afcb1cbe79ec18e89fdbd4
|
2c68ebf801c4f39a6bc9f4758e1265123aeaeabc
|
refs/heads/master
| 2021-01-10T03:55:08.169831 | 2016-01-14T23:47:43 | 2016-01-14T23:47:43 | 47,852,088 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 22,007 |
java
|
package com.kii.app.android.thingifsample;
import android.content.IntentFilter;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.util.Pair;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.CheckBox;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
import android.widget.Spinner;
import android.widget.Switch;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.gcm.GoogleCloudMessaging;
import com.kii.app.android.gcm.KiiPushBroadcastReceiver;
import com.kii.app.android.thingifsample.schema.airconditioner.AirConditionerSchema;
import com.kii.app.android.thingifsample.schema.airconditioner.AirConditionerState;
import com.kii.app.android.thingifsample.schema.airconditioner.SetFanSpeed;
import com.kii.app.android.thingifsample.schema.airconditioner.SetFanSpeedResult;
import com.kii.app.android.thingifsample.schema.airconditioner.SetPresetTemperature;
import com.kii.app.android.thingifsample.schema.airconditioner.SetPresetTemperatureResult;
import com.kii.app.android.thingifsample.schema.airconditioner.TurnPower;
import com.kii.app.android.thingifsample.schema.airconditioner.TurnPowerResult;
import com.kii.cloud.storage.Kii;
import com.kii.cloud.storage.KiiUser;
import com.kii.cloud.storage.callback.KiiUserCallBack;
import com.kii.thingif.PushBackend;
import com.kii.thingif.Target;
import com.kii.thingif.ThingIFAPI;
import com.kii.thingif.Site;
import com.kii.thingif.Owner;
import com.kii.thingif.ThingIFAPIBuilder;
import com.kii.thingif.TypedID;
import com.kii.thingif.command.Action;
import com.kii.thingif.command.ActionResult;
import com.kii.thingif.command.Command;
import com.kii.thingif.exception.ThingIFException;
import com.kii.thingif.schema.Schema;
import com.kii.thingif.schema.SchemaBuilder;
import com.kii.thingif.trigger.Condition;
import com.kii.thingif.trigger.StatePredicate;
import com.kii.thingif.trigger.Trigger;
import com.kii.thingif.trigger.TriggersWhen;
import com.kii.thingif.trigger.clause.Range;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity implements View.OnClickListener, KiiPushBroadcastReceiver.Observer {
private static final String SENDER_ID = "__GCM_Project_ID__";
private final String APP_ID = "__APP_ID__";
private final String APP_KEY = "__APP_KEY__";
private final String USER_NAME = "__user_id__";
private final String PASSWORD = "__user_pass_";
private final String VENDOR_THING_ID = "__vendor_thing_id__";
private final String THING_PASSWORD = "__thing_pass__";
private GoogleCloudMessaging gcm;
private String regId;
private ThingIFAPI api;
private final String GREATER_THAN_EQUALS = ">=";
private final String LESS_THAN_EQUALS = "<=";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//画面の設定
findViewById(R.id.buttonRefresh).setOnClickListener(this);
findViewById(R.id.buttonSend).setOnClickListener(this);
findViewById(R.id.buttonSet).setOnClickListener(this);
((SeekBar)findViewById(R.id.seekBarPresetTemp)).setOnSeekBarChangeListener(SeekListener);
((SeekBar)findViewById(R.id.seekBarFanSpeed)).setOnSeekBarChangeListener(SeekListener);
((SeekBar)findViewById(R.id.seekBarTemperature)).setOnSeekBarChangeListener(SeekListener);
setCommandPowerText();
setCommandPresetTempText();
setCommandFanSpeedText();
setTriggerTemperatureText();
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
adapter.add(GREATER_THAN_EQUALS);
adapter.add(LESS_THAN_EQUALS);
Spinner spinner = (Spinner) findViewById(R.id.spinnerTriggerCondition);
spinner.setAdapter(adapter);
//BroadcastReceiverの登録
IntentFilter filter = new IntentFilter("com.google.android.c2dm.intent.RECEIVE");
filter.addAction("com.google.android.c2dm.intent.REGISTRATION");
filter.addCategory("com.kii.app.android");
KiiPushBroadcastReceiver pushReceiver = new KiiPushBroadcastReceiver(this);
registerReceiver(pushReceiver, filter);
//Kii SDKの初期化
Kii.initialize(getApplicationContext(), APP_ID, APP_KEY, Kii.Site.JP, false);
//GCMインスタンスの取得
gcm = GoogleCloudMessaging.getInstance(this.getApplicationContext());
//デバイスを登録
registerGCM();
}
//Kii cloudアプリへのログイン
private void userLogin(){
debug("userLogin start");
KiiUser.logIn(
new KiiUserCallBack() {
@Override
public void onLoginCompleted(int token, KiiUser user, Exception exception) {
debug("onLoginCompleted");
if (exception != null) {
// Error handling
debug("userLogin error: " + exception.getLocalizedMessage());
} else {
debug("userLogin success !!");
initThingIfApi();
installPush();
onboard();
}
}
},
USER_NAME, PASSWORD
);
}
//Thing-IF SDKの初期化
private void initThingIfApi(){
debug("initThingIfApi start");
//ログインユーザーの取得
KiiUser user = KiiUser.getCurrentUser();
//owner作成
TypedID typedUserID = new TypedID(TypedID.Types.USER, user.getID());
Owner owner = new Owner(typedUserID, user.getAccessToken());
//schema作成
SchemaBuilder sb = SchemaBuilder.newSchemaBuilder("airconditioner", AirConditionerSchema.SCHEMA_NAME,
1, AirConditionerState.class);
sb.addActionClass(TurnPower.class, TurnPowerResult.class).
addActionClass(SetPresetTemperature.class, SetPresetTemperatureResult.class).
addActionClass(SetFanSpeed.class, SetFanSpeedResult.class);
Schema schema = sb.build();
//ThingIFAPI作成
ThingIFAPIBuilder ib = ThingIFAPIBuilder.newBuilder(getApplicationContext(),
APP_ID, APP_KEY, Site.JP, owner);
ib.addSchema(schema);
api = ib.build();
debug("initThingIfApi end");
}
//初期登録
private void onboard(){
debug("onboard start");
new AsyncTask<Void, Void, Boolean>() {
@Override
protected Boolean doInBackground(Void... params) {
try {
Target target = api.onboard(VENDOR_THING_ID, THING_PASSWORD, null, null);
debug(target.getAccessToken());
debug(target.getTypedID().toString());
return Boolean.TRUE;
} catch (Exception e) {
debug("onboard error :" + e.getLocalizedMessage());
return Boolean.FALSE;
}
}
@Override
protected void onPostExecute(Boolean result) {
if(result) {
debug("onboard success");
getCurrentState();
} else {
debug("onboard fail");
}
}
}.execute();
}
//ステートの取得
private void getCurrentState() {
debug("getCurrentState start");
new AsyncTask<Void, Void, AirConditionerState>() {
@Override
protected AirConditionerState doInBackground(Void... params) {
try {
return api.getTargetState(AirConditionerState.class);
} catch (Exception e) {
debug("onboard error :" + e.getLocalizedMessage());
return null;
}
}
@Override
protected void onPostExecute(AirConditionerState state) {
if(state != null) {
debug("getCurrentState success");
showState(state);
} else {
debug("getCurrentState fail");
}
}
}.execute();
}
//取得したステートの表示
private void showState(AirConditionerState state){
((TextView)findViewById(R.id.textPowerState)).setText(state.power ? "ON" : "OFF");
((TextView)findViewById(R.id.textPresetTemp)).setText(String.valueOf(state.presetTemperature));
((TextView)findViewById(R.id.textFanSpeed)).setText(String.valueOf(state.fanSpeed));
((TextView)findViewById(R.id.textTemperature)).setText(String.valueOf(state.currentTemperature));
((TextView)findViewById(R.id.textHumidity)).setText(String.valueOf(state.currentHumidity));
}
//コマンドの送信
private void sendCommand(){
debug("sendCommand start");
CheckBox checkBoxPower = (CheckBox)findViewById(R.id.checkBoxPower);
CheckBox checkBoxPresetTemp = (CheckBox)findViewById(R.id.checkBoxPresetTemp);
CheckBox checkBoxFanSpeed = (CheckBox)findViewById(R.id.checkBoxFanSpeed);
if(checkBoxPower.isChecked() || checkBoxPresetTemp.isChecked() || checkBoxFanSpeed.isChecked()) {
final List<Action> actions = new ArrayList<>();
if(checkBoxPower.isChecked()) {
TurnPower action = new TurnPower();
action.power = getSwitchPowerValue();
actions.add(action);
}
if(checkBoxPresetTemp.isChecked()) {
SetPresetTemperature action = new SetPresetTemperature();
action.presetTemperature = getSeekBarPresetTempValue();
actions.add(action);
}
if(checkBoxFanSpeed.isChecked()) {
SetFanSpeed action = new SetFanSpeed();
action.fanSpeed = getSeekBarFanSpeedValue();
actions.add(action);
}
new AsyncTask<Void, Void, Command>() {
@Override
protected Command doInBackground(Void... params) {
try {
try {
return api.postNewCommand(AirConditionerSchema.SCHEMA_NAME, 1, actions);
} catch (ThingIFException e) {
debug("sendCommand error :" + e.getLocalizedMessage());
return null;
}
} catch (Exception e) {
debug("sendCommand error :" + e.getLocalizedMessage());
return null;
}
}
@Override
protected void onPostExecute(Command command) {
if(command != null) {
debug("sendCommand success");
} else {
debug("sendCommand fail");
}
}
}.execute();
} else {
debug("no command is selected");
Toast.makeText(this,"no command is selected", Toast.LENGTH_SHORT).show();
}
}
//トリガーの設定
//コマンドはコマンド送信に利用する値と同じ
private void setTrigger(){
debug("setTrigger start");
//本サンプルでは登録済のトリガーは削除する
deleteTrigger();
CheckBox checkBoxPower = (CheckBox)findViewById(R.id.checkBoxPower);
CheckBox checkBoxPresetTemp = (CheckBox)findViewById(R.id.checkBoxPresetTemp);
CheckBox checkBoxFanSpeed = (CheckBox)findViewById(R.id.checkBoxFanSpeed);
if(checkBoxPower.isChecked() || checkBoxPresetTemp.isChecked() || checkBoxFanSpeed.isChecked()) {
final List<Action> actions = new ArrayList<>();
if(checkBoxPower.isChecked()) {
TurnPower action = new TurnPower();
action.power = getSwitchPowerValue();
actions.add(action);
}
if(checkBoxPresetTemp.isChecked()) {
SetPresetTemperature action = new SetPresetTemperature();
action.presetTemperature = getSeekBarPresetTempValue();
actions.add(action);
}
if(checkBoxFanSpeed.isChecked()) {
SetFanSpeed action = new SetFanSpeed();
action.fanSpeed = getSeekBarFanSpeedValue();
actions.add(action);
}
Condition condition;
if(((Spinner)findViewById(R.id.spinnerTriggerCondition)).getSelectedItem().equals(GREATER_THAN_EQUALS)) {
condition = new Condition(Range.greaterThanEquals(AirConditionerSchema.STATE_NAME_CURRENT_TEMPERATURE, getSeekBarTemperatureValue()));
} else {
condition = new Condition(Range.lessThanEquals(AirConditionerSchema.STATE_NAME_CURRENT_TEMPERATURE, getSeekBarTemperatureValue()));
}
final StatePredicate predicate = new StatePredicate(condition, TriggersWhen.CONDITION_FALSE_TO_TRUE);
new AsyncTask<Void, Void, Trigger>() {
@Override
protected Trigger doInBackground(Void... params) {
try {
return api.postNewTrigger("AirConditioner-Demo", 1, actions, predicate);
} catch (ThingIFException e) {
debug("setTrigger error :" + e.getLocalizedMessage());
return null;
}
}
@Override
protected void onPostExecute(Trigger trigger) {
if(trigger != null) {
debug("setTrigger success");
} else {
debug("setTrigger fail");
}
}
}.execute();
} else {
debug("no command is selected");
Toast.makeText(this,"no command is selected", Toast.LENGTH_SHORT).show();
}
}
//トリガーの削除
private void deleteTrigger() {
debug("deleteTrigger start");
new AsyncTask<Void, Void, Boolean>() {
@Override
protected Boolean doInBackground(Void... params) {
try {
String paginationKey = null;
do {
// Get the list of triggers
Pair<List<Trigger>, String> results = api.listTriggers(0, paginationKey);
List<Trigger> triggers = results.first;
// Doing something with each triggers
for (Trigger trigger : triggers) {
debug("triggerId = " + trigger.getTriggerID());
api.deleteTrigger(trigger.getTriggerID());
}
// Check the next page
paginationKey = results.second;
} while (paginationKey != null);
debug("deleteTrigger end");
return true;
} catch (ThingIFException e) {
debug("deleteTrigger error :" + e.getLocalizedMessage());
return false;
}
}
}.execute();
}
//GCMへのデバイスの登録
private void registerGCM() {
debug("registerGCM start");
new AsyncTask<Void, Void, Boolean>() {
@Override
protected Boolean doInBackground(Void... params) {
try {
// call register
regId = gcm.register(SENDER_ID);
debug("registerGCM end");
userLogin();
return true;
} catch (Exception e) {
debug("registerGCM error :" + e.getLocalizedMessage());
return false;
}
}
}.execute();
}
//プッシュのインストール
private void installPush(){
debug("installPush start");
new AsyncTask<Void, Void, Boolean>() {
@Override
protected Boolean doInBackground(Void... params) {
try {
api.installPush(regId, PushBackend.GCM);
debug("installPush end");
return true;
} catch (ThingIFException e) {
debug("installPush error :" + e.getLocalizedMessage());
return false;
}
}
}.execute();
}
//プッシュ通知受信時の処理
@Override
public void onReceiveMessage(String returnedID) {
debug("returnedID =" + returnedID);
final String retID = returnedID;
new AsyncTask<Void, Void, Boolean>() {
@Override
protected Boolean doInBackground(Void... params) {
try {
// Get the command result.
Command command = api.getCommand(retID);
List<ActionResult> results = command.getActionResults();
for (ActionResult result : results) {
String actionName = result.getActionName();
boolean succeeded = result.succeeded();
String errorMessage = result.getErrorMessage();
debug("actionName:" + actionName);
debug("succeeded:" + succeeded);
debug("errorMessage:" + errorMessage);
}
return true;
} catch (ThingIFException e) {
debug("getCommand error :" + e.getLocalizedMessage());
return false;
}
}
}.execute();
}
/*************************************************/
// 以下はボタンやシークバー関連の処理
/*************************************************/
//ボタン押下時の処理
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.buttonRefresh:
// REFRESHボタン
getCurrentState();
break;
case R.id.buttonSend:
// SENDボタン
sendCommand();
break;
case R.id.buttonSet:
// SETボタン
setTrigger();
break;
}
}
//シークバー操作時の処理
private OnSeekBarChangeListener SeekListener = new OnSeekBarChangeListener() {
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
}
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean byUser) {
switch (seekBar.getId()) {
case R.id.seekBarPresetTemp:
// Preset Tempシークバー
debug("value = " + seekBar.getProgress());
setCommandPresetTempText();
break;
case R.id.seekBarFanSpeed:
// Fan Speedシークバー
debug("value = " + seekBar.getProgress());
setCommandFanSpeedText();
break;
case R.id.seekBarTemperature:
// Temperatureシークバー
debug("value = " + seekBar.getProgress());
setTriggerTemperatureText();
break;
default:
break;
}
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
}
};
// Powerスイッチのクッリク時の処理
public void onSwitchPowerClicked(View view){
setCommandPowerText();
}
// PowerスイッチのON/OFFのテキスト表示切替
private void setCommandPowerText(){
((TextView)findViewById(R.id.textCommandPower)).setText(getSwitchPowerValue() ? "ON" : "OFF");
}
// Powerスイッチの値の取得
private boolean getSwitchPowerValue(){
return ((Switch)findViewById(R.id.switchPower)).isChecked();
}
// Preset Tempの値の表示
private void setCommandPresetTempText(){
((TextView)findViewById(R.id.textCommandPresetTemp)).setText(String.valueOf(getSeekBarPresetTempValue()));
}
// Preset Tempの値の取得
private int getSeekBarPresetTempValue(){
return ((SeekBar)findViewById(R.id.seekBarPresetTemp)).getProgress() + 18;
}
// Fan Speedの値の表示
private void setCommandFanSpeedText(){
((TextView)findViewById(R.id.textCommandFanSpeed)).setText(String.valueOf(getSeekBarFanSpeedValue()));
}
// Fan Speedの値の取得
private int getSeekBarFanSpeedValue(){
return ((SeekBar)findViewById(R.id.seekBarFanSpeed)).getProgress();
}
// Temperatureの値の表示
private void setTriggerTemperatureText(){
((TextView)findViewById(R.id.textTriggerTemperature)).setText(String.valueOf(getSeekBarTemperatureValue()));
}
// Temperatureの値の取得
private int getSeekBarTemperatureValue(){
return ((SeekBar)findViewById(R.id.seekBarTemperature)).getProgress() + 18;
}
/*************************************************/
//ログ
private static void debug(String message){
Log.d("ThingIFSample", message);
}
}
|
[
"[email protected]"
] | |
046c1c070d39cb010a1e3b77168a32fd8704ff1b
|
8365fb204b9138be82a692c14c6adc5e074f1b8b
|
/mgmt/mgmt-utils/src/test/java/mgmt/utils/ByteReaderUtilsTest.java
|
350146a6ee38be7ad2bc398ec952ff9dc85551a0
|
[] |
no_license
|
ekuzmichev/mgmt
|
52a20db029129c0b8e7799245559c6f61c43bad8
|
82c4ffa0224eda7fec44c7a3c906de9af479879c
|
refs/heads/master
| 2022-04-11T17:13:30.438675 | 2020-03-06T16:52:17 | 2020-03-06T16:52:17 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,758 |
java
|
package mgmt.utils;
import org.junit.jupiter.api.Test;
import org.mockito.Answers;
import org.mockito.Mockito;
import org.mockito.stubbing.Answer;
import java.io.*;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.Random;
import java.util.function.ObjIntConsumer;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;
class ByteReaderUtilsTest {
@Test
public void readChunkedTestOnZipInputStream() throws IOException {
byte[] content = new byte[5 * 1024 * 1024];
new Random(42).nextBytes(content);
byte[] zip = zipWithOneEntry(content);
ChunksCollector collector = new ChunksCollector();
try (ZipInputStream zis = new ZipInputStream(new ByteArrayInputStream(zip))) {
zis.getNextEntry();
ByteReaderUtils.readChunked(zis, collector);
}
assertArrayEquals(content, collector.collected());
}
@Test
public void readChunkedTestOnSlowStreamMock() throws IOException {
InputStream mock = mock(InputStream.class);
byte[] expectedContent = new byte[] {1, 2};
when(mock.read(any()))
.thenAnswer(writingToBuffer(new byte[]{1}))
.thenAnswer(writingToBuffer(new byte[]{2}))
.thenReturn(-1);
when(mock.read(any(), anyInt(), anyInt())).thenThrow(new RuntimeException("Not mocked"));
ChunksCollector collector = new ChunksCollector();
ByteReaderUtils.readChunked(mock, collector);
assertArrayEquals(expectedContent, collector.collected());
}
private static byte[] zipWithOneEntry(byte[] content) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try (ZipOutputStream zos = new ZipOutputStream(baos)) {
zos.putNextEntry(new ZipEntry("entry"));
zos.write(content);
zos.closeEntry();
}
return baos.toByteArray();
}
private static Answer<Integer> writingToBuffer(byte[] content) {
final byte[] contentCopy = content.clone();
return iom -> {
final byte[] buffer = iom.getArgument(0);
ByteBuffer.wrap(buffer).put(contentCopy);
return contentCopy.length;
};
}
private static class ChunksCollector implements ObjIntConsumer<byte[]> {
private final ByteArrayOutputStream baos = new ByteArrayOutputStream();
@Override
public void accept(byte[] bytes, int len) {
baos.write(bytes, 0, len);
}
public byte[] collected() {
return baos.toByteArray();
}
}
}
|
[
"[email protected]"
] | |
66ef4499abf3ccda3d35e77961f5df5b2f00bf8d
|
375db91de00212215452204280d9aefeef3d8afe
|
/src/main/java/util/bip44/HdKeyNode.java
|
83444d36bd5fe1ac39b8818f529bae0592a0542e
|
[] |
no_license
|
Timmy-Cai/ethereum-wallet-core
|
ddf719df404034f285ec246e796f1f0f5c54154b
|
e52a9deca80538b320abf598eb08b76702afbcc8
|
refs/heads/master
| 2021-07-02T09:43:50.269570 | 2017-09-22T01:25:38 | 2017-09-22T01:25:38 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 18,883 |
java
|
/*
* Copyright 2013, 2014 Megion Research & Development GmbH
*
* 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 util.bip44;
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.math.BigInteger;
import java.util.List;
import java.util.UUID;
import com.google.common.base.Preconditions;
import util.bip44.ByteReader.InsufficientBytesException;
import util.bip44.ec.Parameters;
import util.bip44.ec.Point;
import util.bip44.hdpath.HdKeyPath;
/**
* Implementation of BIP 32 HD wallet key derivation.
* <p>
* https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
*/
public class HdKeyNode implements Serializable {
public static final int HARDENED_MARKER = 0x80000000;
public static class KeyGenerationException extends RuntimeException {
private static final long serialVersionUID = 1L;
public KeyGenerationException(String message) {
super(message);
}
}
private static final String BITCOIN_SEED = "Bitcoin seed";
private static final int CHAIN_CODE_SIZE = 32;
private final InMemoryPrivateKey _privateKey;
private final PublicKey _publicKey;
private final byte[] _chainCode;
private final int _depth;
private final int _parentFingerprint;
private final int _index;
/**
* Convert to custom fast parsable byte format. XXX This is very much
* experimental
*/
public void toCustomByteFormat(ByteWriter writer) {
if (isPrivateHdKeyNode()) {
writer.put((byte) 1);
Preconditions.checkArgument(_privateKey.getPrivateKeyBytes().length == 32);
writer.putBytes(_privateKey.getPrivateKeyBytes());
} else {
writer.put((byte) 0);
}
Preconditions.checkArgument(_publicKey.getPublicKeyBytes().length == 33);
writer.putBytes(_publicKey.getPublicKeyBytes());
writer.putBytes(_chainCode);
writer.putIntLE(_depth);
writer.putIntLE(_parentFingerprint);
writer.putIntLE(_index);
}
/**
* Convert to custom fast parsable byte format. XXX This is very much
* experimental
*/
public byte[] toCustomByteFormat() {
ByteWriter writer = new ByteWriter(1024);
toCustomByteFormat(writer);
return writer.toBytes();
}
/**
* Create from custom fast parsable byte format. XXX This is very much
* experimental
*/
public static HdKeyNode fromCustomByteformat(byte[] bytes) throws InsufficientBytesException {
return fromCustomByteformat(new ByteReader(bytes));
}
/**
* Create from custom fast parsable byte format. XXX This is very much
* experimental
*/
public static HdKeyNode fromCustomByteformat(ByteReader reader) throws InsufficientBytesException {
boolean hasPrivateKey = reader.get() == 1;
if (hasPrivateKey) {
// Private key node
InMemoryPrivateKey privateKey = new InMemoryPrivateKey(reader.getBytes(32), reader.getBytes(33));
return new HdKeyNode(privateKey, reader.getBytes(CHAIN_CODE_SIZE), reader.getIntLE(), reader.getIntLE(),
reader.getIntLE());
} else {
// Public key node
return new HdKeyNode(new PublicKey(reader.getBytes(33)), reader.getBytes(CHAIN_CODE_SIZE), reader.getIntLE(),
reader.getIntLE(), reader.getIntLE());
}
}
HdKeyNode(InMemoryPrivateKey privateKey, byte[] chainCode, int depth, int parentFingerprint, int index) {
_privateKey = privateKey;
_publicKey = _privateKey.getPublicKey();
_chainCode = chainCode;
_depth = depth;
_parentFingerprint = parentFingerprint;
_index = index;
}
public HdKeyNode(PublicKey publicKey, byte[] chainCode, int depth, int parentFingerprint, int index) {
_privateKey = null;
_publicKey = publicKey;
_chainCode = chainCode;
_depth = depth;
_parentFingerprint = parentFingerprint;
_index = index;
}
/**
* Generate a master HD key node from a seed.
*
* @param seed
* the seed to generate the master HD wallet key from.
* @return a master HD key node for the seed
* @throws KeyGenerationException
* if the seed is not suitable for seeding an HD wallet key
* generation. This is extremely unlikely
*/
public static HdKeyNode fromSeed(byte[] seed) throws KeyGenerationException {
Preconditions.checkArgument(seed.length * 8 >= 128, "seed must be larger than 128");
Preconditions.checkArgument(seed.length * 8 <= 512, "seed must be smaller than 512");
byte[] I = Hmac.hmacSha512(asciiStringToBytes(BITCOIN_SEED), seed);
// Construct private key
byte[] IL = BitUtils.copyOfRange(I, 0, 32);
BigInteger k = new BigInteger(1, IL);
if (k.compareTo(Parameters.n) >= 0) {
throw new KeyGenerationException(
"An unlikely thing happened: The derived key is larger than the N modulus of the curve");
}
if (k.equals(BigInteger.ZERO)) {
throw new KeyGenerationException("An unlikely thing happened: The derived key is zero");
}
InMemoryPrivateKey privateKey = new InMemoryPrivateKey(IL, true);
// Construct chain code
byte[] IR = BitUtils.copyOfRange(I, 32, 32 + CHAIN_CODE_SIZE);
return new HdKeyNode(privateKey, IR, 0, 0, 0);
}
/**
* Is this a public or private key node.
* <p>
* A private key node can generate both public and private key hierarchies. A
* public key node can only generate the corresponding public key
* hierarchies.
*
* @return true if this is a private key node, false otherwise.
*/
public boolean isPrivateHdKeyNode() {
return _privateKey != null;
}
/**
* If this is a private key node, return the corresponding public key node of
* this node, otherwise return a copy of this node.
*/
public HdKeyNode getPublicNode() {
return new HdKeyNode(_publicKey, _chainCode, _depth, _parentFingerprint, _index);
}
/**
* Create the child private key of this node with the corresponding index.
*
* @param index
* the index to use
* @return the private key corresponding to the specified index
* @throws KeyGenerationException
* if this is not a private key node, or if no key can be created
* for this index (extremely unlikely)
*/
public InMemoryPrivateKey createChildPrivateKey(int index) throws KeyGenerationException {
if (!isPrivateHdKeyNode()) {
throw new KeyGenerationException("Not a private HD key node");
}
return createChildNode(index)._privateKey;
}
/**
* Create the child public key of this node with the corresponding index.
*
* @param index
* the index to use
* @return the public key corresponding to the specified index
* @throws KeyGenerationException
* if this is a public key node which is hardened, or if no key
* can be created for this index (extremely unlikely)
*/
public PublicKey createChildPublicKey(int index) throws KeyGenerationException {
return createChildNode(index)._publicKey;
}
/**
* Create the Bip32 derived child from this KeyNode, according to the keyPath.
*
* @param keyPath
* the Bip32 Path
* @return the child node corresponding to the current node + keyPath
*/
public HdKeyNode createChildNode(HdKeyPath keyPath){
List<Integer> addrN = keyPath.getAddressN();
HdKeyNode ak = this;
for (Integer i : addrN){
ak = ak.createChildNode(i);
}
return ak;
}
/**
* Create the hardened child node of this node with the corresponding index
*
* @param index
* the index to use
* @return the child node corresponding to the specified index
* @throws KeyGenerationException
* if this is a public key node which is hardened, or if no key
* can be created for this index (extremely unlikely)
*/
public HdKeyNode createHardenedChildNode(int index) throws KeyGenerationException {
return createChildNode(index | HARDENED_MARKER);
}
/**
* Create the child node of this node with the corresponding index
*
* @param index
* the index to use
* @return the child node corresponding to the specified index
* @throws KeyGenerationException
* if this is a public key node which is hardened, or if no key
* can be created for this index (extremely unlikely)
*/
public HdKeyNode createChildNode(int index) throws KeyGenerationException {
byte[] data;
byte[] publicKeyBytes = _publicKey.getPublicKeyBytes();
if (0 == (index & HARDENED_MARKER)) {
// Not hardened key
ByteWriter writer = new ByteWriter(publicKeyBytes.length + 4);
writer.putBytes(publicKeyBytes);
writer.putIntBE(index);
data = writer.toBytes();
} else {
// Hardened key
if (!isPrivateHdKeyNode()) {
throw new KeyGenerationException("Cannot generate hardened HD key node from pubic HD key node");
}
ByteWriter writer = new ByteWriter(33 + 4);
writer.put((byte) 0);
writer.putBytes(_privateKey.getPrivateKeyBytes());
writer.putIntBE(index);
data = writer.toBytes();
}
byte[] l = Hmac.hmacSha512(_chainCode, data);
byte[] lL = BitUtils.copyOfRange(l, 0, 32);
byte[] lR = BitUtils.copyOfRange(l, 32, 64);
BigInteger m = new BigInteger(1, lL);
if (m.compareTo(Parameters.n) >= 0) {
throw new KeyGenerationException(
"An unlikely thing happened: A key derivation parameter is larger than the N modulus of the curve");
}
if (isPrivateHdKeyNode()) {
BigInteger kpar = new BigInteger(1, _privateKey.getPrivateKeyBytes());
BigInteger k = m.add(kpar).mod(Parameters.n);
if (k.equals(BigInteger.ZERO)) {
throw new KeyGenerationException("An unlikely thing happened: The derived key is zero");
}
// Make a 32 byte result where k is copied to the end
byte[] privateKeyBytes = bigIntegerTo32Bytes(k);
InMemoryPrivateKey key = new InMemoryPrivateKey(privateKeyBytes, true);
return new HdKeyNode(key, lR, _depth + 1, getFingerprint(), index);
} else {
Point q = Parameters.G.multiply(m).add(Parameters.curve.decodePoint(_publicKey.getPublicKeyBytes()));
if (q.isInfinity()) {
throw new KeyGenerationException("An unlikely thing happened: Invalid key point at infinity");
}
PublicKey newPublicKey = new PublicKey(new Point(Parameters.curve, q.getX(), q.getY(), true).getEncoded());
return new HdKeyNode(newPublicKey, lR, _depth + 1, getFingerprint(), index);
}
}
private byte[] bigIntegerTo32Bytes(BigInteger b) {
// Returns an array of bytes which is at most 33 bytes long, and possibly
// with a leading zero
byte[] bytes = b.toByteArray();
Preconditions.checkArgument(bytes.length <= 33);
if (bytes.length == 33) {
// The result is 32 bytes, but with zero at the beginning, which we
// strip
Preconditions.checkArgument(bytes[0] == 0);
return BitUtils.copyOfRange(bytes, 1, 33);
}
// The result is 32 bytes or less, make it 32 bytes with the data at the
// end
byte[] result = new byte[32];
System.arraycopy(bytes, 0, result, result.length - bytes.length, bytes.length);
return result;
}
/**
* Get the fingerprint of this node
*/
public int getFingerprint() {
byte[] hash = _publicKey.getPublicKeyHash();
int fingerprint = (((int) hash[0]) & 0xFF) << 24;
fingerprint += (((int) hash[1]) & 0xFF) << 16;
fingerprint += (((int) hash[2]) & 0xFF) << 8;
fingerprint += (((int) hash[3]) & 0xFF);
return fingerprint;
}
/**
* Get the private key of this node
*
* @throws KeyGenerationException
* if this is not a private key node
*/
public InMemoryPrivateKey getPrivateKey() throws KeyGenerationException {
if (!isPrivateHdKeyNode()) {
throw new KeyGenerationException("Not a private HD key node");
}
return _privateKey;
}
/**
* Get the public key of this node.
*/
public PublicKey getPublicKey() {
return _publicKey;
}
private static final byte[] PRODNET_PUBLIC = new byte[] { (byte) 0x04, (byte) 0x88, (byte) 0xB2, (byte) 0x1E };
private static final byte[] TESTNET_PUBLIC = new byte[] { (byte) 0x04, (byte) 0x35, (byte) 0x87, (byte) 0xCF };
private static final byte[] PRODNET_PRIVATE = new byte[] { (byte) 0x04, (byte) 0x88, (byte) 0xAD, (byte) 0xE4 };
private static final byte[] TESTNET_PRIVATE = new byte[] { (byte) 0x04, (byte) 0x35, (byte) 0x83, (byte) 0x94 };
/**
* Serialize this node
*/
public String serialize(NetworkParameters network) throws KeyGenerationException {
ByteWriter writer = new ByteWriter(4 + 1 + 4 + 4 + 32 + 32);
if (network.isProdnet()) {
writer.putBytes(isPrivateHdKeyNode() ? PRODNET_PRIVATE : PRODNET_PUBLIC);
} else {
writer.putBytes(isPrivateHdKeyNode() ? TESTNET_PRIVATE : TESTNET_PUBLIC);
}
writer.put((byte) (_depth & 0xFF));
writer.putIntBE(_parentFingerprint);
writer.putIntBE(_index);
writer.putBytes(_chainCode);
if (isPrivateHdKeyNode()) {
writer.put((byte) 0);
writer.putBytes(_privateKey.getPrivateKeyBytes());
} else {
writer.putBytes(_publicKey.getPublicKeyBytes());
}
return Base58.encodeWithChecksum(writer.toBytes());
}
/**
* Create a node from a serialized string
*
* @param string
* the string to parse
* @param network
* the network the node is to be used on
* @return a HD wallet key node
* @throws KeyGenerationException
* if there is an error parsing the string to a HD wallet key node
* on the specified network
*/
public static HdKeyNode parse(String string, NetworkParameters network) throws KeyGenerationException {
try {
byte[] bytes = Base58.decodeChecked(string);
if (bytes == null) {
throw new KeyGenerationException("Invalid checksum");
}
if (bytes.length != 78) {
throw new KeyGenerationException("Invalid size");
}
ByteReader reader = new ByteReader(bytes);
boolean isPrivate;
byte[] magic = reader.getBytes(4);
if (BitUtils.areEqual(magic, PRODNET_PRIVATE)) {
if (!network.isProdnet()) {
throw new KeyGenerationException("Invalid network");
}
isPrivate = true;
} else if (BitUtils.areEqual(magic, PRODNET_PUBLIC)) {
if (!network.isProdnet()) {
throw new KeyGenerationException("Invalid network");
}
isPrivate = false;
} else if (BitUtils.areEqual(magic, TESTNET_PRIVATE)) {
if (network.isProdnet()) {
throw new KeyGenerationException("Invalid network");
}
isPrivate = true;
} else if (BitUtils.areEqual(magic, TESTNET_PUBLIC)) {
if (network.isProdnet()) {
throw new KeyGenerationException("Invalid network");
}
isPrivate = false;
} else {
throw new KeyGenerationException("Invalid magic header for HD key node");
}
int depth = ((int) reader.get()) & 0xFF;
int parentFingerprint = reader.getIntBE();
int index = reader.getIntBE();
byte[] chainCode = reader.getBytes(CHAIN_CODE_SIZE);
if (isPrivate) {
if (reader.get() != (byte) 0x00) {
throw new KeyGenerationException("Invalid private key");
}
InMemoryPrivateKey privateKey = new InMemoryPrivateKey(reader.getBytes(32), true);
return new HdKeyNode(privateKey, chainCode, depth, parentFingerprint, index);
} else {
PublicKey publicKey = new PublicKey(reader.getBytes(33));
return new HdKeyNode(publicKey, chainCode, depth, parentFingerprint, index);
}
} catch (InsufficientBytesException e) {
throw new KeyGenerationException("Insufficient bytes in serialization");
}
}
@Override
public String toString() {
return "Fingerprint: " + Integer.toString(getFingerprint());
}
private static byte[] asciiStringToBytes(String string) {
try {
return string.getBytes("US-ASCII");
} catch (UnsupportedEncodingException e) {
throw new RuntimeException();
}
}
@Override
public int hashCode() {
return _publicKey.hashCode();
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof HdKeyNode)) {
return false;
}
HdKeyNode other = (HdKeyNode) obj;
if (!this._publicKey.equals(other._publicKey)) {
return false;
}
if (this._depth != other._depth) {
return false;
}
if (this._parentFingerprint != other._parentFingerprint) {
return false;
}
if (this._index != other._index) {
return false;
}
if (!BitUtils.areEqual(this._chainCode, other._chainCode)) {
return false;
}
return this.isPrivateHdKeyNode() == other.isPrivateHdKeyNode();
}
// returns the own index of this key
public int getIndex(){
return _index;
}
// returns the parent fingerprint
public int getParentFingerprint(){
return _parentFingerprint;
}
// return the hierarchical depth of this node
public int getDepth(){
return _depth;
}
// generate internal uuid from public key of the HdKeyNode
public UUID getUuid() {
// Create a UUID from the byte indexes 8-15 and 16-23 of the account public key
byte[] publicKeyBytes = this.getPublicKey().getPublicKeyBytes();
return new UUID(BitUtils.uint64ToLong(publicKeyBytes, 8), BitUtils.uint64ToLong(
publicKeyBytes, 16));
}
}
|
[
"[email protected]"
] | |
5db45cc93234bc70296141125f4cdcf2b89f9707
|
12886dff1334a080317b2a6552395c0eb4a633d2
|
/9.java
|
40af053d09c2a363333edb837c12110d82f320be
|
[
"MIT"
] |
permissive
|
haytastan/Hackerrank_Java
|
a4bc801a463280d8fadca932e3184ae2f5a8ac98
|
f82a8971f6e6c5fdacec2226cc9e7973a48e9611
|
refs/heads/master
| 2023-07-06T09:22:16.930804 | 2021-08-04T01:25:53 | 2021-08-04T01:25:53 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 332 |
java
|
// https://www.hackerrank.com/challenges/java-end-of-file/problem
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
for(int i = 1; scan.hasNext()== true; i++){
System.out.println(i + " " + scan.nextLine());
}
}
}
|
[
"[email protected]"
] | |
45ddf30443ce17a75ded5491e226c1c082742cc8
|
f4bcc7176e2c2b13e3bc3c108e9e2bd2b8dee6d9
|
/src/main/java/com/bcg/dv/challenge/controller/Routes.java
|
9bdb2658e01f3352ec82c64149e3c7b0965c44fc
|
[] |
no_license
|
eaShirkouhi/verspaetung-transport
|
86316a6e7c4a322956796d3aaeff3d4bec5f33cd
|
78becb5528b22028638852ade2318cc73146316b
|
refs/heads/master
| 2020-04-24T09:38:02.553178 | 2019-02-21T16:49:25 | 2019-02-21T16:49:25 | 171,868,226 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 442 |
java
|
package com.bcg.dv.challenge.controller;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class Routes {
static final String GET_IS_VEHICLE_DELAYED = "/vehicles/{lineName}/{time}/delayed";
static final String GET_NEXT_ARRIVING_VEHICLE = "/vehicles/{stopId}/{time}" ;
static final String GET_VEHICLE_BY_COORDINATE_AND_TIME = "/vehicles/{x}/{y}/{time}";
}
|
[
"[email protected]"
] | |
60bfc0e8da2b10c5906ce26bd3c20c9fd7b604f1
|
8093cda764d7c5c076e109e9f92982dc9e384e4b
|
/Athleticum/Athleticum.Android/obj/Debug/android/android/support/design/R.java
|
8a541b7dc2e75eb0e76f4d2cd8255d8cd99ebf0a
|
[] |
no_license
|
Athleticum/MobileApplication
|
3b937f5f85f94928f6f497131149d0f91289a953
|
0a6df115deea494ed1211d138dd008296b450c52
|
refs/heads/master
| 2021-09-02T16:34:19.437087 | 2018-01-03T16:49:18 | 2018-01-03T16:49:18 | 112,876,221 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 687,151 |
java
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.design;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
public static final int design_bottom_sheet_slide_in=0x7f04000a;
public static final int design_bottom_sheet_slide_out=0x7f04000b;
public static final int design_snackbar_in=0x7f04000c;
public static final int design_snackbar_out=0x7f04000d;
public static final int tooltip_enter=0x7f04000e;
public static final int tooltip_exit=0x7f04000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f050000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f010065;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f01006d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f010064;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f0100df;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f0100b3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100b5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100cb;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100cc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static final int alphabeticModifiers=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeMaxTextSize=0x7f010054;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeMinTextSize=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoSizePresetSizes=0x7f010052;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeStepGranularity=0x7f010051;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int autoSizeTextType=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f01002e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f010030;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f01002f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f010116;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100d5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f010141;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f01014a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=0x7f01011d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_skipCollapsed=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f01013f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f010087;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100bc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100cd;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100ce;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardBackgroundColor=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardCornerRadius=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardElevation=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardMaxElevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardPreventCornerOverlap=0x7f01001c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardUseCompatPadding=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f010040;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f01010c;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f01012c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f010126;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100cf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f0100b1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f0100ae;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f0100ac;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100ad;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f0100ab;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorError=0x7f0100ca;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f0100f3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentDescription=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f01003b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPadding=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingBottom=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingLeft=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingRight=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingTop=0x7f010020;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f0100b0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f010160;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f010161;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f010162;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f010031;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f01007f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f01008d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f01008c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f010094;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100bf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f01003e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int errorEnabled=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f01015f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f010042;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010118;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=0x7f010121;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int externalRouteEnabledDrawable=0x7f010015;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f01013d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int font=0x7f010171;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontFamily=0x7f010055;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderAuthority=0x7f01016a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fontProviderCerts=0x7f01016d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fontProviderFetchStrategy=0x7f01016e;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int fontProviderFetchTimeout=0x7f01016f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderPackage=0x7f01016b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderQuery=0x7f01016c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fontStyle=0x7f010170;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontWeight=0x7f010172;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f010148;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010023;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010037;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f010164;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f01015c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f01002b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int iconTintMode=0x7f0100e3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f010034;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f010041;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f010149;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=0x7f010146;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f010147;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=0x7f010145;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100ea;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f010134;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f010136;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f010133;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f01012f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f010130;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f010138;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f010137;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f010135;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=0x7f01011b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f010044;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f0100a0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f01009c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f01009b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f01009d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f01002c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f010110;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteAudioTrackDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteButtonStyle=0x7f01000a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int mediaRouteButtonTint=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteCloseDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteControlPanelThemeOverlay=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteDefaultIconDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePauseDrawable=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePlayDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerGroupIconDrawable=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerIconDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteStopDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTheme=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTvIconDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f01010e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010026;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static final int numericModifiers=0x7f0100db;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f010114;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f010113;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f0100a5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f010167;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f010166;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010165;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f010168;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=0x7f010169;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f010091;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f010092;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010035;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f0100f5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f01013c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimVisibleHeightTrigger=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f01008a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f0100dc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f0100d8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010046;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f010049;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100e7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f010119;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int statusBarBackground=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100f6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f010103;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f01014f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f01014e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f010151;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f01014c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f010153;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f010152;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f010150;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010157;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f010158;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f010154;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010155;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f01007d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0100b6;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorError=0x7f01013b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f0100f7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f01004c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f01004d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f01004e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tint=0x7f01004a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f01004b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f010102;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f01008f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int tooltipForegroundColor=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tooltipFrameBackground=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tooltipText=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f0100f9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f0100fa;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f0100fb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=0x7f010140;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100f2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f010056;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010059;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f01005d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f01005a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f01005c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f01005f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f010057;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0d0000;
public static final int abc_allow_stacked_button_bar=0x7f0d0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0c004b;
public static final int abc_background_cache_hint_selector_material_light=0x7f0c004c;
public static final int abc_btn_colored_borderless_text_material=0x7f0c004d;
public static final int abc_btn_colored_text_material=0x7f0c004e;
public static final int abc_color_highlight_material=0x7f0c004f;
public static final int abc_hint_foreground_material_dark=0x7f0c0050;
public static final int abc_hint_foreground_material_light=0x7f0c0051;
public static final int abc_input_method_navigation_guard=0x7f0c0004;
public static final int abc_primary_text_disable_only_material_dark=0x7f0c0052;
public static final int abc_primary_text_disable_only_material_light=0x7f0c0053;
public static final int abc_primary_text_material_dark=0x7f0c0054;
public static final int abc_primary_text_material_light=0x7f0c0055;
public static final int abc_search_url_text=0x7f0c0056;
public static final int abc_search_url_text_normal=0x7f0c0005;
public static final int abc_search_url_text_pressed=0x7f0c0006;
public static final int abc_search_url_text_selected=0x7f0c0007;
public static final int abc_secondary_text_material_dark=0x7f0c0057;
public static final int abc_secondary_text_material_light=0x7f0c0058;
public static final int abc_tint_btn_checkable=0x7f0c0059;
public static final int abc_tint_default=0x7f0c005a;
public static final int abc_tint_edittext=0x7f0c005b;
public static final int abc_tint_seek_thumb=0x7f0c005c;
public static final int abc_tint_spinner=0x7f0c005d;
public static final int abc_tint_switch_track=0x7f0c005e;
public static final int accent_material_dark=0x7f0c0008;
public static final int accent_material_light=0x7f0c0009;
public static final int background_floating_material_dark=0x7f0c000a;
public static final int background_floating_material_light=0x7f0c000b;
public static final int background_material_dark=0x7f0c000c;
public static final int background_material_light=0x7f0c000d;
public static final int bright_foreground_disabled_material_dark=0x7f0c000e;
public static final int bright_foreground_disabled_material_light=0x7f0c000f;
public static final int bright_foreground_inverse_material_dark=0x7f0c0010;
public static final int bright_foreground_inverse_material_light=0x7f0c0011;
public static final int bright_foreground_material_dark=0x7f0c0012;
public static final int bright_foreground_material_light=0x7f0c0013;
public static final int button_material_dark=0x7f0c0014;
public static final int button_material_light=0x7f0c0015;
public static final int cardview_dark_background=0x7f0c0000;
public static final int cardview_light_background=0x7f0c0001;
public static final int cardview_shadow_end_color=0x7f0c0002;
public static final int cardview_shadow_start_color=0x7f0c0003;
public static final int design_bottom_navigation_shadow_color=0x7f0c0040;
public static final int design_error=0x7f0c005f;
public static final int design_fab_shadow_end_color=0x7f0c0041;
public static final int design_fab_shadow_mid_color=0x7f0c0042;
public static final int design_fab_shadow_start_color=0x7f0c0043;
public static final int design_fab_stroke_end_inner_color=0x7f0c0044;
public static final int design_fab_stroke_end_outer_color=0x7f0c0045;
public static final int design_fab_stroke_top_inner_color=0x7f0c0046;
public static final int design_fab_stroke_top_outer_color=0x7f0c0047;
public static final int design_snackbar_background_color=0x7f0c0048;
public static final int design_tint_password_toggle=0x7f0c0060;
public static final int dim_foreground_disabled_material_dark=0x7f0c0016;
public static final int dim_foreground_disabled_material_light=0x7f0c0017;
public static final int dim_foreground_material_dark=0x7f0c0018;
public static final int dim_foreground_material_light=0x7f0c0019;
public static final int error_color_material=0x7f0c001a;
public static final int foreground_material_dark=0x7f0c001b;
public static final int foreground_material_light=0x7f0c001c;
public static final int highlighted_text_material_dark=0x7f0c001d;
public static final int highlighted_text_material_light=0x7f0c001e;
public static final int material_blue_grey_800=0x7f0c001f;
public static final int material_blue_grey_900=0x7f0c0020;
public static final int material_blue_grey_950=0x7f0c0021;
public static final int material_deep_teal_200=0x7f0c0022;
public static final int material_deep_teal_500=0x7f0c0023;
public static final int material_grey_100=0x7f0c0024;
public static final int material_grey_300=0x7f0c0025;
public static final int material_grey_50=0x7f0c0026;
public static final int material_grey_600=0x7f0c0027;
public static final int material_grey_800=0x7f0c0028;
public static final int material_grey_850=0x7f0c0029;
public static final int material_grey_900=0x7f0c002a;
public static final int notification_action_color_filter=0x7f0c0049;
public static final int notification_icon_bg_color=0x7f0c004a;
public static final int notification_material_background_media_default_color=0x7f0c003f;
public static final int primary_dark_material_dark=0x7f0c002b;
public static final int primary_dark_material_light=0x7f0c002c;
public static final int primary_material_dark=0x7f0c002d;
public static final int primary_material_light=0x7f0c002e;
public static final int primary_text_default_material_dark=0x7f0c002f;
public static final int primary_text_default_material_light=0x7f0c0030;
public static final int primary_text_disabled_material_dark=0x7f0c0031;
public static final int primary_text_disabled_material_light=0x7f0c0032;
public static final int ripple_material_dark=0x7f0c0033;
public static final int ripple_material_light=0x7f0c0034;
public static final int secondary_text_default_material_dark=0x7f0c0035;
public static final int secondary_text_default_material_light=0x7f0c0036;
public static final int secondary_text_disabled_material_dark=0x7f0c0037;
public static final int secondary_text_disabled_material_light=0x7f0c0038;
public static final int switch_thumb_disabled_material_dark=0x7f0c0039;
public static final int switch_thumb_disabled_material_light=0x7f0c003a;
public static final int switch_thumb_material_dark=0x7f0c0061;
public static final int switch_thumb_material_light=0x7f0c0062;
public static final int switch_thumb_normal_material_dark=0x7f0c003b;
public static final int switch_thumb_normal_material_light=0x7f0c003c;
public static final int tooltip_background_dark=0x7f0c003d;
public static final int tooltip_background_light=0x7f0c003e;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f07001b;
public static final int abc_action_bar_content_inset_with_nav=0x7f07001c;
public static final int abc_action_bar_default_height_material=0x7f070010;
public static final int abc_action_bar_default_padding_end_material=0x7f07001d;
public static final int abc_action_bar_default_padding_start_material=0x7f07001e;
public static final int abc_action_bar_elevation_material=0x7f070020;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070021;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070022;
public static final int abc_action_bar_overflow_padding_start_material=0x7f070023;
public static final int abc_action_bar_progress_bar_size=0x7f070011;
public static final int abc_action_bar_stacked_max_height=0x7f070024;
public static final int abc_action_bar_stacked_tab_max_width=0x7f070025;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070026;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f070027;
public static final int abc_action_button_min_height_material=0x7f070028;
public static final int abc_action_button_min_width_material=0x7f070029;
public static final int abc_action_button_min_width_overflow_material=0x7f07002a;
public static final int abc_alert_dialog_button_bar_height=0x7f07000f;
public static final int abc_button_inset_horizontal_material=0x7f07002b;
public static final int abc_button_inset_vertical_material=0x7f07002c;
public static final int abc_button_padding_horizontal_material=0x7f07002d;
public static final int abc_button_padding_vertical_material=0x7f07002e;
public static final int abc_cascading_menus_min_smallest_width=0x7f07002f;
public static final int abc_config_prefDialogWidth=0x7f070014;
public static final int abc_control_corner_material=0x7f070030;
public static final int abc_control_inset_material=0x7f070031;
public static final int abc_control_padding_material=0x7f070032;
public static final int abc_dialog_fixed_height_major=0x7f070015;
public static final int abc_dialog_fixed_height_minor=0x7f070016;
public static final int abc_dialog_fixed_width_major=0x7f070017;
public static final int abc_dialog_fixed_width_minor=0x7f070018;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070033;
public static final int abc_dialog_list_padding_top_no_title=0x7f070034;
public static final int abc_dialog_min_width_major=0x7f070019;
public static final int abc_dialog_min_width_minor=0x7f07001a;
public static final int abc_dialog_padding_material=0x7f070035;
public static final int abc_dialog_padding_top_material=0x7f070036;
public static final int abc_dialog_title_divider_material=0x7f070037;
public static final int abc_disabled_alpha_material_dark=0x7f070038;
public static final int abc_disabled_alpha_material_light=0x7f070039;
public static final int abc_dropdownitem_icon_width=0x7f07003a;
public static final int abc_dropdownitem_text_padding_left=0x7f07003b;
public static final int abc_dropdownitem_text_padding_right=0x7f07003c;
public static final int abc_edit_text_inset_bottom_material=0x7f07003d;
public static final int abc_edit_text_inset_horizontal_material=0x7f07003e;
public static final int abc_edit_text_inset_top_material=0x7f07003f;
public static final int abc_floating_window_z=0x7f070040;
public static final int abc_list_item_padding_horizontal_material=0x7f070041;
public static final int abc_panel_menu_list_width=0x7f070042;
public static final int abc_progress_bar_height_material=0x7f070043;
public static final int abc_search_view_preferred_height=0x7f070044;
public static final int abc_search_view_preferred_width=0x7f070045;
public static final int abc_seekbar_track_background_height_material=0x7f070046;
public static final int abc_seekbar_track_progress_height_material=0x7f070047;
public static final int abc_select_dialog_padding_start_material=0x7f070048;
public static final int abc_switch_padding=0x7f07001f;
public static final int abc_text_size_body_1_material=0x7f070049;
public static final int abc_text_size_body_2_material=0x7f07004a;
public static final int abc_text_size_button_material=0x7f07004b;
public static final int abc_text_size_caption_material=0x7f07004c;
public static final int abc_text_size_display_1_material=0x7f07004d;
public static final int abc_text_size_display_2_material=0x7f07004e;
public static final int abc_text_size_display_3_material=0x7f07004f;
public static final int abc_text_size_display_4_material=0x7f070050;
public static final int abc_text_size_headline_material=0x7f070051;
public static final int abc_text_size_large_material=0x7f070052;
public static final int abc_text_size_medium_material=0x7f070053;
public static final int abc_text_size_menu_header_material=0x7f070054;
public static final int abc_text_size_menu_material=0x7f070055;
public static final int abc_text_size_small_material=0x7f070056;
public static final int abc_text_size_subhead_material=0x7f070057;
public static final int abc_text_size_subtitle_material_toolbar=0x7f070012;
public static final int abc_text_size_title_material=0x7f070058;
public static final int abc_text_size_title_material_toolbar=0x7f070013;
public static final int cardview_compat_inset_shadow=0x7f07000c;
public static final int cardview_default_elevation=0x7f07000d;
public static final int cardview_default_radius=0x7f07000e;
public static final int compat_button_inset_horizontal_material=0x7f070094;
public static final int compat_button_inset_vertical_material=0x7f070095;
public static final int compat_button_padding_horizontal_material=0x7f070096;
public static final int compat_button_padding_vertical_material=0x7f070097;
public static final int compat_control_corner_material=0x7f070098;
public static final int design_appbar_elevation=0x7f070072;
public static final int design_bottom_navigation_active_item_max_width=0x7f070073;
public static final int design_bottom_navigation_active_text_size=0x7f070074;
public static final int design_bottom_navigation_elevation=0x7f070075;
public static final int design_bottom_navigation_height=0x7f070076;
public static final int design_bottom_navigation_item_max_width=0x7f070077;
public static final int design_bottom_navigation_item_min_width=0x7f070078;
public static final int design_bottom_navigation_margin=0x7f070079;
public static final int design_bottom_navigation_shadow_height=0x7f07007a;
public static final int design_bottom_navigation_text_size=0x7f07007b;
public static final int design_bottom_sheet_modal_elevation=0x7f07007c;
public static final int design_bottom_sheet_peek_height_min=0x7f07007d;
public static final int design_fab_border_width=0x7f07007e;
public static final int design_fab_elevation=0x7f07007f;
public static final int design_fab_image_size=0x7f070080;
public static final int design_fab_size_mini=0x7f070081;
public static final int design_fab_size_normal=0x7f070082;
public static final int design_fab_translation_z_pressed=0x7f070083;
public static final int design_navigation_elevation=0x7f070084;
public static final int design_navigation_icon_padding=0x7f070085;
public static final int design_navigation_icon_size=0x7f070086;
public static final int design_navigation_max_width=0x7f07006a;
public static final int design_navigation_padding_bottom=0x7f070087;
public static final int design_navigation_separator_vertical_padding=0x7f070088;
public static final int design_snackbar_action_inline_max_width=0x7f07006b;
public static final int design_snackbar_background_corner_radius=0x7f07006c;
public static final int design_snackbar_elevation=0x7f070089;
public static final int design_snackbar_extra_spacing_horizontal=0x7f07006d;
public static final int design_snackbar_max_width=0x7f07006e;
public static final int design_snackbar_min_width=0x7f07006f;
public static final int design_snackbar_padding_horizontal=0x7f07008a;
public static final int design_snackbar_padding_vertical=0x7f07008b;
public static final int design_snackbar_padding_vertical_2lines=0x7f070070;
public static final int design_snackbar_text_size=0x7f07008c;
public static final int design_tab_max_width=0x7f07008d;
public static final int design_tab_scrollable_min_width=0x7f070071;
public static final int design_tab_text_size=0x7f07008e;
public static final int design_tab_text_size_2line=0x7f07008f;
public static final int disabled_alpha_material_dark=0x7f070059;
public static final int disabled_alpha_material_light=0x7f07005a;
public static final int fastscroll_default_thickness=0x7f070000;
public static final int fastscroll_margin=0x7f070001;
public static final int fastscroll_minimum_range=0x7f070002;
public static final int highlight_alpha_material_colored=0x7f07005b;
public static final int highlight_alpha_material_dark=0x7f07005c;
public static final int highlight_alpha_material_light=0x7f07005d;
public static final int hint_alpha_material_dark=0x7f07005e;
public static final int hint_alpha_material_light=0x7f07005f;
public static final int hint_pressed_alpha_material_dark=0x7f070060;
public static final int hint_pressed_alpha_material_light=0x7f070061;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070005;
public static final int mr_controller_volume_group_list_item_height=0x7f070006;
public static final int mr_controller_volume_group_list_item_icon_size=0x7f070007;
public static final int mr_controller_volume_group_list_max_height=0x7f070008;
public static final int mr_controller_volume_group_list_padding_top=0x7f07000b;
public static final int mr_dialog_fixed_width_major=0x7f070009;
public static final int mr_dialog_fixed_width_minor=0x7f07000a;
public static final int notification_action_icon_size=0x7f070099;
public static final int notification_action_text_size=0x7f07009a;
public static final int notification_big_circle_margin=0x7f07009b;
public static final int notification_content_margin_start=0x7f070091;
public static final int notification_large_icon_height=0x7f07009c;
public static final int notification_large_icon_width=0x7f07009d;
public static final int notification_main_column_padding_top=0x7f070092;
public static final int notification_media_narrow_margin=0x7f070093;
public static final int notification_right_icon_size=0x7f07009e;
public static final int notification_right_side_padding_top=0x7f070090;
public static final int notification_small_icon_background_padding=0x7f07009f;
public static final int notification_small_icon_size_as_large=0x7f0700a0;
public static final int notification_subtext_size=0x7f0700a1;
public static final int notification_top_pad=0x7f0700a2;
public static final int notification_top_pad_large_text=0x7f0700a3;
public static final int tooltip_corner_radius=0x7f070062;
public static final int tooltip_horizontal_padding=0x7f070063;
public static final int tooltip_margin=0x7f070064;
public static final int tooltip_precise_anchor_extra_offset=0x7f070065;
public static final int tooltip_precise_anchor_threshold=0x7f070066;
public static final int tooltip_vertical_padding=0x7f070067;
public static final int tooltip_y_offset_non_touch=0x7f070068;
public static final int tooltip_y_offset_touch=0x7f070069;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int avd_hide_password=0x7f020053;
public static final int avd_hide_password_1=0x7f020130;
public static final int avd_hide_password_2=0x7f020131;
public static final int avd_hide_password_3=0x7f020132;
public static final int avd_show_password=0x7f020054;
public static final int avd_show_password_1=0x7f020133;
public static final int avd_show_password_2=0x7f020134;
public static final int avd_show_password_3=0x7f020135;
public static final int design_bottom_navigation_item_background=0x7f020055;
public static final int design_fab_background=0x7f020056;
public static final int design_ic_visibility=0x7f020057;
public static final int design_ic_visibility_off=0x7f020058;
public static final int design_password_eye=0x7f020059;
public static final int design_snackbar_background=0x7f02005a;
public static final int ic_audiotrack_dark=0x7f02005b;
public static final int ic_audiotrack_light=0x7f02005c;
public static final int ic_dialog_close_dark=0x7f02005d;
public static final int ic_dialog_close_light=0x7f02005e;
public static final int ic_group_collapse_00=0x7f02005f;
public static final int ic_group_collapse_01=0x7f020060;
public static final int ic_group_collapse_02=0x7f020061;
public static final int ic_group_collapse_03=0x7f020062;
public static final int ic_group_collapse_04=0x7f020063;
public static final int ic_group_collapse_05=0x7f020064;
public static final int ic_group_collapse_06=0x7f020065;
public static final int ic_group_collapse_07=0x7f020066;
public static final int ic_group_collapse_08=0x7f020067;
public static final int ic_group_collapse_09=0x7f020068;
public static final int ic_group_collapse_10=0x7f020069;
public static final int ic_group_collapse_11=0x7f02006a;
public static final int ic_group_collapse_12=0x7f02006b;
public static final int ic_group_collapse_13=0x7f02006c;
public static final int ic_group_collapse_14=0x7f02006d;
public static final int ic_group_collapse_15=0x7f02006e;
public static final int ic_group_expand_00=0x7f02006f;
public static final int ic_group_expand_01=0x7f020070;
public static final int ic_group_expand_02=0x7f020071;
public static final int ic_group_expand_03=0x7f020072;
public static final int ic_group_expand_04=0x7f020073;
public static final int ic_group_expand_05=0x7f020074;
public static final int ic_group_expand_06=0x7f020075;
public static final int ic_group_expand_07=0x7f020076;
public static final int ic_group_expand_08=0x7f020077;
public static final int ic_group_expand_09=0x7f020078;
public static final int ic_group_expand_10=0x7f020079;
public static final int ic_group_expand_11=0x7f02007a;
public static final int ic_group_expand_12=0x7f02007b;
public static final int ic_group_expand_13=0x7f02007c;
public static final int ic_group_expand_14=0x7f02007d;
public static final int ic_group_expand_15=0x7f02007e;
public static final int ic_media_pause_dark=0x7f02007f;
public static final int ic_media_pause_light=0x7f020080;
public static final int ic_media_play_dark=0x7f020081;
public static final int ic_media_play_light=0x7f020082;
public static final int ic_media_stop_dark=0x7f020083;
public static final int ic_media_stop_light=0x7f020084;
public static final int ic_mr_button_connected_00_dark=0x7f020085;
public static final int ic_mr_button_connected_00_light=0x7f020086;
public static final int ic_mr_button_connected_01_dark=0x7f020087;
public static final int ic_mr_button_connected_01_light=0x7f020088;
public static final int ic_mr_button_connected_02_dark=0x7f020089;
public static final int ic_mr_button_connected_02_light=0x7f02008a;
public static final int ic_mr_button_connected_03_dark=0x7f02008b;
public static final int ic_mr_button_connected_03_light=0x7f02008c;
public static final int ic_mr_button_connected_04_dark=0x7f02008d;
public static final int ic_mr_button_connected_04_light=0x7f02008e;
public static final int ic_mr_button_connected_05_dark=0x7f02008f;
public static final int ic_mr_button_connected_05_light=0x7f020090;
public static final int ic_mr_button_connected_06_dark=0x7f020091;
public static final int ic_mr_button_connected_06_light=0x7f020092;
public static final int ic_mr_button_connected_07_dark=0x7f020093;
public static final int ic_mr_button_connected_07_light=0x7f020094;
public static final int ic_mr_button_connected_08_dark=0x7f020095;
public static final int ic_mr_button_connected_08_light=0x7f020096;
public static final int ic_mr_button_connected_09_dark=0x7f020097;
public static final int ic_mr_button_connected_09_light=0x7f020098;
public static final int ic_mr_button_connected_10_dark=0x7f020099;
public static final int ic_mr_button_connected_10_light=0x7f02009a;
public static final int ic_mr_button_connected_11_dark=0x7f02009b;
public static final int ic_mr_button_connected_11_light=0x7f02009c;
public static final int ic_mr_button_connected_12_dark=0x7f02009d;
public static final int ic_mr_button_connected_12_light=0x7f02009e;
public static final int ic_mr_button_connected_13_dark=0x7f02009f;
public static final int ic_mr_button_connected_13_light=0x7f0200a0;
public static final int ic_mr_button_connected_14_dark=0x7f0200a1;
public static final int ic_mr_button_connected_14_light=0x7f0200a2;
public static final int ic_mr_button_connected_15_dark=0x7f0200a3;
public static final int ic_mr_button_connected_15_light=0x7f0200a4;
public static final int ic_mr_button_connected_16_dark=0x7f0200a5;
public static final int ic_mr_button_connected_16_light=0x7f0200a6;
public static final int ic_mr_button_connected_17_dark=0x7f0200a7;
public static final int ic_mr_button_connected_17_light=0x7f0200a8;
public static final int ic_mr_button_connected_18_dark=0x7f0200a9;
public static final int ic_mr_button_connected_18_light=0x7f0200aa;
public static final int ic_mr_button_connected_19_dark=0x7f0200ab;
public static final int ic_mr_button_connected_19_light=0x7f0200ac;
public static final int ic_mr_button_connected_20_dark=0x7f0200ad;
public static final int ic_mr_button_connected_20_light=0x7f0200ae;
public static final int ic_mr_button_connected_21_dark=0x7f0200af;
public static final int ic_mr_button_connected_21_light=0x7f0200b0;
public static final int ic_mr_button_connected_22_dark=0x7f0200b1;
public static final int ic_mr_button_connected_22_light=0x7f0200b2;
public static final int ic_mr_button_connected_23_dark=0x7f0200b3;
public static final int ic_mr_button_connected_23_light=0x7f0200b4;
public static final int ic_mr_button_connected_24_dark=0x7f0200b5;
public static final int ic_mr_button_connected_24_light=0x7f0200b6;
public static final int ic_mr_button_connected_25_dark=0x7f0200b7;
public static final int ic_mr_button_connected_25_light=0x7f0200b8;
public static final int ic_mr_button_connected_26_dark=0x7f0200b9;
public static final int ic_mr_button_connected_26_light=0x7f0200ba;
public static final int ic_mr_button_connected_27_dark=0x7f0200bb;
public static final int ic_mr_button_connected_27_light=0x7f0200bc;
public static final int ic_mr_button_connected_28_dark=0x7f0200bd;
public static final int ic_mr_button_connected_28_light=0x7f0200be;
public static final int ic_mr_button_connected_29_dark=0x7f0200bf;
public static final int ic_mr_button_connected_29_light=0x7f0200c0;
public static final int ic_mr_button_connected_30_dark=0x7f0200c1;
public static final int ic_mr_button_connected_30_light=0x7f0200c2;
public static final int ic_mr_button_connecting_00_dark=0x7f0200c3;
public static final int ic_mr_button_connecting_00_light=0x7f0200c4;
public static final int ic_mr_button_connecting_01_dark=0x7f0200c5;
public static final int ic_mr_button_connecting_01_light=0x7f0200c6;
public static final int ic_mr_button_connecting_02_dark=0x7f0200c7;
public static final int ic_mr_button_connecting_02_light=0x7f0200c8;
public static final int ic_mr_button_connecting_03_dark=0x7f0200c9;
public static final int ic_mr_button_connecting_03_light=0x7f0200ca;
public static final int ic_mr_button_connecting_04_dark=0x7f0200cb;
public static final int ic_mr_button_connecting_04_light=0x7f0200cc;
public static final int ic_mr_button_connecting_05_dark=0x7f0200cd;
public static final int ic_mr_button_connecting_05_light=0x7f0200ce;
public static final int ic_mr_button_connecting_06_dark=0x7f0200cf;
public static final int ic_mr_button_connecting_06_light=0x7f0200d0;
public static final int ic_mr_button_connecting_07_dark=0x7f0200d1;
public static final int ic_mr_button_connecting_07_light=0x7f0200d2;
public static final int ic_mr_button_connecting_08_dark=0x7f0200d3;
public static final int ic_mr_button_connecting_08_light=0x7f0200d4;
public static final int ic_mr_button_connecting_09_dark=0x7f0200d5;
public static final int ic_mr_button_connecting_09_light=0x7f0200d6;
public static final int ic_mr_button_connecting_10_dark=0x7f0200d7;
public static final int ic_mr_button_connecting_10_light=0x7f0200d8;
public static final int ic_mr_button_connecting_11_dark=0x7f0200d9;
public static final int ic_mr_button_connecting_11_light=0x7f0200da;
public static final int ic_mr_button_connecting_12_dark=0x7f0200db;
public static final int ic_mr_button_connecting_12_light=0x7f0200dc;
public static final int ic_mr_button_connecting_13_dark=0x7f0200dd;
public static final int ic_mr_button_connecting_13_light=0x7f0200de;
public static final int ic_mr_button_connecting_14_dark=0x7f0200df;
public static final int ic_mr_button_connecting_14_light=0x7f0200e0;
public static final int ic_mr_button_connecting_15_dark=0x7f0200e1;
public static final int ic_mr_button_connecting_15_light=0x7f0200e2;
public static final int ic_mr_button_connecting_16_dark=0x7f0200e3;
public static final int ic_mr_button_connecting_16_light=0x7f0200e4;
public static final int ic_mr_button_connecting_17_dark=0x7f0200e5;
public static final int ic_mr_button_connecting_17_light=0x7f0200e6;
public static final int ic_mr_button_connecting_18_dark=0x7f0200e7;
public static final int ic_mr_button_connecting_18_light=0x7f0200e8;
public static final int ic_mr_button_connecting_19_dark=0x7f0200e9;
public static final int ic_mr_button_connecting_19_light=0x7f0200ea;
public static final int ic_mr_button_connecting_20_dark=0x7f0200eb;
public static final int ic_mr_button_connecting_20_light=0x7f0200ec;
public static final int ic_mr_button_connecting_21_dark=0x7f0200ed;
public static final int ic_mr_button_connecting_21_light=0x7f0200ee;
public static final int ic_mr_button_connecting_22_dark=0x7f0200ef;
public static final int ic_mr_button_connecting_22_light=0x7f0200f0;
public static final int ic_mr_button_connecting_23_dark=0x7f0200f1;
public static final int ic_mr_button_connecting_23_light=0x7f0200f2;
public static final int ic_mr_button_connecting_24_dark=0x7f0200f3;
public static final int ic_mr_button_connecting_24_light=0x7f0200f4;
public static final int ic_mr_button_connecting_25_dark=0x7f0200f5;
public static final int ic_mr_button_connecting_25_light=0x7f0200f6;
public static final int ic_mr_button_connecting_26_dark=0x7f0200f7;
public static final int ic_mr_button_connecting_26_light=0x7f0200f8;
public static final int ic_mr_button_connecting_27_dark=0x7f0200f9;
public static final int ic_mr_button_connecting_27_light=0x7f0200fa;
public static final int ic_mr_button_connecting_28_dark=0x7f0200fb;
public static final int ic_mr_button_connecting_28_light=0x7f0200fc;
public static final int ic_mr_button_connecting_29_dark=0x7f0200fd;
public static final int ic_mr_button_connecting_29_light=0x7f0200fe;
public static final int ic_mr_button_connecting_30_dark=0x7f0200ff;
public static final int ic_mr_button_connecting_30_light=0x7f020100;
public static final int ic_mr_button_disabled_dark=0x7f020101;
public static final int ic_mr_button_disabled_light=0x7f020102;
public static final int ic_mr_button_disconnected_dark=0x7f020103;
public static final int ic_mr_button_disconnected_light=0x7f020104;
public static final int ic_mr_button_grey=0x7f020105;
public static final int ic_vol_type_speaker_dark=0x7f020106;
public static final int ic_vol_type_speaker_group_dark=0x7f020107;
public static final int ic_vol_type_speaker_group_light=0x7f020108;
public static final int ic_vol_type_speaker_light=0x7f020109;
public static final int ic_vol_type_tv_dark=0x7f02010a;
public static final int ic_vol_type_tv_light=0x7f02010b;
public static final int icon=0x7f02010c;
public static final int mr_button_connected_dark=0x7f02010d;
public static final int mr_button_connected_light=0x7f02010e;
public static final int mr_button_connecting_dark=0x7f02010f;
public static final int mr_button_connecting_light=0x7f020110;
public static final int mr_button_dark=0x7f020111;
public static final int mr_button_light=0x7f020112;
public static final int mr_dialog_close_dark=0x7f020113;
public static final int mr_dialog_close_light=0x7f020114;
public static final int mr_dialog_material_background_dark=0x7f020115;
public static final int mr_dialog_material_background_light=0x7f020116;
public static final int mr_group_collapse=0x7f020117;
public static final int mr_group_expand=0x7f020118;
public static final int mr_media_pause_dark=0x7f020119;
public static final int mr_media_pause_light=0x7f02011a;
public static final int mr_media_play_dark=0x7f02011b;
public static final int mr_media_play_light=0x7f02011c;
public static final int mr_media_stop_dark=0x7f02011d;
public static final int mr_media_stop_light=0x7f02011e;
public static final int mr_vol_type_audiotrack_dark=0x7f02011f;
public static final int mr_vol_type_audiotrack_light=0x7f020120;
public static final int navigation_empty_icon=0x7f020121;
public static final int notification_action_background=0x7f020122;
public static final int notification_bg=0x7f020123;
public static final int notification_bg_low=0x7f020124;
public static final int notification_bg_low_normal=0x7f020125;
public static final int notification_bg_low_pressed=0x7f020126;
public static final int notification_bg_normal=0x7f020127;
public static final int notification_bg_normal_pressed=0x7f020128;
public static final int notification_icon_background=0x7f020129;
public static final int notification_template_icon_bg=0x7f02012e;
public static final int notification_template_icon_low_bg=0x7f02012f;
public static final int notification_tile_bg=0x7f02012a;
public static final int notify_panel_notification_icon_bg=0x7f02012b;
public static final int tooltip_frame_dark=0x7f02012c;
public static final int tooltip_frame_light=0x7f02012d;
}
public static final class id {
public static final int ALT=0x7f080031;
public static final int CTRL=0x7f080032;
public static final int FUNCTION=0x7f080033;
public static final int META=0x7f080034;
public static final int SHIFT=0x7f080035;
public static final int SYM=0x7f080036;
public static final int action0=0x7f0800b5;
public static final int action_bar=0x7f08007b;
public static final int action_bar_activity_content=0x7f080001;
public static final int action_bar_container=0x7f08007a;
public static final int action_bar_root=0x7f080076;
public static final int action_bar_spinner=0x7f080002;
public static final int action_bar_subtitle=0x7f08005a;
public static final int action_bar_title=0x7f080059;
public static final int action_container=0x7f0800b2;
public static final int action_context_bar=0x7f08007c;
public static final int action_divider=0x7f0800b9;
public static final int action_image=0x7f0800b3;
public static final int action_menu_divider=0x7f080003;
public static final int action_menu_presenter=0x7f080004;
public static final int action_mode_bar=0x7f080078;
public static final int action_mode_bar_stub=0x7f080077;
public static final int action_mode_close_button=0x7f08005b;
public static final int action_text=0x7f0800b4;
public static final int actions=0x7f0800c2;
public static final int activity_chooser_view_content=0x7f08005c;
public static final int add=0x7f08002b;
public static final int alertTitle=0x7f08006f;
public static final int all=0x7f080051;
public static final int always=0x7f080037;
public static final int async=0x7f080055;
public static final int auto=0x7f080043;
public static final int beginning=0x7f08002e;
public static final int blocking=0x7f080056;
public static final int bottom=0x7f08003c;
public static final int buttonPanel=0x7f080062;
public static final int cancel_action=0x7f0800b6;
public static final int center=0x7f080044;
public static final int center_horizontal=0x7f080045;
public static final int center_vertical=0x7f080046;
public static final int checkbox=0x7f080072;
public static final int chronometer=0x7f0800be;
public static final int clip_horizontal=0x7f08004d;
public static final int clip_vertical=0x7f08004e;
public static final int collapseActionView=0x7f080038;
public static final int container=0x7f08008c;
public static final int contentPanel=0x7f080065;
public static final int coordinator=0x7f08008d;
public static final int custom=0x7f08006c;
public static final int customPanel=0x7f08006b;
public static final int decor_content_parent=0x7f080079;
public static final int default_activity_button=0x7f08005f;
public static final int design_bottom_sheet=0x7f08008f;
public static final int design_menu_item_action_area=0x7f080096;
public static final int design_menu_item_action_area_stub=0x7f080095;
public static final int design_menu_item_text=0x7f080094;
public static final int design_navigation_view=0x7f080093;
public static final int disableHome=0x7f08001f;
public static final int edit_query=0x7f08007d;
public static final int end=0x7f08002f;
public static final int end_padder=0x7f0800c4;
public static final int enterAlways=0x7f08003e;
public static final int enterAlwaysCollapsed=0x7f08003f;
public static final int exitUntilCollapsed=0x7f080040;
public static final int expand_activities_button=0x7f08005d;
public static final int expanded_menu=0x7f080071;
public static final int fill=0x7f08004f;
public static final int fill_horizontal=0x7f080050;
public static final int fill_vertical=0x7f080047;
public static final int fixed=0x7f080053;
public static final int forever=0x7f080057;
public static final int ghost_view=0x7f08000a;
public static final int home=0x7f080005;
public static final int homeAsUp=0x7f080020;
public static final int icon=0x7f080061;
public static final int icon_group=0x7f0800c3;
public static final int ifRoom=0x7f080039;
public static final int image=0x7f08005e;
public static final int info=0x7f0800bf;
public static final int italic=0x7f080058;
public static final int item_touch_helper_previous_elevation=0x7f080000;
public static final int largeLabel=0x7f08008b;
public static final int left=0x7f080048;
public static final int line1=0x7f080017;
public static final int line3=0x7f080018;
public static final int listMode=0x7f08001c;
public static final int list_item=0x7f080060;
public static final int masked=0x7f0800c9;
public static final int media_actions=0x7f0800b8;
public static final int message=0x7f0800c7;
public static final int middle=0x7f080030;
public static final int mini=0x7f080052;
public static final int mr_art=0x7f0800a4;
public static final int mr_chooser_list=0x7f080099;
public static final int mr_chooser_route_desc=0x7f08009c;
public static final int mr_chooser_route_icon=0x7f08009a;
public static final int mr_chooser_route_name=0x7f08009b;
public static final int mr_chooser_title=0x7f080098;
public static final int mr_close=0x7f0800a1;
public static final int mr_control_divider=0x7f0800a7;
public static final int mr_control_playback_ctrl=0x7f0800ad;
public static final int mr_control_subtitle=0x7f0800b0;
public static final int mr_control_title=0x7f0800af;
public static final int mr_control_title_container=0x7f0800ae;
public static final int mr_custom_control=0x7f0800a2;
public static final int mr_default_control=0x7f0800a3;
public static final int mr_dialog_area=0x7f08009e;
public static final int mr_expandable_area=0x7f08009d;
public static final int mr_group_expand_collapse=0x7f0800b1;
public static final int mr_media_main_control=0x7f0800a5;
public static final int mr_name=0x7f0800a0;
public static final int mr_playback_control=0x7f0800a6;
public static final int mr_title_bar=0x7f08009f;
public static final int mr_volume_control=0x7f0800a8;
public static final int mr_volume_group_list=0x7f0800a9;
public static final int mr_volume_item_icon=0x7f0800ab;
public static final int mr_volume_slider=0x7f0800ac;
public static final int multiply=0x7f080026;
public static final int navigation_header_container=0x7f080092;
public static final int never=0x7f08003a;
public static final int none=0x7f080021;
public static final int normal=0x7f08001d;
public static final int notification_background=0x7f0800c1;
public static final int notification_main_column=0x7f0800bb;
public static final int notification_main_column_container=0x7f0800ba;
public static final int parallax=0x7f08004b;
public static final int parentPanel=0x7f080064;
public static final int parent_matrix=0x7f08000b;
public static final int pin=0x7f08004c;
public static final int progress_circular=0x7f080006;
public static final int progress_horizontal=0x7f080007;
public static final int radio=0x7f080074;
public static final int right=0x7f080049;
public static final int right_icon=0x7f0800c0;
public static final int right_side=0x7f0800bc;
public static final int save_image_matrix=0x7f08000c;
public static final int save_non_transition_alpha=0x7f08000d;
public static final int save_scale_type=0x7f08000e;
public static final int screen=0x7f080027;
public static final int scroll=0x7f080041;
public static final int scrollIndicatorDown=0x7f08006a;
public static final int scrollIndicatorUp=0x7f080066;
public static final int scrollView=0x7f080067;
public static final int scrollable=0x7f080054;
public static final int search_badge=0x7f08007f;
public static final int search_bar=0x7f08007e;
public static final int search_button=0x7f080080;
public static final int search_close_btn=0x7f080085;
public static final int search_edit_frame=0x7f080081;
public static final int search_go_btn=0x7f080087;
public static final int search_mag_icon=0x7f080082;
public static final int search_plate=0x7f080083;
public static final int search_src_text=0x7f080084;
public static final int search_voice_btn=0x7f080088;
public static final int select_dialog_listview=0x7f080089;
public static final int shortcut=0x7f080073;
public static final int showCustom=0x7f080022;
public static final int showHome=0x7f080023;
public static final int showTitle=0x7f080024;
public static final int sliding_tabs=0x7f0800c5;
public static final int smallLabel=0x7f08008a;
public static final int snackbar_action=0x7f080091;
public static final int snackbar_text=0x7f080090;
public static final int snap=0x7f080042;
public static final int spacer=0x7f080063;
public static final int split_action_bar=0x7f080008;
public static final int src_atop=0x7f080028;
public static final int src_in=0x7f080029;
public static final int src_over=0x7f08002a;
public static final int start=0x7f08004a;
public static final int status_bar_latest_event_content=0x7f0800b7;
public static final int submenuarrow=0x7f080075;
public static final int submit_area=0x7f080086;
public static final int tabMode=0x7f08001e;
public static final int text=0x7f080019;
public static final int text2=0x7f08001a;
public static final int textSpacerNoButtons=0x7f080069;
public static final int textSpacerNoTitle=0x7f080068;
public static final int text_input_password_toggle=0x7f080097;
public static final int textinput_counter=0x7f080014;
public static final int textinput_error=0x7f080015;
public static final int time=0x7f0800bd;
public static final int title=0x7f08001b;
public static final int titleDividerNoCustom=0x7f080070;
public static final int title_template=0x7f08006e;
public static final int toolbar=0x7f0800c6;
public static final int top=0x7f08003d;
public static final int topPanel=0x7f08006d;
public static final int touch_outside=0x7f08008e;
public static final int transition_current_scene=0x7f08000f;
public static final int transition_layout_save=0x7f080010;
public static final int transition_position=0x7f080011;
public static final int transition_scene_layoutid_cache=0x7f080012;
public static final int transition_transform=0x7f080013;
public static final int uniform=0x7f08002c;
public static final int up=0x7f080009;
public static final int useLogo=0x7f080025;
public static final int view_offset_helper=0x7f080016;
public static final int visible=0x7f0800c8;
public static final int volume_item_container=0x7f0800aa;
public static final int withText=0x7f08003b;
public static final int wrap_content=0x7f08002d;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0a0003;
public static final int abc_config_activityShortDur=0x7f0a0004;
public static final int app_bar_elevation_anim_duration=0x7f0a0008;
public static final int bottom_sheet_slide_duration=0x7f0a0009;
public static final int cancel_button_image_alpha=0x7f0a0005;
public static final int config_tooltipAnimTime=0x7f0a0006;
public static final int design_snackbar_text_max_lines=0x7f0a0007;
public static final int hide_password_duration=0x7f0a000a;
public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f0a0000;
public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0a0001;
public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0a0002;
public static final int show_password_duration=0x7f0a000b;
public static final int status_bar_notification_info_maxnum=0x7f0a000c;
}
public static final class interpolator {
public static final int mr_fast_out_slow_in=0x7f060000;
public static final int mr_linear_out_slow_in=0x7f060001;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_button_bar_material=0x7f030009;
public static final int abc_alert_dialog_material=0x7f03000a;
public static final int abc_alert_dialog_title_material=0x7f03000b;
public static final int abc_dialog_title_material=0x7f03000c;
public static final int abc_expanded_menu_layout=0x7f03000d;
public static final int abc_list_menu_item_checkbox=0x7f03000e;
public static final int abc_list_menu_item_icon=0x7f03000f;
public static final int abc_list_menu_item_layout=0x7f030010;
public static final int abc_list_menu_item_radio=0x7f030011;
public static final int abc_popup_menu_header_item_layout=0x7f030012;
public static final int abc_popup_menu_item_layout=0x7f030013;
public static final int abc_screen_content_include=0x7f030014;
public static final int abc_screen_simple=0x7f030015;
public static final int abc_screen_simple_overlay_action_mode=0x7f030016;
public static final int abc_screen_toolbar=0x7f030017;
public static final int abc_search_dropdown_item_icons_2line=0x7f030018;
public static final int abc_search_view=0x7f030019;
public static final int abc_select_dialog_material=0x7f03001a;
public static final int design_bottom_navigation_item=0x7f03001b;
public static final int design_bottom_sheet_dialog=0x7f03001c;
public static final int design_layout_snackbar=0x7f03001d;
public static final int design_layout_snackbar_include=0x7f03001e;
public static final int design_layout_tab_icon=0x7f03001f;
public static final int design_layout_tab_text=0x7f030020;
public static final int design_menu_item_action_area=0x7f030021;
public static final int design_navigation_item=0x7f030022;
public static final int design_navigation_item_header=0x7f030023;
public static final int design_navigation_item_separator=0x7f030024;
public static final int design_navigation_item_subheader=0x7f030025;
public static final int design_navigation_menu=0x7f030026;
public static final int design_navigation_menu_item=0x7f030027;
public static final int design_text_input_password_icon=0x7f030028;
public static final int mr_chooser_dialog=0x7f030029;
public static final int mr_chooser_list_item=0x7f03002a;
public static final int mr_controller_material_dialog_b=0x7f03002b;
public static final int mr_controller_volume_item=0x7f03002c;
public static final int mr_playback_control=0x7f03002d;
public static final int mr_volume_control=0x7f03002e;
public static final int notification_action=0x7f03002f;
public static final int notification_action_tombstone=0x7f030030;
public static final int notification_media_action=0x7f030031;
public static final int notification_media_cancel_action=0x7f030032;
public static final int notification_template_big_media=0x7f030033;
public static final int notification_template_big_media_custom=0x7f030034;
public static final int notification_template_big_media_narrow=0x7f030035;
public static final int notification_template_big_media_narrow_custom=0x7f030036;
public static final int notification_template_custom_big=0x7f030037;
public static final int notification_template_icon_group=0x7f030038;
public static final int notification_template_lines_media=0x7f030039;
public static final int notification_template_media=0x7f03003a;
public static final int notification_template_media_custom=0x7f03003b;
public static final int notification_template_part_chronometer=0x7f03003c;
public static final int notification_template_part_time=0x7f03003d;
public static final int select_dialog_item_material=0x7f03003e;
public static final int select_dialog_multichoice_material=0x7f03003f;
public static final int select_dialog_singlechoice_material=0x7f030040;
public static final int support_simple_spinner_dropdown_item=0x7f030041;
public static final int tabbar=0x7f030042;
public static final int toolbar=0x7f030043;
public static final int tooltip=0x7f030044;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f090015;
public static final int abc_action_bar_home_description_format=0x7f090016;
public static final int abc_action_bar_home_subtitle_description_format=0x7f090017;
public static final int abc_action_bar_up_description=0x7f090018;
public static final int abc_action_menu_overflow_description=0x7f090019;
public static final int abc_action_mode_done=0x7f09001a;
public static final int abc_activity_chooser_view_see_all=0x7f09001b;
public static final int abc_activitychooserview_choose_application=0x7f09001c;
public static final int abc_capital_off=0x7f09001d;
public static final int abc_capital_on=0x7f09001e;
public static final int abc_font_family_body_1_material=0x7f09002a;
public static final int abc_font_family_body_2_material=0x7f09002b;
public static final int abc_font_family_button_material=0x7f09002c;
public static final int abc_font_family_caption_material=0x7f09002d;
public static final int abc_font_family_display_1_material=0x7f09002e;
public static final int abc_font_family_display_2_material=0x7f09002f;
public static final int abc_font_family_display_3_material=0x7f090030;
public static final int abc_font_family_display_4_material=0x7f090031;
public static final int abc_font_family_headline_material=0x7f090032;
public static final int abc_font_family_menu_material=0x7f090033;
public static final int abc_font_family_subhead_material=0x7f090034;
public static final int abc_font_family_title_material=0x7f090035;
public static final int abc_search_hint=0x7f09001f;
public static final int abc_searchview_description_clear=0x7f090020;
public static final int abc_searchview_description_query=0x7f090021;
public static final int abc_searchview_description_search=0x7f090022;
public static final int abc_searchview_description_submit=0x7f090023;
public static final int abc_searchview_description_voice=0x7f090024;
public static final int abc_shareactionprovider_share_with=0x7f090025;
public static final int abc_shareactionprovider_share_with_application=0x7f090026;
public static final int abc_toolbar_collapse_description=0x7f090027;
public static final int appbar_scrolling_view_behavior=0x7f090036;
public static final int bottom_sheet_behavior=0x7f090037;
public static final int character_counter_pattern=0x7f090038;
public static final int mr_button_content_description=0x7f090000;
public static final int mr_cast_button_connected=0x7f090001;
public static final int mr_cast_button_connecting=0x7f090002;
public static final int mr_cast_button_disconnected=0x7f090003;
public static final int mr_chooser_searching=0x7f090004;
public static final int mr_chooser_title=0x7f090005;
public static final int mr_controller_album_art=0x7f090006;
public static final int mr_controller_casting_screen=0x7f090007;
public static final int mr_controller_close_description=0x7f090008;
public static final int mr_controller_collapse_group=0x7f090009;
public static final int mr_controller_disconnect=0x7f09000a;
public static final int mr_controller_expand_group=0x7f09000b;
public static final int mr_controller_no_info_available=0x7f09000c;
public static final int mr_controller_no_media_selected=0x7f09000d;
public static final int mr_controller_pause=0x7f09000e;
public static final int mr_controller_play=0x7f09000f;
public static final int mr_controller_stop=0x7f090010;
public static final int mr_controller_stop_casting=0x7f090011;
public static final int mr_controller_volume_slider=0x7f090012;
public static final int mr_system_route_name=0x7f090013;
public static final int mr_user_route_category_name=0x7f090014;
public static final int password_toggle_content_description=0x7f090039;
public static final int path_password_eye=0x7f09003a;
public static final int path_password_eye_mask_strike_through=0x7f09003b;
public static final int path_password_eye_mask_visible=0x7f09003c;
public static final int path_password_strike_through=0x7f09003d;
public static final int search_menu_title=0x7f090028;
public static final int status_bar_notification_info_overflow=0x7f090029;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0b00ac;
public static final int AlertDialog_AppCompat_Light=0x7f0b00ad;
public static final int Animation_AppCompat_Dialog=0x7f0b00ae;
public static final int Animation_AppCompat_DropDownUp=0x7f0b00af;
public static final int Animation_AppCompat_Tooltip=0x7f0b00b0;
public static final int Animation_Design_BottomSheetDialog=0x7f0b0178;
public static final int AppCompatDialogStyle=0x7f0b019b;
public static final int Base_AlertDialog_AppCompat=0x7f0b00b1;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00b2;
public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b3;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00b4;
public static final int Base_Animation_AppCompat_Tooltip=0x7f0b00b5;
public static final int Base_CardView=0x7f0b000c;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00b6;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00b7;
public static final int Base_TextAppearance_AppCompat=0x7f0b0048;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b0049;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b004a;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0036;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b004b;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b004c;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b004d;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b004e;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b004f;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0050;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b001a;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0051;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b001b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0052;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0053;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b0054;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b0055;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00b8;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0056;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0057;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0b0058;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b001d;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b0059;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001e;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0b005a;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001f;
public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0b00b9;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b009d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b005b;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b005c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b005d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b005e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b005f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0060;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0061;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00a4;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00a5;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b009e;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00ba;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0062;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0063;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0064;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0065;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0066;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00bb;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0067;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0068;
public static final int Base_Theme_AppCompat=0x7f0b0069;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00bc;
public static final int Base_Theme_AppCompat_Dialog=0x7f0b0020;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0021;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b00bd;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0022;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0010;
public static final int Base_Theme_AppCompat_Light=0x7f0b006a;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00be;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0023;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0024;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b00bf;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0025;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0011;
public static final int Base_ThemeOverlay_AppCompat=0x7f0b00c0;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00c1;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00c2;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00c3;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b0026;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0027;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b00c4;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0028;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0029;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b002a;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0032;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0033;
public static final int Base_V14_Widget_Design_AppBarLayout=0x7f0b0179;
public static final int Base_V21_Theme_AppCompat=0x7f0b006b;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b006c;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0b006d;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b006e;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b006f;
public static final int Base_V21_Widget_Design_AppBarLayout=0x7f0b0175;
public static final int Base_V22_Theme_AppCompat=0x7f0b009b;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0b009c;
public static final int Base_V23_Theme_AppCompat=0x7f0b009f;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0b00a0;
public static final int Base_V26_Theme_AppCompat=0x7f0b00a8;
public static final int Base_V26_Theme_AppCompat_Light=0x7f0b00a9;
public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0b00aa;
public static final int Base_V26_Widget_Design_AppBarLayout=0x7f0b0177;
public static final int Base_V7_Theme_AppCompat=0x7f0b00c5;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00c6;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00c7;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00c8;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00c9;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00ca;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00cb;
public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0b00cc;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0b00cd;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00ce;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00cf;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0070;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0071;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0072;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0073;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0074;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0b00d0;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00d1;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0034;
public static final int Base_Widget_AppCompat_Button=0x7f0b0075;
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=0x7f0b00d2;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b00a1;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0b0078;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b0079;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00d3;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b007a;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b007b;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00d4;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b000f;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00d5;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b007c;
public static final int Base_Widget_AppCompat_EditText=0x7f0b0035;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0b007d;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00d6;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00d7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00d8;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b007e;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b007f;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0080;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0081;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0082;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b00d9;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0083;
public static final int Base_Widget_AppCompat_ListView=0x7f0b0084;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0085;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0086;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0087;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0088;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00da;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b002b;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b002c;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0b0089;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b00a2;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b00a3;
public static final int Base_Widget_AppCompat_SearchView=0x7f0b00db;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00dc;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0b008a;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00dd;
public static final int Base_Widget_AppCompat_Spinner=0x7f0b008b;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0012;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b008c;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00ab;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b008d;
public static final int Base_Widget_Design_AppBarLayout=0x7f0b0176;
public static final int Base_Widget_Design_TabLayout=0x7f0b017a;
public static final int CardView=0x7f0b000b;
public static final int CardView_Dark=0x7f0b000d;
public static final int CardView_Light=0x7f0b000e;
public static final int MainTheme=0x7f0b0199;
/** Base theme applied no matter what API
*/
public static final int MainTheme_Base=0x7f0b019a;
public static final int Platform_AppCompat=0x7f0b002d;
public static final int Platform_AppCompat_Light=0x7f0b002e;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0b008e;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b008f;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0090;
public static final int Platform_V11_AppCompat=0x7f0b002f;
public static final int Platform_V11_AppCompat_Light=0x7f0b0030;
public static final int Platform_V14_AppCompat=0x7f0b0037;
public static final int Platform_V14_AppCompat_Light=0x7f0b0038;
public static final int Platform_V21_AppCompat=0x7f0b0091;
public static final int Platform_V21_AppCompat_Light=0x7f0b0092;
public static final int Platform_V25_AppCompat=0x7f0b00a6;
public static final int Platform_V25_AppCompat_Light=0x7f0b00a7;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0031;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b003a;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b003b;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b003c;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b003d;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b003e;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b003f;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0040;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0041;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0042;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0043;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b0044;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b0045;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b0046;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b0047;
public static final int TextAppearance_AppCompat=0x7f0b00de;
public static final int TextAppearance_AppCompat_Body1=0x7f0b00df;
public static final int TextAppearance_AppCompat_Body2=0x7f0b00e0;
public static final int TextAppearance_AppCompat_Button=0x7f0b00e1;
public static final int TextAppearance_AppCompat_Caption=0x7f0b00e2;
public static final int TextAppearance_AppCompat_Display1=0x7f0b00e3;
public static final int TextAppearance_AppCompat_Display2=0x7f0b00e4;
public static final int TextAppearance_AppCompat_Display3=0x7f0b00e5;
public static final int TextAppearance_AppCompat_Display4=0x7f0b00e6;
public static final int TextAppearance_AppCompat_Headline=0x7f0b00e7;
public static final int TextAppearance_AppCompat_Inverse=0x7f0b00e8;
public static final int TextAppearance_AppCompat_Large=0x7f0b00e9;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00ea;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00eb;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00ec;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ed;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00ee;
public static final int TextAppearance_AppCompat_Medium=0x7f0b00ef;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00f0;
public static final int TextAppearance_AppCompat_Menu=0x7f0b00f1;
public static final int TextAppearance_AppCompat_Notification=0x7f0b0093;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b0094;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b0095;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00f2;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00f3;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b0096;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b0097;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b0098;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b0099;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b009a;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00f4;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00f5;
public static final int TextAppearance_AppCompat_Small=0x7f0b00f6;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00f7;
public static final int TextAppearance_AppCompat_Subhead=0x7f0b00f8;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00f9;
public static final int TextAppearance_AppCompat_Title=0x7f0b00fa;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00fb;
public static final int TextAppearance_AppCompat_Tooltip=0x7f0b0039;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00fc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00fd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00fe;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00ff;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0100;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0101;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0102;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0103;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0104;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b0105;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0106;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0107;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0108;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0109;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b010a;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b010b;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b010c;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b010d;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b010e;
public static final int TextAppearance_Compat_Notification=0x7f0b0192;
public static final int TextAppearance_Compat_Notification_Info=0x7f0b0193;
public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0b016f;
public static final int TextAppearance_Compat_Notification_Line2=0x7f0b0198;
public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0b0173;
public static final int TextAppearance_Compat_Notification_Media=0x7f0b0170;
public static final int TextAppearance_Compat_Notification_Time=0x7f0b0194;
public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0b0171;
public static final int TextAppearance_Compat_Notification_Title=0x7f0b0195;
public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0b0172;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b017b;
public static final int TextAppearance_Design_Counter=0x7f0b017c;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0b017d;
public static final int TextAppearance_Design_Error=0x7f0b017e;
public static final int TextAppearance_Design_Hint=0x7f0b017f;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0b0180;
public static final int TextAppearance_Design_Tab=0x7f0b0181;
public static final int TextAppearance_MediaRouter_PrimaryText=0x7f0b0000;
public static final int TextAppearance_MediaRouter_SecondaryText=0x7f0b0001;
public static final int TextAppearance_MediaRouter_Title=0x7f0b0002;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b010f;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0110;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0111;
public static final int Theme_AppCompat=0x7f0b0112;
public static final int Theme_AppCompat_CompactMenu=0x7f0b0113;
public static final int Theme_AppCompat_DayNight=0x7f0b0013;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0014;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b0015;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b0016;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b0017;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b0018;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b0019;
public static final int Theme_AppCompat_Dialog=0x7f0b0114;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0115;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0116;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0117;
public static final int Theme_AppCompat_Light=0x7f0b0118;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0119;
public static final int Theme_AppCompat_Light_Dialog=0x7f0b011a;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b011b;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b011c;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b011d;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b011e;
public static final int Theme_AppCompat_NoActionBar=0x7f0b011f;
public static final int Theme_Design=0x7f0b0182;
public static final int Theme_Design_BottomSheetDialog=0x7f0b0183;
public static final int Theme_Design_Light=0x7f0b0184;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0b0185;
public static final int Theme_Design_Light_NoActionBar=0x7f0b0186;
public static final int Theme_Design_NoActionBar=0x7f0b0187;
public static final int Theme_MediaRouter=0x7f0b0003;
public static final int Theme_MediaRouter_Light=0x7f0b0004;
public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0b0005;
public static final int Theme_MediaRouter_LightControlPanel=0x7f0b0006;
public static final int ThemeOverlay_AppCompat=0x7f0b0120;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0121;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0122;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0123;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b0124;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0125;
public static final int ThemeOverlay_AppCompat_Light=0x7f0b0126;
public static final int ThemeOverlay_MediaRouter_Dark=0x7f0b0007;
public static final int ThemeOverlay_MediaRouter_Light=0x7f0b0008;
public static final int Widget_AppCompat_ActionBar=0x7f0b0127;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0128;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0129;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b012a;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b012b;
public static final int Widget_AppCompat_ActionButton=0x7f0b012c;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b012d;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b012e;
public static final int Widget_AppCompat_ActionMode=0x7f0b012f;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0130;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0131;
public static final int Widget_AppCompat_Button=0x7f0b0132;
public static final int Widget_AppCompat_Button_Borderless=0x7f0b0133;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b0134;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0135;
public static final int Widget_AppCompat_Button_Colored=0x7f0b0136;
public static final int Widget_AppCompat_Button_Small=0x7f0b0137;
public static final int Widget_AppCompat_ButtonBar=0x7f0b0138;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0139;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b013a;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b013b;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b013c;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b013d;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b013e;
public static final int Widget_AppCompat_EditText=0x7f0b013f;
public static final int Widget_AppCompat_ImageButton=0x7f0b0140;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0141;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0142;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0143;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0144;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0145;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0146;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0147;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0148;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0149;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b014a;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b014b;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b014c;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b014d;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b014e;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014f;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0150;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0151;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0152;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0153;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0154;
public static final int Widget_AppCompat_Light_SearchView=0x7f0b0155;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0156;
public static final int Widget_AppCompat_ListMenuView=0x7f0b0157;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0158;
public static final int Widget_AppCompat_ListView=0x7f0b0159;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b015a;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b015b;
public static final int Widget_AppCompat_PopupMenu=0x7f0b015c;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b015d;
public static final int Widget_AppCompat_PopupWindow=0x7f0b015e;
public static final int Widget_AppCompat_ProgressBar=0x7f0b015f;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0160;
public static final int Widget_AppCompat_RatingBar=0x7f0b0161;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b0162;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0b0163;
public static final int Widget_AppCompat_SearchView=0x7f0b0164;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0165;
public static final int Widget_AppCompat_SeekBar=0x7f0b0166;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0167;
public static final int Widget_AppCompat_Spinner=0x7f0b0168;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0169;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b016a;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b016b;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b016c;
public static final int Widget_AppCompat_Toolbar=0x7f0b016d;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b016e;
public static final int Widget_Compat_NotificationActionContainer=0x7f0b0196;
public static final int Widget_Compat_NotificationActionText=0x7f0b0197;
public static final int Widget_Design_AppBarLayout=0x7f0b0188;
public static final int Widget_Design_BottomNavigationView=0x7f0b0189;
public static final int Widget_Design_BottomSheet_Modal=0x7f0b018a;
public static final int Widget_Design_CollapsingToolbar=0x7f0b018b;
public static final int Widget_Design_CoordinatorLayout=0x7f0b018c;
public static final int Widget_Design_FloatingActionButton=0x7f0b018d;
public static final int Widget_Design_NavigationView=0x7f0b018e;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0b018f;
public static final int Widget_Design_Snackbar=0x7f0b0190;
public static final int Widget_Design_TabLayout=0x7f0b0174;
public static final int Widget_Design_TextInputLayout=0x7f0b0191;
public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0009;
public static final int Widget_MediaRouter_MediaRouteButton=0x7f0b000a;
}
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.companyname.Athleticum:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.Athleticum:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.Athleticum:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.Athleticum:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.Athleticum:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.Athleticum:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.Athleticum:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.Athleticum:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.Athleticum:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.Athleticum:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.companyname.Athleticum:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.companyname.Athleticum:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.companyname.Athleticum:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.companyname.Athleticum:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.Athleticum:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.Athleticum:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.companyname.Athleticum:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.companyname.Athleticum:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.Athleticum:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.companyname.Athleticum:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.companyname.Athleticum:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.companyname.Athleticum:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.companyname.Athleticum:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.Athleticum:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.Athleticum:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.companyname.Athleticum:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.Athleticum:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.companyname.Athleticum:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.Athleticum: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 = {
0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027,
0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010085
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.companyname.Athleticum:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.Athleticum:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.Athleticum:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.companyname.Athleticum:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.Athleticum:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.Athleticum: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 = {
0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e,
0x7f010030, 0x7f010040
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.Athleticum:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.Athleticum:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.Athleticum:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.Athleticum:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.companyname.Athleticum:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.Athleticum:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.companyname.Athleticum:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.Athleticum: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, 0x7f010043, 0x7f010044, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.companyname.Athleticum:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.companyname.Athleticum:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e,
0x7f010118
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static final int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static final int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:elevation
*/
public static final int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:expanded
*/
public static final int AppBarLayout_expanded = 4;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.Athleticum:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.Athleticum:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010119, 0x7f01011a
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.Athleticum:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.Athleticum:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01011b, 0x7f01011c
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.Athleticum:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint com.companyname.Athleticum:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.Athleticum: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, 0x7f010049, 0x7f01004a, 0x7f01004b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum: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.companyname.Athleticum:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.Athleticum:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.Athleticum: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, 0x7f01004c, 0x7f01004d, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.Athleticum:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.Athleticum:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.companyname.Athleticum:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.Athleticum:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.companyname.Athleticum:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily com.companyname.Athleticum:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.Athleticum: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, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:autoSizeMaxTextSize
*/
public static final int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:autoSizeMinTextSize
*/
public static final int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:autoSizePresetSizes
*/
public static final int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:autoSizeStepGranularity
*/
public static final int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:autoSizeTextType
*/
public static final int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fontFamily
*/
public static final int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.companyname.Athleticum:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.Athleticum:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.Athleticum:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.Athleticum:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.Athleticum:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.Athleticum:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.Athleticum:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.Athleticum:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.Athleticum:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.Athleticum:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.Athleticum:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.Athleticum:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.Athleticum:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.Athleticum:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.Athleticum:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.Athleticum:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.Athleticum:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.Athleticum:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.Athleticum:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.Athleticum:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.Athleticum:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.Athleticum:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.Athleticum:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.Athleticum:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.Athleticum:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.Athleticum:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.Athleticum:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.Athleticum:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.Athleticum:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.Athleticum:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.Athleticum:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.Athleticum:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.Athleticum:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.Athleticum:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.Athleticum:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.Athleticum:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.Athleticum:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.Athleticum:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.Athleticum:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.Athleticum:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.Athleticum:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.Athleticum:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.Athleticum:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.Athleticum:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.Athleticum:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.Athleticum:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.Athleticum:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.Athleticum:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.Athleticum:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.Athleticum:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.Athleticum:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.Athleticum:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.Athleticum:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError com.companyname.Athleticum:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.Athleticum:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.Athleticum:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.Athleticum:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.Athleticum:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.Athleticum:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.Athleticum:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.Athleticum:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.Athleticum:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.Athleticum:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.Athleticum:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.Athleticum:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.Athleticum:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.Athleticum:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.Athleticum:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.Athleticum:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.Athleticum:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.Athleticum:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.Athleticum:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.Athleticum:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.Athleticum:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.Athleticum:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.Athleticum:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.Athleticum:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.Athleticum:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.Athleticum:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.Athleticum:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.Athleticum:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.Athleticum:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.Athleticum:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.Athleticum:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.Athleticum:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.Athleticum:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.Athleticum:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.Athleticum:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.Athleticum:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.Athleticum:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.Athleticum:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.Athleticum:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.Athleticum:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.Athleticum:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.Athleticum:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.Athleticum:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.Athleticum:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.Athleticum:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.Athleticum:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.Athleticum:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.Athleticum:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.Athleticum:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.Athleticum:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.Athleticum:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.Athleticum:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.Athleticum:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.companyname.Athleticum:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.companyname.Athleticum:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.Athleticum:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.Athleticum:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.Athleticum:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.Athleticum:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.Athleticum:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.Athleticum:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.Athleticum:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.Athleticum:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.Athleticum:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.Athleticum:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_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, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb,
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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 to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:colorError
*/
public static final int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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 to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:tooltipForegroundColor
*/
public static final int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:tooltipFrameBackground
*/
public static final int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation com.companyname.Athleticum:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.Athleticum:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.Athleticum:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.Athleticum:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu com.companyname.Athleticum:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145,
0x7f010146
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:menu
*/
public static final int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.Athleticum:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.Athleticum:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.Athleticum:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f01011d, 0x7f01011e, 0x7f01011f
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.Athleticum:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100cb
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<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 #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.Athleticum:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius com.companyname.Athleticum:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation com.companyname.Athleticum:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation com.companyname.Athleticum:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.Athleticum:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.Athleticum:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding com.companyname.Athleticum:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.Athleticum:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.Athleticum:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight com.companyname.Athleticum:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop com.companyname.Athleticum:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static final int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static final int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentPaddingTop
*/
public static final int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.Athleticum:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.Athleticum:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.Athleticum:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.Athleticum:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.Athleticum:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.Athleticum:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.Athleticum:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.Athleticum:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.Athleticum:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.Athleticum:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.Athleticum:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.Athleticum:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.Athleticum:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.Athleticum:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.Athleticum:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.Athleticum:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.Athleticum:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.Athleticum:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01012f, 0x7f010130
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha com.companyname.Athleticum:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.companyname.Athleticum:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.Athleticum:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100cd, 0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.Athleticum:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.Athleticum:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010131, 0x7f010132
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.Athleticum:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.Athleticum:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.Athleticum:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.Athleticum:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.Athleticum:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.Athleticum:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135,
0x7f010136, 0x7f010137, 0x7f010138
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.Athleticum:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.Athleticum:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.companyname.Athleticum:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010139, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.Athleticum:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.Athleticum:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.Athleticum:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.companyname.Athleticum:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.Athleticum:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.Athleticum:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.Athleticum:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.Athleticum: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 = {
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.Athleticum:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.Athleticum:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.Athleticum:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.companyname.Athleticum:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.Athleticum:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.Athleticum:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.Athleticum:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.Athleticum:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.Athleticum:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010141
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** 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.companyname.Athleticum:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts com.companyname.Athleticum:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.companyname.Athleticum:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.companyname.Athleticum:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage com.companyname.Athleticum:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery com.companyname.Athleticum: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 = {
0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d,
0x7f01016e, 0x7f01016f
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fontProviderAuthority
*/
public static final int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:fontProviderCerts
*/
public static final int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:fontProviderFetchStrategy
*/
public static final int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:fontProviderFetchTimeout
*/
public static final int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fontProviderPackage
*/
public static final int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fontProviderQuery
*/
public static final int FontFamily_fontProviderQuery = 2;
/** 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.companyname.Athleticum:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle com.companyname.Athleticum:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight com.companyname.Athleticum:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x7f010170, 0x7f010171, 0x7f010172
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:font
*/
public static final int FontFamilyFont_font = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:fontStyle
*/
public static final int FontFamilyFont_fontStyle = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fontWeight
*/
public static final int FontFamilyFont_fontWeight = 2;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.Athleticum:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f010142
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.Athleticum:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.Athleticum:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.Athleticum:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.Athleticum:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<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 #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable com.companyname.Athleticum:externalRouteEnabledDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint com.companyname.Athleticum:mediaRouteButtonTint}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
@see #MediaRouteButton_mediaRouteButtonTint
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010015, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static final int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static final int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:externalRouteEnabledDrawable
*/
public static final int MediaRouteButton_externalRouteEnabledDrawable = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#mediaRouteButtonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:mediaRouteButtonTint
*/
public static final int MediaRouteButton_mediaRouteButtonTint = 3;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.companyname.Athleticum:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.Athleticum:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.companyname.Athleticum:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers com.companyname.Athleticum:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription com.companyname.Athleticum:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint com.companyname.Athleticum:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode com.companyname.Athleticum:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers com.companyname.Athleticum:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.companyname.Athleticum:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText com.companyname.Athleticum:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_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, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:actionLayout
*/
public static final int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:actionViewClass
*/
public static final int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:alphabeticModifiers
*/
public static final int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentDescription
*/
public static final int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:iconTint
*/
public static final int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:iconTintMode
*/
public static final int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.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><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:numericModifiers
*/
public static final int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:showAsAction
*/
public static final int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tooltipText
*/
public static final int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.Athleticum:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.companyname.Athleticum:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4,
0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation com.companyname.Athleticum:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.companyname.Athleticum:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.companyname.Athleticum:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.companyname.Athleticum:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.Athleticum:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.companyname.Athleticum:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.companyname.Athleticum:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146,
0x7f010147, 0x7f010148
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.Athleticum:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100e6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.Athleticum:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100e7
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.companyname.Athleticum:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.Athleticum:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100e8, 0x7f0100e9
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled com.companyname.Athleticum:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.Athleticum:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.Athleticum:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.Athleticum:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.Athleticum:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.companyname.Athleticum:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.Athleticum:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.companyname.Athleticum:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.Athleticum:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fastScrollEnabled
*/
public static final int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:fastScrollHorizontalThumbDrawable
*/
public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:fastScrollHorizontalTrackDrawable
*/
public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:fastScrollVerticalThumbDrawable
*/
public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:fastScrollVerticalTrackDrawable
*/
public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.Athleticum:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010149
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.Athleticum:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.Athleticum:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01014a
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.companyname.Athleticum:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.companyname.Athleticum:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.Athleticum:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.companyname.Athleticum:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.Athleticum:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.companyname.Athleticum:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.companyname.Athleticum:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.companyname.Athleticum:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.companyname.Athleticum:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.companyname.Athleticum:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.companyname.Athleticum:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.Athleticum:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.companyname.Athleticum:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed,
0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1,
0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.companyname.Athleticum:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.Athleticum:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01003e, 0x7f01014b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.companyname.Athleticum:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f01003f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.companyname.Athleticum:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.Athleticum:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.Athleticum:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.Athleticum:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.Athleticum:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.Athleticum:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.Athleticum:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.Athleticum:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.companyname.Athleticum:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.companyname.Athleticum:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.Athleticum:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground com.companyname.Athleticum:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.companyname.Athleticum:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.companyname.Athleticum:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.Athleticum:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.Athleticum:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.Athleticum:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.Athleticum:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.companyname.Athleticum:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.companyname.Athleticum:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.Athleticum:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.Athleticum:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.Athleticum:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.Athleticum:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.Athleticum:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.Athleticum:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.companyname.Athleticum:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f,
0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153,
0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157,
0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b
};
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</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_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_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily com.companyname.Athleticum:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.Athleticum:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f01004f,
0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@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.
@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.
@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.
@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.
@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.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorLink}
attribute's value can be found in the {@link #TextAppearance} array.
@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.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:fontFamily
*/
public static final int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.companyname.Athleticum:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.Athleticum:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.Athleticum:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.Athleticum:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.Athleticum:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.Athleticum:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.Athleticum:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.Athleticum:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.Athleticum:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.Athleticum:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.Athleticum:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.Athleticum:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.Athleticum:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.Athleticum:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.Athleticum:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d,
0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161,
0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165,
0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity com.companyname.Athleticum:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.Athleticum:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.companyname.Athleticum:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.Athleticum:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.Athleticum:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.Athleticum:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.Athleticum:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.Athleticum:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.Athleticum:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.companyname.Athleticum:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.companyname.Athleticum:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.Athleticum:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.Athleticum:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.companyname.Athleticum:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.companyname.Athleticum:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.companyname.Athleticum:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.Athleticum:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.Athleticum:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.companyname.Athleticum:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.companyname.Athleticum:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.Athleticum:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.Athleticum:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.Athleticum:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.Athleticum:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.companyname.Athleticum:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.Athleticum:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.companyname.Athleticum: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, 0x7f010025, 0x7f010028,
0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.companyname.Athleticum:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.companyname.Athleticum:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.companyname.Athleticum:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010113, 0x7f010114,
0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.Athleticum:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.Athleticum:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.Athleticum:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.Athleticum:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.Athleticum.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.Athleticum:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
|
[
"[email protected]"
] | |
bb77bb86d6730635d08a126cb8fec00fc7622781
|
c885ef92397be9d54b87741f01557f61d3f794f3
|
/tests-without-trycatch/Closure-176/com.google.javascript.jscomp.TypeInference/BBC-F0-opt-70/8/com/google/javascript/jscomp/TypeInference_ESTest.java
|
67ae5edaa5069a3e7a21fc36dbadbc93c2a8d649
|
[
"CC-BY-4.0",
"MIT"
] |
permissive
|
pderakhshanfar/EMSE-BBC-experiment
|
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
|
fea1a92c2e7ba7080b8529e2052259c9b697bbda
|
refs/heads/main
| 2022-11-25T00:39:58.983828 | 2022-04-12T16:04:26 | 2022-04-12T16:04:26 | 309,335,889 | 0 | 1 | null | 2021-11-05T11:18:43 | 2020-11-02T10:30:38 | null |
UTF-8
|
Java
| false | false | 107,511 |
java
|
/*
* This file was automatically generated by EvoSuite
* Wed Oct 13 16:10:06 GMT 2021
*/
package com.google.javascript.jscomp;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.runtime.EvoAssertions.*;
import com.google.common.collect.ImmutableList;
import com.google.javascript.jscomp.CodingConvention;
import com.google.javascript.jscomp.Compiler;
import com.google.javascript.jscomp.ControlFlowGraph;
import com.google.javascript.jscomp.JqueryCodingConvention;
import com.google.javascript.jscomp.LinkedFlowScope;
import com.google.javascript.jscomp.Scope;
import com.google.javascript.jscomp.StatementFusion;
import com.google.javascript.jscomp.TightenTypes;
import com.google.javascript.jscomp.TypeInference;
import com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter;
import com.google.javascript.jscomp.type.FlowScope;
import com.google.javascript.jscomp.type.ReverseAbstractInterpreter;
import com.google.javascript.rhino.Node;
import com.google.javascript.rhino.SimpleErrorReporter;
import com.google.javascript.rhino.jstype.BooleanLiteralSet;
import com.google.javascript.rhino.jstype.JSType;
import com.google.javascript.rhino.jstype.JSTypeRegistry;
import com.google.javascript.rhino.jstype.NullType;
import java.util.List;
import java.util.TreeMap;
import java.util.Vector;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true)
public class TypeInference_ESTest extends TypeInference_ESTest_scaffolding {
@Test(timeout = 4000)
public void test000() throws Throwable {
BooleanLiteralSet booleanLiteralSet0 = BooleanLiteralSet.TRUE;
BooleanLiteralSet booleanLiteralSet1 = BooleanLiteralSet.FALSE;
BooleanLiteralSet booleanLiteralSet2 = TypeInference.getBooleanOutcomes(booleanLiteralSet0, booleanLiteralSet1, false);
assertEquals(BooleanLiteralSet.BOTH, booleanLiteralSet2);
}
@Test(timeout = 4000)
public void test001() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(110, node0, 129, 57);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test002() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.TypeInference$BooleanOutcomePair");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
JSTypeRegistry jSTypeRegistry0 = compiler0.getTypeRegistry();
Vector<JSType> vector0 = new Vector<JSType>(56);
vector0.add((JSType) null);
Node node1 = jSTypeRegistry0.createParameters((List<JSType>) vector0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test003() throws Throwable {
// Undeclared exception!
// try {
TypeInference.getBooleanOutcomes((BooleanLiteralSet) null, (BooleanLiteralSet) null, true);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.TypeInference", e);
// }
}
@Test(timeout = 4000)
public void test004() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(38, node0, 55, 4095);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: UnsupportedOperationException");
// } catch(UnsupportedOperationException e) {
// //
// // NAME 55 is not a string node
// //
// verifyException("com.google.javascript.rhino.Node", e);
// }
}
@Test(timeout = 4000)
public void test005() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(38, node0, 55, 4095);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
node1.putProp((-1233), "com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
// Undeclared exception!
// try {
typeInference0.flowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: IllegalStateException");
// } catch(IllegalStateException e) {
// //
// // unexpected prop id -1233
// //
// verifyException("com.google.javascript.rhino.Node", e);
// }
}
@Test(timeout = 4000)
public void test006() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(64, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.branchedFlowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.common.base.Preconditions", e);
// }
}
@Test(timeout = 4000)
public void test007() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
TypeInference typeInference0 = null;
// try {
typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, (Scope) null, treeMap0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.Compiler", e);
// }
}
@Test(timeout = 4000)
public void test008() throws Throwable {
Compiler compiler0 = new Compiler();
SimpleErrorReporter simpleErrorReporter0 = new SimpleErrorReporter();
JSTypeRegistry jSTypeRegistry0 = new JSTypeRegistry(simpleErrorReporter0, false);
Vector<NullType> vector0 = new Vector<NullType>();
ImmutableList<JSType> immutableList0 = ImmutableList.copyOf((Iterable<? extends JSType>) vector0);
Node node0 = jSTypeRegistry0.createParameters((List<JSType>) immutableList0);
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>(node0, false, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node1 = compiler0.parseTestCode("com.google.javascript.jscomp.TypeInference$1");
Scope scope0 = Scope.createGlobalScope(node1);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node0, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.TypeInference", e);
// }
}
@Test(timeout = 4000)
public void test009() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascrpt.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(47, node0, 101, 37);
node1.setType(101);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.TypeInference", e);
// }
}
@Test(timeout = 4000)
public void test010() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
Node node1 = new Node(107);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test011() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(4, node0, 8, 54);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test012() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("JSC_FUNCTION_LITERAL_UNDEFINED_THIS");
Scope scope0 = Scope.createGlobalScope(node0);
Node node1 = new Node(130, node0, 100, 53);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test013() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(1, node0, 55, 112);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test014() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(155, node0, 47, 51);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test015() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(154, node0, 42, 29);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test016() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(153, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test017() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(152, node0, 1093, 31);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test018() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
Node node1 = new Node(151);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test019() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(150, node0, 690, 903);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test020() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(149, node0, 19, 120);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test021() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(148, node0, 48, 101);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test022() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
JqueryCodingConvention jqueryCodingConvention0 = new JqueryCodingConvention();
TightenTypes tightenTypes0 = new TightenTypes(compiler0);
JSTypeRegistry jSTypeRegistry0 = tightenTypes0.getTypeRegistry();
ClosureReverseAbstractInterpreter closureReverseAbstractInterpreter0 = new ClosureReverseAbstractInterpreter(jqueryCodingConvention0, jSTypeRegistry0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, closureReverseAbstractInterpreter0, scope0, treeMap0);
Node node1 = new Node(147, 771, 97);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test023() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(146, node0, (-1610), 40);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test024() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(145, node0, 2013, 43);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.branchedFlowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: IllegalStateException");
// } catch(IllegalStateException e) {
// //
// // 145
// //
// verifyException("com.google.javascript.rhino.Token", e);
// }
}
@Test(timeout = 4000)
public void test025() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(144, "com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8", 37, 2);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test026() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(143, "com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8", 0, 51);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test027() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
Node node1 = new Node(142, node0, 4, (-440));
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test028() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(140, node0, 51, 57);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test029() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(139, node0, 12, (-578));
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test030() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(138, "JSC_FUNCTION_LITERAL_UNDEFINED_THIS", 54, 1);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test031() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(137, node0, 47, 331);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test032() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.scomp.TypeInference$TemplaieTypeReplacer");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(136, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test033() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(135, node0, 47, 124);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test034() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(134, "JSC_FUNCTION_LITERAL_UNDEFINED_THIS", 54, 1);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test035() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(133, node0, 37, (-458));
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test036() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(131, node0, 126, 16);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test037() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(129, "", 135, 48);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test038() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(128);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test039() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(127, node0, 575, (-496));
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test040() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(126, node0, 42, 29);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test041() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(124, node0, 42, 29);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test042() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(122, node0, 4, 12);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test043() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
node0.setType(121);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node0, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test044() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(119, node0, (-51), 32);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test045() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("JSC_FUNCTION_LITERAL_UNDEFINED_THIS");
Scope scope0 = Scope.createGlobalScope(node0);
Node node1 = new Node(118, node0, 96, 53);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test046() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("JSC_FUNCTION_LITERAL_UNDEFINED_THIS");
Scope scope0 = Scope.createGlobalScope(node0);
Node node1 = new Node(117, node0, 96, 53);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test047() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascrpt.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
node0.setType(116);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node0, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test048() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascrpt.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
node0.setType(115);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node0, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test049() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.gooMle.jaascript.jscomp.typeClosureReversAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(114, node0, (-13), 3056);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test050() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(113, "com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8", 0, 37);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test051() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
Node[] nodeArray0 = new Node[0];
Node node1 = new Node(112, nodeArray0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test052() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(111, node0, 57, 46);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test053() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(109, node0, 120, 439);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test054() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("JSC_FUNCTION_LITERAL_UNDEFINED_THIS");
Scope scope0 = Scope.createGlobalScope(node0);
Node node1 = new Node(108, node0, 100, 53);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test055() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(105, "com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8", (-3), 2);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test056() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(104, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test057() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(103, node0, 57, 46);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test058() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
node0.setType(99);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node0, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test059() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(98, "com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8", 0, 37);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.TypeInference", e);
// }
}
@Test(timeout = 4000)
public void test060() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(96, "", 15, 400000);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test061() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.gogle.javascript.jsomp.type.ClosureReverseAbstractIntrpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(92, "com.gogle.javascript.jsomp.type.ClosureReverseAbstractIntrpreter$8", 37, 2);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test062() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(91, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test063() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.gOoge.jav&script.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
Node[] nodeArray0 = new Node[0];
Node node1 = new Node(90, nodeArray0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test064() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(89, node0, 30, 1905);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test065() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(88, node0, 3667, 12);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test066() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(87, node0, 49, 648);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test067() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(107, "com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreter$8", 0, 648);
Node node2 = StatementFusion.fuseExpressionIntoExpression(node0, node1);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node2, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test068() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(84, "", 15, 400000);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test069() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
JSTypeRegistry jSTypeRegistry0 = compiler0.getTypeRegistry();
ImmutableList<JSType> immutableList0 = ImmutableList.of();
Node node1 = jSTypeRegistry0.createParametersWithVarArgs((List<JSType>) immutableList0);
Node node2 = new Node(37, node1, (-1495), 507);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node2, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.TypeInference", e);
// }
}
@Test(timeout = 4000)
public void test070() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
Node[] nodeArray0 = new Node[0];
Node node1 = new Node(80, nodeArray0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test071() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
Node[] nodeArray0 = new Node[0];
Node node1 = new Node(77, nodeArray0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test072() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(75, node0, 3667, 12);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test073() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(73, node0, 30, 1905);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test074() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node[] nodeArray0 = new Node[0];
Node node1 = new Node(69, nodeArray0, 48, (-25));
FlowScope flowScope0 = typeInference0.createEntryLattice();
FlowScope flowScope1 = typeInference0.flowThrough(node1, flowScope0);
assertNotSame(flowScope1, flowScope0);
}
@Test(timeout = 4000)
public void test075() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(67, node0, 8, 54);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test076() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(65, node0, 30, 1905);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test077() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(64, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.common.base.Preconditions", e);
// }
}
@Test(timeout = 4000)
public void test078() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("f<JEMf");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(60, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test079() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(58, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test080() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(57, node0, 1993, 152);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test081() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(56, 47, 29);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test082() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("JSC_FUNCTION_LITERAL_UNDEFINED_THIS");
Scope scope0 = Scope.createGlobalScope(node0);
Node node1 = new Node(55, node0, node0, 30, 4);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test083() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(54, node0, 1910, 147);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test084() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(53, 2328, 64);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test085() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(52, node0, 52, 848);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test086() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
node0.setType(51);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node0, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
assertTrue(flowScope0.equals((Object)linkedFlowScope0));
}
@Test(timeout = 4000)
public void test087() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
node0.setType(50);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node0, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test088() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscome.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(49, 57, 31);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test089() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(48, node0, 4, 29);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test090() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.SyntheticAst");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(47, node0, 121, 37);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test091() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(46, node0, 128, 53);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test092() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(45, node0, 57, 36);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test093() throws Throwable {
Compiler compiler0 = new Compiler();
Node node0 = compiler0.externAndJsRoot;
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>(node0, false, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node1 = compiler0.parseTestCode("com.google.javascript.jscomp.TypeInference$1");
Scope scope0 = Scope.createGlobalScope(node1);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node2 = new Node(43, node1, (-2012), 4156);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node2, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test094() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(42, node0, 273, 2);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test095() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(41, node0, 8, 54);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test096() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newNumber((double) 0);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test097() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(37, node0, (-1495), 507);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.flowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("java.util.TreeMap", e);
// }
}
@Test(timeout = 4000)
public void test098() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(36, node0, 38, (-5239));
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test099() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(35, node0, 47, 56);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test100() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(34, node0, 48, 2178);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test101() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = Node.newString(32, "com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test102() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(31, node0, (-1547), 48);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test103() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(30, node0, 5247, (-559));
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test104() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(29, node0, 53, 42);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
FlowScope flowScope0 = typeInference0.flowThrough(node1, linkedFlowScope0);
assertNotSame(flowScope0, linkedFlowScope0);
}
@Test(timeout = 4000)
public void test105() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
Node node0 = compiler0.parseTestCode("com.googe.javascript.jsomp.type.ClosureReverseAbstractInterpreOer$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
Node node1 = new Node(27, node0, 8, 54);
LinkedFlowScope linkedFlowScope0 = LinkedFlowScope.createEntryLattice(scope0);
// Undeclared exception!
// try {
typeInference0.branchedFlowThrough(node1, linkedFlowScope0);
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // BITNOT 8 : number does not exist in graph
// //
// verifyException("com.google.javascript.jscomp.graph.Graph", e);
// }
}
@Test(timeout = 4000)
public void test106() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
ControlFlowGraph.Branch controlFlowGraph_Branch0 = ControlFlowGraph.Branch.ON_FALSE;
controlFlowGraph0.connectIfNotFound((Node) null, controlFlowGraph_Branch0, (Node) null);
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.createInitialEstimateLattice();
// Undeclared exception!
// try {
typeInference0.branchedFlowThrough((Node) null, flowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.NodeUtil", e);
// }
}
@Test(timeout = 4000)
public void test107() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, false, false);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
ControlFlowGraph.Branch controlFlowGraph_Branch0 = ControlFlowGraph.Branch.ON_TRUE;
controlFlowGraph0.connectIfNotFound((Node) null, controlFlowGraph_Branch0, (Node) null);
Node node0 = compiler0.parseTestCode("com.google.javascript.jscomp.type.ClosureReverseAbstractInterpreter$8");
Scope scope0 = Scope.createGlobalScope(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.createInitialEstimateLattice();
// Undeclared exception!
// try {
typeInference0.branchedFlowThrough((Node) null, flowScope0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("com.google.javascript.jscomp.NodeUtil", e);
// }
}
@Test(timeout = 4000)
public void test108() throws Throwable {
Compiler compiler0 = new Compiler();
ControlFlowGraph<Node> controlFlowGraph0 = new ControlFlowGraph<Node>((Node) null, true, true);
TreeMap<String, CodingConvention.AssertionFunctionSpec> treeMap0 = new TreeMap<String, CodingConvention.AssertionFunctionSpec>();
ControlFlowGraph.Branch controlFlowGraph_Branch0 = ControlFlowGraph.Branch.ON_EX;
controlFlowGraph0.connectIfNotFound((Node) null, controlFlowGraph_Branch0, (Node) null);
Node node0 = compiler0.parseTestCode("l<jW3zwiTmy");
Scope scope0 = Scope.createLatticeBottom(node0);
TypeInference typeInference0 = new TypeInference(compiler0, controlFlowGraph0, (ReverseAbstractInterpreter) null, scope0, treeMap0);
FlowScope flowScope0 = typeInference0.createInitialEstimateLattice();
List<FlowScope> list0 = typeInference0.branchedFlowThrough((Node) null, flowScope0);
assertEquals(1, list0.size());
}
}
|
[
"[email protected]"
] | |
0e3f4926f114ff20b076959ae931189002dfc47b
|
c823afba560493971fbe5b5df3fbd5e7169036d5
|
/src/com/th/source/org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateName.java
|
32caea3ac80c7e8914ee0a60318fa7e8170aa35e
|
[] |
no_license
|
HWenTing/JavaSourceLearn
|
034e7e7e6e2b2d6ece11a7b3403e89489473a599
|
9297397d38ffe593b10fe927a1a95396c5d61e21
|
refs/heads/main
| 2023-01-23T23:24:48.690473 | 2020-12-04T08:11:34 | 2020-12-04T08:11:34 | 318,447,213 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 967 |
java
|
package org.omg.PortableInterceptor.ORBInitInfoPackage;
/**
* org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateName.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from c:/re/workspace/8-2-build-windows-amd64-cygwin/jdk8u101/7261/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl
* Wednesday, June 22, 2016 1:22:40 AM PDT
*/
public final class DuplicateName extends org.omg.CORBA.UserException
{
/**
* The name for which there was already an interceptor registered.
*/
public String name = null;
public DuplicateName ()
{
super(DuplicateNameHelper.id());
} // ctor
public DuplicateName (String _name)
{
super(DuplicateNameHelper.id());
name = _name;
} // ctor
public DuplicateName (String $reason, String _name)
{
super(DuplicateNameHelper.id() + " " + $reason);
name = _name;
} // ctor
} // class DuplicateName
|
[
"[email protected]"
] | |
7b0b18eb8f70e4c72a6323d116b7afc1c613a0a2
|
b7282398f3f999fddffac95331eb11544bdf557b
|
/app/src/main/java/minorproject/votingassistant/boothpercanlist.java
|
a9c9598c5ccd172cb140e273a6d9f6f376e82f87
|
[] |
no_license
|
Rratio/VotingAssistant
|
d968a8ebebacbb834c88e7d0ba357a470f0d4230
|
f8cdc2f4e2d0299f8d6d78ee7862404560d65ac8
|
refs/heads/master
| 2020-03-25T08:07:50.706431 | 2018-08-05T09:09:15 | 2018-08-05T09:09:15 | 143,598,487 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 5,883 |
java
|
package minorproject.votingassistant;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ListView;
import android.widget.Toast;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONArray;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import minorproject.votingassistant.ZonalJava.BoothListAdapter;
import minorproject.votingassistant.ZonalJava.BoothListModel;
import static android.content.ContentValues.TAG;
import static android.content.Context.MODE_PRIVATE;
public class boothpercanlist extends Fragment {
public String DATA_URL = "http://bond-vehicles.000webhostapp.com/Voting/getapi.php?booth_id=";
Fragment fragment;
public BoothPercenAdapter adapter;
ProgressDialog progressDialog;
ListView BoothListing;
String zID;
SharedPreferences sharedPreferences;
public ArrayList<Boothpercanmodel> sampel = new ArrayList<Boothpercanmodel>();
// String[] sample = {"Bhilwara", "Udaipur", "Jaipur"};
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_boothpercanlist, container, false);
BoothListing = (ListView) view.findViewById(R.id.boothpercan);
adapter = new BoothPercenAdapter(getActivity(), sampel);
BoothListing.setAdapter(adapter);
progressDialog = new ProgressDialog(getActivity());
progressDialog.setMessage("Loading...");
progressDialog.show();
sharedPreferences = getActivity().getSharedPreferences("LoginData",MODE_PRIVATE);
if(sharedPreferences!=null){
zID = sharedPreferences.getString("booth_id",null);
}
// DMList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
// @Override
// public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// int Id=sampel.get(+position).getDm_number();
// String
// Toast.makeText(getActivity(),id+"",Toast.LENGTH_LONG).show();
// }
// });
download_Item();
return view;
}
private void download_Item()
{
StringRequest stringRequest = new StringRequest(Request.Method.POST, DATA_URL+zID,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
Log.d(TAG, response.toString());
hidePDialog();
// Toast.makeText(SignIn.this,response,Toast.LENGTH_LONG).show();
JSONArray jArray = null;
try {
jArray = new JSONArray(response);
if(jArray.length()>0) {
sampel.clear();
for (int i = 0; i < jArray.length(); i++) {
JSONObject json_data = jArray.getJSONObject(i);
Boothpercanmodel ji = new Boothpercanmodel();
ji.setTime(json_data.getString("time"));
ji.setTotalseats(json_data.getString("totalseats"));
ji.setSeats(json_data.getString("seats"));
ji.setPercentage(json_data.getString("percentage"));
Log.e("boothname",":::::"+json_data.getString("time"));
Log.e("boothofficername",":::::"+json_data.getString("totalseats"));
Log.e("boothofficernumber",":::::"+json_data.getString("seats"));
Log.e("boothper","::::::"+json_data.getString("percentage"));
// Toast.makeText(getActivity(),"Name------"+DATA_URL+zID,Toast.LENGTH_LONG).show();
//System.out.println(json_data.getString("name"));
sampel.add(ji);
}
}
} catch (Exception e) {
e.printStackTrace();
}
adapter.notifyDataSetChanged();
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getActivity(),"Time Out", Toast.LENGTH_LONG).show();
hidePDialog();
}
}){
@Override
protected Map<String,String> getParams(){
Map<String,String> params = new HashMap<String, String>();
return params;
}
};
RequestQueue requestQueue = Volley.newRequestQueue(getActivity());
requestQueue.add(stringRequest);
}
public void onDestroy() {
super.onDestroy();
hidePDialog();
}
private void hidePDialog() {
if (progressDialog != null) {
progressDialog.dismiss();
progressDialog = null;
}
}
}
|
[
"[email protected]"
] | |
36243aa7ade2eeb18685a0b239f00b3b9ae9fda7
|
a422de59c29d077c512d66b538ff17d179cc077a
|
/hsxt/hsxt-lcs/hsxt-lcs-service/src/main/java/com/gy/hsxt/lcs/interfaces/IErrorMsgService.java
|
73787ae19763faaf6f66810ba6eee5ea2139bc0e
|
[] |
no_license
|
liveqmock/hsxt
|
c554e4ebfd891e4cc3d57e920d8a79ecc020b4dd
|
40bb7a1fe5c22cb5b4f1d700e5d16371a3a74c04
|
refs/heads/master
| 2020-03-28T14:09:31.939168 | 2018-09-12T10:20:46 | 2018-09-12T10:20:46 | 148,461,898 | 0 | 0 | null | 2018-09-12T10:19:11 | 2018-09-12T10:19:10 | null |
UTF-8
|
Java
| false | false | 1,320 |
java
|
/***************************************************************************
*
* This document contains confidential and proprietary information
* subject to non-disclosure agreements with GUIYI Technology, Ltd.
* This information shall not be distributed or copied without written
* permission from GUIYI technology, Ltd.
*
***************************************************************************/
package com.gy.hsxt.lcs.interfaces;
import java.util.List;
import com.gy.hsxt.lcs.bean.ErrorMsg;
/***************************************************************************
* <PRE>
* Project Name : hsxt-lcs-service
*
* Package Name : com.gy.hsxt.lcs.interfaces
*
* File Name : IErrorMsgService.java
*
* Creation Date : 2015-7-6
*
* Author : xiaofl
*
* Purpose : 错误信息接口
*
*
* History : TODO
*
* </PRE>
***************************************************************************/
public interface IErrorMsgService {
/**
* 查询错误信息
*
* @param errorMsg
* @return
*/
public ErrorMsg queryErrorMsgWithPK(String languageCode,int errorCode);
/**
* 插入或更新错误信息
* @param list
* @param version
* @return
*/
public int addOrUpdateErrorMsg(List<ErrorMsg> list,Long version);
}
|
[
"[email protected]"
] | |
febd24800617a75fdbf6134dd2c024e470abc5c2
|
3c3f19d257efdea7bc497fd3e702986208d57a7a
|
/src/main/java/com/binarysushi/studio/language/isml/ISMLLanguageTypeFactory.java
|
d79ceb478d17c74a439db484a014b1c0b1409f62
|
[
"MIT"
] |
permissive
|
AVATOR/sfcc-studio
|
cf6bfe9ee1ae9666c329cf4f973ade17647bbb9f
|
0aa4ad8d8b5681b0df7d8fc947c8a650a0216090
|
refs/heads/master
| 2020-05-04T16:34:26.893380 | 2019-02-11T16:07:10 | 2019-02-11T16:07:10 | 170,124,959 | 0 | 0 |
MIT
| 2019-02-11T12:27:36 | 2019-02-11T12:27:35 | null |
UTF-8
|
Java
| false | false | 413 |
java
|
package com.binarysushi.studio.language.isml;
import com.intellij.openapi.fileTypes.FileTypeConsumer;
import com.intellij.openapi.fileTypes.FileTypeFactory;
import org.jetbrains.annotations.NotNull;
public class ISMLLanguageTypeFactory extends FileTypeFactory {
@Override
public void createFileTypes(@NotNull FileTypeConsumer consumer) {
consumer.consume(ISMLFileType.INSTANCE, "isml");
}
}
|
[
"[email protected]"
] | |
e6a2694ec8ff1e4a905bce75b403a0cc58db1e12
|
077fc0f92cdfe9b8f0eebf7942a19c225ef8c960
|
/Desenvolvimento Android/aulas-pmob-master/LoginSocialSession/app/src/androidTest/java/br/edu/unitri/loginsocialsession/ExampleInstrumentedTest.java
|
3f77cd724117ab660401d09687f40835d924f69b
|
[] |
no_license
|
FilipeSanto/arquivospos
|
2a47b1ebe926b0a1af528fc73dbe81e715ac65cd
|
ae6251e665bfb794f092c40950bb75140c313ffe
|
refs/heads/master
| 2020-03-11T17:05:30.998722 | 2018-08-01T00:28:04 | 2018-08-01T00:28:04 | 130,137,305 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 791 |
java
|
package br.edu.unitri.loginsocialsession;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("br.edu.unitri.loginsocialsession", appContext.getPackageName());
}
}
|
[
"[email protected]"
] | |
7a71ba72d00a0eb7ce769c2504288ffd218faebc
|
b7b85d11b5ff3e82f36001f0d0f67fe4d08d13b5
|
/gmall-api/src/main/java/com/swz/gmall/pms/entity/Comment.java
|
36596969a783544613265457e43faa226964704b
|
[] |
no_license
|
WenzhiShao/mall
|
b51cd48a8b898dcf3a02671a5f01ff8c0c59948a
|
419ac6bcd7e70a10b023e2a862b5654efb6f17fd
|
refs/heads/master
| 2022-07-11T17:21:09.265487 | 2020-03-02T09:06:40 | 2020-03-02T09:06:40 | 243,946,225 | 0 | 0 | null | 2022-06-21T02:53:54 | 2020-02-29T10:12:45 |
Java
|
UTF-8
|
Java
| false | false | 2,044 |
java
|
package com.swz.gmall.pms.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* <p>
* 商品评价表
* </p>
*
* @author Lfy
* @since 2020-03-02
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("pms_comment")
@ApiModel(value="Comment对象", description="商品评价表")
public class Comment implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@TableField("product_id")
private Long productId;
@TableField("member_nick_name")
private String memberNickName;
@TableField("product_name")
private String productName;
@ApiModelProperty(value = "评价星数:0->5")
@TableField("star")
private Integer star;
@ApiModelProperty(value = "评价的ip")
@TableField("member_ip")
private String memberIp;
@TableField("create_time")
private Date createTime;
@TableField("show_status")
private Integer showStatus;
@ApiModelProperty(value = "购买时的商品属性")
@TableField("product_attribute")
private String productAttribute;
@TableField("collect_couont")
private Integer collectCouont;
@TableField("read_count")
private Integer readCount;
@TableField("content")
private String content;
@ApiModelProperty(value = "上传图片地址,以逗号隔开")
@TableField("pics")
private String pics;
@ApiModelProperty(value = "评论用户头像")
@TableField("member_icon")
private String memberIcon;
@TableField("replay_count")
private Integer replayCount;
}
|
[
"[email protected]"
] | |
f4d9fe3200e1c396696afb52683a09ef3b51802e
|
0e94ef975a3a25073410d8b414170edb642ea3bb
|
/helloworld-blockchain-setting/src/main/java/com/xingkaichun/helloworldblockchain/setting/TransactionSetting.java
|
7b184e5cf762522bfdbe826ad2ff5e0390d2afa5
|
[] |
no_license
|
hqgordon/helloworld-blockchain-java
|
6b09288a022ff22e6731853a7817f23ab60b97c3
|
cfcf876d528d8650746e35c04b7dd77ef99c02fe
|
refs/heads/master
| 2023-09-03T21:50:10.261624 | 2021-10-11T13:02:16 | 2021-10-11T13:02:16 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 290 |
java
|
package com.xingkaichun.helloworldblockchain.setting;
/**
* 交易设置
*
* @author 邢开春 [email protected]
*/
public class TransactionSetting {
//交易的最大字符数量:用于限制交易的大小
public static final long TRANSACTION_MAX_CHARACTER_COUNT = 8888;
}
|
[
"[email protected]"
] | |
78f6b24b12cebc592fff55a7ef7271ac3e001d12
|
eb9f655206c43c12b497c667ba56a0d358b6bc3a
|
/java/typeMigration/testData/inspections/guava/optionalTransform2.java
|
d0a3d52c583f6b260cab4f309aa1dc6d58b2a199
|
[
"Apache-2.0"
] |
permissive
|
JetBrains/intellij-community
|
2ed226e200ecc17c037dcddd4a006de56cd43941
|
05dbd4575d01a213f3f4d69aa4968473f2536142
|
refs/heads/master
| 2023-09-03T17:06:37.560889 | 2023-09-03T11:51:00 | 2023-09-03T12:12:27 | 2,489,216 | 16,288 | 6,635 |
Apache-2.0
| 2023-09-12T07:41:58 | 2011-09-30T13:33:05 | null |
UTF-8
|
Java
| false | false | 232 |
java
|
import com.google.common.base.Function;
import com.google.common.base.Optional;
class Transformer {
public Optio<caret>nal<String> transform(Optional<Integer> p1, Function<Integer, String> p2) {
return p1.transform(p2);
}
}
|
[
"[email protected]"
] | |
669a51cbc9117b1f3925b49c4832c19c4b5f38be
|
cb6ef2e9804c38d66f15867ec511740beea441d4
|
/src/com/dcits/smartbip/runtime/model/impl/SoapCompositeData.java
|
70fa159a483eb60af28cdb207f427851a247bbae
|
[] |
no_license
|
zcdyx88/BIP
|
602231816a7c828a56adb37ac5864f4b4b458ef8
|
cfaf84408fa0844bfa63b91a47d20e33d86ca465
|
refs/heads/master
| 2020-02-26T16:28:48.537024 | 2016-10-25T10:06:01 | 2016-10-25T10:06:01 | 71,224,708 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,291 |
java
|
package com.dcits.smartbip.runtime.model.impl;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import com.dcits.smartbip.runtime.model.ICompositeData;
/**
* Created by vincentfxz on 16/5/25.
*/
public class SoapCompositeData implements ICompositeData, Externalizable {
private Map<String, List<ICompositeData>> map;
private String value;
private String xPath;
private String payLoad;
private String id;
public SoapCompositeData() {
map = new TreeMap<String, List<ICompositeData>>();
}
@Override
public String getValue() {
return value;
}
@Override
public void setChild(String index, ICompositeData compositeData) {
StringBuilder tmpPath = new StringBuilder();
tmpPath.append(this.getxPath()).append("/").append(compositeData.getId());
tmpPath.append("[").append(getChild(index).size()).append("]");
compositeData.setxPath(tmpPath.toString());
getChild(index).add(compositeData);
}
@Override
public List<ICompositeData> getChild(String key) {
List<ICompositeData> compositeDatas = map.get(key);
if(null == compositeDatas){
compositeDatas = new ArrayList<ICompositeData>();
map.put(key, compositeDatas);
}
return compositeDatas;
}
@Override
public Map<String, List<ICompositeData>> getChildren() {
return this.map;
}
@Override
public String setMap(Map<String, String> map) {
return null;
}
public String getxPath() {
return xPath;
}
public void setxPath(String xPath) {
this.xPath = xPath;
}
public String getPayLoad() {
return payLoad;
}
public void setPayLoad(String payLoad) {
this.payLoad = payLoad;
}
public void setValue(String value) {
this.value = value;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getxPath()).append(" = ").append(getValue()).append("\n");
for(Map.Entry<String, List<ICompositeData>> children : getChildren().entrySet()){
for(ICompositeData child : children.getValue()){
sb.append(child.toString());
}
}
return sb.toString();
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Override
public String getDispatchId() {
return getPayLoad();
}
@Override
public void setDispatchId(String dispatchId) {
setPayLoad(dispatchId);
}
@Override
public void writeExternal(ObjectOutput out) throws IOException {
out.writeObject(map);
out.writeObject(value);
out.writeObject(xPath);
out.writeObject(payLoad);
out.writeObject(id);
}
@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
map = (TreeMap<String, List<ICompositeData>>)in.readObject();
value = (String)in.readObject();
xPath = (String)in.readObject();
payLoad = (String)in.readObject();
id = (String)in.readObject();
}
}
|
[
"[email protected]"
] | |
19b1a081b5cd0a374274c66c78ff1de0a160d45b
|
36713386340f14fd5d5f94eb37ed60823c4826e1
|
/mobile/src/main/java/com/hjc/scriptutil/LeadJarServices.java
|
2fc77bd33e0b81d7c872876b693a2953f8ee7619
|
[] |
no_license
|
hujiachun/scripttool
|
0a1d23fbab06cdceeac16298831bdba1d8b51e24
|
8353dd13d796330ae24a5e9be3b3bcf482d74616
|
refs/heads/master
| 2021-01-10T10:06:54.712072 | 2016-03-30T09:21:16 | 2016-03-30T09:21:16 | 53,579,383 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,633 |
java
|
package com.hjc.scriptutil;
import android.content.Context;
import android.os.Environment;
import com.hjc.util.ShellUtils;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import dalvik.system.DexClassLoader;
import dalvik.system.DexFile;
/**
* Created by hujiachun on 15/11/2.
*/
public class LeadJarServices {
/**
* 加载Jar包
* @return
*/
public static List<String> getJarList() {
List<String> list = new ArrayList<String>();
String sDStateString = Environment.getExternalStorageState();
if (sDStateString.equals(Environment.MEDIA_MOUNTED)) {
try {
File SDFile = Environment.getExternalStorageDirectory();
File sdPath = new File(SDFile.getAbsolutePath());
FileNameFilter name_filter = new FileNameFilter(".jar");//创建过滤器
if (sdPath.listFiles().length > 0) {
for (File file : sdPath.listFiles()) {
if (name_filter.accept(sdPath, file.getName())) {
list.add(file.getName());
}
}
}
} catch (Exception e) {
}
}
return list;
}
/**
* 加载Jar包
* @return
*/
public static List<String> getSystemJarList() {
List<String> list = new ArrayList<String>();
File sdPath = new File("/data/local/tmp/");
FileNameFilter name_filter = new FileNameFilter(".jar");//创建过滤器
if (sdPath.listFiles().length > 0) {
for (File file : sdPath.listFiles()) {
if (name_filter.accept(sdPath, file.getName())) {
list.add(file.getName());
}
}
}
return list;
}
/**
* 读取jar文件
* @param file
* @throws IOException
*/
public static List<String> getAllClasses(Context context, File file) throws IOException {
List<String> classes = new ArrayList<String>();
DexFile dx = DexFile.loadDex(file.getPath(), File.createTempFile("opt", "dex", context.getCacheDir()).getPath(), 0);
for(Enumeration<String> classNames = dx.entries(); classNames.hasMoreElements();) {
String className = classNames.nextElement();
if (className.contains("Sanity")){
classes.add(className);
}
}
return classes;
}
/**
* 加载方法
* @param context
* @param jarPath
* @param testCase
* @return
* @throws ClassNotFoundException
*/
public static List<String> addTestClassesFromJars(Context context, String jarPath, String testCase) throws ClassNotFoundException {
String dexPath = jarPath + File.pathSeparator + "/system/framework/android.test.runner.jar" + File.pathSeparator + "/system/framework/uiautomator.jar";
String dexOutputDir = context.getApplicationInfo().dataDir;
DexClassLoader classLoader = new DexClassLoader(dexPath, dexOutputDir, null, context.getClass().getClassLoader());
List<String> caseList = new ArrayList<>();
Class cls = classLoader.loadClass(testCase);
Method[] methods = cls.getMethods();
for (Method m : methods) {
if(m.getName().startsWith("test")){
caseList.add(m.getName());
}
}
return caseList;
}
}
|
[
"[email protected]"
] | |
878049f206e80a537481d194a2ef99ba4fca2e54
|
c1c8c83e6addc6b0d711a38242d24c590958dc51
|
/pdf_library/src/main/java/com/lm/artifex/mupdfdemo/MuPDFAlert.java
|
5eb1237ec2489e970ac4f244bb7477f736f01368
|
[] |
no_license
|
xieyalong/PdfDemo
|
7b158636dfd8e82577150adb59b87c3bf3cb20a5
|
6d214b29543ae925c10cc914a8493d46e6cf4eb3
|
refs/heads/master
| 2020-04-12T09:48:43.519864 | 2018-08-09T05:51:05 | 2018-08-09T05:51:05 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 678 |
java
|
package com.lm.artifex.mupdfdemo;
public class MuPDFAlert {
public enum IconType {Error,Warning,Question,Status};
public enum ButtonPressed {None,Ok,Cancel,No,Yes};
public enum ButtonGroupType {Ok,OkCancel,YesNo,YesNoCancel};
public final String message;
public final IconType iconType;
public final ButtonGroupType buttonGroupType;
public final String title;
public ButtonPressed buttonPressed;
MuPDFAlert(String aMessage, IconType aIconType, ButtonGroupType aButtonGroupType, String aTitle, ButtonPressed aButtonPressed) {
message = aMessage;
iconType = aIconType;
buttonGroupType = aButtonGroupType;
title = aTitle;
buttonPressed = aButtonPressed;
}
}
|
[
"[email protected]"
] | |
a6aa78c2cdc540b400cf7b0f84efcdb23e111048
|
83b5fcddb8294103fdacf8ba588fab0da53c5b20
|
/Polimorfizm/src/Shape.java
|
712ac370ff226b1e107e48896efc112e70d605b6
|
[] |
no_license
|
sromaniuk89/Java_zaawansowana
|
ffe09734e858174332d8a587acbe68af022c45b3
|
253c377c798809ec300823790e7e15f75e063de7
|
refs/heads/master
| 2021-03-04T09:26:41.977630 | 2020-03-09T11:59:40 | 2020-03-09T11:59:40 | 246,023,646 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 111 |
java
|
public class Shape {
Double area;
Double perimeter;
public void area(){
area=0.0;
}
}
|
[
"[email protected]"
] | |
c85231df45e6950d73aa3f9f10c2751c98137085
|
e167cd303dfe6b1245707f66a9b8ad5831a8fa86
|
/src/com/chalilayang/test/customview/BezierView.java
|
0796f03f1c20ac100216f5b27c54e1bb7f042712
|
[] |
no_license
|
chalilayang/test
|
9d3f43d1283ad85ccc740f4985bdb6c90a443d84
|
0b941a88ef56a5424394cd309b86bafd7532f260
|
refs/heads/master
| 2021-01-10T13:31:59.902573 | 2016-04-28T11:51:49 | 2016-04-28T11:51:55 | 53,098,606 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 6,082 |
java
|
package com.chalilayang.test.customview;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PorterDuff;
import android.graphics.Rect;
import android.graphics.drawable.AnimationDrawable;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.ImageView;
import com.chalilayang.test.R;
/**
* Created by [email protected] on 11/20/14.
* Description : custom layout to draw bezier
*/
public class BezierView extends FrameLayout {
// 默认定点圆半径
public static final float DEFAULT_RADIUS = 60;
private Paint paint;
private Path path;
// 手势坐标
float x = 300;
float y = 300;
// 锚点坐标
float anchorX = 200;
float anchorY = 300;
// 起点坐标
float startX = 100;
float startY = 100;
// 定点圆半径
float radius = DEFAULT_RADIUS;
// 判断动画是否开始
boolean isAnimStart;
// 判断是否开始拖动
boolean isTouch;
ImageView exploredImageView;
ImageView tipImageView;
public BezierView(Context context) {
super(context);
init();
}
public BezierView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public BezierView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init(){
path = new Path();
paint = new Paint();
paint.setAntiAlias(true);
paint.setStyle(Paint.Style.FILL_AND_STROKE);
paint.setStrokeWidth(2);
paint.setColor(Color.RED);
paint.setDither(true);
LayoutParams params = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
exploredImageView = new ImageView(getContext());
exploredImageView.setLayoutParams(params);
exploredImageView.setImageResource(R.drawable.tip_anim);
exploredImageView.setVisibility(View.INVISIBLE);
tipImageView = new ImageView(getContext());
tipImageView.setLayoutParams(params);
tipImageView.setImageResource(R.drawable.skin_tips_newmessage_ninetynine);
addView(tipImageView);
addView(exploredImageView);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
exploredImageView.setX(startX - exploredImageView.getWidth()/2);
exploredImageView.setY(startY - exploredImageView.getHeight()/2);
tipImageView.setX(startX - tipImageView.getWidth()/2);
tipImageView.setY(startY - tipImageView.getHeight()/2);
super.onLayout(changed, left, top, right, bottom);
}
private void calculate(){
float distance = (float) Math.sqrt(Math.pow(y-startY, 2) + Math.pow(x-startX, 2));
radius = -distance/15+DEFAULT_RADIUS;
if(radius < 9){
isAnimStart = true;
exploredImageView.setVisibility(View.VISIBLE);
exploredImageView.setImageResource(R.drawable.tip_anim);
((AnimationDrawable) exploredImageView.getDrawable()).stop();
((AnimationDrawable) exploredImageView.getDrawable()).start();
tipImageView.setVisibility(View.GONE);
}
// 根据角度算出四边形的四个点
float offsetX = (float) (radius*Math.sin(Math.atan((y - startY) / (x - startX))));
float offsetY = (float) (radius*Math.cos(Math.atan((y - startY) / (x - startX))));
float x1 = startX - offsetX;
float y1 = startY + offsetY;
float x2 = x - offsetX;
float y2 = y + offsetY;
float x3 = x + offsetX;
float y3 = y - offsetY;
float x4 = startX + offsetX;
float y4 = startY - offsetY;
path.reset();
path.moveTo(x1, y1);
path.quadTo(anchorX, anchorY, x2, y2);
path.lineTo(x3, y3);
path.quadTo(anchorX, anchorY, x4, y4);
path.lineTo(x1, y1);
// 更改图标的位置
tipImageView.setX(x - tipImageView.getWidth()/2);
tipImageView.setY(y - tipImageView.getHeight()/2);
}
@Override
protected void onDraw(Canvas canvas){
if(isAnimStart || !isTouch){
canvas.drawColor(Color.TRANSPARENT, PorterDuff.Mode.OVERLAY);
}else{
calculate();
canvas.drawColor(Color.TRANSPARENT, PorterDuff.Mode.OVERLAY);
canvas.drawPath(path, paint);
canvas.drawCircle(startX, startY, radius, paint);
canvas.drawCircle(x, y, radius, paint);
}
super.onDraw(canvas);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_DOWN){
// 判断触摸点是否在tipImageView中
Rect rect = new Rect();
int[] location = new int[2];
tipImageView.getDrawingRect(rect);
tipImageView.getLocationOnScreen(location);
rect.left = location[0];
rect.top = location[1];
rect.right = rect.right + location[0];
rect.bottom = rect.bottom + location[1];
if (rect.contains((int)event.getRawX(), (int)event.getRawY())){
isTouch = true;
}
}else if(event.getAction() == MotionEvent.ACTION_UP || event.getAction() == MotionEvent.ACTION_CANCEL){
isTouch = false;
tipImageView.setX(startX - tipImageView.getWidth()/2);
tipImageView.setY(startY - tipImageView.getHeight()/2);
}
invalidate();
if(isAnimStart){
return super.onTouchEvent(event);
}
anchorX = (event.getX() + startX)/2;
anchorY = (event.getY() + startY)/2;
x = event.getX();
y = event.getY();
return true;
}
}
|
[
"[email protected]"
] | |
33090c006a730356bb0c424a87d1ebc8c27fffba
|
8a88f34994b67d4524df3673b34c82b7faddb74c
|
/Heaters.java
|
493ebe2033840be360c49bfd0bc45387d824213e
|
[] |
no_license
|
FelixFanPenn/leetcode
|
1f4b654e2df5cc2f732fed495fb0062d5b7af8b0
|
d90ebfa843b6d0f102391d83db6f22ee50abd3ec
|
refs/heads/master
| 2021-01-13T09:10:28.274084 | 2019-05-13T00:27:28 | 2019-05-13T00:27:28 | 69,256,289 | 1 | 1 | null | 2016-11-11T19:30:07 | 2016-09-26T14:04:31 |
Java
|
UTF-8
|
Java
| false | false | 1,253 |
java
|
public class Solution {
public int findRadius(int[] houses, int[] heaters) {
Arrays.sort(heaters);
int max = 0;
for (int house : houses){
int index = Arrays.binarySearch(heaters, house);
// http://docs.oracle.com/javase/7/docs/api/java/util/Arrays.html#binarySearch(int[],%20int)
// for binarySearch:
// index of the search key, if it is contained in the array; otherwise, (-(insertion point) - 1).
// The insertion point is defined as the point at which the key would be inserted into the array:
// the index of the first element greater than the key, or a.length if all elements in the array are less than the specified key.
// Note that this guarantees that the return value will be >= 0 if and only if the key is found.
//
//
if (index < 0) {
index = -(index+1);
}
int cand1 = index >= 1 ? house - heaters[index-1] : Integer.MAX_VALUE;
int cand2 = index < heaters.length ? heaters[index] - house : Integer.MAX_VALUE;
max = Math.max(max, Math.min(cand1, cand2));
}
return max;
}
}
|
[
"[email protected]"
] | |
6daf8c60295f2038ed8330150e40d2e0717ac408
|
85017ffa17077ff4e61977928885e5d75e544db9
|
/src/main/java/com/siroinfo/ecms/pub/Common.java
|
f32d528f39ab28c4870e357ed5a08098c44c8a40
|
[] |
no_license
|
weideqiang/ecms
|
88929060c8f3ec3e5975b8db8584ac1d3094770c
|
0e93ac3b8b838931ca53d0e063d522a465f03306
|
refs/heads/master
| 2023-05-02T09:52:12.131365 | 2020-02-03T12:30:54 | 2020-02-03T12:30:54 | 237,704,827 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,093 |
java
|
/**
* @Title Communication.java
* @Package trades.lib.comm
* @Description TODO
* @author kangjun
* @time 2011-3-12 上午09:28:32
* @version v1.0
**/
package com.siroinfo.ecms.pub;
import java.io.IOException;
import java.lang.reflect.Field;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
*
* <DL><DT><B>
* 标题
* </B></DT><p><DD>
* 交易公共方法
* </DD></DL><p>
*
* <DL><DT><B>使用范例</B></DT><p><DD>
* 使用范例说明
* </DD></DL><p>
*
* @version $Id$
*/
public class Common {
/**
*
* <DL>
* <DT><B> 比较证件类型是否一致</B></DT>
* <p>
* <DD>
* 详细介绍</DD>
* </DL>
* <p>
*
*/
public static boolean compareTypeOfCertificate(String inputTypeOfCertificate,String backTypeOfCertificate ){
String inputType = inputTypeOfCertificate;
String backType = backTypeOfCertificate;
boolean backFlag = false;
String s = "";
String str = "";
if(inputType.equals("A")||inputType.equals("C")||inputType.equals("F")){
s = "A";
}else{
s = inputType;
}
if(backType.equals("A")||backType.equals("C")||backType.equals("F")){
str = "A";
}else{
str = backType;
}
if(s.equals(str)){
backFlag = true;
}else{
backFlag = false;
}
return backFlag;
}
/**
*
* <DL>
* <DT><B> 获取当前时间 </B></DT>
* <p>
* <DD>
* 详细介绍</DD>
* </DL>
* <p>
*
*
*/
public static String getTime() {
Calendar c = new GregorianCalendar();
String h;
String m;
String s;
int hour = c.get(Calendar.HOUR_OF_DAY);
if (hour < 10)
h = "0" + hour;
else
h = String.valueOf(hour);
int minute = c.get(Calendar.MINUTE);
if (minute < 10)
m = "0" + minute;
else
m = String.valueOf(minute);
int second = c.get(Calendar.SECOND);
if (second < 10)
s = "0" + second;
else
s = String.valueOf(second);
return h + m + s;
}
/**
*
* <DL>
* <DT><B> 获取当前时间 </B></DT>
* <p>
* <DD>
* 详细介绍</DD>
* </DL>
* <p>
*
*/
public static String getTimeWithMS() {
Calendar c = new GregorianCalendar();
String h;
String m;
String s;
String ms;
int hour = c.get(Calendar.HOUR_OF_DAY);
if (hour < 10)
h = "0" + hour;
else
h = String.valueOf(hour);
int minute = c.get(Calendar.MINUTE);
if (minute < 10)
m = "0" + minute;
else
m = String.valueOf(minute);
int second = c.get(Calendar.SECOND);
if (second < 10)
s = "0" + second;
else
s = String.valueOf(second);
int msecond = c.get(Calendar.MILLISECOND);
if (msecond < 10){
ms = "0" + msecond;
}else if(msecond > 99){
ms = String.valueOf(msecond).substring(0,2);
}else{
ms = String.valueOf(msecond);
}
return h + m + s + ms;
}
/**
* 从SOAP返回的字段中取出需要的字段
* @param map
* @param path
* @return
*/
public static Object parseField(Map<?,?> map,String path){
String[] keyArray = path.split("/");
return parseSoapField(map, keyArray, 1);
}
/**
* 从SOAP返回的字段中取出需要的字段
* @param map
* @param keyArray
* @param index
* @return
*/
private static Object parseSoapField(Map<?,?> map, String[] keyArray, int index){
String key = keyArray[index];
if(!map.containsKey(key)){
return "";
}
if(index == keyArray.length - 1){
Object object = map.get(key);
if(object == null || object instanceof List<?>){
return object;
}
return ((Map<?,?>)object).get("var");
}else {
return parseSoapField((Map<?, ?>) map.get(key), keyArray, index + 1);
}
}
/**
* 将18位身份证转换成15位身份证,以便用来比较
* @param idCard 18位身份证号码
* @throws Exception
*/
public static String conver18to15(String idCard){
String newidCard = "";
StringBuffer sb = new StringBuffer(idCard);
sb.deleteCharAt(17);
sb.deleteCharAt(7);
sb.deleteCharAt(6);
newidCard = sb.toString();
return newidCard;
}
}
|
[
"[email protected]"
] | |
edc1f7ddb883ec9f98ae46ec10560955e023a2de
|
3f48d11410f8a986a9031d6080715d302a525a92
|
/src/com/collection/lazy/test/LazyCollectionTest.java
|
822341d9cf3d2660b684663f28905e432c2c7e98
|
[] |
no_license
|
LuigiCortese/Reusable-Java8-Streams
|
8efe7a544454c6949bf5caaee9e2effecc323b15
|
c9e4f5aae70a49ed1a9474200e1ada0ff66fb871
|
refs/heads/master
| 2021-01-16T00:50:06.787837 | 2015-04-02T12:30:20 | 2015-04-02T12:30:34 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 508 |
java
|
package com.collection.lazy.test;
import com.collection.lazy.generic.factory.LazyFactory;
import com.collection.lazy.util.LazyCollection;
/**
*
* @author kkishore
*
*/
public class LazyCollectionTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
final LazyCollection<Double> collection = LazyFactory.sequence(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0);
collection.stream().forEach(x -> System.out.println(x));
System.out.println(collection.stream().count());
}
}
|
[
"[email protected]"
] | |
382836a32076bbff9642e9cd3ce1930affb8a84a
|
23ddd40857f0725b0cafa0df59d459f5de9fc86f
|
/src/main/java/dependencyInjection/HelloSpringApp.java
|
3d619302903612bfc557b10fc2b4a0c1e3d946b3
|
[] |
no_license
|
ChandelKriti/Spring_Work
|
385258a096dcb199f89608eae0d3f7060d3454f3
|
114f48412ae74f190b11801684bdfa7228a5279b
|
refs/heads/master
| 2022-12-28T18:33:43.976891 | 2020-10-14T18:17:23 | 2020-10-14T18:17:23 | 303,601,134 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 633 |
java
|
package dependencyInjection;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class HelloSpringApp {
//load the configuration file
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//retrieve bean from spring container
Coach theCoach = context.getBean("myCoach",Coach.class);
public String dailyWorkout () {
//call methods on bean
return (theCoach.getDailyWorkout());
}
public String dailyFortune () {
//lets call our new method for fortune
return (theCoach.getDailyFortune());
}
}
|
[
"[email protected]"
] | |
590fb108780d7053332738bb94220a68c9e3b25c
|
c1015d066f305120f49e50f1912eb714b69cd138
|
/src/user/UserRegisterCheckServlet.java
|
99df5873254c2cab90e1f26f84be52695e09b8b0
|
[] |
no_license
|
eastshine12/servlet-chat
|
d94ca1bb0bdf78498b6527e3c669104b987cf707
|
0056c7f12314f79532af165bca545fbe7b33de7b
|
refs/heads/master
| 2023-03-26T14:03:12.176567 | 2021-03-23T02:25:00 | 2021-03-23T02:25:00 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 950 |
java
|
package user;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/UserRegisterCheckServlet")
public class UserRegisterCheckServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
System.out.println("UserRegisterCheckServlet doPost");
req.setCharacterEncoding("utf-8");
resp.setContentType("text/html;charset=UTF-8");
String userID = req.getParameter("userID");
UserDAO dao = UserDAO.getInstance();
String result = dao.registerCheck(userID)+"";
resp.getWriter().write(result); //중복아이디 체크 (0 : 중복, 1 : 가능). 문자열로 출력.
System.out.println("0 : 중복 / 1 : 가능 --> "+result);
}
}
|
[
"[email protected]"
] | |
eebcd233adf72e30278cc916e9b92c9e94c8d1c0
|
3e3d477eece9cb59c20d99d25644d55f8959600f
|
/jib-core/src/main/java/com/google/cloud/tools/jib/cache/CacheMetadataTranslator.java
|
9064c3bac601605160f40182b513b38fa01f52ca
|
[
"Apache-2.0"
] |
permissive
|
meip/jib
|
33b259ce3fa63fdb924b85244bf0f886a847563e
|
c24c798057c3ac46040693d457abc0f8d4c949fb
|
refs/heads/master
| 2020-03-28T14:15:25.281033 | 2018-09-11T20:10:48 | 2018-09-11T20:10:48 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 5,779 |
java
|
/*
* Copyright 2017 Google LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.cloud.tools.jib.cache;
import com.google.cloud.tools.jib.blob.BlobDescriptor;
import com.google.cloud.tools.jib.cache.json.CacheMetadataLayerObjectTemplate;
import com.google.cloud.tools.jib.cache.json.CacheMetadataLayerPropertiesObjectTemplate;
import com.google.cloud.tools.jib.cache.json.CacheMetadataLayerPropertiesObjectTemplate.LayerEntryTemplate;
import com.google.cloud.tools.jib.cache.json.CacheMetadataTemplate;
import com.google.cloud.tools.jib.image.LayerEntry;
import com.google.common.collect.ImmutableList;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.stream.Collectors;
/** Translates {@link CacheMetadata} to and from {@link CacheMetadataTemplate}. */
public class CacheMetadataTranslator {
/** Translates {@link CacheMetadataTemplate} to {@link CacheMetadata}. */
static CacheMetadata fromTemplate(CacheMetadataTemplate template, Path cacheDirectory)
throws CacheMetadataCorruptedException {
CacheMetadata.Builder cacheMetadataBuilder = CacheMetadata.builder();
// Converts each layer object in the template to a cache metadata layer.
for (CacheMetadataLayerObjectTemplate layerObjectTemplate : template.getLayers()) {
if (layerObjectTemplate.getDigest() == null || layerObjectTemplate.getDiffId() == null) {
throw new CacheMetadataCorruptedException(
"Cannot translate cache metadata layer without a digest or diffId");
}
Path layerContentFile =
CacheFiles.getLayerFile(cacheDirectory, layerObjectTemplate.getDigest());
// Gets the properties for a layer. Properties only exist for application layers.
CacheMetadataLayerPropertiesObjectTemplate propertiesObjectTemplate =
layerObjectTemplate.getProperties();
// Constructs the cache metadata layer from a cached layer and layer metadata.
LayerMetadata layerMetadata = null;
if (propertiesObjectTemplate != null) {
// Converts the layer entry templates to layer entries.
ImmutableList.Builder<LayerEntry> layerEntries =
ImmutableList.builderWithExpectedSize(
propertiesObjectTemplate.getLayerEntries().size());
for (LayerEntryTemplate layerEntryTemplate : propertiesObjectTemplate.getLayerEntries()) {
if (layerEntryTemplate.getSourceFiles() == null
|| layerEntryTemplate.getExtractionPath() == null) {
throw new CacheMetadataCorruptedException(
"Cannot translate cache metadata layer entry without source files or extraction path");
}
layerEntries.add(
new LayerEntry(
layerEntryTemplate
.getSourceFiles()
.stream()
.map(Paths::get)
.collect(ImmutableList.toImmutableList()),
layerEntryTemplate.getExtractionPath()));
}
layerMetadata =
LayerMetadata.from(
layerEntries.build(), propertiesObjectTemplate.getLastModifiedTime());
}
CachedLayer cachedLayer =
new CachedLayer(
layerContentFile,
new BlobDescriptor(layerObjectTemplate.getSize(), layerObjectTemplate.getDigest()),
layerObjectTemplate.getDiffId());
CachedLayerWithMetadata cachedLayerWithMetadata =
new CachedLayerWithMetadata(cachedLayer, layerMetadata);
cacheMetadataBuilder.addLayer(cachedLayerWithMetadata);
}
return cacheMetadataBuilder.build();
}
/** Translates {@link CacheMetadata} to {@link CacheMetadataTemplate}. */
static CacheMetadataTemplate toTemplate(CacheMetadata cacheMetadata) {
CacheMetadataTemplate template = new CacheMetadataTemplate();
for (CachedLayerWithMetadata cachedLayerWithMetadata : cacheMetadata.getLayers()) {
CacheMetadataLayerObjectTemplate layerObjectTemplate =
new CacheMetadataLayerObjectTemplate()
.setSize(cachedLayerWithMetadata.getBlobDescriptor().getSize())
.setDigest(cachedLayerWithMetadata.getBlobDescriptor().getDigest())
.setDiffId(cachedLayerWithMetadata.getDiffId());
if (cachedLayerWithMetadata.getMetadata() != null) {
// Constructs the layer entry templates to add to the layer object template.
List<LayerEntryTemplate> layerEntryTemplates =
cachedLayerWithMetadata
.getMetadata()
.getEntries()
.stream()
.map(
layerMetadataEntry ->
new LayerEntryTemplate(
layerMetadataEntry.getSourceFilesStrings(),
layerMetadataEntry.getExtractionPath()))
.collect(Collectors.toList());
layerObjectTemplate.setProperties(
new CacheMetadataLayerPropertiesObjectTemplate()
.setLayerEntries(layerEntryTemplates)
.setLastModifiedTime(cachedLayerWithMetadata.getMetadata().getLastModifiedTime()));
}
template.addLayer(layerObjectTemplate);
}
return template;
}
}
|
[
"[email protected]"
] | |
8cda7f5088ce4d3426e201cc006c481b44b3c8c5
|
219a39cec60d8d05439fa7a84d110207bd95b504
|
/src/test/java/fr/tsadeo/app/dsntotree/bdd/dao/impl/JdbcMessageDsnDaoTest.java
|
65734aa7d3fd6e16a544e3085afe79d760a0555d
|
[] |
no_license
|
djtalez/DsnToTree
|
c9d0011dd74fd66e10bf3288732db90bb371f37d
|
c4e16e5e22ad87f91a67756156b15b135b1a3b7d
|
refs/heads/master
| 2022-01-23T06:20:37.435798 | 2018-01-07T13:42:06 | 2018-01-07T13:42:06 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,743 |
java
|
package fr.tsadeo.app.dsntotree.bdd.dao.impl;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import java.util.logging.Logger;
import org.junit.Test;
import fr.tsadeo.app.dsntotree.bdd.dao.IMessageDsnDao;
import fr.tsadeo.app.dsntotree.bdd.model.MessageDsn;
public class JdbcMessageDsnDaoTest implements IJdbcDaoTest {
private static final Logger LOG = Logger.getLogger(JdbcMessageDsnDaoTest.class.getName());
private static final String MESS_MSG_FOUND = "Le message DSN de numéro chrono: %1$s a été trouvé en base de données!";
private String SQL_GET_MESS_BY_CHRONO = "select DSMSCHRMSG, DSMSDATDCL, DSMSNOMMSG from DSMSGDSNCL where DSMSCHRMSG = %1$d";
private static final IMessageDsnDao dao = new JdbcMessageDsnDao();
@Test
public void getMessageDsn() throws Exception {
MessageDsn result = dao.getMessageDsn(CHRONO_INEXISTANT);
assertNull(result);
result = dao.getMessageDsn(CHRONO_OK);
assertNotNull(result);
assertNotNull(result.getId());
assertNotNull(result.getName());
assertNotNull(result.getDateReferenceDeclaration());
assertNotNull(result.getNumeroChronoMessage());
assertEquals(CHRONO_OK, result.getNumeroChronoMessage());
LOG.config(result.toString());
}
@Test
public void testMessageFormat() {
String sql = String.format(SQL_GET_MESS_BY_CHRONO, 9999999L);
LOG.config(sql);
assertTrue(sql.endsWith("9999999"));
String result = String.format(MESS_MSG_FOUND, "7777");
assertNotNull(result);
LOG.config(result);
}
}
|
[
"[email protected]"
] | |
6fb0faaf1d22770c13ca2d8509dc5e36f833a56b
|
620ade4df1cd67e2990c42bcbccab73c6dc76816
|
/Assignment1/test/HighwayTest.java
|
26d0396e8fc45a92b082628044f1da89d44c5385
|
[] |
no_license
|
peishanwang/pdp-Individual
|
61dcab2be6536190b84b067fed96e1f27af8b7ad
|
c04c54a61163d4e89f04e63baec57e046de3fac9
|
refs/heads/master
| 2020-03-18T07:46:32.462258 | 2017-10-31T07:39:23 | 2017-10-31T07:39:23 | 134,472,179 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,911 |
java
|
package Assignment1.test;
import Assignment1.*;
import org.junit.BeforeClass;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
import static org.junit.Assert.*;
/**
* HighwayTest tests the correctness of the functions in Highway.
*
* @see Assignment1.Highway
*
* @author Peishan Wang
*/
/**
* We use only one Highway object in the whole HighwayTest, thus we need to specify the test order.
* We cannot predict the result if we don't know the order of tests execution.
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class HighwayTest {
private static Highway highway = null;
@BeforeClass
public static void setupBeforeTests() throws Exception {
highway = new Highway();
}
/**
* Test the function add(), getVelocityEastbound(), getVelocityWestbound(),
* numberVehiclesEastbound(), numberVehiclesWestbound().
*/
@Test
public void test1() {
highway.add(new Vehicle(18.00, 2));
highway.add(new Vehicle(-18.00, 2));
highway.add(new Vehicle(9.00, 1));
highway.add(new Vehicle(11.00, 2));
assertEquals("get east bound velocity", 9, highway.getVelocityEastbound(), 0.00);
assertEquals("get west bound velocity", 11, highway.getVelocityWestbound(), 0.00);
assertEquals("get east bound number", 2, highway.numberVehiclesEastbound());
assertEquals("get west bound number", 2, highway.numberVehiclesWestbound());
}
/**
* Test the function add(), remove(), contains().
*/
@Test
public void test2() {
Vehicle v = new Vehicle(25, 1);
highway.add(v);
assertEquals("contains v", true, highway.contains(v));
assertEquals("add v", false, highway.add(v));
assertEquals("remove v", true, highway.remove(v));
assertEquals("contains v", false, highway.contains(v));
}
}
|
[
"[email protected]"
] | |
4d003d88e47313edb63fa592e1758cc8ba75b3bf
|
675a78fe3ade3772af24437e001f9125e6ef6464
|
/app/src/main/java/com/ghstudios/android/ui/dialog/WishlistAddDialogFragment.java
|
81a024b4bf165d1ffb9914a07c94b6a560b80057
|
[
"MIT"
] |
permissive
|
kamegami13/MHGenDatabase
|
a6aa8272dcbaf6841fa065eadbba175edad7c554
|
01a845081b6fef7e44dc637c659c8719401694e9
|
refs/heads/develop
| 2021-01-18T14:49:06.509916 | 2016-07-24T18:48:23 | 2016-07-24T18:48:23 | 61,823,100 | 2 | 1 | null | 2016-06-23T17:13:52 | 2016-06-23T17:13:51 | null |
UTF-8
|
Java
| false | false | 1,876 |
java
|
package com.ghstudios.android.ui.dialog;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
import com.ghstudios.android.data.database.DataManager;
import com.ghstudios.android.mhgendatabase.R;
public class WishlistAddDialogFragment extends DialogFragment {
public static final String EXTRA_ADD =
"com.daviancorp.android.ui.general.wishlist_add";
private void sendResult(int resultCode, boolean add) {
if (getTargetFragment() == null)
return;
Intent i = new Intent();
i.putExtra(EXTRA_ADD, add);
getTargetFragment()
.onActivityResult(getTargetRequestCode(), resultCode, i);
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
LayoutInflater inflater = getActivity().getLayoutInflater();
View addView = inflater.inflate(R.layout.dialog_wishlist_add, null);
final EditText nameInput = (EditText) addView.findViewById(R.id.name_text);
return new AlertDialog.Builder(getActivity())
.setTitle(R.string.option_wishlist_add)
.setView(addView)
.setNegativeButton(android.R.string.cancel, null)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
String name = nameInput.getText().toString();
DataManager.get(getActivity()).queryAddWishlist(name);
Toast.makeText(getActivity(), "Added '" + name + "'", Toast.LENGTH_SHORT).show();
sendResult(Activity.RESULT_OK, true);
}
})
.create();
}
}
|
[
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.