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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
690938a4f16570fa8538a8ed951e3991572f4629 | fafd731284e687702ef38906477ba035a17ddde4 | /spring-restful/shopping-cart/src/main/java/com/agility/shopping/cart/repositories/ShoppingCartRepository.java | 8a41f5920a61a602fb6691b8143cf18542280b3f | []
| no_license | danhnguyen-agilityio/spring-boot | 3d358f9b15b48609fca8624be56927f119253e7c | b55da182a2f6d9950d06489c8233920fdd2ca268 | refs/heads/feature/apache-maven | 2022-06-23T19:18:25.040092 | 2019-12-23T08:04:09 | 2019-12-23T08:04:09 | 229,703,200 | 1 | 1 | null | 2022-06-21T02:30:17 | 2019-12-23T07:48:11 | Java | UTF-8 | Java | false | false | 1,431 | java | package com.agility.shopping.cart.repositories;
import com.agility.shopping.cart.models.ShoppingCart;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import java.util.List;
/**
* ShoppingCartRepository interface implement CRUD for shopping cart table
*/
public interface ShoppingCartRepository extends JpaRepository<ShoppingCart, Long> {
/**
* Check whether or not product name exists in database
*
* @param name Product name need check
* @return true if name product exists, other return false
*/
boolean existsByName(String name);
/**
* Find all shopping cart by given username
*
* @param username username of user that own shopping cart
* @return List shopping cart
*/
@Query("SELECT s FROM ShoppingCart s WHERE s.user.username = :username ")
List<ShoppingCart> findAllByUsername(@Param("username") String username);
/**
* Find one shopping cart by given shopping cart id and given user id
*
* @param shoppingCartId Shopping cart id
* @param userId User id
* @return Shopping cart
*/
@Query("select s from ShoppingCart s where s.user.id = :userId and s.id = :shoppingCartId")
ShoppingCart findOne(@Param("shoppingCartId") long shoppingCartId, @Param("userId") long userId);
}
| [
"[email protected]"
]
| |
0f7e4e6c64a256dbd655c9b78069c6dbb8901334 | f5de8c7b1c99b8b766df2f31394373c8f388889f | /eureka/src/test/java/com/loiter/eureka/EurekaApplicationTests.java | 31a3b0fb1db61623439783f93ce20ca21762070f | []
| no_license | BrendaHub/SC-Loiter | 7af63be3b90059ddb28a472dc04ec11aaa0598fd | f7090c6ff8d2f16ad5bd63521e16ea9a961ea05f | refs/heads/master | 2020-04-17T03:26:48.171963 | 2019-01-24T11:22:40 | 2019-01-24T11:22:40 | 166,183,404 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 344 | java | package com.loiter.eureka;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class EurekaApplicationTests {
@Test
public void contextLoads() {
}
}
| [
"[email protected]"
]
| |
1a7ec5dcee891ad8bd1b6451e0a72534bda9da80 | e502419ada5a78547fcf7704be6eb4dfc925be56 | /src/main/java/exide/sensibility/block/BlockGlimpySand.java | 940a63a9887619ab66bcc6ab587346b2f85b4250 | []
| no_license | Exide-Makington/Sensibility | b1254c1ab4cdcd587d5ada1d51f46ccca68df3ed | 0608446458bfedb7baae4c9206d9bc9dc0d562b3 | refs/heads/master | 2021-05-01T13:59:35.920965 | 2017-01-25T01:21:08 | 2017-01-25T01:21:08 | 79,583,084 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 575 | java | package exide.sensibility.block;
import java.util.List;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
import exide.sensibility.reference.Names;
public class BlockGlimpySand extends BlockSensibilityFalling
{
public BlockGlimpySand()
{
super(Material.sand);
this.setUnlocalizedName(Names.Blocks.GLIMPY_SAND);
this.setStepSound(soundTypeGravel);
this.setHardness(0.6F);
}
}
| [
"[email protected]"
]
| |
3cadd5c21b1d8ed40a9e29301be68016c26511d5 | 11b6d611d6a0ee21aa8115700d721308d4ebb4e5 | /src/main/java/com/ulises/usersserver/rest/mappers/UserWithEmailMapper.java | 10b37c54488c851a3e63f1fe5c6bcfcade7a7b8c | []
| no_license | UlisesCeca/Spring_UsersServer | 448c8b5aa0bfa96b9c26b07673ccc1dac2d5b876 | cb591ed0a8e496d5d1f66ce1b50d58deae976366 | refs/heads/master | 2020-03-26T01:57:40.886438 | 2018-09-05T20:24:58 | 2018-09-05T20:24:58 | 144,390,323 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 280 | java | package com.ulises.usersserver.rest.mappers;
import com.ulises.usersserver.rest.forms.PasswordEmailRecoveryForm;
import com.ulises.usersserver.services.entities.UserWithEmail;
public interface UserWithEmailMapper {
UserWithEmail map(final PasswordEmailRecoveryForm form);
}
| [
"[email protected]"
]
| |
739c19ca33a9183c1bb310328ff5a703f8343677 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/25/25_4db62e95a336ff44923d47400b66233cc6d293ef/CadpageDonateEvent/25_4db62e95a336ff44923d47400b66233cc6d293ef_CadpageDonateEvent_s.java | 42dfbedb89f9aae595fafdca0d95aaa5ad90f42a | []
| no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 958 | java | package net.anei.cadpage.donation;
import net.anei.cadpage.R;
/**
Sponsored by Cadpage
You are using a location sponsored by Cadpage.\n
Cadpage sponsors the general locations because their performance is
unreliable and we do not want to charge users who are waiting until a
better location can be implemented.
*/
public class CadpageDonateEvent extends DonateScreenEvent {
public CadpageDonateEvent() {
super(AlertStatus.GREEN, R.string.donate_cadpage_title, R.string.donate_cadpage_text,
AndroidDonateEvent.instance(),
PaypalDonateEvent.instance(),
MagicWordEvent.instance());
}
@Override
public boolean isEnabled() {
return ("Cadpage".equals(DonationManager.instance().sponsor()));
}
private static final CadpageDonateEvent instance = new CadpageDonateEvent();
public static CadpageDonateEvent instance() {
return instance;
}
}
| [
"[email protected]"
]
| |
9a95f0985bf1d8c00a2adbe458d82d73f42edba5 | f7a5f0c3a3101788a3a307d4f2676b1b2da35822 | /app/src/main/java/com/naserkarimi/wallet/retrofit/RetrofitHandler.java | d144b7ce6fa079893943409e4930c7cc0115d52f | []
| no_license | naserkarimi/CryptocurrencyWallet | dd0b16a4b8b6b98f0a26a5089b389132f7ecc100 | 2cabc878d3f2a111bca4ce8c92ca57084486f396 | refs/heads/master | 2022-12-25T10:36:13.193375 | 2020-09-27T19:55:23 | 2020-09-27T19:55:23 | 298,495,802 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,385 | java | package com.naserkarimi.wallet.retrofit;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import okhttp3.OkHttpClient;
import okhttp3.logging.HttpLoggingInterceptor;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
import static com.naserkarimi.wallet.retrofit.HistoryService.BASE_URL;
public class RetrofitHandler {
private static RetrofitHandler instance;
private Retrofit retrofit;
public static RetrofitHandler getInstance() {
if (instance == null)
instance = new RetrofitHandler();
return instance;
}
private RetrofitHandler() {
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor).build();
Gson gson = new GsonBuilder()
.setLenient()
.create();
retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.client(client)
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
}
public Retrofit getRetrofit() {
return retrofit;
}
}
| [
"[email protected]"
]
| |
c949aee200fcd73ff1ddfbcec7bddbdc6b702827 | a5db296994e3aaa48c601973d0fc3a48e97f9df8 | /JavaApplication3/src/Formularios/FormularioFinalizacao.java | 4f7fc071f187b26162710c555242d08e07c3166b | []
| no_license | polliamorim/JavaApplication3 | 4e0093f0dd4eaf3084d54befabd7f10b42c78d3d | fa76ff76e83e73ecf3706bab97910e2952c16953 | refs/heads/master | 2020-03-19T05:40:26.564982 | 2018-06-04T00:41:48 | 2018-06-04T00:41:48 | 135,952,313 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,895 | java |
package Formularios;
import Aplicacoes.Acao;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
public class FormularioFinalizacao {
//Instanciar ação
Acao a = new Acao();
//Construtor
public FormularioFinalizacao(double TotalCompra) {
//JFrame
JFrame f6 = new JFrame("O show começa aqui!");
f6.setSize(500, 450);
f6.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f6.setLocationRelativeTo(null);
f6.setLayout(null);
f6.getContentPane().setBackground(Color.black);
//JLabel
JLabel lblTotal = new JLabel("O total da sua compra é: R$"+ TotalCompra);
lblTotal.setBounds(20, 90, 320, 20);
lblTotal.setForeground(Color.white);
JLabel lblPagamento = new JLabel("Forma de pagamento:");
lblPagamento.setBounds(20, 130, 320, 20);
lblPagamento.setForeground(Color.white);
JLabel lblCartao = new JLabel("Número do cartão:");
lblCartao.setBounds(20, 170, 320, 20);
lblCartao.setForeground(Color.white);
JLabel lblSeguranca = new JLabel("Código de segurança:");
lblSeguranca.setBounds(20, 210, 320, 20);
lblSeguranca.setForeground(Color.white);
//JComboBox
JComboBox Comb4 = new JComboBox();
Comb4.setBounds(150, 130, 120, 20);
Comb4.addItem("Boleto");
Comb4.addItem("Cartão débito");
Comb4.addItem("Cartão crédito");
//JTEXTFIELD
JTextField txtCartao = new JTextField();
txtCartao.setBounds(130, 170, 140, 20);
JTextField txtSeguranca = new JTextField();
txtSeguranca.setBounds(150, 210, 120, 20);
//JButton
JButton bot2 = new JButton("Concluir");
bot2.setBounds(110, 280, 250, 30);
// Ação no botão de cadastro
bot2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(null, "Compra realizada com sucesso!");
//Fechar sistema
f6.dispose();
}
});
//ADD COMPONENTES AO JFRAM
f6.add(lblTotal);
f6.add(lblPagamento);
f6.add(lblCartao);
f6.add(txtCartao);
f6.add(lblSeguranca);
f6.add(txtSeguranca);
f6.add(Comb4);
f6.add(bot2);
//Exibir o formulário e seus componentes
f6.setVisible(true);
}
}
| [
"[email protected]"
]
| |
7fa5213fb36252c2873cee65bbea8a85f7e45529 | 785c24d11d63407e2b7977edcde21b95ebbffb05 | /app/src/main/java/com/example/simplequiz/AnswersCheckBoxAdapter.java | e7d69ce50064a9f073d38c3d3b92795e13530d9f | []
| no_license | chorry/simpleQuiz | 2e5c2fbf00ffb09892e0838ae79ef3d7be76445d | 24b0933a96df62984933f77c199a16733b41c9b7 | refs/heads/master | 2016-09-06T13:32:08.849552 | 2014-12-03T15:22:45 | 2014-12-03T15:22:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,453 | java | package com.example.simplequiz;
import android.content.Context;
import android.util.Log;
import android.util.SparseBooleanArray;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import java.util.List;
public class AnswersCheckBoxAdapter extends BaseAdapter implements CompoundButton.OnCheckedChangeListener {
private List<String> answers;
public SparseBooleanArray mCheckStates;
LayoutInflater inflater;
// the context is needed to inflate views in getView()
public AnswersCheckBoxAdapter(
Context context,
List<String> answers
)
{
this.inflater = LayoutInflater.from(context);
this.updateAnswers(answers);
}
@Override
public boolean hasStableIds()
{
return true;
}
public void updateAnswers(List<String> answers) {
this.answers = answers;
if (answers != null)
{
if (mCheckStates == null)
{
mCheckStates = new SparseBooleanArray(answers.size());
}
mCheckStates.clear();// V/example
}
notifyDataSetChanged();
}
public void setCheckedStates(SparseBooleanArray s)
{
this.mCheckStates = s;
notifyDataSetChanged();
}
public SparseBooleanArray getCheckedStates() {
return mCheckStates;
}
@Override
public int getCount() {
if ( this.answers == null)
{
return 0;
}
return answers.size();
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null)
{
holder = new ViewHolder();
convertView = this.inflater.inflate(R.layout.activity_answers_checkbox, parent, false);
holder.answerCheckBox = (CheckBox) convertView.findViewById(R.id.answerCheckBox);
holder.answerCheckBox.setChecked(false);
convertView.setTag(holder);
}
else
{
holder = (ViewHolder) convertView.getTag();
}
String answer = answers.get(position);
//((CheckBox) convertView.findViewById(R.id.answerCheckBox)).setText( answer );
holder.answerCheckBox.setText(answer);
holder.answerCheckBox.setTag(position);
holder.answerCheckBox.setChecked( mCheckStates.get(position, false) );
this.setChecked(position, holder.answerCheckBox.isChecked()); //lame workaroun
holder.answerCheckBox.setOnCheckedChangeListener(this);
return convertView;
}
public boolean isChecked(int position) {
return mCheckStates.get(position, false);
}
public void setChecked(int position, boolean isChecked) {
Log.v("example adapter","setChecked mCheckId" + Integer.toString(position));
mCheckStates.put(position, isChecked);
}
public void toggle(int position) {
this.setChecked(position, !isChecked(position));
}
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
mCheckStates.put((Integer) buttonView.getTag(), isChecked);
}
@Override
public String getItem(int position) {
return this.answers.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
private class ViewHolder {
CheckBox answerCheckBox;
}
}
| [
"[email protected]"
]
| |
8503c9c528db12dc21fce49b74c3d4afd5f7b5e2 | 1918e5c52e68b484c01b698d0d8f579ab0489eaa | /src/main/java/mchorse/blockbuster_pack/client/render/RenderCustomActor.java | 4e3657f262e79be723a15d5fba0507a992463b2c | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | hedw1gP/blockbuster | eb5f12a0dd0554b728ff4f645efd654bc2ff2d8e | 962f377a2452a465cfc7acded0ac4c4a975915a5 | refs/heads/master | 2022-04-12T08:33:27.503268 | 2020-03-19T12:07:10 | 2020-03-19T12:07:10 | 105,492,719 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,518 | java | package mchorse.blockbuster_pack.client.render;
import mchorse.blockbuster.Blockbuster;
import mchorse.blockbuster.client.render.RenderCustomModel;
import mchorse.blockbuster.client.render.layer.LayerHeldItem;
import mchorse.blockbuster_pack.client.render.layers.LayerActorArmor;
import mchorse.blockbuster_pack.client.render.layers.LayerBodyPart;
import mchorse.blockbuster_pack.client.render.layers.LayerCustomHead;
import mchorse.blockbuster_pack.client.render.layers.LayerElytra;
import mchorse.blockbuster_pack.morphs.CustomMorph;
import mchorse.metamorph.api.morphs.AbstractMorph;
import net.minecraft.client.Minecraft;
import net.minecraft.client.model.ModelBase;
import net.minecraft.client.renderer.Matrix4f;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.util.ResourceLocation;
/**
* Overriden {@link RenderCustomModel} to support {@link CustomMorph}'s skin
* property.
*/
public class RenderCustomActor extends RenderCustomModel
{
public RenderCustomActor(RenderManager renderManagerIn, ModelBase modelBaseIn, float shadowSizeIn)
{
super(renderManagerIn, modelBaseIn, shadowSizeIn);
this.addLayer(new LayerElytra(this));
this.addLayer(new LayerBodyPart(this));
this.addLayer(new LayerActorArmor(this));
this.addLayer(new LayerCustomHead(this));
this.addLayer(new LayerHeldItem(this));
}
/**
* Get entity's texture
*
* The thing which is going on here, is that we're going to check, whether
* given entity has a morph, and if it does, we're going to use its skin
*/
@Override
protected ResourceLocation getEntityTexture(EntityLivingBase entity)
{
AbstractMorph morph = this.current;
if (morph != null && morph instanceof CustomMorph)
{
ResourceLocation skin = ((CustomMorph) morph).skin;
if (skin != null)
{
return skin;
}
}
return super.getEntityTexture(entity);
}
/**
* Can the nametag be rendered by this entity
*
* This method is also takes in account the config option for making actor
* nametags visible always.
*/
@Override
protected boolean canRenderName(EntityLivingBase entity)
{
return entity.hasCustomName() && (Blockbuster.proxy.config.actor_always_render_names || (Minecraft.isGuiEnabled() && entity == this.renderManager.pointedEntity));
}
} | [
"[email protected]"
]
| |
784f19d26159db09e748a6266a43a19060433284 | d2382059d991d73efdd2b1b45b52f59da46fe708 | /question023/Solution1.java | 3ce2e725c5cc49444e45b14104a45b5b5ff55f78 | []
| no_license | wangyu32/LeetCode-1 | e9a7527efe0015b23b2a0aadac390b1f8e6823c1 | eb68818aa786b64d74a074af7661d7326ff5f1d4 | refs/heads/master | 2020-06-10T15:09:46.444471 | 2019-06-25T02:07:38 | 2019-06-25T02:07:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,111 | java | package question023;
/*
* See analysis: https://blog.csdn.net/qq_41231926/article/details/82263333
*/
public class Solution1 {
public ListNode mergeKLists(ListNode[] lists) {
ListNode[] curs = new ListNode[lists.length];
for (int i = 0; i < curs.length; i++) {
curs[i] = lists[i];
}
ListNode dummyHead = new ListNode(-1);
ListNode cur = dummyHead;
boolean flag = true;
do {
int index = 0;
for(int i = 0; i < curs.length; i++) {
if(curs[i] != null) {
break;
}
index++;
}
if(index == curs.length) {
return null;
}
ListNode minTemp = curs[index];
for(int i = index; i < curs.length; i++) {
if(curs[i] != null && curs[i].val < minTemp.val) {
minTemp = curs[i];
}
}
for(int i = index; i < curs.length; i++) {
if(curs[i] != null && minTemp.val == curs[i].val) {
curs[i] = curs[i].next;
break;
}
}
cur.next = minTemp;
cur = cur.next;
flag = false;
for (int i = 0; i < curs.length; i++) {
if(curs[i] != null) {
flag = true;
}
}
}while(flag);
return dummyHead.next;
}
}
| [
"[email protected]"
]
| |
c9f1eb2a2ae3a260191d6b2e446eebbe95ea7f3b | c6b6fa77fd29f6c7abad58d19cf95b0e2c8bd261 | /docroot/WEB-INF/service/com/drewblessing/googletasks/model/PortletCredentialWrapper.java | fcca8e09bcc94f54e7af854b13c6ae33fbeb6596 | []
| no_license | drewblessing/google-tasks-portlet | 91ea044e8150c0c446356faffeb8d6e9f699153f | e434d99d53d8801ab5ad1ba6eb9404fe58abbd1d | refs/heads/master | 2016-09-11T08:42:20.164420 | 2013-01-08T02:13:56 | 2013-01-08T02:13:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,870 | java | /**
* Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.drewblessing.googletasks.model;
import com.liferay.portal.model.ModelWrapper;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
* <p>
* This class is a wrapper for {@link PortletCredential}.
* </p>
*
* @author Drew A. Blessing
* @see PortletCredential
* @generated
*/
public class PortletCredentialWrapper implements PortletCredential,
ModelWrapper<PortletCredential> {
public PortletCredentialWrapper(PortletCredential portletCredential) {
_portletCredential = portletCredential;
}
public Class<?> getModelClass() {
return PortletCredential.class;
}
public String getModelClassName() {
return PortletCredential.class.getName();
}
public Map<String, Object> getModelAttributes() {
Map<String, Object> attributes = new HashMap<String, Object>();
attributes.put("id", getId());
attributes.put("companyId", getCompanyId());
attributes.put("userId", getUserId());
attributes.put("userName", getUserName());
attributes.put("createDate", getCreateDate());
attributes.put("modifiedDate", getModifiedDate());
attributes.put("googleId", getGoogleId());
attributes.put("userEmail", getUserEmail());
attributes.put("userPicture", getUserPicture());
attributes.put("accessToken", getAccessToken());
attributes.put("refreshToken", getRefreshToken());
attributes.put("expires", getExpires());
return attributes;
}
public void setModelAttributes(Map<String, Object> attributes) {
Long id = (Long)attributes.get("id");
if (id != null) {
setId(id);
}
Long companyId = (Long)attributes.get("companyId");
if (companyId != null) {
setCompanyId(companyId);
}
Long userId = (Long)attributes.get("userId");
if (userId != null) {
setUserId(userId);
}
String userName = (String)attributes.get("userName");
if (userName != null) {
setUserName(userName);
}
Date createDate = (Date)attributes.get("createDate");
if (createDate != null) {
setCreateDate(createDate);
}
Date modifiedDate = (Date)attributes.get("modifiedDate");
if (modifiedDate != null) {
setModifiedDate(modifiedDate);
}
String googleId = (String)attributes.get("googleId");
if (googleId != null) {
setGoogleId(googleId);
}
String userEmail = (String)attributes.get("userEmail");
if (userEmail != null) {
setUserEmail(userEmail);
}
String userPicture = (String)attributes.get("userPicture");
if (userPicture != null) {
setUserPicture(userPicture);
}
String accessToken = (String)attributes.get("accessToken");
if (accessToken != null) {
setAccessToken(accessToken);
}
String refreshToken = (String)attributes.get("refreshToken");
if (refreshToken != null) {
setRefreshToken(refreshToken);
}
Long expires = (Long)attributes.get("expires");
if (expires != null) {
setExpires(expires);
}
}
/**
* Returns the primary key of this portlet credential.
*
* @return the primary key of this portlet credential
*/
public long getPrimaryKey() {
return _portletCredential.getPrimaryKey();
}
/**
* Sets the primary key of this portlet credential.
*
* @param primaryKey the primary key of this portlet credential
*/
public void setPrimaryKey(long primaryKey) {
_portletCredential.setPrimaryKey(primaryKey);
}
/**
* Returns the ID of this portlet credential.
*
* @return the ID of this portlet credential
*/
public long getId() {
return _portletCredential.getId();
}
/**
* Sets the ID of this portlet credential.
*
* @param id the ID of this portlet credential
*/
public void setId(long id) {
_portletCredential.setId(id);
}
/**
* Returns the company ID of this portlet credential.
*
* @return the company ID of this portlet credential
*/
public long getCompanyId() {
return _portletCredential.getCompanyId();
}
/**
* Sets the company ID of this portlet credential.
*
* @param companyId the company ID of this portlet credential
*/
public void setCompanyId(long companyId) {
_portletCredential.setCompanyId(companyId);
}
/**
* Returns the user ID of this portlet credential.
*
* @return the user ID of this portlet credential
*/
public long getUserId() {
return _portletCredential.getUserId();
}
/**
* Sets the user ID of this portlet credential.
*
* @param userId the user ID of this portlet credential
*/
public void setUserId(long userId) {
_portletCredential.setUserId(userId);
}
/**
* Returns the user uuid of this portlet credential.
*
* @return the user uuid of this portlet credential
* @throws SystemException if a system exception occurred
*/
public java.lang.String getUserUuid()
throws com.liferay.portal.kernel.exception.SystemException {
return _portletCredential.getUserUuid();
}
/**
* Sets the user uuid of this portlet credential.
*
* @param userUuid the user uuid of this portlet credential
*/
public void setUserUuid(java.lang.String userUuid) {
_portletCredential.setUserUuid(userUuid);
}
/**
* Returns the user name of this portlet credential.
*
* @return the user name of this portlet credential
*/
public java.lang.String getUserName() {
return _portletCredential.getUserName();
}
/**
* Sets the user name of this portlet credential.
*
* @param userName the user name of this portlet credential
*/
public void setUserName(java.lang.String userName) {
_portletCredential.setUserName(userName);
}
/**
* Returns the create date of this portlet credential.
*
* @return the create date of this portlet credential
*/
public java.util.Date getCreateDate() {
return _portletCredential.getCreateDate();
}
/**
* Sets the create date of this portlet credential.
*
* @param createDate the create date of this portlet credential
*/
public void setCreateDate(java.util.Date createDate) {
_portletCredential.setCreateDate(createDate);
}
/**
* Returns the modified date of this portlet credential.
*
* @return the modified date of this portlet credential
*/
public java.util.Date getModifiedDate() {
return _portletCredential.getModifiedDate();
}
/**
* Sets the modified date of this portlet credential.
*
* @param modifiedDate the modified date of this portlet credential
*/
public void setModifiedDate(java.util.Date modifiedDate) {
_portletCredential.setModifiedDate(modifiedDate);
}
/**
* Returns the google ID of this portlet credential.
*
* @return the google ID of this portlet credential
*/
public java.lang.String getGoogleId() {
return _portletCredential.getGoogleId();
}
/**
* Sets the google ID of this portlet credential.
*
* @param googleId the google ID of this portlet credential
*/
public void setGoogleId(java.lang.String googleId) {
_portletCredential.setGoogleId(googleId);
}
/**
* Returns the user email of this portlet credential.
*
* @return the user email of this portlet credential
*/
public java.lang.String getUserEmail() {
return _portletCredential.getUserEmail();
}
/**
* Sets the user email of this portlet credential.
*
* @param userEmail the user email of this portlet credential
*/
public void setUserEmail(java.lang.String userEmail) {
_portletCredential.setUserEmail(userEmail);
}
/**
* Returns the user picture of this portlet credential.
*
* @return the user picture of this portlet credential
*/
public java.lang.String getUserPicture() {
return _portletCredential.getUserPicture();
}
/**
* Sets the user picture of this portlet credential.
*
* @param userPicture the user picture of this portlet credential
*/
public void setUserPicture(java.lang.String userPicture) {
_portletCredential.setUserPicture(userPicture);
}
/**
* Returns the access token of this portlet credential.
*
* @return the access token of this portlet credential
*/
public java.lang.String getAccessToken() {
return _portletCredential.getAccessToken();
}
/**
* Sets the access token of this portlet credential.
*
* @param accessToken the access token of this portlet credential
*/
public void setAccessToken(java.lang.String accessToken) {
_portletCredential.setAccessToken(accessToken);
}
/**
* Returns the refresh token of this portlet credential.
*
* @return the refresh token of this portlet credential
*/
public java.lang.String getRefreshToken() {
return _portletCredential.getRefreshToken();
}
/**
* Sets the refresh token of this portlet credential.
*
* @param refreshToken the refresh token of this portlet credential
*/
public void setRefreshToken(java.lang.String refreshToken) {
_portletCredential.setRefreshToken(refreshToken);
}
/**
* Returns the expires of this portlet credential.
*
* @return the expires of this portlet credential
*/
public long getExpires() {
return _portletCredential.getExpires();
}
/**
* Sets the expires of this portlet credential.
*
* @param expires the expires of this portlet credential
*/
public void setExpires(long expires) {
_portletCredential.setExpires(expires);
}
public boolean isNew() {
return _portletCredential.isNew();
}
public void setNew(boolean n) {
_portletCredential.setNew(n);
}
public boolean isCachedModel() {
return _portletCredential.isCachedModel();
}
public void setCachedModel(boolean cachedModel) {
_portletCredential.setCachedModel(cachedModel);
}
public boolean isEscapedModel() {
return _portletCredential.isEscapedModel();
}
public java.io.Serializable getPrimaryKeyObj() {
return _portletCredential.getPrimaryKeyObj();
}
public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
_portletCredential.setPrimaryKeyObj(primaryKeyObj);
}
public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
return _portletCredential.getExpandoBridge();
}
public void setExpandoBridgeAttributes(
com.liferay.portal.service.ServiceContext serviceContext) {
_portletCredential.setExpandoBridgeAttributes(serviceContext);
}
@Override
public java.lang.Object clone() {
return new PortletCredentialWrapper((PortletCredential)_portletCredential.clone());
}
public int compareTo(
com.drewblessing.googletasks.model.PortletCredential portletCredential) {
return _portletCredential.compareTo(portletCredential);
}
@Override
public int hashCode() {
return _portletCredential.hashCode();
}
public com.liferay.portal.model.CacheModel<com.drewblessing.googletasks.model.PortletCredential> toCacheModel() {
return _portletCredential.toCacheModel();
}
public com.drewblessing.googletasks.model.PortletCredential toEscapedModel() {
return new PortletCredentialWrapper(_portletCredential.toEscapedModel());
}
@Override
public java.lang.String toString() {
return _portletCredential.toString();
}
public java.lang.String toXmlString() {
return _portletCredential.toXmlString();
}
public void persist()
throws com.liferay.portal.kernel.exception.SystemException {
_portletCredential.persist();
}
/**
* @deprecated Renamed to {@link #getWrappedModel}
*/
public PortletCredential getWrappedPortletCredential() {
return _portletCredential;
}
public PortletCredential getWrappedModel() {
return _portletCredential;
}
public void resetOriginalValues() {
_portletCredential.resetOriginalValues();
}
private PortletCredential _portletCredential;
} | [
"[email protected]"
]
| |
8be31bb6979be49171699472c896b50462ea781b | 757292483574e75c40698f2fa674b2b611d0e6ac | /src/main/java/org/casual/yummy/dao/BankCardDAO.java | ec476bc95a964182c4acaa710c1170974892bac0 | []
| no_license | WangChuanYuan/Yummy | e5ee1e3bc9699abf315764ca360bb27897ab5d26 | c30591f62646297a339eb5e55c3e3f8525da9eae | refs/heads/master | 2020-04-18T06:45:05.965394 | 2019-03-19T02:42:23 | 2019-03-19T02:42:23 | 167,335,513 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 214 | java | package org.casual.yummy.dao;
import org.casual.yummy.model.member.BankCard;
import org.springframework.data.jpa.repository.JpaRepository;
public interface BankCardDAO extends JpaRepository<BankCard, String> {
}
| [
"[email protected]"
]
| |
6c1b1f75e3167f55885709b25dc7c6a8335718c4 | 4804cbc11b0dacfeb2745fdc48274f1f0d848712 | /src/main/java/com/cit/lotus/test/service/UserService.java | 2488a2aa86b7f374365be6123be041a5f42608f8 | []
| no_license | ikaluss/MyBatisTest | be20b71e386b3cb07b8ca214c21baf2896a27809 | 100d0fb043a14e6581f1c8c73a532d985406e209 | refs/heads/master | 2023-02-20T00:42:37.736467 | 2021-01-15T02:54:58 | 2021-01-15T02:54:58 | 329,792,715 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 171 | java | package com.cit.lotus.test.service;
import com.cit.lotus.test.dao.entity.User;
import java.util.List;
public interface UserService {
List<User> queryAllUsers();
}
| [
"[email protected]"
]
| |
6992db691224669a26ecd1376128cd9d16de883e | 5dfa9a7004528366e58bfeeb2bd50f4631e379dd | /src/test30/Thread_C.java | bf8e2ea9e2d24dec3efbebf6da0064bda8233a70 | []
| no_license | ChaimNJ/niuke | 0a66eada11bd310dc29cf93f7d0ad7d0423471f9 | bff1aa87258588994e8a6a4d96895c5076dd9a68 | refs/heads/master | 2023-01-24T06:35:17.438252 | 2018-04-07T07:36:40 | 2018-04-07T07:36:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 282 | java | package test30;
public class Thread_C extends Thread{
private Thread_B thread_b;
public Thread_C(Thread_B thread_b) {
super();
this.thread_b = thread_b;
}
@Override
public void run() {
super.run();
thread_b.bService();
}
}
| [
"[email protected]"
]
| |
551532ecb9661411f4454e3adb2e191e1bde9c2f | c07854d7f8bb5ed7d9dc4de36d33b135dec97968 | /SpringBootSecurity/src/main/java/com/kabish/security/basicauth/controller/TestController.java | 39319b95cfa5c6cf4d21ef36e59963322a6b1ed1 | []
| no_license | kabishkaran/SpringBoot | 59838b10ea2b86ea2b7009ea0f95912518b4f479 | ad1433b708a0d2203728ba9e0c2794a1989b228b | refs/heads/master | 2022-12-02T07:33:22.475609 | 2020-08-14T10:57:28 | 2020-08-14T10:57:28 | 287,510,882 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 969 | java | package com.kabish.security.basicauth.controller;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@CrossOrigin(origins = "*", maxAge = 3600)
@RestController
@RequestMapping("/api/test")
public class TestController {
@GetMapping("/all")
public String allAccess() {
return "Public Content.";
}
@GetMapping("/user")
@PreAuthorize("hasRole('USER') or hasRole('MODERATOR') or hasRole('ADMIN')")
public String userAccess() {
return "User Content.";
}
@GetMapping("/mod")
@PreAuthorize("hasRole('MODERATOR')")
public String moderatorAccess() {
return "Moderator Board.";
}
@GetMapping("/admin")
@PreAuthorize("hasRole('ADMIN')")
public String adminAccess() {
return "Admin Board.";
}
} | [
"[email protected]"
]
| |
86ffa5baafc5480493511929bed7c8f93e45b6ae | ad7e23761893369fec46fa1f572d2c1218479e3f | /src/main/java/ru/job4j/forum/repository/Store.java | 47b9aa24d7d10ff6c5b49fa86ba17d1d6abf2c26 | []
| no_license | EvgeniyDanisevich/job4j_forum | 17d280aa627dddf9c3bfdfcded5afab88e5f968b | 0c62ee4b5194f37fb9d1ec220b7911347fb29a46 | refs/heads/master | 2023-06-11T12:50:54.689510 | 2021-06-28T19:42:50 | 2021-06-28T19:42:50 | 380,841,206 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 301 | java | package ru.job4j.forum.repository;
import ru.job4j.forum.model.Post;
import ru.job4j.forum.model.Topic;
import java.util.List;
public interface Store {
void save(Topic topic);
List<Topic> getTopics();
Topic getTopicById(int id);
void save(Post post);
Post getPostById(int id);
} | [
"[email protected]"
]
| |
e4f2754375ac96131690a7f365ff279d6d302a9b | 55d690dc8f6bd6470448567009c830445863c2d8 | /src/Instructions/ORI.java | 9dfbe01646de97852e6302e2a22d1194867e4c9b | []
| no_license | vinzee/MIPS | 0bf218823a372045e75ec9c02a35942f2b58e29e | be8be676f3e072b27af8007c90476f98dd4a4e19 | refs/heads/master | 2021-07-15T05:48:19.938237 | 2017-05-06T23:01:50 | 2017-05-06T23:01:50 | 88,230,660 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,459 | java | package Instructions;
import java.util.ArrayList;
import Instructions.Operands.*;
import Managers.RegisterManager;
public class ORI extends Instruction{
RegisterOperand register_operand1;
RegisterOperand register_operand2;
ImmediateOperand immediate_operand;
public ORI(RegisterOperand register_operand1, RegisterOperand register_operand2, ImmediateOperand immediate_operand) {
super();
this.register_operand1 = register_operand1;
this.register_operand2 = register_operand2;
this.immediate_operand = immediate_operand;
}
@Override
public void execute() throws Exception {
double value = (int) RegisterManager.read(this.register_operand2) | (int) this.immediate_operand.value;
RegisterManager.write(this.register_operand1, value);
}
@Override
public RegisterOperand getDestinationRegister() throws Exception {
return this.register_operand1;
}
@Override
public ArrayList<RegisterOperand> getSourceRegisters() throws Exception {
ArrayList<RegisterOperand> source_registers = new ArrayList<RegisterOperand>();
source_registers.add(this.register_operand2);
return source_registers;
}
@Override
public void write() throws Exception {
// TODO Auto-generated method stub
}
@Override
public MemoryOperand getMemoryOperand() throws Exception {
// TODO Auto-generated method stub
return null;
}
@Override
public ImmediateOperand getImmediateOperand() throws Exception {
return this.immediate_operand;
}
} | [
"[email protected]"
]
| |
306224e1bf2a4a56e4582dd331a7fc3f8ced39ca | 4d72bda430e6e8210852c49c334f35056946965b | /src/main/java/es/test/base/pojo/Page.java | dcf30924855621d89c17da892a726467718006c9 | []
| no_license | zztryhard/estest | 5027a756dd2dfe1f24c049455a0b2aad83480a89 | d3d0cb015888b27f21517ea07fc5e6f0bd6f9242 | refs/heads/master | 2020-03-17T02:55:07.709851 | 2018-05-19T07:37:02 | 2018-05-19T07:37:02 | 133,211,962 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 981 | java | package es.test.base.pojo;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
/**
* @author 旺旺小学酥
* @Time 2017/12/5
*/
@Data
public class Page<T> implements Serializable {
private List<T> results;
private int size = 20;
private int index = 1;
private long count;
@JsonIgnore
private long begin;
private int pageCount;
public long getBegin() {
final long begin = this.size * (this.index - 1);
this.begin = begin < 0 ? 0 : begin;
return this.begin;
}
public int getPageCount(){
if (this.count == 0) {
this.pageCount = 1;
} else {
this.pageCount = (int) (this.count / this.size);
this.pageCount += this.count % this.size == 0 ? 0 : 1;
if (this.pageCount == 0) {
this.pageCount = 1;
}
}
return this.pageCount;
}
}
| [
"[email protected]"
]
| |
d4ad9dd2b35bfeaa7bcd218a7f2dca85cfa10ce3 | 0756de6e764382f31e7a4c24870e09c312909aad | /ThirtyDays.java | e44528be239324ee144b5351763261b348b585f4 | []
| no_license | Maldojavadev1969/javaHardWay | ad7a9204e83911b9708c1382ce922693d4001c09 | 4667ead6335547cec1dc01b202c27c231d1a0fd0 | refs/heads/master | 2021-01-20T05:10:47.289255 | 2017-05-16T02:45:20 | 2017-05-16T02:45:20 | 89,757,787 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,559 | java | import java.util.Scanner;
public class ThirtyDays
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
int month, days;
String monthName;
System.out.print("Which month?(1-12) ");
month = keyboard.nextInt();
switch(month){
case 1: monthName = "January"; System.out.println(monthName);
case 2: monthName = "February"; System.out.println(monthName);
case 3: monthName = "March"; System.out.println(monthName);
case 4: monthName = "April";
break;
case 5: monthName = "May";
break;
case 6: monthName = "June";
break;
case 7: monthName = "July";
break;
case 8: monthName = "August";
break;
case 9: monthName = "September";
break;
case 10:monthName = "October";
break;
case 11:monthName = "November";
break;
case 12:monthName = "December";
break;
default:monthName = "error";
}
/*
Thirty days hath September, April, June, and November
All the rest have thirty-one
Except the second month alone.....
*/
switch(month)
{
case 9:
case 4:
case 6:
case 11: days = 30;
break;
case 2: days = 28;
break;
default: days = 31;
}
System.out.println(days + " days hath " + monthName);
}
}
//Study Drills:
// removed some break statements and entered 1 for January and the code printed
// each month until April because April had a break. Since i did not change
// the code for second switch group it prints out the wrong number of days
| [
"[email protected]"
]
| |
4d8933981734374d3f2bec5b16decbb979f7cc9d | 20b3536c5b53ce04ce3f1174e40a0ba1589ea167 | /Leetcode/src/com/programming/leetcode/Hard/ReverseNodesInKGroup.java | 8d7aadd504528530d5b21f16fbc7a6845d8c22f1 | []
| no_license | RahilModi/Coding-Practice | 361e90c95a73c2d68e7d7f2100501e400a164a6f | 35c0ae1bf239221fc34ceb9731b416dec11179c3 | refs/heads/master | 2020-03-30T11:38:02.556473 | 2019-04-08T00:38:29 | 2019-04-08T00:38:29 | 151,184,024 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,666 | java | package com.programming.leetcode.Hard;
import com.programming.leetcode.Medium.ListNode;
public class ReverseNodesInKGroup {
public ListNode reverseKGroup(ListNode head, int k) {
ListNode crt = head;
int count = 0;
ListNode prev = null;
while (crt != null && count != k) { // find the k+1 node
crt = crt.next;
count++;
}
if(count != k)
return head;
crt = head;
ListNode next = null;
while(crt != null && count > 0){
next = crt.next;
crt.next = prev;
prev = crt;
crt = next;
count--;
}
if(next != null){
head.next = reverseKGroup(next, k);
}
return prev;
}
public ListNode reverseKGroupV1(ListNode head, int k) {
if (k <= 1 || head == null || head.next == null)
return head;
ListNode newHead = new ListNode(0);
newHead.next = head;
ListNode prev, start, then, tail;
tail = prev = newHead;
start = prev.next;
while (true) {
// check if there's k nodes left-out
for (int i = 0; i < k; i++) {
tail = tail.next;
if (tail == null)
return newHead.next;
}
// reverse k nodes
int count = k;
while (count-- > 1){
then = start.next;
start.next = then.next;
then.next = prev.next;
prev.next = then;
}
tail = prev = start;
start = prev.next;
}
}
}
| [
"[email protected]"
]
| |
08b7581ea812d2b00fab3ab61e28c8addb22e144 | 2f51b6ca79aa58c0afac773702c14d1ab485cb43 | /src/main/java/com/jojoldu/book/springboot/config/auth/LoginUserArgumentResolver.java | 133265a8ebc34e31249bf91f4eead36a175272c4 | []
| no_license | juneast/freelec-springboot2-webservice | 863302977dce148a66d17a1f3c4f702559e98390 | 3e28e175a2426708714a2bb16db64eb4e3fdaa28 | refs/heads/master | 2022-04-08T17:04:46.132047 | 2020-02-12T15:46:52 | 2020-02-12T15:46:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,307 | java | package com.jojoldu.book.springboot.config.auth;
import com.jojoldu.book.springboot.config.auth.dto.SessionUser;
import lombok.RequiredArgsConstructor;
import org.springframework.core.MethodParameter;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.support.WebDataBinderFactory;
import org.springframework.web.context.request.NativeWebRequest;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.method.support.ModelAndViewContainer;
import javax.servlet.http.HttpSession;
@RequiredArgsConstructor
@Component
public class LoginUserArgumentResolver implements HandlerMethodArgumentResolver {
private final HttpSession httpSession;
@Override
public boolean supportsParameter(MethodParameter parameter){
boolean isLoginUserAnnotation = parameter.getParameterAnnotation(LoginUser.class) != null;
boolean isUserClass = SessionUser.class.equals(parameter.getParameterType());
return isLoginUserAnnotation && isUserClass;
}
@Override
public Object resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory) throws Exception {
return httpSession.getAttribute("user");
}
}
| [
"[email protected]"
]
| |
59d27a3f2b4259780852dd00a397e43b6c9d0d0c | a3d94d8efea1c5bc60a204b959b21ce18608c1c5 | /src/com/huashu/array/RemoveElement.java | 45a10faac63b58522fc89286a70db66d6eb362a8 | []
| no_license | YourHuashu/leetcode | d5f0564efe6f5db418f4cc896bf5e8450cb2ca7d | e888302b4e50e950bb35898261398e7d2ddb3219 | refs/heads/master | 2021-01-21T03:56:17.148107 | 2017-11-11T14:32:22 | 2017-11-11T14:32:22 | 101,903,240 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 757 | java | package com.huashu.array;
/*
Add to List
27. Remove Element
DescriptionHintsSubmissionsDiscussSolution
Discuss Pick One
Given an array and a value, remove all instances of that value in place and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
Example:
Given input array nums = [3,2,2,3], val = 3
Your function should return length = 2, with the first two elements of nums being 2.
*/
public class RemoveElement {
public int removeElement(int[] nums, int val) {
int i = 0, k = 0;
while (i < nums.length) {
if (nums[i] != val)
nums[k++] = nums[i];
i++;
}
return k;
}
}
| [
"[email protected]"
]
| |
3d68ddab72ea97677fc0a8eb2d7e9b56b172d6e7 | 9c21a64d742523665d97ef0b8372b59f28f4ceb5 | /competitive-programming/5-graphs/solutions/Traversals.java | cea8b65f15af00e8e3729e7eb08f8a4e4f05ab4d | []
| no_license | kamleshbhalui/brabble | 32428536cf1d53aaccc64237e3582ee2ad489008 | a6b88e528d2e7222e41924a136797e9c55903598 | refs/heads/master | 2020-03-09T12:52:51.131758 | 2015-02-23T20:18:56 | 2015-02-23T20:18:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,853 | java | import java.util.*;
import java.io.*;
class Traversals {
static int num = 0;
static List<List<Integer>> nodes;
static boolean seen[];
static final LinkedList<Integer> order = new LinkedList<>();
/** BFS keeps a queue of nodes to visit. At each iteration a node
is removed from the queue and its neighbours added back (if not
visited already). This happens until no more nodes are left to
visit. **/
public static void bfs(int start) {
Queue<Integer> queue = new LinkedList<>();
queue.add(start);
seen[start] = true;
while (!queue.isEmpty()) {
int node = queue.remove();
System.out.println(node);
for (int neighbour : nodes.get(node)) {
if (!seen[neighbour]) {
seen[neighbour] = true;
queue.add(neighbour);
}
}
}
}
/** To transform BFS into DFS, we only need to change the queue
to a stack (and corresponding method calls). **/
public static void dfsIterative(int start) {
System.out.println();
Stack<Integer> queue = new Stack<>();
queue.add(start);
seen[start] = true;
while (!queue.isEmpty()) {
int node = queue.pop();
System.out.println(node);
for (int neighbour : nodes.get(node)) {
if (!seen[neighbour]) {
seen[neighbour] = true;
queue.push(neighbour);
}
}
}
}
/** It's easier to write a DFS traversal recursively, since we can
use the function call stack, instead of writing our
own. Beware though that this may lead to stack overflow for
really large graphs (typically large than 2K nodes). **/
public static void dfs(int start) throws Exception {
seen[start] = true;
for (int neighbour : nodes.get(start)) {
if (!seen[neighbour]) {
// pretty print the traversal
GraphLib.printDigraph(nodes, seen, neighbour, start);
dfs(neighbour);
}
}
System.out.println(start);
}
public static void init(int n) {
seen = new boolean[n];
for (boolean b : seen) {
b = false;
}
order.clear();
}
public static void main(String[] args) throws Exception {
GraphLib.clearDigraph();
nodes = GraphLib.readGraphFromDotFile("in.dot");
int n = nodes.size();
System.out.println("Read graph: ");
GraphLib.prettyPrintGraph(nodes);
init(n);
System.out.println("Traversing:");
for (int i = 0; i < n; i++) {
if (seen[i]) continue;
dfsIterative(i);
GraphLib.printDigraph(nodes, seen, -1, -1);
}
}
}
| [
"[email protected]"
]
| |
ff24409650c887ec9bc6001e46e592dca8016781 | 7c69e6ba3a68d96101261b9987683da34f103341 | /src/main/java/net/crytec/libs/commons/utils/lang/time/FastTimeZone.java | d2a4fadd0517883a63bd2ff05379dc1859388206 | []
| no_license | Projekt-Sidusgames/Commons | 2f9b4e56952815cd81a2e6c790135f5fb0c96fe3 | cb8b5571e411e695d03ef1e4ad3079a8055ed2e3 | refs/heads/master | 2023-02-26T13:59:57.974448 | 2021-02-06T09:35:22 | 2021-02-06T09:35:22 | 328,039,038 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,060 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.crytec.libs.commons.utils.lang.time;
import java.util.TimeZone;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Faster methods to produce custom time zones.
*
* @since 3.7
*/
public class FastTimeZone {
private static final Pattern GMT_PATTERN = Pattern.compile("^(?:(?i)GMT)?([+-])?(\\d\\d?)?(:?(\\d\\d?))?$");
private static final TimeZone GREENWICH = new GmtTimeZone(false, 0, 0);
/**
* Gets the GMT TimeZone.
*
* @return A TimeZone with a raw offset of zero.
*/
public static TimeZone getGmtTimeZone() {
return GREENWICH;
}
/**
* Gets a TimeZone with GMT offsets. A GMT offset must be either 'Z', or 'UTC', or match
* <em>(GMT)? hh?(:?mm?)?</em>, where h and m are digits representing hours and minutes.
*
* @param pattern The GMT offset
* @return A TimeZone with offset from GMT or null, if pattern does not match.
*/
public static TimeZone getGmtTimeZone(final String pattern) {
if ("Z".equals(pattern) || "UTC".equals(pattern)) {
return GREENWICH;
}
final Matcher m = GMT_PATTERN.matcher(pattern);
if (m.matches()) {
final int hours = parseInt(m.group(2));
final int minutes = parseInt(m.group(4));
if (hours == 0 && minutes == 0) {
return GREENWICH;
}
return new GmtTimeZone(parseSign(m.group(1)), hours, minutes);
}
return null;
}
/**
* Gets a TimeZone, looking first for GMT custom ids, then falling back to Olson ids. A GMT custom id can be 'Z', or 'UTC', or has an optional prefix of GMT, followed by sign, hours digit(s), optional colon(':'), and optional minutes digits. i.e.
* <em>[GMT] (+|-) Hours [[:] Minutes]</em>
*
* @param id A GMT custom id (or Olson id
* @return A timezone
*/
public static TimeZone getTimeZone(final String id) {
final TimeZone tz = getGmtTimeZone(id);
if (tz != null) {
return tz;
}
return TimeZone.getTimeZone(id);
}
private static int parseInt(final String group) {
return group != null ? Integer.parseInt(group) : 0;
}
private static boolean parseSign(final String group) {
return group != null && group.charAt(0) == '-';
}
// do not instantiate
private FastTimeZone() {
}
}
| [
"[email protected]"
]
| |
322a8fb3ccf0b9ed5c510a03013d915f0a223ef9 | 3d8fa87b8cfba260cd0645ce9e108ebb0514e1a8 | /btp-core-codecs/src/main/java/com/hopebailie/btp/asn/codecs/AsnBtpErrorDataCodec.java | c60b49ed33dec6de682fab6ddebaeb7cf7cd5a99 | [
"Apache-2.0"
]
| permissive | adrianhopebailie/ilp-node | ab77d4189db00aa04e19e500c5e3222a229e5be4 | 8f89ebbe80e196d87ca5c7baf31eaf85dcb89997 | refs/heads/master | 2021-04-03T08:18:30.574316 | 2018-04-13T23:16:51 | 2018-04-13T23:16:51 | 124,947,222 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,818 | java | package com.hopebailie.btp.asn.codecs;
import org.interledger.encoding.asn.codecs.AsnIA5StringCodec;
import org.interledger.encoding.asn.codecs.AsnOctetStringCodec;
import org.interledger.encoding.asn.codecs.AsnSizeConstraint;
import org.interledger.encoding.asn.codecs.AsnUtf8StringCodec;
import com.hopebailie.btp.BtpError;
import com.hopebailie.btp.BtpErrorCode;
/**
* Used to encode/decode the body of a MESSAGE and RESPONSE
*/
public class AsnBtpErrorDataCodec extends AsnBtpPacketDataCodec<BtpError> {
public AsnBtpErrorDataCodec(long requestId) {
super(
requestId,
new AsnUtf8StringCodec(new AsnSizeConstraint(3)), //Code
new AsnUtf8StringCodec(AsnSizeConstraint.UNCONSTRAINED), //Name
new AsnIA5StringCodec(AsnSizeConstraint.UNCONSTRAINED), //TODO Parse time
new AsnOctetStringCodec(AsnSizeConstraint.UNCONSTRAINED), //Data
new AsnBtpSubProtocolsCodec() //SubProtocols
);
}
/**
* Decode and return the value read into the codec during serialization.
*
* @return the decoded object
*/
@Override
public BtpError decode() {
return BtpError.builder()
.requestId(getRequestId())
.errorCode(BtpErrorCode.fromString(getValueAt(0)))
.errorName(getValueAt(1))
.triggeredAt(getValueAt(2))
.errorData(getValueAt(3))
.subProtocols(getValueAt(4))
.build();
}
/**
* Encode the provided value into the codec to be written during serialization.
*
* @param value the value to encode
*/
@Override
public void encode(BtpError value) {
setValueAt(0, value.getErrorCode().getCode());
setValueAt(1, value.getErrorName());
setValueAt(2, value.getTriggeredAt());
setValueAt(3, value.getErrorData());
setValueAt(4, value.getSubProtocols());
}
}
| [
"[email protected]"
]
| |
6d927507cc6fcacf8e7241e0f70c11237c2094c4 | b3d9da91961da1beacbaedb74e3eb1bb0d10866e | /app/src/main/java/com/app/discoverytrails/nav/OneFragment.java | ed5b1b49bc605f4765f24bfe2441d11010ecc94d | []
| no_license | kalpeshkumawat/DiscoveryTrails | c2c81dbf3355bd4fd2a512b1d3e3f9ee5e3d3a85 | 5dd5634d348105bdf76af16224c7039a2ba2eb63 | refs/heads/master | 2020-07-29T11:09:55.921197 | 2019-09-20T11:24:19 | 2019-09-20T11:24:19 | 209,774,196 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,519 | java | package com.app.discoverytrails.nav;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.navigation.Navigation;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;
import com.app.discoverytrails.R;
/**
* A simple {@link Fragment} subclass.
*/
public class OneFragment extends Fragment {
public OneFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_one, container, false);
Button button = view.findViewById(R.id.btn_99);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Navigation.findNavController(view).navigate(R.id.action_oneFragment_to_threeFragment);
}
});
return view;
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if (getArguments() != null) {
String app_name = getArguments().getString("app_name");
Toast.makeText(getActivity(), ""+app_name, Toast.LENGTH_SHORT).show();
}
}
}
| [
"[email protected]"
]
| |
a15c6745f061f53fe354bd3170b683df155ab682 | 19faa0494e448eca4b3b5980a5fa07c4c8b1542e | /workspace/01_java-basic/src/day11/exam/Test01.java | 0574af28fe65e654f5bc907a0bdd546d1acfb331 | []
| no_license | chak2156/bit90 | 44713b39732f3bca2bcce988f53ae414b54ec19d | a15a6a74b75bf2d44ad1fc589d6dd79de9731dbb | refs/heads/master | 2021-01-12T06:22:59.457679 | 2017-01-13T02:43:48 | 2017-01-13T02:43:48 | 77,351,002 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,779 | java | package day11.exam;
import java.text.Format;
import java.util.Arrays;
class MyArrayList {
int stack = 0;
Object[] str = new Object[0];
@Override
public String toString() {
//MyArrayList[test,java] 를 출력함
return String.format("MyArrayList[%s,%s]",str[0],str[1]);
}
public void add(String add) {
if (stack == str.length) {
Object[] temp = new Object[stack + 1];
System.arraycopy(str, 0, temp, 0, stack);
str = temp;
}
str[stack++] = add;
}
public Object get(int num) {
return str[num];
}
public int size() {
return stack;
}
public void remove(int i) {
System.arraycopy(str, i+1, str, i, stack-(i+1));
str[--stack]=null;
}
public void clear() {
str=new Object[0];
stack =0;
}
}
public class Test01 {
public static void main(String[] args) {
MyArrayList list = new MyArrayList();
list.add("one");
list.add("two");
list.add("three");
list.add("four");
// list.get(0) 일 경우 "one"를 반환
String data = (String) list.get(1);
// data:two가 출력됨
System.out.println("data:" + data);
// add한 데이터들의 크기 반환
int size = list.size();
// 입력된 데이터의 크기 : 4가 출력됨
System.out.println("입력된 데이터의 크기 : " + size);
// two 데이터를 삭제 처리함
list.remove(1);
size = list.size();
// 삭제후 데이터의 크기 : 3가 출력됨
System.out.println("삭제후 데이터의 크기 : " + size);
// 전체 데이터 삭제
list.clear();
size = list.size();
// 전체 데이터 삭제 후 데이터의 크기 : 0 이 출력됨
System.out.println("전체 삭제후 데이터의 크기 : " + size);
list.add("test");
list.add("java");
// MyArrayList[test,java] 를 출력함
System.out.println(list);
}
}
| [
"[email protected]"
]
| |
e52834e6aa9341398bd210fdd4c427fbe4243c01 | 812d339e2d7612611671321a7073909131040f06 | /src/main/java/us/longda/tools/common/ByteConvert.java | 1e00cc79ee7102e0ec9022b4a1b20d9d55236079 | []
| no_license | Wjintao/netty-protobuff | 35d00345643a22b47a05342c70b99feaca7ecf87 | d97452e7af60026e6fc67d0a307eddc3fd911d81 | refs/heads/master | 2021-01-22T18:01:39.763072 | 2017-03-15T09:18:42 | 2017-03-15T09:18:42 | 85,052,439 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,716 | java | package us.longda.tools.common;
public class ByteConvert {
public static byte[] longToBytes(long n) {
byte[] b = new byte[8];
b[7] = (byte) (n & 0xff);
b[6] = (byte) (n >> 8 & 0xff);
b[5] = (byte) (n >> 16 & 0xff);
b[4] = (byte) (n >> 24 & 0xff);
b[3] = (byte) (n >> 32 & 0xff);
b[2] = (byte) (n >> 40 & 0xff);
b[1] = (byte) (n >> 48 & 0xff);
b[0] = (byte) (n >> 56 & 0xff);
return b;
}
public static void longToBytes(long n, byte[] array, int offset) {
array[7 + offset] = (byte) (n & 0xff);
array[6 + offset] = (byte) (n >> 8 & 0xff);
array[5 + offset] = (byte) (n >> 16 & 0xff);
array[4 + offset] = (byte) (n >> 24 & 0xff);
array[3 + offset] = (byte) (n >> 32 & 0xff);
array[2 + offset] = (byte) (n >> 40 & 0xff);
array[1 + offset] = (byte) (n >> 48 & 0xff);
array[0 + offset] = (byte) (n >> 56 & 0xff);
}
public static long bytesToLong(byte[] array) {
return ((((long) array[0] & 0xff) << 56)
| (((long) array[1] & 0xff) << 48)
| (((long) array[2] & 0xff) << 40)
| (((long) array[3] & 0xff) << 32)
| (((long) array[4] & 0xff) << 24)
| (((long) array[5] & 0xff) << 16)
| (((long) array[6] & 0xff) << 8) | (((long) array[7] & 0xff) << 0));
}
public static long bytesToLong(byte[] array, int offset) {
return ((((long) array[offset + 0] & 0xff) << 56)
| (((long) array[offset + 1] & 0xff) << 48)
| (((long) array[offset + 2] & 0xff) << 40)
| (((long) array[offset + 3] & 0xff) << 32)
| (((long) array[offset + 4] & 0xff) << 24)
| (((long) array[offset + 5] & 0xff) << 16)
| (((long) array[offset + 6] & 0xff) << 8) | (((long) array[offset + 7] & 0xff) << 0));
}
public static byte[] intToBytes(int n) {
byte[] b = new byte[4];
b[3] = (byte) (n & 0xff);
b[2] = (byte) (n >> 8 & 0xff);
b[1] = (byte) (n >> 16 & 0xff);
b[0] = (byte) (n >> 24 & 0xff);
return b;
}
public static void intToBytes(int n, byte[] array, int offset) {
array[3 + offset] = (byte) (n & 0xff);
array[2 + offset] = (byte) (n >> 8 & 0xff);
array[1 + offset] = (byte) (n >> 16 & 0xff);
array[offset] = (byte) (n >> 24 & 0xff);
}
public static int bytesToInt(byte b[]) {
return b[3] & 0xff | (b[2] & 0xff) << 8 | (b[1] & 0xff) << 16
| (b[0] & 0xff) << 24;
}
public static int bytesToInt(byte b[], int offset) {
return b[offset + 3] & 0xff | (b[offset + 2] & 0xff) << 8
| (b[offset + 1] & 0xff) << 16 | (b[offset] & 0xff) << 24;
}
public static byte[] uintToBytes(long n) {
byte[] b = new byte[4];
b[3] = (byte) (n & 0xff);
b[2] = (byte) (n >> 8 & 0xff);
b[1] = (byte) (n >> 16 & 0xff);
b[0] = (byte) (n >> 24 & 0xff);
return b;
}
public static void uintToBytes(long n, byte[] array, int offset) {
array[3 + offset] = (byte) (n);
array[2 + offset] = (byte) (n >> 8 & 0xff);
array[1 + offset] = (byte) (n >> 16 & 0xff);
array[offset] = (byte) (n >> 24 & 0xff);
}
public static long bytesToUint(byte[] array) {
return ((long) (array[3] & 0xff)) | ((long) (array[2] & 0xff)) << 8
| ((long) (array[1] & 0xff)) << 16
| ((long) (array[0] & 0xff)) << 24;
}
public static long bytesToUint(byte[] array, int offset) {
return ((long) (array[offset + 3] & 0xff))
| ((long) (array[offset + 2] & 0xff)) << 8
| ((long) (array[offset + 1] & 0xff)) << 16
| ((long) (array[offset] & 0xff)) << 24;
}
public static byte[] shortToBytes(short n) {
byte[] b = new byte[2];
b[1] = (byte) (n & 0xff);
b[0] = (byte) ((n >> 8) & 0xff);
return b;
}
public static void shortToBytes(short n, byte[] array, int offset) {
array[offset + 1] = (byte) (n & 0xff);
array[offset] = (byte) ((n >> 8) & 0xff);
}
public static short bytesToShort(byte[] b) {
return (short) (b[1] & 0xff | (b[0] & 0xff) << 8);
}
public static short bytesToShort(byte[] b, int offset) {
return (short) (b[offset + 1] & 0xff | (b[offset] & 0xff) << 8);
}
public static byte[] ushortToBytes(int n) {
byte[] b = new byte[2];
b[1] = (byte) (n & 0xff);
b[0] = (byte) ((n >> 8) & 0xff);
return b;
}
public static void ushortToBytes(int n, byte[] array, int offset) {
array[offset + 1] = (byte) (n & 0xff);
array[offset] = (byte) ((n >> 8) & 0xff);
}
public static int bytesToUshort(byte b[]) {
return b[1] & 0xff | (b[0] & 0xff) << 8;
}
public static int bytesToUshort(byte b[], int offset) {
return b[offset + 1] & 0xff | (b[offset] & 0xff) << 8;
}
public static byte[] ubyteToBytes(int n) {
byte[] b = new byte[1];
b[0] = (byte) (n & 0xff);
return b;
}
public static void ubyteToBytes(int n, byte[] array, int offset) {
array[0] = (byte) (n & 0xff);
}
public static int bytesToUbyte(byte[] array) {
return array[0] & 0xff;
}
public static int bytesToUbyte(byte[] array, int offset) {
return array[offset] & 0xff;
}
// char, float, double need to be done
}
| [
"[email protected]"
]
| |
85937e09175b45ef7178700390aeed61083cb494 | 9e28d7f4d65f1cce19cb82b5a814bea43d630e7e | /Solution/src/Tree/Solution110.java | 506e8e6254ba53eba13b19c2162b331f68608dd9 | [
"Apache-2.0"
]
| permissive | HQCfly/LeetCodeSolution | ea928fdb2921fb297d6178e9b65b36c337c6e57f | 9246e0f8fb5317e8dfd7e142c9732fd798797233 | refs/heads/master | 2022-10-05T12:29:05.987637 | 2020-06-10T12:13:56 | 2020-06-10T12:13:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,421 | java | package Tree;
import DataStructure.BinaryTreeNode;
/**
* Problem
* 110.Balanced Binary Tree
* https://leetcode.com/problems/balanced-binary-tree/
* https://leetcode-cn.com/problems/balanced-binary-tree/
* Grade of difficulty
* Easy
* Related topics
* 94.Binary Tree Inorder Traversal
* 98. Validate Binary Search Tree
* 104.Maximum Depth of Binary Tree
* 111.Minimum Depth of Binary Tree
* 112.Path Sum
* 113. Path Sum II
* 129.Sum Root to Leaf Numbers
* 144.Binary Tree Preorder Traversal
* 145.Binary Tree Postorder Traversal
* 222.Count Complete Tree Nodes
* 230.Kth Smallest Element in a BST
* 687.Longest Univalue Path
* 965.Univalued Binary Tree
* @author cartoon
* @version 1.0
*/
public class Solution110 {
/**
* 1.关于复杂度
* 1.1 时间复杂度为O(n)
* 1.2 空间负责度为O(n)
* 2.我的解题思路
* 2.1 解法基于深度优先遍历
* 2.2 递归获取左右子树的深度
* 2.3 对比左右子树的深度
* 2.3.1 若出现深度为-1的情况,返回-1到上一层
* 2.3.2 若出现左右子树深度之差大于1的情况,返回-1到上一层
* 2.3.3 若没有出现1,2的情况,返回左右子树的深度最大值加1到上一层
* 3.提交记录
* 3.1 力扣中耗时2ms,消耗39.5MB内存
* 3.2 leetcode中耗时0ms,消耗38.6MB内存
* 4. Q&A
*
* 1.About Complexity
* 1.1 Time Complexity is O(n)
* 1.2 Space Complexity is O(n)
* 2.how I solve
* 2.1 this solution is base on depth traversal
* 2.2 static height of left right children tree,compare their height
* 3.About submit record
* 3.1 2ms and 39.5MB memory in LeetCode China
* 3.2 0ms and 38.6MB memory in LeetCode
* 4.Q&A
*
* @param root
* @return
*/
public boolean isBalanced(BinaryTreeNode root) {
return height(root)!=-1;
}
private int height(BinaryTreeNode root){
if(root==null){
return 0;
}
int left=height(root.left);
if(left==-1){
return -1;
}
int right=height(root.right);
if(right==-1||Math.abs(left-right)>1){
return -1;
}
return Math.max(left,right)+1;
}
}
| [
"[email protected]"
]
| |
715633a8c8e2c70cc6efa75c2c9213af5d044b4a | 339fda3176df865d76c8c7bef9385b7f0b8d5ba4 | /ProjectSrc/src/cn/lntu/t14/aaa/src/studentManage/src/GetStudent.java | 5aaa4da913638cb33fef33b7e76c6eedf6ad394a | []
| no_license | daizhe0417/JavaCourse | b6f8e8b1b08a057760844f0c9a090a29c1741f34 | 6d3f835d57179cbfc0e7f6dad463c42a1d20bbd9 | refs/heads/master | 2020-04-23T17:18:48.786529 | 2015-07-09T15:05:25 | 2015-07-09T15:05:25 | 31,576,230 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 5,010 | java | package studentManage.src;
import java.awt.Color;
import java.awt.Font;
import java.awt.ImageCapabilities;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.beans.Statement;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import javax.swing.ButtonGroup;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
import org.omg.CORBA.PUBLIC_MEMBER;
import java.sql.*;
class GetStudent extends JFrame implements ActionListener {
JLabel JL= new JLabel("学生基本信息",JLabel.CENTER);
JLabel JLNumber= new JLabel(new ImageIcon());
JTextField JTNumber= new JTextField();
JLabel JLName= new JLabel(new ImageIcon());
JTextField JTName= new JTextField();
JLabel JLClass= new JLabel(new ImageIcon());
JTextField JTClass= new JTextField();
JLabel JLSex= new JLabel(new ImageIcon());
ButtonGroup BG= new ButtonGroup();
JRadioButton JRB1= new JRadioButton("男");
JRadioButton JRB2= new JRadioButton("女");
JLabel JL1= new JLabel(new ImageIcon());
JTextField JT1= new JTextField();
JLabel JL2= new JLabel(new ImageIcon());
JTextField JT2= new JTextField();
JButton JBGet= new JButton("修改");
JButton JBNext= new JButton("取消");
JButton JBExit= new JButton("退出");
String sql="";
public GetStudent()
{
this.setTitle("修改考试信息");
this.setLayout(null);
JL.setForeground(Color.blue);
JL.setFont(new java.awt.Font("宋体",Font.PLAIN,19));
JLabel sno = new JLabel("编号");
sno.setBounds(80,80,100,20);
this.add(sno);
JLabel name = new JLabel("姓名");
name.setBounds(80,120,100,20);
this.add(name);
JLabel cla = new JLabel("班级");
cla.setBounds(80,200,100,20);
this.add(cla);
JLabel pho = new JLabel("电话");
pho.setBounds(80,240,100,20);
this.add(pho);
JLabel bir = new JLabel("生日");
bir.setBounds(80,280,100,20);
this.add(bir);
JL.setBounds(100,30,200,40);
this.add(JL);
JLNumber.setBounds(100,80,100,20);
this.add(JLNumber);
JTNumber.setBounds(200,80,80,20);
this.add(JTNumber);
JLName.setBounds(100,120,100,20);
this.add(JLName);
JTName.setBounds(200,120,80,20);
this.add(JTName);
JLSex.setBounds(100,160,40,20);
this.add(JLSex);
JRB1.setBounds(200,160,40,20);
JRB2.setBounds(300,160,40,20);
this.add(JRB1);
this.add(JRB2);
BG.add(JRB1);
BG.add(JRB2);
JL2.setBounds(100,200,100,20);
this.add(JL2);
JT2.setBounds(200,200,80,20);
this.add(JT2);
JLClass.setBounds(100,240,100,20);
this.add(JLClass);
JTClass.setBounds(200,240,80,20);
this.add(JTClass);
JL1.setBounds(100,280,100,20);
this.add(JL1);
JT1.setBounds(200,280,80,20);
this.add(JT1);
JBGet.setBounds(80,320,90,20);
this.add(JBGet);
JBGet.addActionListener(this);
JBNext.setBounds(190,320,90,20);
this.add(JBNext);
JBNext.addActionListener(this);
JBExit.setBounds(300,320,90,20);
this.add(JBExit);
JBExit.addActionListener(this);
this.setBounds(10,10,500,400);
this.setVisible(true);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==JBGet)
{
String snumber= JTNumber.getText();
String sname= JTName.getText();
String sclass= JTClass.getText();
String ssex="女",sql;
if(JRB1.isSelected())
ssex="男";
String scollect= JT1.getText();
String sbir= JT2.getText();
sql="select*from student where Id='"+snumber+"'";
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection cot= DriverManager.getConnection("jdbc:odbc:student1","","");
Statement stm= (Statement) cot.createStatement();
ResultSet rs=((java.sql.Statement) stm).executeQuery(sql);
if(rs.next())
{
sql="update student set name='"+sname+"',clas='"
+sclass+"',sex='"+ssex+"',collect='"
+scollect+ "',bir='" +sbir+"'where Id="
+ snumber+"'";
int n=((java.sql.Statement) stm).executeUpdate(sql);
if(n>0)
JOptionPane.showMessageDialog(null, "修改成功");
else
JOptionPane.showMessageDialog(null, "修改失败");
}else
{
JOptionPane.showMessageDialog(null,"此用户不存在");
}
} catch (Exception er) {
// TODO: handle exception
}
}
if(e.getSource()==JBNext)
{
JTNumber.setText(null);
JTName.setText(null);
JTClass.setText(null);
JT1.setText(null);
JT2.setText(null);
}
if(e.getSource()==JBExit)
{
setVisible(false);
}
}
public static void main(String args[])
{
new GetStudent();
}
}
| [
"Administrator@KOSPKZVOZV8YFAX"
]
| Administrator@KOSPKZVOZV8YFAX |
44fd05bf2e6b63234848396dd93f038b6623d5ef | 6cd22ce8aadd4d58af83db29c15946baf1ffebf8 | /src/main/java/com/shubham/algorithms/problems/dp/distinctOccurences.java | bda46838704ff4f06b93809d0fee52864be77ee3 | []
| no_license | shubhm-agrwl/dataStructures-algorithms | b095ab3a297f565c27fdb12af5d8c468384ef09d | 726631159746d79a54e72a19c8cccd49e64fc821 | refs/heads/master | 2021-06-23T09:28:51.828025 | 2021-06-15T23:04:53 | 2021-06-15T23:04:53 | 225,211,919 | 1 | 0 | null | 2020-10-13T17:53:17 | 2019-12-01T18:53:23 | Java | UTF-8 | Java | false | false | 2,543 | java | package com.shubham.algorithms.problems.dp;
/*
Given two strings S and T, find count of distinct occurrences of T in S as a sub-sequence. Your task is to complete the function subsequenceCount which takes two strings as argument S and T and returns the count of the sub-sequences.
Input:
The first line of input contains an integer t denoting the no of test cases . Then t test cases follow. The first line of each test case contains 2 strings S and T.
Output:
For each test case in a new line print the count of distinct occurrences of T in S as a sub-sequence.
Since the count can be quite large, return the count modulo 1e9 + 7.
Expected Time Complexity: O(n*m).
Expected Auxiliary Space: O(n*m).
Constraints:
1<=t<=100
1<=length of(T)<=100
1<=length of(S)<=8000
Example(To be used only for expected output):
Input
2
banana ban
geeksforgeeks ge
Output
3
6
*/
public class distinctOccurences {
public static void main(String[] args) {
System.out.println(subsequenceCount("banana", "ban"));
}
private static int subsequenceCount(String S, String T) {
int m = T.length();
int n = S.length();
// T can't appear as a subsequence in S
if (m > n) {
return 0;
}
// mat[i][j] stores the count of
// occurrences of T(1..i) in S(1..j).
int mat[][] = new int[m + 1][n + 1];
// Initializing first column with
// all 0s. An emptystring can't have
// another string as suhsequence
for (int i = 1; i <= m; i++) {
mat[i][0] = 0;
}
// Initializing first row with all 1s.
// An empty string is subsequence of all.
for (int j = 0; j <= n; j++) {
mat[0][j] = 1;
}
// Fill mat[][] in bottom up manner
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
// If last characters don't match,
// then value is same as the value
// without last character in S.
if (T.charAt(i - 1) != S.charAt(j - 1)) {
mat[i][j] = mat[i][j - 1];
}
// Else value is obtained considering two cases.
// a) All substrings without last character in S
// b) All substrings without last characters in
// both.
else {
mat[i][j] = mat[i][j - 1] + mat[i - 1][j - 1];
}
}
}
/* uncomment this to print matrix mat
for (int i = 1; i <= m; i++, cout << endl)
for (int j = 1; j <= n; j++)
System.out.println ( mat[i][j] +" "); */
return mat[m][n];
}
}
| [
"[email protected]"
]
| |
ab7ed589b08a0072747d392092c509a7c959c76e | a7c92ed6d35bbf03ed7454370ac55ce8c25a7a19 | /src/controller/EscreverArquivoTxt.java | 7bf4a27fb26f746635a1bff78029e6a244f1272b | []
| no_license | JulianoT0rr3s/rfid_ic | 16eeb91e31da5f6984e2ae36db5ed19909d4c8ab | a87f8d49ec6056d00ca43c933285662bb1e1f7ef | refs/heads/master | 2016-09-06T06:04:39.316728 | 2014-09-07T18:28:52 | 2014-09-07T18:28:52 | 23,766,812 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 770 | java | package controller;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
public class EscreverArquivoTxt{
public void escrevendo(String arquivo) throws IOException{
/* ToDo:
* esta parte apaga todo o arquivo e escreve
* queremos incluir no fim do arquivo
*/
try{
BufferedWriter novo;
novo = new BufferedWriter(new FileWriter(arquivo));
novo.write("Gravação realizada com sucesso !!!!");
novo.newLine();
novo.close();
}catch(IOException ex){
System.out.println("Erro durante a escrita!");
System.out.println(ex);
}
}
}
| [
"[email protected]"
]
| |
cb6607c9c1a13b0ea383574ba0841fe0eec1874a | 341ae6ccddd2b244603f73b97adb3d5fd7b40566 | /Kapitel11_Gleitpunkt/src/CosinusBerechnung.java | 51d93bf2d71728b3395ce953c64ea6a0076b0471 | []
| no_license | JanSei/Privat | e4648a79e43cfe2fb622b43a5d6894d39ee7ab07 | a9b85690197b7c294db1e971fb9d38ae2f360d92 | refs/heads/master | 2016-09-06T19:17:59.374524 | 2015-05-01T08:39:25 | 2015-05-01T08:39:25 | 22,113,923 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 479 | java | import java.util.*;
public class CosinusBerechnung {
private static Scanner scan;
public static void main(String[] args) {
double zahl;
scan = new Scanner( System.in );
System.out.print("Bogenmass eingeben: ");
zahl = scan.nextDouble();
// Cosinus berechnen
double ergebnis = Math.cos( zahl );
// Ergebnis ausgeben
System.out.println("Cosinus: " + ergebnis );
System.out.println("In Grad: " + (Math.toDegrees(ergebnis)));
}
}
| [
"[email protected]"
]
| |
e2a3915a0697a3867c5bd58546699dd4ce014da8 | cba9c4235dc689ae8fbe0f09c23ef493ce5f8470 | /test/net/aegistudio/mcb/designer/component/ImageStrech.java | 41b7728b5b3a482b65f66c7996feddea6ea33ac5 | []
| no_license | troyeagle/MapCircuitBoard | 9a70ba554d21bf2b52c028f42958bb9805550da3 | fc0fc9dd406f48bffb0a1996a284bbcf046b6bd5 | refs/heads/master | 2021-01-15T11:23:58.378313 | 2016-06-23T12:05:18 | 2016-06-23T12:05:18 | 58,061,050 | 1 | 0 | null | 2016-06-22T11:42:00 | 2016-05-04T15:00:46 | Java | UTF-8 | Java | false | false | 115 | java | package net.aegistudio.mcb.designer.component;
public enum ImageStrech {
None,
Fill,
Uniform,
UniformToFill
}
| [
"[email protected]"
]
| |
b701bb13523c90dafc496e866cd9a3c5837c46b8 | 4ec70c4e9218183976549838833884365b95c0b7 | /Model/src/model/entities/MnjCutlyrcntrlOffstandardDImpl.java | 7857f1709df8ccfdb961ee4bd6874c72193098cb | []
| no_license | Arifcse03/Cutting-Layer-Control | 47ad4d37ab4b7b97407fa4f037db0fe1796b181e | 0721592b660d9fda7c68da5783d3dc00d404fcb8 | refs/heads/master | 2023-05-06T14:53:01.091215 | 2021-04-11T07:37:51 | 2021-04-11T07:37:51 | 339,025,091 | 0 | 0 | null | 2021-04-11T08:09:14 | 2021-02-15T09:26:22 | Java | UTF-8 | Java | false | false | 14,169 | java | package model.entities;
import oracle.jbo.AttributeList;
import oracle.jbo.Key;
import oracle.jbo.domain.Number;
import oracle.jbo.server.AttributeDefImpl;
import oracle.jbo.server.EntityDefImpl;
import oracle.jbo.server.EntityImpl;
import oracle.jbo.server.TransactionEvent;
// ---------------------------------------------------------------------
// --- File generated by Oracle ADF Business Components Design Time.
// --- Wed Nov 22 15:00:26 BDT 2017
// --- Custom code may be added to this class.
// --- Warning: Do not modify method signatures of generated methods.
// ---------------------------------------------------------------------
public class MnjCutlyrcntrlOffstandardDImpl extends EntityImpl {
private static EntityDefImpl mDefinitionObject;
/**
* AttributesEnum: generated enum for identifying attributes and accessors. Do not modify.
*/
public enum AttributesEnum {
DetailId {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getDetailId();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setDetailId((Number)value);
}
}
,
SubDetailId {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getSubDetailId();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setSubDetailId((Number)value);
}
}
,
CodeStandard {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getCodeStandard();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setCodeStandard((String)value);
}
}
,
Descreption {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getDescreption();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setDescreption((String)value);
}
}
,
Area {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getArea();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setArea((String)value);
}
}
,
TotalStandad {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getTotalStandad();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setTotalStandad((Number)value);
}
}
,
Remarks {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getRemarks();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setRemarks((String)value);
}
}
,
Attribute3 {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getAttribute3();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setAttribute3((String)value);
}
}
,
Attribute4 {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getAttribute4();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setAttribute4((String)value);
}
}
,
Attribute5 {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getAttribute5();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setAttribute5((String)value);
}
}
,
MnjCutlyrcntrlOffstandardL {
public Object get(MnjCutlyrcntrlOffstandardDImpl obj) {
return obj.getMnjCutlyrcntrlOffstandardL();
}
public void put(MnjCutlyrcntrlOffstandardDImpl obj, Object value) {
obj.setMnjCutlyrcntrlOffstandardL((MnjCutlyrcntrlOffstandardLImpl)value);
}
}
;
private static AttributesEnum[] vals = null;
private static int firstIndex = 0;
public abstract Object get(MnjCutlyrcntrlOffstandardDImpl object);
public abstract void put(MnjCutlyrcntrlOffstandardDImpl object,
Object value);
public int index() {
return AttributesEnum.firstIndex() + ordinal();
}
public static int firstIndex() {
return firstIndex;
}
public static int count() {
return AttributesEnum.firstIndex() + AttributesEnum.staticValues().length;
}
public static AttributesEnum[] staticValues() {
if (vals == null) {
vals = AttributesEnum.values();
}
return vals;
}
}
public static final int DETAILID = AttributesEnum.DetailId.index();
public static final int SUBDETAILID = AttributesEnum.SubDetailId.index();
public static final int CODESTANDARD = AttributesEnum.CodeStandard.index();
public static final int DESCREPTION = AttributesEnum.Descreption.index();
public static final int AREA = AttributesEnum.Area.index();
public static final int TOTALSTANDAD = AttributesEnum.TotalStandad.index();
public static final int REMARKS = AttributesEnum.Remarks.index();
public static final int ATTRIBUTE3 = AttributesEnum.Attribute3.index();
public static final int ATTRIBUTE4 = AttributesEnum.Attribute4.index();
public static final int ATTRIBUTE5 = AttributesEnum.Attribute5.index();
public static final int MNJCUTLYRCNTRLOFFSTANDARDL = AttributesEnum.MnjCutlyrcntrlOffstandardL.index();
/**
* This is the default constructor (do not remove).
*/
public MnjCutlyrcntrlOffstandardDImpl() {
}
/**
* Gets the attribute value for DetailId, using the alias name DetailId.
* @return the DetailId
*/
public Number getDetailId() {
return (Number)getAttributeInternal(DETAILID);
}
/**
* Sets <code>value</code> as the attribute value for DetailId.
* @param value value to set the DetailId
*/
public void setDetailId(Number value) {
setAttributeInternal(DETAILID, value);
}
/**
* Gets the attribute value for SubDetailId, using the alias name SubDetailId.
* @return the SubDetailId
*/
public Number getSubDetailId() {
return (Number)getAttributeInternal(SUBDETAILID);
}
/**
* Sets <code>value</code> as the attribute value for SubDetailId.
* @param value value to set the SubDetailId
*/
public void setSubDetailId(Number value) {
setAttributeInternal(SUBDETAILID, value);
}
/**
* Gets the attribute value for CodeStandard, using the alias name CodeStandard.
* @return the CodeStandard
*/
public String getCodeStandard() {
return (String)getAttributeInternal(CODESTANDARD);
}
/**
* Sets <code>value</code> as the attribute value for CodeStandard.
* @param value value to set the CodeStandard
*/
public void setCodeStandard(String value) {
setAttributeInternal(CODESTANDARD, value);
}
/**
* Gets the attribute value for Descreption, using the alias name Descreption.
* @return the Descreption
*/
public String getDescreption() {
return (String)getAttributeInternal(DESCREPTION);
}
/**
* Sets <code>value</code> as the attribute value for Descreption.
* @param value value to set the Descreption
*/
public void setDescreption(String value) {
setAttributeInternal(DESCREPTION, value);
}
/**
* Gets the attribute value for Area, using the alias name Area.
* @return the Area
*/
public String getArea() {
return (String)getAttributeInternal(AREA);
}
/**
* Sets <code>value</code> as the attribute value for Area.
* @param value value to set the Area
*/
public void setArea(String value) {
setAttributeInternal(AREA, value);
}
/**
* Gets the attribute value for TotalStandad, using the alias name TotalStandad.
* @return the TotalStandad
*/
public Number getTotalStandad() {
return (Number)getAttributeInternal(TOTALSTANDAD);
}
/**
* Sets <code>value</code> as the attribute value for TotalStandad.
* @param value value to set the TotalStandad
*/
public void setTotalStandad(Number value) {
setAttributeInternal(TOTALSTANDAD, value);
}
/**
* Gets the attribute value for Remarks, using the alias name Remarks.
* @return the Remarks
*/
public String getRemarks() {
return (String)getAttributeInternal(REMARKS);
}
/**
* Sets <code>value</code> as the attribute value for Remarks.
* @param value value to set the Remarks
*/
public void setRemarks(String value) {
setAttributeInternal(REMARKS, value);
}
/**
* Gets the attribute value for Attribute3, using the alias name Attribute3.
* @return the Attribute3
*/
public String getAttribute3() {
return (String)getAttributeInternal(ATTRIBUTE3);
}
/**
* Sets <code>value</code> as the attribute value for Attribute3.
* @param value value to set the Attribute3
*/
public void setAttribute3(String value) {
setAttributeInternal(ATTRIBUTE3, value);
}
/**
* Gets the attribute value for Attribute4, using the alias name Attribute4.
* @return the Attribute4
*/
public String getAttribute4() {
return (String)getAttributeInternal(ATTRIBUTE4);
}
/**
* Sets <code>value</code> as the attribute value for Attribute4.
* @param value value to set the Attribute4
*/
public void setAttribute4(String value) {
setAttributeInternal(ATTRIBUTE4, value);
}
/**
* Gets the attribute value for Attribute5, using the alias name Attribute5.
* @return the Attribute5
*/
public String getAttribute5() {
return (String)getAttributeInternal(ATTRIBUTE5);
}
/**
* Sets <code>value</code> as the attribute value for Attribute5.
* @param value value to set the Attribute5
*/
public void setAttribute5(String value) {
setAttributeInternal(ATTRIBUTE5, value);
}
/**
* getAttrInvokeAccessor: generated method. Do not modify.
* @param index the index identifying the attribute
* @param attrDef the attribute
* @return the attribute value
* @throws Exception
*/
protected Object getAttrInvokeAccessor(int index,
AttributeDefImpl attrDef) throws Exception {
if ((index >= AttributesEnum.firstIndex()) && (index < AttributesEnum.count())) {
return AttributesEnum.staticValues()[index - AttributesEnum.firstIndex()].get(this);
}
return super.getAttrInvokeAccessor(index, attrDef);
}
/**
* setAttrInvokeAccessor: generated method. Do not modify.
* @param index the index identifying the attribute
* @param value the value to assign to the attribute
* @param attrDef the attribute
* @throws Exception
*/
protected void setAttrInvokeAccessor(int index, Object value,
AttributeDefImpl attrDef) throws Exception {
if ((index >= AttributesEnum.firstIndex()) && (index < AttributesEnum.count())) {
AttributesEnum.staticValues()[index - AttributesEnum.firstIndex()].put(this, value);
return;
}
super.setAttrInvokeAccessor(index, value, attrDef);
}
/**
* @return the associated entity MnjCutlyrcntrlOffstandardLImpl.
*/
public MnjCutlyrcntrlOffstandardLImpl getMnjCutlyrcntrlOffstandardL() {
return (MnjCutlyrcntrlOffstandardLImpl)getAttributeInternal(MNJCUTLYRCNTRLOFFSTANDARDL);
}
/**
* Sets <code>value</code> as the associated entity MnjCutlyrcntrlOffstandardLImpl.
*/
public void setMnjCutlyrcntrlOffstandardL(MnjCutlyrcntrlOffstandardLImpl value) {
setAttributeInternal(MNJCUTLYRCNTRLOFFSTANDARDL, value);
}
/**
* @param subDetailId key constituent
* @return a Key object based on given key constituents.
*/
public static Key createPrimaryKey(Number subDetailId) {
return new Key(new Object[]{subDetailId});
}
/**
* @return the definition object for this instance class.
*/
public static synchronized EntityDefImpl getDefinitionObject() {
if (mDefinitionObject == null) {
mDefinitionObject = EntityDefImpl.findDefObject("model.entities.MnjCutlyrcntrlOffstandardD");
}
return mDefinitionObject;
}
/**
* Add attribute defaulting logic in this method.
* @param attributeList list of attribute names/values to initialize the row
*/
protected void create(AttributeList attributeList) {
super.create(attributeList);
oracle.jbo.server.SequenceImpl s =new oracle.jbo.server.SequenceImpl("MNJ_CUTLYRCNTRL_OFFSTANDARD_DS",getDBTransaction());
oracle.jbo.domain.Number sVal = s.getSequenceNumber();
setSubDetailId(sVal);
}
/**
* Add entity remove logic in this method.
*/
public void remove() {
super.remove();
}
/**
* Add locking logic here.
*/
public void lock() {
super.lock();
}
/**
* Custom DML update/insert/delete logic here.
* @param operation the operation type
* @param e the transaction event
*/
protected void doDML(int operation, TransactionEvent e) {
super.doDML(operation, e);
}
}
| [
"[email protected]"
]
| |
60f5d3a15837d20ecb45be8605646ff897c219ca | 0d13084ec335faedda0a15f6be5c072a790fbc5d | /test/de/dfki/rdf/test/nontransitive/B.java | 0742b174ffea1e1cc3cc8f72dae3b0ae04966fb5 | []
| no_license | The-Alchemist/rdf2java | 5f705da6351e49af29d36def98d9a688bcd5e0f5 | dcd89209049fca531f42ad8609c38781b0bb3138 | refs/heads/master | 2021-08-07T08:22:47.048033 | 2007-01-26T09:56:40 | 2007-01-26T09:56:40 | 109,893,272 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,384 | java | package de.dfki.rdf.test.nontransitive;
// RDFS2Class: imports
import java.util.*;
import java.io.Serializable;
// RDFS2Class: end of imports
import java.util.Map;
/** RDFS2Class: class B
* <p>
*/
public class B
extends de.dfki.rdf.util.THING
implements Serializable
{
//------------------------------------------------------------------------------
/** RDFS2Class: slot toA **/
protected de.dfki.rdf.util.PropertyInfo m_toA = de.dfki.rdf.util.PropertyInfo.createInstanceProperty( "http://dfki.rdf.test/nontransitive#", "toA", new Class[]{A.class}, true );
/** RDFS2Class: putter for slot toA **/
public void putToA (A p_toA)
{
m_toA.putValue(p_toA);
}
public void putToA (de.dfki.rdf.util.RDFResource p_toA)
{
m_toA.putValue(p_toA);
}
public void putToA (java.util.Collection p_toA)
{
m_toA.setValues(p_toA);
}
public void clearToA ()
{
m_toA.clearValue();
}
// RDFS2Class: end of putter for slot toA
/** RDFS2Class: getter for slot toA **/
public java.util.Collection getToA ()
{
return (java.util.Collection)m_toA.getValue();
}
// RDFS2Class: end of getter for slot toA
//------------------------------------------------------------------------------
/** RDFS2Class: slot toB **/
protected de.dfki.rdf.util.PropertyInfo m_toB = de.dfki.rdf.util.PropertyInfo.createInstanceProperty( "http://dfki.rdf.test/nontransitive#", "toB", new Class[]{B.class}, true );
/** RDFS2Class: putter for slot toB **/
public void putToB (B p_toB)
{
m_toB.putValue(p_toB);
}
public void putToB (de.dfki.rdf.util.RDFResource p_toB)
{
m_toB.putValue(p_toB);
}
public void putToB (java.util.Collection p_toB)
{
m_toB.setValues(p_toB);
}
public void clearToB ()
{
m_toB.clearValue();
}
// RDFS2Class: end of putter for slot toB
/** RDFS2Class: getter for slot toB **/
public java.util.Collection getToB ()
{
return (java.util.Collection)m_toB.getValue();
}
// RDFS2Class: end of getter for slot toB
//------------------------------------------------------------------------------
/** RDFS2Class: toString()-stuff **/
public String toString()
{
return toStringPacked();
}
// RDFS2Class: end of toString()-stuff
//------------------------------------------------------------------------------
/** RDFS2Class: sub class information **/
public final static Class[] KNOWN_SUBCLASSES = {};
// RDFS2Class: end of sub class information
//------------------------------------------------------------------------------
/** RDFS2Class: default constructor **/
public B()
{
super();
putRDFSClass( new de.dfki.rdf.util.RDFResource( "http://dfki.rdf.test/nontransitive#", "B" ) );
initPropertyStore();
}
// RDFS2Class: end of default constructor
//------------------------------------------------------------------------------
/** RDFS2Class: PropertyStore-stuff **/
private void initPropertyStore()
{
de.dfki.rdf.util.PropertyStore ps = getPropertyStore();
ps.addProperty( m_toA );
ps.addProperty( m_toB );
}
// RDFS2Class: end of PropertyStore-stuff
}
// RDFS2Class: end of class B
// EOF
| [
"schwarz@e94ab643-89f3-0310-813c-9f4a7ff30f98"
]
| schwarz@e94ab643-89f3-0310-813c-9f4a7ff30f98 |
be96d32cdeab77a05c5c72da5f59ffcbd8bf91aa | a6f87380e6652380ced8efafa5a3b2b1f6c7a485 | /src/main/java/com/example/demo/service/DemoAnnotationService.java | 9b179a57caca4af623da5f7297a1f30a73928f5c | []
| no_license | jieniyimiao/spring-demo | 92393583c782650552dd131dd01cb8a1a60748ae | c3eeedea0dc65d1d1816cde4e3ff023ed850ca0e | refs/heads/master | 2021-09-01T01:10:43.662470 | 2017-12-24T02:54:18 | 2017-12-24T02:54:18 | 115,235,267 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 310 | java | package com.example.demo.service;
import org.springframework.stereotype.Service;
/**
* Created by jieniyimiao on 2017/12/22.
*/
@Service
public class DemoAnnotationService {
@Action(name = "this is action annotation of aop.")
public void add() {
System.out.println("add function");
}
}
| [
"[email protected]"
]
| |
a075b8b7e0fcfa831f3a5e12081ecca9307bf77e | e921b0329b7094bdb7a2336bebfd9e19dbdd431a | /src/test/java/clockOn/com/clockOn/MemberDAOImplTest.java | db1f805b302edb9f700d8cdb3823feb7894d0c3e | []
| no_license | semi0612/Attendance-management-program | 1910611d6b83e4c4049b11d77aede47fe6a8abd6 | 25cbb198b4094b3197e51d3e25264984cdd81a6b | refs/heads/main | 2023-08-22T12:44:33.076137 | 2021-09-08T14:12:26 | 2021-09-08T14:12:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,062 | java | package clockOn.com.clockOn;
import static org.junit.Assert.*;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.clockOn.web.dao.MemberDAO;
import com.clockOn.web.entity.member.Member;
import lombok.extern.log4j.Log4j;
//@RunWith(SpringJUnit4ClassRunner.class)
//@ContextConfiguration(locations = {"file:src/main/webapp/WEB-INF/spring/root-context.xml"})
@Log4j
public class MemberDAOImplTest {
@Autowired
private MemberDAO memberDao;
@Test
public void list() {
List<Member> list = memberDao.list();
System.out.println(list.get(0).getEmp_join());
}
@Test
public void ceil() {
System.out.println(Math.ceil((double) 238/10));
// Member member = new Member("")
// memberDao.add(member);
}
@Test
public void listView() {
System.out.println(memberDao.listLeave(10, 3).get(0).getEmp_dept());
}
}
| [
"[email protected]"
]
| |
0f262b1cbb4d5764578f6955231d12049f574210 | f0c76b285c34b771886753ac21acf382c34cec1b | /jpa-extensions-it/src/main/java/org/castor/jpa/scenario/inheritance/Flower.java | c467a2ae6c9ec90d464dac5daecc4403c0bfe8e0 | []
| no_license | thinkum-contrib/castor | 60048f9910a3ea5399aac586b632cf2a47773b7f | 26ac040bf40bf06c02f1c1a77ccfa9968372a459 | refs/heads/master | 2020-04-21T15:30:31.704288 | 2014-01-01T20:48:45 | 2014-01-01T20:48:45 | 169,671,509 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 604 | java | package org.castor.jpa.scenario.inheritance;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.Table;
@Entity
@Table(name = "inheritance_flower")
@Inheritance
public class Flower extends Plant{
private long id;
protected String color;
@Column
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
@Id
public long getId() {
return id;
}
public void setId(final long id) {
this.id = id;
}
}
| [
"wguttmn@b24b0d9a-6811-0410-802a-946fa971d308"
]
| wguttmn@b24b0d9a-6811-0410-802a-946fa971d308 |
1c9d239f146e466a6c83f63bda6d76aa1a1584e3 | 01ee7172ed0a95c38abe1714d42306fb2da0c6f1 | /src/main/java/com/ltsllc/miranda/http/HttpPostMessage.java | eaa627014a4f23b66a7ddab71b90d487294315ae | [
"Apache-2.0"
]
| permissive | pbj23000/miranda | c61d9513e2228d32b40b75e70db30941bb8b2f55 | 679d305f8e2c6806222873696bf98e06086b95ad | refs/heads/master | 2021-06-22T14:41:54.602461 | 2017-08-21T21:24:58 | 2017-08-21T21:24:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,584 | java | /*
* Copyright 2017 Long Term Software 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.ltsllc.miranda.http;
import com.ltsllc.miranda.Message;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.http.HttpRequest;
import java.util.concurrent.BlockingQueue;
/**
* Created by Clark on 2/18/2017.
*/
public class HttpPostMessage extends Message {
private HttpRequest request;
private String content;
private ChannelHandlerContext channelHandlerContext;
public HttpPostMessage (BlockingQueue<Message> senderQueue, Object sender, HttpRequest request, String content, ChannelHandlerContext ctx)
{
super(Subjects.HttpPost, senderQueue, sender);
this.request = request;
this.content = content;
this.channelHandlerContext = ctx;
}
public HttpRequest getRequest() {
return request;
}
public String getContent() {
return content;
}
public ChannelHandlerContext getChannelHandlerContext() {
return channelHandlerContext;
}
}
| [
"[email protected]"
]
| |
9744b241b0f744375c1911fe588e5a7cbde94ef9 | d503ef1899f5ee11f58102801456cc4aa7799604 | /PhD-MRS-Optimization-EA/src/phd/mrs/heuristic/ga/AgentGene.java | 3cf220b421a4c5fbec60446e1ac109d8011c797f | []
| no_license | Vitaljok/mrs-optimization | 7bd7f3bb0ad75a985696e69acb258dedbf00c0ec | 27b7de5aedb13bf08a319ba52caf574bbc1eaf0c | refs/heads/master | 2020-05-30T12:56:41.301011 | 2015-03-19T09:31:42 | 2015-03-19T09:31:42 | 32,514,938 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,791 | java | /*
* Copyright (C) 2011 Vitaljok
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package phd.mrs.heuristic.ga;
import org.jgap.Configuration;
import org.jgap.Gene;
import org.jgap.InvalidConfigurationException;
import org.jgap.impl.IntegerGene;
import phd.mrs.heuristic.object.Agent;
import phd.mrs.heuristic.utils.Debug;
/**
*
* @author Vitaljok
*/
public class AgentGene extends IntegerGene {
Agent agent;
public AgentGene(Configuration a_config, int a_lowerBounds, int a_upperBounds, Agent agent) throws InvalidConfigurationException {
super(a_config, a_lowerBounds, a_upperBounds);
this.agent = agent;
}
public Agent getAgent() {
return agent;
}
public Integer getInstances() {
return (Integer) this.getAllele();
}
@Override
protected Gene newGeneInternal() {
try {
return new AgentGene(this.getConfiguration(), this.getLowerBounds(),
this.getUpperBounds(), this.agent);
} catch (InvalidConfigurationException ex) {
Debug.log.severe("Error creating new AgentGene");
ex.printStackTrace();
return null;
}
}
}
| [
"[email protected]@5719385f-963f-8ea9-c3dc-985c5ef57f9a"
]
| [email protected]@5719385f-963f-8ea9-c3dc-985c5ef57f9a |
bc19f8cf2218876481e8a90230e578725c736848 | 22f202c09b3b239d694e77f78ffc83fbb23ca1e9 | /src/main/java/com/company/security/Const/SessionKeyConst.java | bb3bb76fdfc6acfff7a62f769f801781807d2b9b | []
| no_license | helmsli/security_access_service | addcb331e9f4486f27079a668041b46bd6ed5e24 | 135671f498aee4bff401a8af1acb29637f5929b1 | refs/heads/master | 2022-05-29T08:30:30.621620 | 2019-07-24T02:43:28 | 2019-07-24T02:43:28 | 102,613,932 | 0 | 3 | null | 2022-05-20T20:51:07 | 2017-09-06T13:45:11 | Java | UTF-8 | Java | false | false | 253 | java | package com.company.security.Const;
/**
* session 中保存的常量
* @author helmsli
*
*/
public class SessionKeyConst {
public static final String Rsa_private_key = "_private_key";
public static final String Rsa_public_key = "_public_key";
}
| [
"[email protected]"
]
| |
72bf113bde65425659b22e3a6ad30ce0f0fe3460 | 3772f3a04f884cea717272db0b543a14d399cfc3 | /src/org/giffardtechnologies/json/gson/RuntimeTypeAdapterFactory.java | e92fce4c5d4a205e361c724587d3f41a3c28b73a | [
"Apache-2.0"
]
| permissive | neilgmiller/RESTUtils | 847e94b3344505d7437c0294d76d3bf8e4acc41d | c667d24748899d37052b9242d134e04804830872 | refs/heads/master | 2016-09-06T06:13:38.264536 | 2016-02-01T15:34:50 | 2016-02-01T15:34:50 | 19,326,623 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,681 | java | /*
* Copyright (C) 2011 Google Inc.
*
* 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.giffardtechnologies.json.gson;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonPrimitive;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.internal.Streams;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Adapts values whose runtime type may differ from their declaration type. This is necessary when a field's type is not
* the same type that GSON should create when deserializing that field. For example, consider these types:
*
* <pre> {@code
* abstract class Shape {
* int x;
* int y;
* }
* class Circle extends Shape {
* int radius;
* }
* class Rectangle extends Shape {
* int width;
* int height;
* }
* class Diamond extends Shape {
* int width;
* int height;
* }
* class Drawing {
* Shape bottomShape;
* Shape topShape;
* }
* }</pre>
* <p>
* Without additional type information, the serialized JSON is ambiguous. Is the bottom shape in this drawing a
* rectangle or a diamond?
*
* <pre> {@code
* {
* "bottomShape": {
* "width": 10,
* "height": 5,
* "x": 0,
* "y": 0
* },
* "topShape": {
* "radius": 2,
* "x": 4,
* "y": 1
* }
* }}</pre>
* This class addresses this problem by adding type information to the serialized JSON and honoring that type
* information when the JSON is deserialized:
*
* <pre> {@code
* {
* "bottomShape": {
* "type": "Diamond",
* "width": 10,
* "height": 5,
* "x": 0,
* "y": 0
* },
* "topShape": {
* "type": "Circle",
* "radius": 2,
* "x": 4,
* "y": 1
* }
* }}</pre>
* Both the type field name ({@code "type"}) and the type labels ({@code "Rectangle"}) are configurable.
* <h3>Registering Types</h3> Create a {@code RuntimeTypeAdapter} by passing the base type and type field name to the
* {@link #of} factory method. If you don't supply an explicit type field name, {@code "type"} will be used.
*
* <pre> {@code
* RuntimeTypeAdapter<Shape> shapeAdapter
* = RuntimeTypeAdapter.of(Shape.class, "type");
* }</pre>
* Next register all of your subtypes. Every subtype must be explicitly registered. This protects your application from
* injection attacks. If you don't supply an explicit type label, the type's simple name will be used.
*
* <pre> {@code
* shapeAdapter.registerSubtype(Rectangle.class, "Rectangle");
* shapeAdapter.registerSubtype(Circle.class, "Circle");
* shapeAdapter.registerSubtype(Diamond.class, "Diamond");
* }</pre>
* Finally, register the type adapter in your application's GSON builder:
*
* <pre> {@code
* Gson gson = new GsonBuilder()
* .registerTypeAdapter(Shape.class, shapeAdapter)
* .create();
* }</pre>
* Like {@code GsonBuilder}, this API supports chaining:
*
* <pre> {@code
* RuntimeTypeAdapter<Shape> shapeAdapter = RuntimeTypeAdapterFactory.of(Shape.class)
* .registerSubtype(Rectangle.class)
* .registerSubtype(Circle.class)
* .registerSubtype(Diamond.class);
* }</pre>
*/
public final class RuntimeTypeAdapterFactory<T> implements TypeAdapterFactory {
private final Class<?> baseType;
private final String typeFieldName;
private final Map<String, Class<?>> labelToSubtype = new LinkedHashMap<String, Class<?>>();
private final Map<Class<?>, String> subtypeToLabel = new LinkedHashMap<Class<?>, String>();
private Class<? extends T> defaultType;
private RuntimeTypeAdapterFactory(Class<?> baseType, String typeFieldName) {
if (typeFieldName == null || baseType == null) {
throw new NullPointerException();
}
this.baseType = baseType;
this.typeFieldName = typeFieldName;
}
/**
* Creates a new runtime type adapter using for {@code baseType} using {@code typeFieldName} as the type field name.
* Type field names are case sensitive.
*/
public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType, String typeFieldName) {
return new RuntimeTypeAdapterFactory<T>(baseType, typeFieldName);
}
/**
* Creates a new runtime type adapter for {@code baseType} using {@code "type"} as the type field name.
*/
public static <T> RuntimeTypeAdapterFactory<T> of(Class<T> baseType) {
return new RuntimeTypeAdapterFactory<T>(baseType, "type");
}
/**
* Registers {@code type} identified by {@code label}. Labels are case sensitive.
*
* @throws IllegalArgumentException if either {@code type} or {@code label} have already been registered on this
* type adapter.
*/
public RuntimeTypeAdapterFactory<T> registerSubtype(Class<? extends T> type, String label) {
if (type == null || label == null) {
throw new NullPointerException();
}
if (subtypeToLabel.containsKey(type) || labelToSubtype.containsKey(label)) {
throw new IllegalArgumentException("types and labels must be unique");
}
labelToSubtype.put(label, type);
subtypeToLabel.put(type, label);
return this;
}
/**
* Registers {@code type} identified by its {@link Class#getSimpleName simple name}. Labels are case sensitive.
*
* @throws IllegalArgumentException if either {@code type} or its simple name have already been registered on this
* type adapter.
*/
public RuntimeTypeAdapterFactory<T> registerSubtype(Class<? extends T> type) {
return registerSubtype(type, type.getSimpleName());
}
/**
* Registers {@code type} identified by its {@link Class#getSimpleName simple name}. Labels are case sensitive.
*
* @throws IllegalArgumentException if either {@code type} or its simple name have already been registered on this
* type adapter.
*/
public RuntimeTypeAdapterFactory<T> registerDefaultSubtype(Class<? extends T> type) {
if (type == null) {
throw new IllegalArgumentException("Default type to register cannot be null.");
}
defaultType = type;
return this;
}
@Override
public <R> TypeAdapter<R> create(Gson gson, TypeToken<R> type) {
if (type.getRawType() != baseType) {
return null;
}
final Map<String, TypeAdapter<?>> labelToDelegate = new LinkedHashMap<String, TypeAdapter<?>>();
final Map<Class<?>, TypeAdapter<?>> subtypeToDelegate = new LinkedHashMap<Class<?>, TypeAdapter<?>>();
for (Map.Entry<String, Class<?>> entry : labelToSubtype.entrySet()) {
TypeAdapter<?> delegate = gson.getDelegateAdapter(this, TypeToken.get(entry.getValue()));
labelToDelegate.put(entry.getKey(), delegate);
subtypeToDelegate.put(entry.getValue(), delegate);
}
@SuppressWarnings("unchecked")
// registration requires that subtype extends T
final TypeAdapter<R> defaultDelegate = (defaultType == null ? (TypeAdapter<R>) null : (TypeAdapter<R>) gson
.getDelegateAdapter(this, TypeToken.get(defaultType)));
return new TypeAdapter<R>() {
@Override
public R read(JsonReader in) throws IOException {
JsonElement jsonElement = Streams.parse(in);
JsonElement labelJsonElement = jsonElement.getAsJsonObject().remove(typeFieldName);
if (labelJsonElement == null) {
throw new JsonParseException("cannot deserialize " + baseType + " because it does not define a field named "
+ typeFieldName);
}
String label = labelJsonElement.getAsString();
@SuppressWarnings("unchecked")
// registration requires that subtype extends T
TypeAdapter<R> delegate = (TypeAdapter<R>) labelToDelegate.get(label);
if (delegate == null) {
if (defaultDelegate == null) {
throw new JsonParseException("cannot deserialize " + baseType + " subtype named " + label
+ "; did you forget to register a subtype?");
} else {
delegate = defaultDelegate;
}
}
return delegate.fromJsonTree(jsonElement);
}
@Override
public void write(JsonWriter out, R value) throws IOException {
Class<?> srcType = value.getClass();
String label = subtypeToLabel.get(srcType);
@SuppressWarnings("unchecked")
// registration requires that subtype extends T
TypeAdapter<R> delegate = (TypeAdapter<R>) subtypeToDelegate.get(srcType);
if (delegate == null) {
throw new JsonParseException("cannot serialize " + srcType.getName() + "; did you forget to register a subtype?");
}
JsonObject jsonObject = delegate.toJsonTree(value).getAsJsonObject();
if (jsonObject.has(typeFieldName)) {
throw new JsonParseException("cannot serialize " + srcType.getName() + " because it already defines a field named "
+ typeFieldName);
}
JsonObject clone = new JsonObject();
clone.add(typeFieldName, new JsonPrimitive(label));
for (Map.Entry<String, JsonElement> e : jsonObject.entrySet()) {
clone.add(e.getKey(), e.getValue());
}
Streams.write(clone, out);
}
};
}
}
| [
"[email protected]"
]
| |
6303719f15b9e3cdb7afc62218d6ed5046e6661e | 31dd87c1eecd77b610764fc83a04a9e60e6ce179 | /src/main/java/pl/edu/pollub/battleCraft/webLayer/toResponseDTOsMappers/GameToResponseDTOMapper.java | fd2d732d0410fa9db9bb83dc74ce7b8a38f294d1 | []
| no_license | Jarek0/battleCraftBackEnd | 94c00c256e9b3be611a87c49d69fa9934f9ff990 | 3a4450622c5d730bd8c4a5f8749c22eb8136d513 | refs/heads/master | 2020-04-05T03:51:40.529591 | 2018-01-06T14:32:52 | 2018-01-06T14:32:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,566 | java | package pl.edu.pollub.battleCraft.webLayer.toResponseDTOsMappers;
import org.springframework.stereotype.Component;
import pl.edu.pollub.battleCraft.dataLayer.domain.User.UserAccount;
import pl.edu.pollub.battleCraft.dataLayer.domain.Game.Game;
import pl.edu.pollub.battleCraft.serviceLayer.services.security.AuthorityRecognizer;
import pl.edu.pollub.battleCraft.webLayer.DTO.DTOResponse.Game.GameResponseDTO;
import java.util.Optional;
@Component
public class GameToResponseDTOMapper {
private final AuthorityRecognizer authorityRecognizer;
public GameToResponseDTOMapper(AuthorityRecognizer authorityRecognizer) {
this.authorityRecognizer = authorityRecognizer;
}
public GameResponseDTO map(Game game){
GameResponseDTO gameResponseDTO = new GameResponseDTO();
gameResponseDTO.setCanCurrentUserEdit(authorityRecognizer.getCurrentUserRoleFromContext().equals("ROLE_ADMIN"));
gameResponseDTO.setName( game.getName());
gameResponseDTO.setNameChange(game.getName());
if(game.getCreator() != null){
gameResponseDTO.setCreatorName(game.getCreator().getName());
}
else{
gameResponseDTO.setCreatorName("deleted");
}
gameResponseDTO.setDateOfCreation(game.getDateOfCreation());
gameResponseDTO.setTournamentsNumber(game.getTournamentsNumber());
if(game.isBanned())
gameResponseDTO.setStatus("BANNED");
else
gameResponseDTO.setStatus(game.getStatus().name());
return gameResponseDTO;
}
}
| [
"[email protected]"
]
| |
a720625b3f6daca6e4e89c5638162b6f6e36b840 | 4b145dbefbb76a24823852fcc05ca98aa760e11d | /src/main/java/com/st/beans/Travel.java | 8448ab8ec89c8b2c49050a53c1efcbb357cc965a | []
| no_license | rawatrituraj653/SpringBootWithBatchProgrammingCSVtoDB | ea0afc9e1ccbf563d8c8d38b9c65ba303d519dec | d2da2a9ccce73799709667abbee4e5ef3fb1a814 | refs/heads/master | 2022-06-28T07:29:09.414304 | 2019-07-23T18:35:39 | 2019-07-23T18:35:39 | 198,487,981 | 0 | 0 | null | 2022-06-21T01:31:10 | 2019-07-23T18:34:25 | Java | UTF-8 | Java | false | false | 306 | java | package com.st.beans;
import lombok.Data;
@Data
public class Travel {
private String flightId;
private String flightName;
private String pilotName;
private String agentId;
private double ticketCost;
private double discount;
private double gst;
private double finalAmount;
}
| [
"[email protected]"
]
| |
8f6ec4855cbcd902a73abc1b637278065f10b33b | ae652ef9816665ffa9e5991452f29f50311425b0 | /hell-ml/src/main/java/ps/hell/ml/neighbor/test/KDTreeTest.java | 5e7a5a18a58a50fdb77a98d70d66edd81e6c950d | []
| no_license | qqgirllianxin/hell | 97620a7657d48136113a789d97178bff9427875f | 20080083b9efd160348471552b2cfb8661871db3 | refs/heads/master | 2021-01-13T14:13:09.394986 | 2016-09-30T12:26:26 | 2016-09-30T12:26:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,920 | java | /*******************************************************************************
* Copyright (c) 2010 Haifeng Li
*
* 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 ps.hell.ml.neighbor.test;
import org.junit.*;
import ps.hell.math.base.distance.EuclideanDistance;
import ps.hell.ml.neighbor.KDTree;
import ps.hell.ml.neighbor.LinearSearch;
import ps.hell.ml.neighbor.Neighbor;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import static org.junit.Assert.assertEquals;
/**
*
* @author Haifeng Li
*/
public class KDTreeTest {
double[][] data = null;
KDTree<double[]> kdtree = null;
LinearSearch<double[]> naive = null;
public KDTreeTest() {
data = new double[10000][];
for (int i = 0; i < data.length; i++) {
data[i] = new double[10];
for (int j = 0; j < data[i].length; j++)
data[i][j] = Math.random();
}
kdtree = new KDTree<double[]>(data, data);
naive = new LinearSearch<double[]>(data, new EuclideanDistance());
}
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
/**
* Test of nearest method, of class KDTree.
*/
@Test
public void testNearest() {
System.out.println("nearest");
for (int i = 0; i < data.length; i++) {
Neighbor<double[], double[]> n1 = kdtree.nearest(data[i]);
Neighbor<double[], double[]> n2 = naive.nearest(data[i]);
assertEquals(n1.index, n2.index);
assertEquals(n1.value, n2.value);
assertEquals(n1.distance, n2.distance, 1E-7);
}
}
/**
* Test of knn method, of class KDTree.
*/
@Test
public void testKnn() {
System.out.println("knn");
for (int i = 0; i < data.length; i++) {
Neighbor<double[], double[]> [] n1 = kdtree.knn(data[i], 10);
Neighbor<double[], double[]> [] n2 = naive.knn(data[i], 10);
for (int j = 0; j < n1.length; j++) {
assertEquals(n1[j].index, n2[j].index);
assertEquals(n1[j].value, n2[j].value);
assertEquals(n1[j].distance, n2[j].distance, 1E-7);
}
}
}
/**
* Test of range method, of class KDTree.
*/
@Test
public void testRange() {
System.out.println("range");
List<Neighbor<double[], double[]>> n1 = new ArrayList<Neighbor<double[], double[]>>();
List<Neighbor<double[], double[]>> n2 = new ArrayList<Neighbor<double[], double[]>>();
for (int i = 0; i < data.length; i++) {
kdtree.range(data[i], 0.5, n1);
naive.range(data[i], 0.5, n2);
Collections.sort(n1);
Collections.sort(n2);
assertEquals(n1.size(), n2.size());
for (int j = 0; j < n1.size(); j++) {
assertEquals(n1.get(j).index, n2.get(j).index);
assertEquals(n1.get(j).value, n2.get(j).value);
assertEquals(n1.get(j).distance, n2.get(j).distance, 1E-7);
}
n1.clear();
n2.clear();
}
}
} | [
"[email protected]"
]
| |
cee588ddcd0f1b9b3b3b6a3bc66aab501af2a0a9 | 13d748ee57bb49cb88ec0039840c0b8724d254ab | /src/java/util/AbstractSequentialList.java | bab4112c6c05607a231288f0abe38b655c4e63af | []
| no_license | liaozikai/jdk1.8 | 274f26af60c1225c0a709e3a4145805ec1c6010f | 8084d8986fef450ff3ffbee8f7aad476cdad5012 | refs/heads/master | 2020-07-30T06:53:02.701035 | 2019-10-19T07:07:46 | 2019-10-19T07:07:46 | 210,124,092 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,203 | java | /*
* Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.util;
/**
* This class provides a skeletal implementation of the <tt>List</tt>
* interface to minimize the effort required to implement this interface
* backed by a "sequential access" data store (such as a linked list). For
* random access data (such as an array), <tt>AbstractList</tt> should be used
* in preference to this class.<p>
* 跟ArrayList差不多。不过如果是要随机访问数据,还是使用AbstractList及其子类更好用。
* This class is the opposite of the <tt>AbstractList</tt> class in the sense
* that it implements the "random access" methods (<tt>get(int index)</tt>,
* <tt>set(int index, E element)</tt>, <tt>add(int index, E element)</tt> and
* <tt>remove(int index)</tt>) on top of the list's list iterator, instead of
* the other way around.<p>
* 该类感觉上与AbstractList相反,它实现随机访问是从头开始查找(链表的结构)
* To implement a list the programmer needs only to extend this class and
* provide implementations for the <tt>listIterator</tt> and <tt>size</tt>
* methods. For an unmodifiable list, the programmer need only implement the
* list iterator's <tt>hasNext</tt>, <tt>next</tt>, <tt>hasPrevious</tt>,
* <tt>previous</tt> and <tt>index</tt> methods.<p>
* 编程人员只需要实现listIterator和size方法。对于不可修改的list,编程人员只需要实现
* hasNext,next,hasPrevious等方法
* For a modifiable list the programmer should additionally implement the list
* iterator's <tt>set</tt> method. For a variable-size list the programmer
* should additionally implement the list iterator's <tt>remove</tt> and
* <tt>add</tt> methods.<p>
* 对于可修改的list,编程人员需要额外实现set方法等。
* The programmer should generally provide a void (no argument) and collection
* constructor, as per the recommendation in the <tt>Collection</tt> interface
* specification.<p>
* 编程人员一般提供空参数和集合参数的构造器。
* This class is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @author Neal Gafter
* @see Collection
* @see List
* @see AbstractList
* @see AbstractCollection
* @since 1.2
*/
public abstract class AbstractSequentialList<E> extends AbstractList<E> {
/**
* Sole constructor. (For invocation by subclass constructors, typically
* implicit.)
*/
protected AbstractSequentialList() {
}
/**
* Returns the element at the specified position in this list.
* 获取该list的指定位置元素
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it gets
* the element using <tt>ListIterator.next</tt> and returns it.
*
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E get(int index) {
try {
return listIterator(index).next();
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException("Index: "+index);
}
}
/**
* Replaces the element at the specified position in this list with the
* specified element (optional operation).
* 用指定元素代替指定位置的指定元素,返回该位置的旧元素
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it gets
* the current element using <tt>ListIterator.next</tt> and replaces it
* with <tt>ListIterator.set</tt>.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator does not
* implement the <tt>set</tt> operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E set(int index, E element) {
try {
ListIterator<E> e = listIterator(index);
E oldVal = e.next();
e.set(element);
return oldVal;
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException("Index: "+index);
}
}
/**
* Inserts the specified element at the specified position in this list
* (optional operation). Shifts the element currently at that position
* (if any) and any subsequent elements to the right (adds one to their
* indices).
* 在指定位置插入指定元素,并将其余元素往后移
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it
* inserts the specified element with <tt>ListIterator.add</tt>.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator does not
* implement the <tt>add</tt> operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public void add(int index, E element) {
try {
listIterator(index).add(element);
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException("Index: "+index);
}
}
/**
* Removes the element at the specified position in this list (optional
* operation). Shifts any subsequent elements to the left (subtracts one
* from their indices). Returns the element that was removed from the
* list.
* 移除指定位置的元素,将后面的元素向左移,返回移除的元素
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it removes
* the element with <tt>ListIterator.remove</tt>.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator does not
* implement the <tt>remove</tt> operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E remove(int index) {
try {
ListIterator<E> e = listIterator(index);
E outCast = e.next();
e.remove();
return outCast;
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException("Index: "+index);
}
}
// Bulk Operations
/**
* Inserts all of the elements in the specified collection into this
* list at the specified position (optional operation). Shifts the
* element currently at that position (if any) and any subsequent
* elements to the right (increases their indices). The new elements
* will appear in this list in the order that they are returned by the
* specified collection's iterator. The behavior of this operation is
* undefined if the specified collection is modified while the
* operation is in progress. (Note that this will occur if the specified
* collection is this list, and it's nonempty.)
* 插入指定元素并移动后面元素
* <p>This implementation gets an iterator over the specified collection and
* a list iterator over this list pointing to the indexed element (with
* <tt>listIterator(index)</tt>). Then, it iterates over the specified
* collection, inserting the elements obtained from the iterator into this
* list, one at a time, using <tt>ListIterator.add</tt> followed by
* <tt>ListIterator.next</tt> (to skip over the added element).
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator returned by
* the <tt>listIterator</tt> method does not implement the <tt>add</tt>
* operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public boolean addAll(int index, Collection<? extends E> c) {
try {
boolean modified = false;
ListIterator<E> e1 = listIterator(index);
Iterator<? extends E> e2 = c.iterator();
while (e2.hasNext()) {
e1.add(e2.next());
modified = true;
}
return modified;
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException("Index: "+index);
}
}
// Iterators
/**
* Returns an iterator over the elements in this list (in proper
* sequence).<p>
* 返回该list的迭代器
* This implementation merely returns a list iterator over the list.
*
* @return an iterator over the elements in this list (in proper sequence)
*/
public Iterator<E> iterator() {
return listIterator();
}
/**
* Returns a list iterator over the elements in this list (in proper
* sequence).
* 返回该list的list iterator
* @param index index of first element to be returned from the list
* iterator (by a call to the <code>next</code> method)
* @return a list iterator over the elements in this list (in proper
* sequence)
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public abstract ListIterator<E> listIterator(int index);
}
| [
"[email protected]"
]
| |
2a372f120303382826d9bfdf14ac42389db541a9 | 70f7a06017ece67137586e1567726579206d71c7 | /alimama/src/main/java/com/taobao/tao/log/message/SenderInfo.java | 05f12be6efe1f29d9b7ceae23dbdf665459a1000 | []
| no_license | liepeiming/xposed_chatbot | 5a3842bd07250bafaffa9f468562021cfc38ca25 | 0be08fc3e1a95028f8c074f02ca9714dc3c4dc31 | refs/heads/master | 2022-12-20T16:48:21.747036 | 2020-10-14T02:37:49 | 2020-10-14T02:37:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 89 | java | package com.taobao.tao.log.message;
public class SenderInfo {
public String type;
}
| [
"[email protected]"
]
| |
879d2112f9a5fef9b6ccecdd2c0637e76e2bf94f | c615c98ba78c09363cdd7d2cec02013dfaa44da2 | /src/main/java/creational/abstractFactory/tutorialspoint/Green.java | 108efad18e76ad111e5489856ad769c59250d429 | []
| no_license | mateuszalmannai/JavaDesignPatterns | 7abbe1d54e3d9cc2aca818a4b5c8a20aea3c14c7 | 0c081d43830ba56545f3d3c003e429beafe74153 | refs/heads/master | 2021-01-10T07:21:42.845986 | 2016-03-13T19:15:23 | 2016-03-13T19:15:25 | 45,342,350 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 192 | java | package main.creational.abstractFactory.tutorialspoint;
public class Green implements Color {
@Override
public void fill() {
System.out.println("Inside Green::fill() method.");
}
}
| [
"[email protected]"
]
| |
07d159c49a1a2a2487fb2d46be952d5ef20a8dce | 88b9b23578fc12a1875b637d13b457c860a833b4 | /research/modules/vontu_utilities/com/vontu/util/PropertiesAcceptor.java | 1ba34c74822ec100551aef485a2e45d7d2bacaac | []
| no_license | vitali-fridman/sidd | b35474a9c6d68190655189c753809229a9762cf0 | 07deb7eb68965c51e95a78b94182164ba1155938 | refs/heads/master | 2021-05-19T22:50:58.892339 | 2015-08-28T22:30:03 | 2015-08-28T22:30:03 | 38,847,443 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 196 | java | //
// Decompiled by Procyon v0.5.29
//
package com.vontu.util;
import java.util.Properties;
public interface PropertiesAcceptor
{
void acceptProperties(Properties p0) throws Exception;
}
| [
"[email protected]"
]
| |
c6761eb3ecefd6bbc541ca5b05c8dae15294ab78 | 6a36dae8c136be527d19d4bb3ed426bae77c551e | /src/com/javaplus/Calculator.java | a5f2d24ea9282109e18e0934ef849d2b0b7e4188 | []
| no_license | gbools/calculator-pro | 3fcd929d6be1e927c2f958156ce8a72ce95573b3 | 2bb680426fa4323ea50126be407dab7562021674 | refs/heads/master | 2022-05-12T14:24:26.958840 | 2020-04-21T21:44:55 | 2020-04-21T21:44:55 | 257,672,410 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 483 | 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 com.javaplus;
/**
*
* @author gbolahan
*/
public class Calculator {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("This is good");
}
}
| [
"[email protected]"
]
| |
44f04e1ecea760f263696ffa9c6c81ab8f0f81fa | b134cda3ac3a289ebbe68f2c3a536c4b1a86b90f | /app/src/main/java/com/cityworksapps/mytester/MainActivity.java | ab06c20ae3831987eefd4b18043571fabc0e702e | []
| no_license | bobhale/ComoParkAppAndroid | e759ee13b9ba28ce38534bfa28b22cf6ce706897 | 8db1192f5c87a27c667ee486df1f08b7e858d9d3 | refs/heads/master | 2016-09-11T13:04:50.465303 | 2015-03-12T03:24:54 | 2015-03-12T03:24:54 | 31,989,273 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,415 | java | package com.cityworksapps.mytester;
import android.app.Activity;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.content.Context;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.support.v4.widget.DrawerLayout;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.TextView;
public class MainActivity extends ActionBarActivity
implements NavigationDrawerFragment.NavigationDrawerCallbacks, ItemListFragment.Callbacks, PlaceListFragment.Callbacks {
/**
* Fragment managing the behaviors, interactions and presentation of the navigation drawer.
*/
private boolean mTwoPane;
private NavigationDrawerFragment mNavigationDrawerFragment;
/**
* Used to store the last screen title. For use in {@link #restoreActionBar()}.
*/
private CharSequence mTitle;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mNavigationDrawerFragment = (NavigationDrawerFragment)
getSupportFragmentManager().findFragmentById(R.id.navigation_drawer);
mTitle = getTitle();
// Set up the drawer.
mNavigationDrawerFragment.setUp(
R.id.navigation_drawer,
(DrawerLayout) findViewById(R.id.drawer_layout));
if (findViewById(R.id.item_detail_container) != null) {
// The detail container view will be present only in the
// large-screen layouts (res/values-large and
// res/values-sw600dp). If this view is present, then the
// activity should be in two-pane mode.
mTwoPane = true;
// In two-pane mode, list items should be given the
// 'activated' state when touched.
((ItemListFragment) getSupportFragmentManager()
.findFragmentById(R.id.item_list))
.setActivateOnItemClick(true);
}
}
@Override
public void onNavigationDrawerItemSelected(int position) {
// update the main content by replacing fragments
//((ItemListFragment) getFragmentManager()
// .findFragmentById(R.id.item_list))
/// .setActivateOnItemClick(true);
if (position == 0) {
Fragment fragment = new ItemListFragment();
FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.container, fragment)
.commit();
}
if (position == 2){
Fragment fragment = new PlaceListFragment();
FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.container, fragment)
.commit();
}
if (position == 3){
Fragment fragment = new PlaceListFragment();
FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.container, fragment)
.commit();
}
if (position == 1) {
Log.i("Maps Init", "Entering");
Intent intent = new Intent(this, MapPane.class);
startActivity(intent);
// Fragment fragment = new ItemWebFragment();
// FragmentManager fragmentManager = getSupportFragmentManager();
//fragmentManager.beginTransaction()
// .replace(R.id.container, fragment)
// .commit();
}
}
public void onItemSelected2(String id) {
//boolean mTwoPane = false;
if (mTwoPane) {
// In two-pane mode, show the detail view in this activity by
// adding or replacing the detail fragment using a
// fragment transaction.
Bundle arguments = new Bundle();
arguments.putString(PlaceDetailFragment.ARG_ITEM_ID, id);
PlaceDetailFragment fragment = new PlaceDetailFragment();
fragment.setArguments(arguments);
getSupportFragmentManager().beginTransaction()
.replace(R.id.place_detail_container, fragment)
.commit();
} else {
// In single-pane mode, simply start the detail activity
// for the selected item ID.
Intent placeIntent = new Intent(this, PlaceDetailActivity.class);
placeIntent.putExtra(PlaceDetailFragment.ARG_ITEM_ID, id);
startActivity(placeIntent);
}
}
public void onItemSelected(String id) {
// boolean mTwoPane = true;
if (mTwoPane) {
// In two-pane mode, show the detail view in this activity by
// adding or replacing the detail fragment using a
// fragment transaction.
Bundle arguments = new Bundle();
arguments.putString(ItemDetailFragment.ARG_ITEM_ID, id);
ItemDetailFragment fragment = new ItemDetailFragment();
//ItemWebFragment fragment = new ItemWebFragment();
fragment.setArguments(arguments);
getSupportFragmentManager().beginTransaction()
.replace(R.id.container, fragment)
.commit();
} else {
// In single-pane mode, simply start the detail activity
// for the selected item ID.
// Intent detailIntent = new Intent(this, WebFragmentActivity.class);
Intent detailIntent = new Intent(this, ItemDetailActivity.class);
detailIntent.putExtra(ItemDetailFragment.ARG_ITEM_ID, id);
startActivity(detailIntent);
}
}
public void onSectionAttached(int number) {
switch (number) {
case 1:
mTitle = getString(R.string.title_section1);
break;
case 2:
mTitle = getString(R.string.title_section2);
break;
case 3:
mTitle = getString(R.string.title_section3);
break;
case 4:
mTitle = getString(R.string.title_section4);
break;
case 5:
mTitle = getString(R.string.title_section5);
break;
}
}
public void restoreActionBar() {
ActionBar actionBar = getSupportActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle(mTitle);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
if (!mNavigationDrawerFragment.isDrawerOpen()) {
// Only show items in the action bar relevant to this screen
// if the drawer is not showing. Otherwise, let the drawer
// decide what to show in the action bar.
getMenuInflater().inflate(R.menu.menu_main, menu);
restoreActionBar();
return true;
}
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
/**
* The fragment argument representing the section number for this
* fragment.
*/
private static final String ARG_SECTION_NUMBER = "section_number";
/**
* Returns a new instance of this fragment for the given section
* number.
*/
public static PlaceholderFragment newInstance(int sectionNumber) {
PlaceholderFragment fragment = new PlaceholderFragment();
Bundle args = new Bundle();
args.putInt(ARG_SECTION_NUMBER, sectionNumber);
fragment.setArguments(args);
return fragment;
}
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
((MainActivity) activity).onSectionAttached(
getArguments().getInt(ARG_SECTION_NUMBER));
}
}
}
| [
"[email protected]"
]
| |
68cd1988685cb0890aa26456cf28c63f4111d309 | 5b6f30bf5b2359a8c5057f78b709756112171523 | /src/main/java/com/daily/util/ExcellUtil.java | e8c0f7d056865fa8ec76ee58586ea5c6c7c0a687 | []
| no_license | dailiuyang123/spring-base | 8f2e0ec03e9e6ab257cf0ecd55e58a9c05a0bbbe | 4bfd29baf24b1cb318ba88c9eb960af3549648d5 | refs/heads/master | 2021-09-10T22:19:51.202886 | 2018-03-24T07:46:51 | 2018-03-24T07:46:51 | 100,277,359 | 0 | 0 | null | 2018-03-31T17:32:12 | 2017-08-14T14:36:42 | Java | UTF-8 | Java | false | false | 3,369 | java | package com.daily.util;
import com.daily.web.controller.ExcellController;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import javax.servlet.http.HttpServletRequest;
import java.io.*;
import java.util.List;
import java.util.Map;
/**
* Created by Azir on 2018/2/25.
*/
public class ExcellUtil {
public static void createExcel(List<Map<String, String>> list, OutputStream output, HttpServletRequest request) {
Workbook tempWorkBook = null;
Sheet tempSheet = null;
int rowIndex = 5;
Row tempRow = null;
Cell tempCell = null;
InputStream inputstream = null;
try {
//inputstream = request.getSession().getServletContext().getResourceAsStream("/templates/test.xlsx");
//inputstream=ExcellUtil.class.getResourceAsStream("/templates/test.xlsx");
String path = ExcellController.class.getResource("/").getPath() + "/templet/Demo.xlsx";
File file = new File(path);
boolean exists = file.exists();
System.out.println(exists);
FileInputStream fileInputStream = new FileInputStream(file);
inputstream = fileInputStream;
// 获取模板
tempWorkBook = new XSSFWorkbook(inputstream);
// 获取模板sheet页
tempSheet = tempWorkBook.getSheetAt(0);
// 将数据写入excel
for (int i = 0; i < list.size(); i++) {
int cellNo = 0;
// 获取指定行
tempRow = tempSheet.getRow(0);
//获取当前sheet最后一行数据对应的行索引
int currentLastRowIndex = tempSheet.getLastRowNum();
int newRowIndex = currentLastRowIndex + 1;
XSSFRow newRow = (XSSFRow) tempSheet.createRow(newRowIndex);
//开始创建并设置该行每一单元格的信息,该行单元格的索引从 0 开始
int cellIndex = 0;
//创建一个单元格,设置其内的数据格式为字符串,并填充内容,其余单元格类同
XSSFCell newNameCell = newRow.createCell(cellIndex++, Cell.CELL_TYPE_STRING);
newNameCell.setCellValue(list.get(i).get("No").toString());
XSSFCell newGenderCell = newRow.createCell(cellIndex++, Cell.CELL_TYPE_STRING);
newGenderCell.setCellValue(list.get(i).get("name"));
XSSFCell newAgeCell = newRow.createCell(cellIndex++, Cell.CELL_TYPE_NUMERIC);
newAgeCell.setCellValue(list.get(i).get("sex"));
XSSFCell newAddressCell = newRow.createCell(cellIndex++, Cell.CELL_TYPE_NUMERIC);
newAddressCell.setCellValue(list.get(i).get("age").toString());
}
// 将内容写入Excel
tempWorkBook.write(output);
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
output.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
| [
"[email protected]"
]
| |
5d4470bee508cb74a07170ae879348069f6937e4 | 8236575f9407985017f930ce3eaab899ae215dc8 | /src/jpaddlegame/com/game/entities/Enemy.java | a0980912b88f64907087e8d8bcb79415c37caee2 | []
| no_license | samgiles/space-fighter | 9289903b0904793c5326a630b338b550e0fc00c2 | a4a02042c73bebd27762b71cf4f5ffb96d1638b7 | refs/heads/master | 2020-04-16T02:57:33.307522 | 2012-01-23T01:55:16 | 2012-01-23T01:55:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,953 | java | package jpaddlegame.com.game.entities;
import java.awt.Color;
import javax.vecmath.Vector2d;
import jpaddlegame.com.BatchDrawer;
import jpaddlegame.com.game.Camera;
public class Enemy extends Character {
DynamicEntity target;
public Enemy(Map map) {
super(map);
this.setImageId(0);
this.health = 90;
}
public void setTarget(DynamicEntity character) {
this.target = character;
}
public void paint(BatchDrawer g){
Vector2d pos = Camera.getCamera().convertToScreenCoordinates(this.getPosition());
if (this.getHealth() > 50){
g.drawFillRect((int)this.getHealth() / 5, 3, (int)pos.x + 2, (int)pos.y - 5, Color.green, 1);
} else if (this.getHealth() > 20){
g.drawFillRect((int)this.getHealth() / 5, 3, (int)pos.x + 2, (int)pos.y - 5, Color.orange, 1);
} else {
g.drawFillRect((int)this.getHealth() / 5, 3, (int)pos.x + 2, (int)pos.y - 5, Color.red, 1);
}
super.paint(g);
}
public void update() {
if (this.getHealth() < 0){
return;
}
if (target == null){
super.update();
return;
}
Vector2d target = new Vector2d(this.target.getPosition().getX(), this.target.getPosition().getY());
target.sub(this.getCenter());
double angle = Math.atan2(target.getY(), target.getX() );
if (Math.random() > 0.7){
this.rotation = angle + 1.57;
}
double length = target.length();
if (length > 100){
this.moveForward(2);
} else {
this.moveBackward(2);
}
double rand = Math.random();
if (length < 300){
if (firePowerRemaining < 10){
if (rand > 0.95){
this.fire();
}
} else {
if (rand > 0.6)
this.fire();
}
}
super.update();
}
public void fire(){
if (firePowerRemaining > 0){
this.map.addTemporaryMapEntity(new Projectile(this, 4, 1.0));
firePowerRemaining -= 2;
}
}
}
| [
"[email protected]"
]
| |
839625b4e9bec3116334c46ba86e761c1a5a10b6 | 25df171f2d3bc5d3ef97b9d4ff51793c539632d5 | /Android Room/app/src/main/java/com/example/lab_6/CourseDao.java | 5e56f406a969226a16beced0a1701cd36f7bf8b0 | []
| no_license | gamidiv10/CSCI-5708-Mobile-Computing | a66c01bfa8f27f6b9b183bc081f53dd37441c7c1 | efe032e78e0a0366975ae6f735dcb8be959b5322 | refs/heads/master | 2022-04-27T12:26:47.349575 | 2020-04-30T19:19:31 | 2020-04-30T19:19:31 | 260,294,881 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 508 | java | package com.example.lab_6;
import androidx.lifecycle.LiveData;
import androidx.room.Dao;
import androidx.room.Insert;
import androidx.room.OnConflictStrategy;
import androidx.room.Query;
import java.util.List;
@Dao
public interface CourseDao {
@Insert(onConflict = OnConflictStrategy.IGNORE)
void insert(Course course);
@Query("DELETE FROM course_table")
void deleteAll();
@Query("SELECT * from course_table ORDER BY course ASC")
LiveData<List<Course>> getAlphabetizedWords();
}
| [
"[email protected]"
]
| |
39e59a510430833d616a20acfcc8e780cc70a9c0 | 6dd0af4748bc3db1176e638819f3089f0b26e918 | /hi-authen/hi-authen/src/com/viettel/authen/process/server/ViewImageProcess.java | c7c94ac4487966fa1694d84f52203ad8de6783b3 | []
| no_license | ngocdon0127/core-hiendm | df13debcc8f1d3dfc421b57bd149a95d2a4cd441 | 46421fbd1868625b0a1c7b1447d4f882e37e6257 | refs/heads/master | 2022-11-17T11:50:16.145719 | 2020-07-14T10:55:22 | 2020-07-14T10:55:22 | 279,256,530 | 0 | 0 | null | 2020-07-13T09:24:43 | 2020-07-13T09:24:42 | null | UTF-8 | Java | false | false | 2,190 | 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 com.viettel.authen.process.server;
import com.google.gson.Gson;
import com.google.gson.internal.LinkedTreeMap;
import com.viettel.authen.run.ServerProcess;
import com.viettel.authen.run.StartApp;
import com.hh.connector.server.Server;
import io.netty.channel.ChannelHandlerContext;
import java.io.File;
import java.util.Calendar;
import java.util.Date;
/**
*
* @author Ha
*/
public class ViewImageProcess extends ServerProcess {
public ViewImageProcess(ChannelHandlerContext ctx, Server server) {
super(ctx, server);
}
@Override
public void process(LinkedTreeMap msg) throws Exception {
String fileName = (String) msg.get("filename");
if (fileName == null) {
LinkedTreeMap<String, String> data = new LinkedTreeMap();
data.put("data", "404 (Not Found)");
String json = new Gson().toJson(data);
returnStringToFrontend(msg, json);
return;
}
String filePath = "";
if (fileName.contains("_")) {
String[] arrData = fileName.split("_");
long createTime = Long.parseLong(arrData[0]);
Calendar c = Calendar.getInstance();
c.setTime(new Date(createTime));
filePath = StartApp.config.getConfig("DataDirectory") + File.separator + "user";
filePath = filePath.replace("/", File.separator);
filePath = filePath.replace("\\", File.separator);
filePath = filePath + File.separator + c.get(Calendar.YEAR) + File.separator
+ (c.get(Calendar.MONTH) + 1) + File.separator + c.get(Calendar.DAY_OF_MONTH)
+ File.separator;
filePath = filePath + fileName;
}
File tmpFile = new File(filePath);
if (!tmpFile.exists()) {
filePath = StartApp.config.getConfig("DataDirectory") + File.separator + "user" + File.separator + "no-image.jpg";
}
returnFileToFrontend(msg, filePath);
}
}
| [
"[email protected]"
]
| |
d080636c222963bb160f3fe90099190a9d4994be | ad239aaef9c25ec3ef76b38ae718fa2b1f03be5c | /src/com/company/Client.java | 2c4525532f26b737312677081892ca6b3f10f9f2 | []
| no_license | Samarkhan-Shyngys/Bank_deposit_JDK | bcb4299e0140804e024feca683b6afd796fa5b1a | a5691b952c5c5c9a9445cbb94bb8f1edc2778410 | refs/heads/master | 2023-04-12T02:40:46.311451 | 2021-04-16T16:16:01 | 2021-04-16T16:16:01 | 358,649,175 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,492 | java | package com.company;
import java.lang.reflect.Array;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Client {
public static void WelcomeClient() {
Scanner sc = new Scanner(System.in);
Map<String, Polzovatel> ClientServer = new HashMap<String, Polzovatel>();
ClientServer.put("1111", new Polzovatel(new HalykBank(), "Will", "John", 1111, 25));
ClientServer.put("2222", new Polzovatel(new KaspiBank(), "Kate", "Donna", 2222, 21));
while (true) {
System.out.println("Salem!IIN: ");
String IIN = String.valueOf(sc.nextInt());
if (ClientServer.containsKey(IIN)) {
System.out.println("Account exists");
System.out.println("Account details are:");
System.out.println(ClientServer.get(IIN).toString());
System.out.println("Enter 1 for add 2 for withdrawal ");
int action = sc.nextInt();
switch (action){
case 1:
int amountToAdd = 0;
System.out.println("Current Balance: "+ ClientServer.get(IIN).getDeposit().getSumma());
System.out.println("How much to add?:");
amountToAdd = sc.nextInt();
ClientServer.get(IIN).getDeposit().addMoney(amountToAdd);
System.out.println(amountToAdd + "was successfully added to your balance!");
System.out.println("Balance after addition: "+ ClientServer.get(IIN).getDeposit().getSumma());
System.out.println("Prediction after addition: " + ClientServer.get(IIN).getBanks().
getPrediction(ClientServer.get(IIN).getDeposit().getMonths(), ClientServer.get(IIN).getDeposit().getSumma()));
break;
case 2:
int amountToWithdraw = 0;
System.out.println("Current Balance: "+ ClientServer.get(IIN).getDeposit().getSumma());
System.out.println("How much to withdraw?:");
amountToWithdraw = sc.nextInt();
ClientServer.get(IIN).getDeposit().withdrawMoney(amountToWithdraw);
System.out.println(amountToWithdraw + "was successfully withdrawed from your balance!");
System.out.println("Balance after withdraw: "+ ClientServer.get(IIN).getDeposit().getSumma());
System.out.println("Prediction after withdraw: " + ClientServer.get(IIN).getBanks().
getPrediction(ClientServer.get(IIN).getDeposit().getMonths(), ClientServer.get(IIN).getDeposit().getSumma()));
break;
}
} else {
Polzovatel newPolzovatel = new Polzovatel();
newPolzovatel.setIIN(Integer.parseInt(IIN));
System.out.println("Registration. Enter your surname: ");
newPolzovatel.setSurname(sc.next());
System.out.println("Name: ");
newPolzovatel.setName(sc.next());
System.out.println("Age: ");
newPolzovatel.setAge(sc.nextInt());
System.out.println("Summa: ");
newPolzovatel.getDeposit().addMoney(sc.nextInt());
System.out.println("12 24 36 60 months: ");
newPolzovatel.getDeposit().setMonths(sc.nextInt());
System.out.println("Enter 1 for HalykBank, 2 for KaspiBank");
int san = sc.nextInt();
switch (san) {
case 1:
newPolzovatel.setBanks(new HalykBank());
break;
case 2:
newPolzovatel.setBanks(new KaspiBank());
break;
case 3:
newPolzovatel.setBanks(new HalykBank());
default:
System.out.println("Incorrect");
break;
}
Polzovatel p = new Polzovatel();
ClientServer.put(IIN, newPolzovatel);
}
System.out.println("1 - IIN\n2 - exit");
int sans = sc.nextInt();
if (sans == 1) {
continue;
}
break;
}
}
}
| [
"[email protected]"
]
| |
4f133ee20557a82561f677599ac4a0031d1f7679 | 0cde622855c21c8701ca5f5f2e47f4fb32aaeb82 | /de.htwdd.sf.beleg.s70307s70429/src-gen/de/htwdd/sf/beleg/s70307s70429/myDsl/MyDslPackage.java | e3d09eea6fdd62a5b2bcce3564f2256ba4290c3a | []
| no_license | timnicolaisen/software_factory | 7998a833831c784535aafe3245b9ab87d50f8020 | 13fba12c0ce5ebea52bdcc5041ab325d384a2e11 | refs/heads/master | 2021-01-01T04:45:14.375490 | 2016-05-20T11:24:16 | 2016-05-20T11:24:16 | 59,288,277 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 45,902 | java | /**
* generated by Xtext 2.9.2
*/
package de.htwdd.sf.beleg.s70307s70429.myDsl;
import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.EReference;
/**
* <!-- begin-user-doc -->
* The <b>Package</b> for the model.
* It contains accessors for the meta objects to represent
* <ul>
* <li>each class,</li>
* <li>each feature of each class,</li>
* <li>each enum,</li>
* <li>and each data type</li>
* </ul>
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.MyDslFactory
* @model kind="package"
* @generated
*/
public interface MyDslPackage extends EPackage
{
/**
* The package name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String eNAME = "myDsl";
/**
* The package namespace URI.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String eNS_URI = "http://www.htwdd.de/sf/beleg/s70307s70429/MyDsl";
/**
* The package namespace name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String eNS_PREFIX = "myDsl";
/**
* The singleton instance of the package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
MyDslPackage eINSTANCE = de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl.init();
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PrologdslImpl <em>Prologdsl</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PrologdslImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getPrologdsl()
* @generated
*/
int PROLOGDSL = 0;
/**
* The feature id for the '<em><b>Prologdsl</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PROLOGDSL__PROLOGDSL = 0;
/**
* The feature id for the '<em><b>Ex</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PROLOGDSL__EX = 1;
/**
* The number of structural features of the '<em>Prologdsl</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PROLOGDSL_FEATURE_COUNT = 2;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ProgramImpl <em>Program</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ProgramImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getProgram()
* @generated
*/
int PROGRAM = 1;
/**
* The feature id for the '<em><b>Clause1</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PROGRAM__CLAUSE1 = 0;
/**
* The feature id for the '<em><b>Clause2</b></em>' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PROGRAM__CLAUSE2 = 1;
/**
* The number of structural features of the '<em>Program</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PROGRAM_FEATURE_COUNT = 2;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ExqueryImpl <em>Exquery</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ExqueryImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getExquery()
* @generated
*/
int EXQUERY = 2;
/**
* The feature id for the '<em><b>Q</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int EXQUERY__Q = 0;
/**
* The number of structural features of the '<em>Exquery</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int EXQUERY_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.QueryImpl <em>Query</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.QueryImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getQuery()
* @generated
*/
int QUERY = 3;
/**
* The feature id for the '<em><b>Query</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int QUERY__QUERY = 0;
/**
* The feature id for the '<em><b>Pred</b></em>' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int QUERY__PRED = 1;
/**
* The number of structural features of the '<em>Query</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int QUERY_FEATURE_COUNT = 2;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ClauseImpl <em>Clause</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ClauseImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getClause()
* @generated
*/
int CLAUSE = 4;
/**
* The feature id for the '<em><b>Fact</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int CLAUSE__FACT = 0;
/**
* The feature id for the '<em><b>Clause1</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int CLAUSE__CLAUSE1 = 1;
/**
* The number of structural features of the '<em>Clause</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int CLAUSE_FEATURE_COUNT = 2;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FactImpl <em>Fact</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FactImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getFact()
* @generated
*/
int FACT = 5;
/**
* The number of structural features of the '<em>Fact</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FACT_FEATURE_COUNT = 0;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.RuleImpl <em>Rule</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.RuleImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getRule()
* @generated
*/
int RULE = 6;
/**
* The feature id for the '<em><b>Q</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int RULE__Q = 0;
/**
* The number of structural features of the '<em>Rule</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int RULE_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PredicateImpl <em>Predicate</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PredicateImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getPredicate()
* @generated
*/
int PREDICATE = 7;
/**
* The feature id for the '<em><b>Pred</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PREDICATE__PRED = 0;
/**
* The feature id for the '<em><b>T</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PREDICATE__T = 1;
/**
* The feature id for the '<em><b>T2</b></em>' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PREDICATE__T2 = 2;
/**
* The number of structural features of the '<em>Predicate</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PREDICATE_FEATURE_COUNT = 3;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FunctorImpl <em>Functor</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FunctorImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getFunctor()
* @generated
*/
int FUNCTOR = 8;
/**
* The feature id for the '<em><b>Func</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FUNCTOR__FUNC = 0;
/**
* The number of structural features of the '<em>Functor</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FUNCTOR_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.TermImpl <em>Term</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.TermImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getTerm()
* @generated
*/
int TERM = 9;
/**
* The feature id for the '<em><b>Term</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int TERM__TERM = 0;
/**
* The number of structural features of the '<em>Term</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int TERM_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.AtomImpl <em>Atom</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.AtomImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getAtom()
* @generated
*/
int ATOM = 10;
/**
* The feature id for the '<em><b>Xx</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int ATOM__XX = 0;
/**
* The number of structural features of the '<em>Atom</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int ATOM_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ListImpl <em>List</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ListImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getList()
* @generated
*/
int LIST = 11;
/**
* The feature id for the '<em><b>Nel</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int LIST__NEL = 0;
/**
* The number of structural features of the '<em>List</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int LIST_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.NonemptylistImpl <em>Nonemptylist</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.NonemptylistImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getNonemptylist()
* @generated
*/
int NONEMPTYLIST = 12;
/**
* The feature id for the '<em><b>Folge</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int NONEMPTYLIST__FOLGE = 0;
/**
* The feature id for the '<em><b>Atom</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int NONEMPTYLIST__ATOM = 1;
/**
* The feature id for the '<em><b>Term</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int NONEMPTYLIST__TERM = 2;
/**
* The number of structural features of the '<em>Nonemptylist</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int NONEMPTYLIST_FEATURE_COUNT = 3;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FolgeImpl <em>Folge</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FolgeImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getFolge()
* @generated
*/
int FOLGE = 13;
/**
* The feature id for the '<em><b>Atom</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FOLGE__ATOM = 0;
/**
* The feature id for the '<em><b>Atoms</b></em>' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FOLGE__ATOMS = 1;
/**
* The number of structural features of the '<em>Folge</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FOLGE_FEATURE_COUNT = 2;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.IdentImpl <em>Ident</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.IdentImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getIdent()
* @generated
*/
int IDENT = 14;
/**
* The feature id for the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int IDENT__NAME = 0;
/**
* The number of structural features of the '<em>Ident</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int IDENT_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Number2Impl <em>Number2</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Number2Impl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getNumber2()
* @generated
*/
int NUMBER2 = 15;
/**
* The feature id for the '<em><b>Wert</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int NUMBER2__WERT = 0;
/**
* The number of structural features of the '<em>Number2</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int NUMBER2_FEATURE_COUNT = 1;
/**
* The meta object id for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Variable2Impl <em>Variable2</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Variable2Impl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getVariable2()
* @generated
*/
int VARIABLE2 = 16;
/**
* The feature id for the '<em><b>Var1</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int VARIABLE2__VAR1 = 0;
/**
* The number of structural features of the '<em>Variable2</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int VARIABLE2_FEATURE_COUNT = 1;
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Prologdsl <em>Prologdsl</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Prologdsl</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Prologdsl
* @generated
*/
EClass getPrologdsl();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Prologdsl#getPrologdsl <em>Prologdsl</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Prologdsl</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Prologdsl#getPrologdsl()
* @see #getPrologdsl()
* @generated
*/
EReference getPrologdsl_Prologdsl();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Prologdsl#getEx <em>Ex</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Ex</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Prologdsl#getEx()
* @see #getPrologdsl()
* @generated
*/
EReference getPrologdsl_Ex();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Program <em>Program</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Program</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Program
* @generated
*/
EClass getProgram();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Program#getClause1 <em>Clause1</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Clause1</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Program#getClause1()
* @see #getProgram()
* @generated
*/
EReference getProgram_Clause1();
/**
* Returns the meta object for the containment reference list '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Program#getClause2 <em>Clause2</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference list '<em>Clause2</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Program#getClause2()
* @see #getProgram()
* @generated
*/
EReference getProgram_Clause2();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Exquery <em>Exquery</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Exquery</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Exquery
* @generated
*/
EClass getExquery();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Exquery#getQ <em>Q</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Q</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Exquery#getQ()
* @see #getExquery()
* @generated
*/
EReference getExquery_Q();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Query <em>Query</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Query</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Query
* @generated
*/
EClass getQuery();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Query#getQuery <em>Query</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Query</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Query#getQuery()
* @see #getQuery()
* @generated
*/
EReference getQuery_Query();
/**
* Returns the meta object for the containment reference list '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Query#getPred <em>Pred</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference list '<em>Pred</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Query#getPred()
* @see #getQuery()
* @generated
*/
EReference getQuery_Pred();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Clause <em>Clause</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Clause</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Clause
* @generated
*/
EClass getClause();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Clause#getFact <em>Fact</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Fact</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Clause#getFact()
* @see #getClause()
* @generated
*/
EReference getClause_Fact();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Clause#getClause1 <em>Clause1</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Clause1</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Clause#getClause1()
* @see #getClause()
* @generated
*/
EReference getClause_Clause1();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Fact <em>Fact</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Fact</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Fact
* @generated
*/
EClass getFact();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Rule <em>Rule</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Rule</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Rule
* @generated
*/
EClass getRule();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Rule#getQ <em>Q</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Q</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Rule#getQ()
* @see #getRule()
* @generated
*/
EReference getRule_Q();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate <em>Predicate</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Predicate</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate
* @generated
*/
EClass getPredicate();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate#getPred <em>Pred</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Pred</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate#getPred()
* @see #getPredicate()
* @generated
*/
EReference getPredicate_Pred();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate#getT <em>T</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>T</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate#getT()
* @see #getPredicate()
* @generated
*/
EReference getPredicate_T();
/**
* Returns the meta object for the containment reference list '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate#getT2 <em>T2</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference list '<em>T2</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Predicate#getT2()
* @see #getPredicate()
* @generated
*/
EReference getPredicate_T2();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Functor <em>Functor</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Functor</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Functor
* @generated
*/
EClass getFunctor();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Functor#getFunc <em>Func</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Func</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Functor#getFunc()
* @see #getFunctor()
* @generated
*/
EReference getFunctor_Func();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Term <em>Term</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Term</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Term
* @generated
*/
EClass getTerm();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Term#getTerm <em>Term</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Term</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Term#getTerm()
* @see #getTerm()
* @generated
*/
EReference getTerm_Term();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Atom <em>Atom</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Atom</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Atom
* @generated
*/
EClass getAtom();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Atom#getXx <em>Xx</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Xx</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Atom#getXx()
* @see #getAtom()
* @generated
*/
EReference getAtom_Xx();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.List <em>List</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>List</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.List
* @generated
*/
EClass getList();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.List#getNel <em>Nel</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Nel</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.List#getNel()
* @see #getList()
* @generated
*/
EReference getList_Nel();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist <em>Nonemptylist</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Nonemptylist</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist
* @generated
*/
EClass getNonemptylist();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist#getFolge <em>Folge</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Folge</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist#getFolge()
* @see #getNonemptylist()
* @generated
*/
EReference getNonemptylist_Folge();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist#getAtom <em>Atom</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Atom</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist#getAtom()
* @see #getNonemptylist()
* @generated
*/
EReference getNonemptylist_Atom();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist#getTerm <em>Term</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Term</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Nonemptylist#getTerm()
* @see #getNonemptylist()
* @generated
*/
EReference getNonemptylist_Term();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Folge <em>Folge</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Folge</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Folge
* @generated
*/
EClass getFolge();
/**
* Returns the meta object for the containment reference '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Folge#getAtom <em>Atom</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference '<em>Atom</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Folge#getAtom()
* @see #getFolge()
* @generated
*/
EReference getFolge_Atom();
/**
* Returns the meta object for the containment reference list '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Folge#getAtoms <em>Atoms</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the containment reference list '<em>Atoms</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Folge#getAtoms()
* @see #getFolge()
* @generated
*/
EReference getFolge_Atoms();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Ident <em>Ident</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Ident</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Ident
* @generated
*/
EClass getIdent();
/**
* Returns the meta object for the attribute '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Ident#getName <em>Name</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the attribute '<em>Name</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Ident#getName()
* @see #getIdent()
* @generated
*/
EAttribute getIdent_Name();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Number2 <em>Number2</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Number2</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Number2
* @generated
*/
EClass getNumber2();
/**
* Returns the meta object for the attribute '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Number2#getWert <em>Wert</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the attribute '<em>Wert</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Number2#getWert()
* @see #getNumber2()
* @generated
*/
EAttribute getNumber2_Wert();
/**
* Returns the meta object for class '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Variable2 <em>Variable2</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Variable2</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Variable2
* @generated
*/
EClass getVariable2();
/**
* Returns the meta object for the attribute '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.Variable2#getVar1 <em>Var1</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the attribute '<em>Var1</em>'.
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.Variable2#getVar1()
* @see #getVariable2()
* @generated
*/
EAttribute getVariable2_Var1();
/**
* Returns the factory that creates the instances of the model.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the factory that creates the instances of the model.
* @generated
*/
MyDslFactory getMyDslFactory();
/**
* <!-- begin-user-doc -->
* Defines literals for the meta objects that represent
* <ul>
* <li>each class,</li>
* <li>each feature of each class,</li>
* <li>each enum,</li>
* <li>and each data type</li>
* </ul>
* <!-- end-user-doc -->
* @generated
*/
interface Literals
{
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PrologdslImpl <em>Prologdsl</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PrologdslImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getPrologdsl()
* @generated
*/
EClass PROLOGDSL = eINSTANCE.getPrologdsl();
/**
* The meta object literal for the '<em><b>Prologdsl</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PROLOGDSL__PROLOGDSL = eINSTANCE.getPrologdsl_Prologdsl();
/**
* The meta object literal for the '<em><b>Ex</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PROLOGDSL__EX = eINSTANCE.getPrologdsl_Ex();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ProgramImpl <em>Program</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ProgramImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getProgram()
* @generated
*/
EClass PROGRAM = eINSTANCE.getProgram();
/**
* The meta object literal for the '<em><b>Clause1</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PROGRAM__CLAUSE1 = eINSTANCE.getProgram_Clause1();
/**
* The meta object literal for the '<em><b>Clause2</b></em>' containment reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PROGRAM__CLAUSE2 = eINSTANCE.getProgram_Clause2();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ExqueryImpl <em>Exquery</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ExqueryImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getExquery()
* @generated
*/
EClass EXQUERY = eINSTANCE.getExquery();
/**
* The meta object literal for the '<em><b>Q</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference EXQUERY__Q = eINSTANCE.getExquery_Q();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.QueryImpl <em>Query</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.QueryImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getQuery()
* @generated
*/
EClass QUERY = eINSTANCE.getQuery();
/**
* The meta object literal for the '<em><b>Query</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference QUERY__QUERY = eINSTANCE.getQuery_Query();
/**
* The meta object literal for the '<em><b>Pred</b></em>' containment reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference QUERY__PRED = eINSTANCE.getQuery_Pred();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ClauseImpl <em>Clause</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ClauseImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getClause()
* @generated
*/
EClass CLAUSE = eINSTANCE.getClause();
/**
* The meta object literal for the '<em><b>Fact</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference CLAUSE__FACT = eINSTANCE.getClause_Fact();
/**
* The meta object literal for the '<em><b>Clause1</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference CLAUSE__CLAUSE1 = eINSTANCE.getClause_Clause1();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FactImpl <em>Fact</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FactImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getFact()
* @generated
*/
EClass FACT = eINSTANCE.getFact();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.RuleImpl <em>Rule</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.RuleImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getRule()
* @generated
*/
EClass RULE = eINSTANCE.getRule();
/**
* The meta object literal for the '<em><b>Q</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference RULE__Q = eINSTANCE.getRule_Q();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PredicateImpl <em>Predicate</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.PredicateImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getPredicate()
* @generated
*/
EClass PREDICATE = eINSTANCE.getPredicate();
/**
* The meta object literal for the '<em><b>Pred</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PREDICATE__PRED = eINSTANCE.getPredicate_Pred();
/**
* The meta object literal for the '<em><b>T</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PREDICATE__T = eINSTANCE.getPredicate_T();
/**
* The meta object literal for the '<em><b>T2</b></em>' containment reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference PREDICATE__T2 = eINSTANCE.getPredicate_T2();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FunctorImpl <em>Functor</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FunctorImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getFunctor()
* @generated
*/
EClass FUNCTOR = eINSTANCE.getFunctor();
/**
* The meta object literal for the '<em><b>Func</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference FUNCTOR__FUNC = eINSTANCE.getFunctor_Func();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.TermImpl <em>Term</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.TermImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getTerm()
* @generated
*/
EClass TERM = eINSTANCE.getTerm();
/**
* The meta object literal for the '<em><b>Term</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference TERM__TERM = eINSTANCE.getTerm_Term();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.AtomImpl <em>Atom</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.AtomImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getAtom()
* @generated
*/
EClass ATOM = eINSTANCE.getAtom();
/**
* The meta object literal for the '<em><b>Xx</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference ATOM__XX = eINSTANCE.getAtom_Xx();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ListImpl <em>List</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.ListImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getList()
* @generated
*/
EClass LIST = eINSTANCE.getList();
/**
* The meta object literal for the '<em><b>Nel</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference LIST__NEL = eINSTANCE.getList_Nel();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.NonemptylistImpl <em>Nonemptylist</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.NonemptylistImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getNonemptylist()
* @generated
*/
EClass NONEMPTYLIST = eINSTANCE.getNonemptylist();
/**
* The meta object literal for the '<em><b>Folge</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference NONEMPTYLIST__FOLGE = eINSTANCE.getNonemptylist_Folge();
/**
* The meta object literal for the '<em><b>Atom</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference NONEMPTYLIST__ATOM = eINSTANCE.getNonemptylist_Atom();
/**
* The meta object literal for the '<em><b>Term</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference NONEMPTYLIST__TERM = eINSTANCE.getNonemptylist_Term();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FolgeImpl <em>Folge</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.FolgeImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getFolge()
* @generated
*/
EClass FOLGE = eINSTANCE.getFolge();
/**
* The meta object literal for the '<em><b>Atom</b></em>' containment reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference FOLGE__ATOM = eINSTANCE.getFolge_Atom();
/**
* The meta object literal for the '<em><b>Atoms</b></em>' containment reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EReference FOLGE__ATOMS = eINSTANCE.getFolge_Atoms();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.IdentImpl <em>Ident</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.IdentImpl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getIdent()
* @generated
*/
EClass IDENT = eINSTANCE.getIdent();
/**
* The meta object literal for the '<em><b>Name</b></em>' attribute feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EAttribute IDENT__NAME = eINSTANCE.getIdent_Name();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Number2Impl <em>Number2</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Number2Impl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getNumber2()
* @generated
*/
EClass NUMBER2 = eINSTANCE.getNumber2();
/**
* The meta object literal for the '<em><b>Wert</b></em>' attribute feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EAttribute NUMBER2__WERT = eINSTANCE.getNumber2_Wert();
/**
* The meta object literal for the '{@link de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Variable2Impl <em>Variable2</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.Variable2Impl
* @see de.htwdd.sf.beleg.s70307s70429.myDsl.impl.MyDslPackageImpl#getVariable2()
* @generated
*/
EClass VARIABLE2 = eINSTANCE.getVariable2();
/**
* The meta object literal for the '<em><b>Var1</b></em>' attribute feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EAttribute VARIABLE2__VAR1 = eINSTANCE.getVariable2_Var1();
}
} //MyDslPackage
| [
"[email protected]"
]
| |
dd3cc94b3ae96c5a82a07a58bce7a458e2d6dbde | 906a5b225265c770047b530f5f7b29a2776aa019 | /org.summer.sdt.core/compiler/org/summer/sdt/internal/compiler/classfmt/ClassFileReader.java | 3ed56b7c3bb70ffe99191b48860f6ceaba003943 | []
| no_license | zwgirl/summer-j | d29d7e8e5b0b6c5e2866302ea77e0956cc94cc86 | 4f63019ded38bb2043b408103906b16d09e782d6 | refs/heads/master | 2020-05-23T13:46:42.239171 | 2015-05-16T10:31:37 | 2015-05-16T10:31:37 | 24,453,440 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 48,565 | java | /*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Stephan Herrmann - Contribution for bug 365992 - [builder] [null] Change of nullness for a parameter doesn't trigger a build for the files that call the method
* Andy Clement (GoPivotal, Inc) [email protected] - Contributions for
* bug 407191 - [1.8] Binary access support for type annotations
*******************************************************************************/
package org.summer.sdt.internal.compiler.classfmt;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import org.summer.sdt.core.compiler.CharOperation;
import org.summer.sdt.internal.compiler.codegen.AttributeNamesConstants;
import org.summer.sdt.internal.compiler.env.*;
import org.summer.sdt.internal.compiler.impl.Constant;
import org.summer.sdt.internal.compiler.lookup.TagBits;
import org.summer.sdt.internal.compiler.lookup.TypeIds;
import org.summer.sdt.internal.compiler.util.Util;
public class ClassFileReader extends ClassFileStruct implements IBinaryType {
private int accessFlags;
private char[] classFileName;
private char[] className;
private int classNameIndex;
private int constantPoolCount;
private AnnotationInfo[] annotations;
private TypeAnnotationInfo[] typeAnnotations;
private FieldInfo[] fields;
private int fieldsCount;
// initialized in case the .class file is a nested type
private InnerClassInfo innerInfo;
private int innerInfoIndex;
private InnerClassInfo[] innerInfos;
private char[][] interfaceNames;
private int interfacesCount;
private MethodInfo[] methods;
private int methodsCount;
private char[] signature;
private char[] sourceName;
private char[] sourceFileName;
private char[] superclassName;
private long tagBits;
private long version;
private char[] enclosingTypeName;
private char[][][] missingTypeNames;
private int enclosingNameAndTypeIndex;
private char[] enclosingMethod;
//cym 2015-02-14 function type
private int parametersCount;
private char[][] parameterNames;
private char[] returnTypeName;
private int thrownExceptionsCount;
private char[][] thrownExceptionNames;
private static String printTypeModifiers(int modifiers) {
java.io.ByteArrayOutputStream out = new java.io.ByteArrayOutputStream();
java.io.PrintWriter print = new java.io.PrintWriter(out);
if ((modifiers & ClassFileConstants.AccPublic) != 0) print.print("public "); //$NON-NLS-1$
if ((modifiers & ClassFileConstants.AccPrivate) != 0) print.print("private "); //$NON-NLS-1$
if ((modifiers & ClassFileConstants.AccFinal) != 0) print.print("final "); //$NON-NLS-1$
if ((modifiers & ClassFileConstants.AccSuper) != 0) print.print("super "); //$NON-NLS-1$
if ((modifiers & ClassFileConstants.AccInterface) != 0) print.print("interface "); //$NON-NLS-1$
if ((modifiers & ClassFileConstants.AccAbstract) != 0) print.print("abstract "); //$NON-NLS-1$
print.flush();
return out.toString();
}
public static ClassFileReader read(File file) throws ClassFormatException, IOException {
return read(file, false);
}
public static ClassFileReader read(File file, boolean fullyInitialize) throws ClassFormatException, IOException {
byte classFileBytes[] = Util.getFileByteContent(file);
ClassFileReader classFileReader = new ClassFileReader(classFileBytes, file.getAbsolutePath().toCharArray());
if (fullyInitialize) {
classFileReader.initialize();
}
return classFileReader;
}
public static ClassFileReader read(InputStream stream, String fileName) throws ClassFormatException, IOException {
return read(stream, fileName, false);
}
public static ClassFileReader read(InputStream stream, String fileName, boolean fullyInitialize) throws ClassFormatException, IOException {
byte classFileBytes[] = Util.getInputStreamAsByteArray(stream, -1);
ClassFileReader classFileReader = new ClassFileReader(classFileBytes, fileName.toCharArray());
if (fullyInitialize) {
classFileReader.initialize();
}
return classFileReader;
}
public static ClassFileReader read(
java.util.zip.ZipFile zip,
String filename)
throws ClassFormatException, java.io.IOException {
return read(zip, filename, false);
}
public static ClassFileReader read(
java.util.zip.ZipFile zip,
String filename,
boolean fullyInitialize)
throws ClassFormatException, java.io.IOException {
java.util.zip.ZipEntry ze = zip.getEntry(filename);
if (ze == null)
return null;
byte classFileBytes[] = Util.getZipEntryByteContent(ze, zip);
ClassFileReader classFileReader = new ClassFileReader(classFileBytes, filename.toCharArray());
if (fullyInitialize) {
classFileReader.initialize();
}
return classFileReader;
}
public static ClassFileReader read(String fileName) throws ClassFormatException, java.io.IOException {
return read(fileName, false);
}
public static ClassFileReader read(String fileName, boolean fullyInitialize) throws ClassFormatException, java.io.IOException {
return read(new File(fileName), fullyInitialize);
}
/**
* @param classFileBytes Actual bytes of a .class file
* @param fileName Actual name of the file that contains the bytes, can be null
*
* @exception ClassFormatException
*/
public ClassFileReader(byte classFileBytes[], char[] fileName) throws ClassFormatException {
this(classFileBytes, fileName, false);
}
/**
* @param classFileBytes byte[]
* Actual bytes of a .class file
*
* @param fileName char[]
* Actual name of the file that contains the bytes, can be null
*
* @param fullyInitialize boolean
* Flag to fully initialize the new object
* @exception ClassFormatException
*/
public ClassFileReader(byte[] classFileBytes, char[] fileName, boolean fullyInitialize) throws ClassFormatException {
// This method looks ugly but is actually quite simple, the constantPool is constructed
// in 3 passes. All non-primitive constant pool members that usually refer to other members
// by index are tweaked to have their value in inst vars, this minor cost at read-time makes
// all subsequent uses of the constant pool element faster.
super(classFileBytes, null, 0);
this.classFileName = fileName;
int readOffset = 10;
try {
this.version = ((long)u2At(6) << 16) + u2At(4); // major<<16 + minor
this.constantPoolCount = u2At(8);
// Pass #1 - Fill in all primitive constants
this.constantPoolOffsets = new int[this.constantPoolCount];
for (int i = 1; i < this.constantPoolCount; i++) {
int tag = u1At(readOffset);
switch (tag) {
case ClassFileConstants.Utf8Tag :
this.constantPoolOffsets[i] = readOffset;
readOffset += u2At(readOffset + 1);
readOffset += ClassFileConstants.ConstantUtf8FixedSize;
break;
case ClassFileConstants.IntegerTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantIntegerFixedSize;
break;
case ClassFileConstants.FloatTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantFloatFixedSize;
break;
case ClassFileConstants.LongTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantLongFixedSize;
i++;
break;
case ClassFileConstants.DoubleTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantDoubleFixedSize;
i++;
break;
case ClassFileConstants.ClassTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantClassFixedSize;
break;
case ClassFileConstants.StringTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantStringFixedSize;
break;
case ClassFileConstants.FieldRefTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantFieldRefFixedSize;
break;
case ClassFileConstants.MethodRefTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantMethodRefFixedSize;
break;
case ClassFileConstants.InterfaceMethodRefTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantInterfaceMethodRefFixedSize;
break;
case ClassFileConstants.NameAndTypeTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantNameAndTypeFixedSize;
break;
case ClassFileConstants.MethodHandleTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantMethodHandleFixedSize;
break;
case ClassFileConstants.MethodTypeTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantMethodTypeFixedSize;
break;
case ClassFileConstants.InvokeDynamicTag :
this.constantPoolOffsets[i] = readOffset;
readOffset += ClassFileConstants.ConstantInvokeDynamicFixedSize;
break;
}
}
// Read and validate access flags
this.accessFlags = u2At(readOffset);
readOffset += 2;
// Read the classname, use exception handlers to catch bad format
this.classNameIndex = u2At(readOffset);
this.className = getConstantClassNameAt(this.classNameIndex);
readOffset += 2;
// Read the superclass name, can be null for java.lang.Object
int superclassNameIndex = u2At(readOffset);
readOffset += 2;
// if superclassNameIndex is equals to 0 there is no need to set a value for the
// field this.superclassName. null is fine.
if (superclassNameIndex != 0) {
this.superclassName = getConstantClassNameAt(superclassNameIndex);
}
// Read the interfaces, use exception handlers to catch bad format
this.interfacesCount = u2At(readOffset);
readOffset += 2;
if (this.interfacesCount != 0) {
this.interfaceNames = new char[this.interfacesCount][];
for (int i = 0; i < this.interfacesCount; i++) {
this.interfaceNames[i] = getConstantClassNameAt(u2At(readOffset));
readOffset += 2;
}
}
//cym 2015-02-14
// Read the return type name
int returnTypeNameIndex = u2At(readOffset);
readOffset += 2;
// if superclassNameIndex is equals to 0 there is no need to set a value for the
// field this.superclassName. null is fine.
if (returnTypeNameIndex != 0) {
this.returnTypeName = getConstantClassNameAt(returnTypeNameIndex);
}
// Read the parameters, use exception handlers to catch bad format
this.parametersCount = u2At(readOffset);
readOffset += 2;
if (this.parametersCount != 0) {
this.parameterNames = new char[this.parametersCount][];
for (int i = 0; i < this.parametersCount; i++) {
this.parameterNames[i] = getConstantClassNameAt(u2At(readOffset));
readOffset += 2;
}
}
// Read the parameters, use exception handlers to catch bad format
this.thrownExceptionsCount = u2At(readOffset);
readOffset += 2;
if (this.thrownExceptionsCount != 0) {
this.thrownExceptionNames = new char[this.thrownExceptionsCount][];
for (int i = 0; i < this.thrownExceptionsCount; i++) {
this.thrownExceptionNames[i] = getConstantClassNameAt(u2At(readOffset));
readOffset += 2;
}
}
//cym 2015-02-14 end
// Read the fields, use exception handlers to catch bad format
this.fieldsCount = u2At(readOffset);
readOffset += 2;
if (this.fieldsCount != 0) {
FieldInfo field;
this.fields = new FieldInfo[this.fieldsCount];
for (int i = 0; i < this.fieldsCount; i++) {
field = FieldInfo.createField(this.reference, this.constantPoolOffsets, readOffset);
this.fields[i] = field;
readOffset += field.sizeInBytes();
}
}
// Read the methods
this.methodsCount = u2At(readOffset);
readOffset += 2;
if (this.methodsCount != 0) {
this.methods = new MethodInfo[this.methodsCount];
boolean isAnnotationType = (this.accessFlags & ClassFileConstants.AccAnnotation) != 0;
for (int i = 0; i < this.methodsCount; i++) {
this.methods[i] = isAnnotationType
? AnnotationMethodInfo.createAnnotationMethod(this.reference, this.constantPoolOffsets, readOffset)
: MethodInfo.createMethod(this.reference, this.constantPoolOffsets, readOffset);
readOffset += this.methods[i].sizeInBytes();
}
}
// Read the attributes
int attributesCount = u2At(readOffset);
readOffset += 2;
for (int i = 0; i < attributesCount; i++) {
int utf8Offset = this.constantPoolOffsets[u2At(readOffset)];
char[] attributeName = utf8At(utf8Offset + 3, u2At(utf8Offset + 1));
if (attributeName.length == 0) {
readOffset += (6 + u4At(readOffset + 2));
continue;
}
switch(attributeName[0] ) {
case 'E' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.EnclosingMethodName)) {
utf8Offset =
this.constantPoolOffsets[u2At(this.constantPoolOffsets[u2At(readOffset + 6)] + 1)];
this.enclosingTypeName = utf8At(utf8Offset + 3, u2At(utf8Offset + 1));
this.enclosingNameAndTypeIndex = u2At(readOffset + 8);
}
break;
case 'D' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.DeprecatedName)) {
this.accessFlags |= ClassFileConstants.AccDeprecated;
}
break;
case 'I' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.InnerClassName)) {
int innerOffset = readOffset + 6;
int number_of_classes = u2At(innerOffset);
if (number_of_classes != 0) {
innerOffset+= 2;
this.innerInfos = new InnerClassInfo[number_of_classes];
for (int j = 0; j < number_of_classes; j++) {
this.innerInfos[j] =
new InnerClassInfo(this.reference, this.constantPoolOffsets, innerOffset);
if (this.classNameIndex == this.innerInfos[j].innerClassNameIndex) {
this.innerInfo = this.innerInfos[j];
this.innerInfoIndex = j;
}
innerOffset += 8;
}
if (this.innerInfo != null) {
char[] enclosingType = this.innerInfo.getEnclosingTypeName();
if (enclosingType != null) {
this.enclosingTypeName = enclosingType;
}
}
}
} else if (CharOperation.equals(attributeName, AttributeNamesConstants.InconsistentHierarchy)) {
this.tagBits |= TagBits.HierarchyHasProblems;
}
break;
case 'S' :
if (attributeName.length > 2) {
switch(attributeName[1]) {
case 'o' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.SourceName)) {
utf8Offset = this.constantPoolOffsets[u2At(readOffset + 6)];
this.sourceFileName = utf8At(utf8Offset + 3, u2At(utf8Offset + 1));
}
break;
case 'y' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.SyntheticName)) {
this.accessFlags |= ClassFileConstants.AccSynthetic;
}
break;
case 'i' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.SignatureName)) {
utf8Offset = this.constantPoolOffsets[u2At(readOffset + 6)];
this.signature = utf8At(utf8Offset + 3, u2At(utf8Offset + 1));
}
}
}
break;
case 'R' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.RuntimeVisibleAnnotationsName)) {
decodeAnnotations(readOffset, true);
} else if (CharOperation.equals(attributeName, AttributeNamesConstants.RuntimeInvisibleAnnotationsName)) {
decodeAnnotations(readOffset, false);
} else if (CharOperation.equals(attributeName, AttributeNamesConstants.RuntimeVisibleTypeAnnotationsName)) {
decodeTypeAnnotations(readOffset, true);
} else if (CharOperation.equals(attributeName, AttributeNamesConstants.RuntimeInvisibleTypeAnnotationsName)) {
decodeTypeAnnotations(readOffset, false);
}
break;
case 'M' :
if (CharOperation.equals(attributeName, AttributeNamesConstants.MissingTypesName)) {
// decode the missing types
int missingTypeOffset = readOffset + 6;
int numberOfMissingTypes = u2At(missingTypeOffset);
if (numberOfMissingTypes != 0) {
this.missingTypeNames = new char[numberOfMissingTypes][][];
missingTypeOffset += 2;
for (int j = 0; j < numberOfMissingTypes; j++) {
utf8Offset = this.constantPoolOffsets[u2At(this.constantPoolOffsets[u2At(missingTypeOffset)] + 1)];
char[] missingTypeConstantPoolName = utf8At(utf8Offset + 3, u2At(utf8Offset + 1));
this.missingTypeNames[j] = CharOperation.splitOn('/', missingTypeConstantPoolName);
missingTypeOffset += 2;
}
}
}
}
readOffset += (6 + u4At(readOffset + 2));
}
if (fullyInitialize) {
initialize();
}
} catch(ClassFormatException e) {
throw e;
} catch (Exception e) {
throw new ClassFormatException(
ClassFormatException.ErrTruncatedInput,
readOffset);
}
}
/**
* Answer the receiver's access flags. The value of the access_flags
* item is a mask of modifiers used with class and interface declarations.
* @return int
*/
public int accessFlags() {
return this.accessFlags;
}
private void decodeAnnotations(int offset, boolean runtimeVisible) {
int numberOfAnnotations = u2At(offset + 6);
if (numberOfAnnotations > 0) {
int readOffset = offset + 8;
AnnotationInfo[] newInfos = null;
int newInfoCount = 0;
for (int i = 0; i < numberOfAnnotations; i++) {
// With the last parameter being 'false', the data structure will not be flushed out
AnnotationInfo newInfo = new AnnotationInfo(this.reference, this.constantPoolOffsets, readOffset, runtimeVisible, false);
readOffset += newInfo.readOffset;
long standardTagBits = newInfo.standardAnnotationTagBits;
if (standardTagBits != 0) {
this.tagBits |= standardTagBits;
} else {
if (newInfos == null)
newInfos = new AnnotationInfo[numberOfAnnotations - i];
newInfos[newInfoCount++] = newInfo;
}
}
if (newInfos == null)
return; // nothing to record in this.annotations
if (this.annotations == null) {
if (newInfoCount != newInfos.length)
System.arraycopy(newInfos, 0, newInfos = new AnnotationInfo[newInfoCount], 0, newInfoCount);
this.annotations = newInfos;
} else {
int length = this.annotations.length;
AnnotationInfo[] temp = new AnnotationInfo[length + newInfoCount];
System.arraycopy(this.annotations, 0, temp, 0, length);
System.arraycopy(newInfos, 0, temp, length, newInfoCount);
this.annotations = temp;
}
}
}
private void decodeTypeAnnotations(int offset, boolean runtimeVisible) {
int numberOfAnnotations = u2At(offset + 6);
if (numberOfAnnotations > 0) {
int readOffset = offset + 8;
TypeAnnotationInfo[] newInfos = null;
newInfos = new TypeAnnotationInfo[numberOfAnnotations];
for (int i = 0; i < numberOfAnnotations; i++) {
// With the last parameter being 'false', the data structure will not be flushed out
TypeAnnotationInfo newInfo = new TypeAnnotationInfo(this.reference, this.constantPoolOffsets, readOffset, runtimeVisible, false);
readOffset += newInfo.readOffset;
newInfos[i] = newInfo;
}
if (this.typeAnnotations == null) {
this.typeAnnotations = newInfos;
} else {
int length = this.typeAnnotations.length;
TypeAnnotationInfo[] temp = new TypeAnnotationInfo[length + numberOfAnnotations];
System.arraycopy(this.typeAnnotations, 0, temp, 0, length);
System.arraycopy(newInfos, 0, temp, length, numberOfAnnotations);
this.typeAnnotations = temp;
}
}
}
/**
* @return the annotations or null if there is none.
*/
public IBinaryAnnotation[] getAnnotations() {
return this.annotations;
}
/**
* @return the type annotations or null if there is none.
*/
public IBinaryTypeAnnotation[] getTypeAnnotations() {
return this.typeAnnotations;
}
/**
* Answer the char array that corresponds to the class name of the constant class.
* constantPoolIndex is the index in the constant pool that is a constant class entry.
*
* @param constantPoolIndex int
* @return char[]
*/
private char[] getConstantClassNameAt(int constantPoolIndex) {
int utf8Offset = this.constantPoolOffsets[u2At(this.constantPoolOffsets[constantPoolIndex] + 1)];
return utf8At(utf8Offset + 3, u2At(utf8Offset + 1));
}
/**
* Answer the int array that corresponds to all the offsets of each entry in the constant pool
*
* @return int[]
*/
public int[] getConstantPoolOffsets() {
return this.constantPoolOffsets;
}
public char[] getEnclosingMethod() {
if (this.enclosingNameAndTypeIndex <= 0) {
return null;
}
if (this.enclosingMethod == null) {
// read the name
StringBuffer buffer = new StringBuffer();
int nameAndTypeOffset = this.constantPoolOffsets[this.enclosingNameAndTypeIndex];
int utf8Offset = this.constantPoolOffsets[u2At(nameAndTypeOffset + 1)];
buffer.append(utf8At(utf8Offset + 3, u2At(utf8Offset + 1)));
utf8Offset = this.constantPoolOffsets[u2At(nameAndTypeOffset + 3)];
buffer.append(utf8At(utf8Offset + 3, u2At(utf8Offset + 1)));
this.enclosingMethod = String.valueOf(buffer).toCharArray();
}
return this.enclosingMethod;
}
/*
* Answer the resolved compoundName of the enclosing type
* or null if the receiver is a top level type.
*/
public char[] getEnclosingTypeName() {
return this.enclosingTypeName;
}
/**
* Answer the receiver's this.fields or null if the array is empty.
* @return org.summer.sdt.internal.compiler.api.IBinaryField[]
*/
public IBinaryField[] getFields() {
return this.fields;
}
/**
* @see org.summer.sdt.internal.compiler.env.IDependent#getFileName()
*/
public char[] getFileName() {
return this.classFileName;
}
public char[] getGenericSignature() {
return this.signature;
}
/**
* Answer the source name if the receiver is a inner type. Return null if it is an anonymous class or if the receiver is a top-level class.
* e.g.
* public class A {
* public class B {
* }
* public void foo() {
* class C {}
* }
* public Runnable bar() {
* return new Runnable() {
* public void run() {}
* };
* }
* }
* It returns {'B'} for the member A$B
* It returns null for A
* It returns {'C'} for the local class A$1$C
* It returns null for the anonymous A$1
* @return char[]
*/
public char[] getInnerSourceName() {
if (this.innerInfo != null)
return this.innerInfo.getSourceName();
return null;
}
/**
* Answer the resolved names of the receiver's interfaces in the
* class file format as specified in section 4.2 of the Java 2 VM spec
* or null if the array is empty.
*
* For example, java.lang.String is java/lang/String.
* @return char[][]
*/
public char[][] getInterfaceNames() {
return this.interfaceNames;
}
/**
* Answer the receiver's nested types or null if the array is empty.
*
* This nested type info is extracted from the inner class attributes. Ask the
* name environment to find a member type using its compound name
*
* @return org.summer.sdt.internal.compiler.api.IBinaryNestedType[]
*/
public IBinaryNestedType[] getMemberTypes() {
// we might have some member types of the current type
if (this.innerInfos == null) return null;
int length = this.innerInfos.length;
int startingIndex = this.innerInfo != null ? this.innerInfoIndex + 1 : 0;
if (length != startingIndex) {
IBinaryNestedType[] memberTypes =
new IBinaryNestedType[length - this.innerInfoIndex];
int memberTypeIndex = 0;
for (int i = startingIndex; i < length; i++) {
InnerClassInfo currentInnerInfo = this.innerInfos[i];
int outerClassNameIdx = currentInnerInfo.outerClassNameIndex;
int innerNameIndex = currentInnerInfo.innerNameIndex;
/*
* Checking that outerClassNameIDx is different from 0 should be enough to determine if an inner class
* attribute entry is a member class, but due to the bug:
* http://dev.eclipse.org/bugs/show_bug.cgi?id=14592
* we needed to add an extra check. So we check that innerNameIndex is different from 0 as well.
*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=49879
* From JavaMail 1.2, the class javax.mail.Folder contains an anonymous class in the
* terminateQueue() method for which the inner attribute is boggus.
* outerClassNameIdx is not 0, innerNameIndex is not 0, but the sourceName length is 0.
* So I added this extra check to filter out this anonymous class from the
* member types.
*/
if (outerClassNameIdx != 0
&& innerNameIndex != 0
&& outerClassNameIdx == this.classNameIndex
&& currentInnerInfo.getSourceName().length != 0) {
memberTypes[memberTypeIndex++] = currentInnerInfo;
}
}
if (memberTypeIndex == 0) return null;
if (memberTypeIndex != memberTypes.length) {
// we need to resize the memberTypes array. Some local or anonymous classes
// are present in the current class.
System.arraycopy(
memberTypes,
0,
(memberTypes = new IBinaryNestedType[memberTypeIndex]),
0,
memberTypeIndex);
}
return memberTypes;
}
return null;
}
/**
* Answer the receiver's this.methods or null if the array is empty.
* @return org.summer.sdt.internal.compiler.api.env.IBinaryMethod[]
*/
public IBinaryMethod[] getMethods() {
return this.methods;
}
/*
public static void main(String[] args) throws ClassFormatException, IOException {
if (args == null || args.length != 1) {
System.err.println("ClassFileReader <filename>"); //$NON-NLS-1$
System.exit(1);
}
File file = new File(args[0]);
ClassFileReader reader = read(file, true);
if (reader.annotations != null) {
System.err.println();
for (int i = 0; i < reader.annotations.length; i++)
System.err.println(reader.annotations[i]);
}
System.err.print("class "); //$NON-NLS-1$
System.err.print(reader.getName());
char[] superclass = reader.getSuperclassName();
if (superclass != null) {
System.err.print(" extends "); //$NON-NLS-1$
System.err.print(superclass);
}
System.err.println();
char[][] interfaces = reader.getInterfaceNames();
if (interfaces != null && interfaces.length > 0) {
System.err.print(" implements "); //$NON-NLS-1$
for (int i = 0; i < interfaces.length; i++) {
if (i != 0) System.err.print(", "); //$NON-NLS-1$
System.err.println(interfaces[i]);
}
}
System.err.println();
System.err.println('{');
if (reader.fields != null) {
for (int i = 0; i < reader.fields.length; i++) {
System.err.println(reader.fields[i]);
System.err.println();
}
}
if (reader.methods != null) {
for (int i = 0; i < reader.methods.length; i++) {
System.err.println(reader.methods[i]);
System.err.println();
}
}
System.err.println();
System.err.println('}');
}
*/
public char[][][] getMissingTypeNames() {
return this.missingTypeNames;
}
/**
* Answer an int whose bits are set according the access constants
* defined by the VM spec.
* Set the AccDeprecated and AccSynthetic bits if necessary
* @return int
*/
public int getModifiers() {
int modifiers;
if (this.innerInfo != null) {
modifiers = this.innerInfo.getModifiers()
| (this.accessFlags & ClassFileConstants.AccDeprecated)
| (this.accessFlags & ClassFileConstants.AccSynthetic);
} else {
modifiers = this.accessFlags;
}
return modifiers;
}
/**
* Answer the resolved name of the type in the
* class file format as specified in section 4.2 of the Java 2 VM spec.
*
* For example, java.lang.String is java/lang/String.
* @return char[]
*/
public char[] getName() {
return this.className;
}
public char[] getSourceName() {
if (this.sourceName != null)
return this.sourceName;
char[] name = getInnerSourceName(); // member or local scenario
if (name == null) {
name = getName(); // extract from full name
int start;
if (isAnonymous()) {
start = CharOperation.indexOf('$', name, CharOperation.lastIndexOf('/', name) + 1) + 1;
} else {
start = CharOperation.lastIndexOf('/', name) + 1;
}
if (start > 0) {
char[] newName = new char[name.length - start];
System.arraycopy(name, start, newName, 0, newName.length);
name = newName;
}
}
return this.sourceName = name;
}
/**
* Answer the resolved name of the receiver's superclass in the
* class file format as specified in section 4.2 of the Java 2 VM spec
* or null if it does not have one.
*
* For example, java.lang.String is java/lang/String.
* @return char[]
*/
public char[] getSuperclassName() {
return this.superclassName;
}
public long getTagBits() {
return this.tagBits;
}
/**
* Answer the major/minor version defined in this class file according to the VM spec.
* as a long: (major<<16)+minor
* @return the major/minor version found
*/
public long getVersion() {
return this.version;
}
private boolean hasNonSyntheticFieldChanges(FieldInfo[] currentFieldInfos, FieldInfo[] otherFieldInfos) {
int length1 = currentFieldInfos == null ? 0 : currentFieldInfos.length;
int length2 = otherFieldInfos == null ? 0 : otherFieldInfos.length;
int index1 = 0;
int index2 = 0;
end : while (index1 < length1 && index2 < length2) {
while (currentFieldInfos[index1].isSynthetic()) {
if (++index1 >= length1) break end;
}
while (otherFieldInfos[index2].isSynthetic()) {
if (++index2 >= length2) break end;
}
if (hasStructuralFieldChanges(currentFieldInfos[index1++], otherFieldInfos[index2++]))
return true;
}
while (index1 < length1) {
if (!currentFieldInfos[index1++].isSynthetic()) return true;
}
while (index2 < length2) {
if (!otherFieldInfos[index2++].isSynthetic()) return true;
}
return false;
}
private boolean hasNonSyntheticMethodChanges(MethodInfo[] currentMethodInfos, MethodInfo[] otherMethodInfos) {
int length1 = currentMethodInfos == null ? 0 : currentMethodInfos.length;
int length2 = otherMethodInfos == null ? 0 : otherMethodInfos.length;
int index1 = 0;
int index2 = 0;
MethodInfo m;
end : while (index1 < length1 && index2 < length2) {
while ((m = currentMethodInfos[index1]).isSynthetic() || m.isClinit()) {
if (++index1 >= length1) break end;
}
while ((m = otherMethodInfos[index2]).isSynthetic() || m.isClinit()) {
if (++index2 >= length2) break end;
}
if (hasStructuralMethodChanges(currentMethodInfos[index1++], otherMethodInfos[index2++]))
return true;
}
while (index1 < length1) {
if (!((m = currentMethodInfos[index1++]).isSynthetic() || m.isClinit())) return true;
}
while (index2 < length2) {
if (!((m = otherMethodInfos[index2++]).isSynthetic() || m.isClinit())) return true;
}
return false;
}
/**
* Check if the receiver has structural changes compare to the byte array in argument.
* Structural changes are:
* - modifiers changes for the class, the this.fields or the this.methods
* - signature changes for this.fields or this.methods.
* - changes in the number of this.fields or this.methods
* - changes for field constants
* - changes for thrown exceptions
* - change for the super class or any super interfaces.
* - changes for member types name or modifiers
* If any of these changes occurs, the method returns true. false otherwise.
* The synthetic fields are included and the members are not required to be sorted.
* @param newBytes the bytes of the .class file we want to compare the receiver to
* @return boolean Returns true is there is a structural change between the two .class files, false otherwise
*/
public boolean hasStructuralChanges(byte[] newBytes) {
return hasStructuralChanges(newBytes, true, true);
}
/**
* Check if the receiver has structural changes compare to the byte array in argument.
* Structural changes are:
* - modifiers changes for the class, the this.fields or the this.methods
* - signature changes for this.fields or this.methods.
* - changes in the number of this.fields or this.methods
* - changes for field constants
* - changes for thrown exceptions
* - change for the super class or any super interfaces.
* - changes for member types name or modifiers
* If any of these changes occurs, the method returns true. false otherwise.
* @param newBytes the bytes of the .class file we want to compare the receiver to
* @param orderRequired a boolean indicating whether the members should be sorted or not
* @param excludesSynthetic a boolean indicating whether the synthetic members should be used in the comparison
* @return boolean Returns true is there is a structural change between the two .class files, false otherwise
*/
public boolean hasStructuralChanges(byte[] newBytes, boolean orderRequired, boolean excludesSynthetic) {
try {
ClassFileReader newClassFile =
new ClassFileReader(newBytes, this.classFileName);
// type level comparison
// modifiers
if (getModifiers() != newClassFile.getModifiers())
return true;
// only consider a portion of the tagbits which indicate a structural change for dependents
// e.g. @Override change has no influence outside
long OnlyStructuralTagBits = TagBits.AnnotationTargetMASK // different @Target status ?
| TagBits.AnnotationDeprecated // different @Deprecated status ?
| TagBits.AnnotationRetentionMASK // different @Retention status ?
| TagBits.HierarchyHasProblems; // different hierarchy status ?
// meta-annotations
if ((getTagBits() & OnlyStructuralTagBits) != (newClassFile.getTagBits() & OnlyStructuralTagBits))
return true;
// annotations
if (hasStructuralAnnotationChanges(getAnnotations(), newClassFile.getAnnotations()))
return true;
// generic signature
if (!CharOperation.equals(getGenericSignature(), newClassFile.getGenericSignature()))
return true;
// superclass
if (!CharOperation.equals(getSuperclassName(), newClassFile.getSuperclassName()))
return true;
// interfaces
char[][] newInterfacesNames = newClassFile.getInterfaceNames();
if (this.interfaceNames != newInterfacesNames) { // TypeConstants.NoSuperInterfaces
int newInterfacesLength = newInterfacesNames == null ? 0 : newInterfacesNames.length;
if (newInterfacesLength != this.interfacesCount)
return true;
for (int i = 0, max = this.interfacesCount; i < max; i++)
if (!CharOperation.equals(this.interfaceNames[i], newInterfacesNames[i]))
return true;
}
// member types
IBinaryNestedType[] currentMemberTypes = getMemberTypes();
IBinaryNestedType[] otherMemberTypes = newClassFile.getMemberTypes();
if (currentMemberTypes != otherMemberTypes) { // TypeConstants.NoMemberTypes
int currentMemberTypeLength = currentMemberTypes == null ? 0 : currentMemberTypes.length;
int otherMemberTypeLength = otherMemberTypes == null ? 0 : otherMemberTypes.length;
if (currentMemberTypeLength != otherMemberTypeLength)
return true;
for (int i = 0; i < currentMemberTypeLength; i++)
if (!CharOperation.equals(currentMemberTypes[i].getName(), otherMemberTypes[i].getName())
|| currentMemberTypes[i].getModifiers() != otherMemberTypes[i].getModifiers())
return true;
}
// fields
FieldInfo[] otherFieldInfos = (FieldInfo[]) newClassFile.getFields();
int otherFieldInfosLength = otherFieldInfos == null ? 0 : otherFieldInfos.length;
boolean compareFields = true;
if (this.fieldsCount == otherFieldInfosLength) {
int i = 0;
for (; i < this.fieldsCount; i++)
if (hasStructuralFieldChanges(this.fields[i], otherFieldInfos[i])) break;
if ((compareFields = i != this.fieldsCount) && !orderRequired && !excludesSynthetic)
return true;
}
if (compareFields) {
if (this.fieldsCount != otherFieldInfosLength && !excludesSynthetic)
return true;
if (orderRequired) {
if (this.fieldsCount != 0)
Arrays.sort(this.fields);
if (otherFieldInfosLength != 0)
Arrays.sort(otherFieldInfos);
}
if (excludesSynthetic) {
if (hasNonSyntheticFieldChanges(this.fields, otherFieldInfos))
return true;
} else {
for (int i = 0; i < this.fieldsCount; i++)
if (hasStructuralFieldChanges(this.fields[i], otherFieldInfos[i]))
return true;
}
}
// methods
MethodInfo[] otherMethodInfos = (MethodInfo[]) newClassFile.getMethods();
int otherMethodInfosLength = otherMethodInfos == null ? 0 : otherMethodInfos.length;
boolean compareMethods = true;
if (this.methodsCount == otherMethodInfosLength) {
int i = 0;
for (; i < this.methodsCount; i++)
if (hasStructuralMethodChanges(this.methods[i], otherMethodInfos[i])) break;
if ((compareMethods = i != this.methodsCount) && !orderRequired && !excludesSynthetic)
return true;
}
if (compareMethods) {
if (this.methodsCount != otherMethodInfosLength && !excludesSynthetic)
return true;
if (orderRequired) {
if (this.methodsCount != 0)
Arrays.sort(this.methods);
if (otherMethodInfosLength != 0)
Arrays.sort(otherMethodInfos);
}
if (excludesSynthetic) {
if (hasNonSyntheticMethodChanges(this.methods, otherMethodInfos))
return true;
} else {
for (int i = 0; i < this.methodsCount; i++)
if (hasStructuralMethodChanges(this.methods[i], otherMethodInfos[i]))
return true;
}
}
// missing types
char[][][] missingTypes = getMissingTypeNames();
char[][][] newMissingTypes = newClassFile.getMissingTypeNames();
if (missingTypes != null) {
if (newMissingTypes == null) {
return true;
}
int length = missingTypes.length;
if (length != newMissingTypes.length) {
return true;
}
for (int i = 0; i < length; i++) {
if (!CharOperation.equals(missingTypes[i], newMissingTypes[i])) {
return true;
}
}
} else if (newMissingTypes != null) {
return true;
}
return false;
} catch (ClassFormatException e) {
return true;
}
}
private boolean hasStructuralAnnotationChanges(IBinaryAnnotation[] currentAnnotations, IBinaryAnnotation[] otherAnnotations) {
if (currentAnnotations == otherAnnotations)
return false;
int currentAnnotationsLength = currentAnnotations == null ? 0 : currentAnnotations.length;
int otherAnnotationsLength = otherAnnotations == null ? 0 : otherAnnotations.length;
if (currentAnnotationsLength != otherAnnotationsLength)
return true;
for (int i = 0; i < currentAnnotationsLength; i++) {
if (!CharOperation.equals(currentAnnotations[i].getTypeName(), otherAnnotations[i].getTypeName()))
return true;
IBinaryElementValuePair[] currentPairs = currentAnnotations[i].getElementValuePairs();
IBinaryElementValuePair[] otherPairs = otherAnnotations[i].getElementValuePairs();
int currentPairsLength = currentPairs == null ? 0 : currentPairs.length;
int otherPairsLength = otherPairs == null ? 0 : otherPairs.length;
if (currentPairsLength != otherPairsLength)
return true;
for (int j = 0; j < currentPairsLength; j++) {
if (!CharOperation.equals(currentPairs[j].getName(), otherPairs[j].getName()))
return true;
final Object value = currentPairs[j].getValue();
final Object value2 = otherPairs[j].getValue();
if (value instanceof Object[]) {
Object[] currentValues = (Object[]) value;
if (value2 instanceof Object[]) {
Object[] currentValues2 = (Object[]) value2;
final int length = currentValues.length;
if (length != currentValues2.length) {
return true;
}
for (int n = 0; n < length; n++) {
if (!currentValues[n].equals(currentValues2[n])) {
return true;
}
}
return false;
}
return true;
} else if (!value.equals(value2)) {
return true;
}
}
}
return false;
}
private boolean hasStructuralFieldChanges(FieldInfo currentFieldInfo, FieldInfo otherFieldInfo) {
// generic signature
if (!CharOperation.equals(currentFieldInfo.getGenericSignature(), otherFieldInfo.getGenericSignature()))
return true;
if (currentFieldInfo.getModifiers() != otherFieldInfo.getModifiers())
return true;
if ((currentFieldInfo.getTagBits() & TagBits.AnnotationDeprecated) != (otherFieldInfo.getTagBits() & TagBits.AnnotationDeprecated))
return true;
if (hasStructuralAnnotationChanges(currentFieldInfo.getAnnotations(), otherFieldInfo.getAnnotations()))
return true;
if (!CharOperation.equals(currentFieldInfo.getName(), otherFieldInfo.getName()))
return true;
if (!CharOperation.equals(currentFieldInfo.getTypeName(), otherFieldInfo.getTypeName()))
return true;
if (currentFieldInfo.hasConstant() != otherFieldInfo.hasConstant())
return true;
if (currentFieldInfo.hasConstant()) {
Constant currentConstant = currentFieldInfo.getConstant();
Constant otherConstant = otherFieldInfo.getConstant();
if (currentConstant.typeID() != otherConstant.typeID())
return true;
if (!currentConstant.getClass().equals(otherConstant.getClass()))
return true;
switch (currentConstant.typeID()) {
case TypeIds.T_int :
return currentConstant.intValue() != otherConstant.intValue();
case TypeIds.T_byte :
return currentConstant.byteValue() != otherConstant.byteValue();
case TypeIds.T_short :
return currentConstant.shortValue() != otherConstant.shortValue();
case TypeIds.T_char :
return currentConstant.charValue() != otherConstant.charValue();
case TypeIds.T_long :
return currentConstant.longValue() != otherConstant.longValue();
case TypeIds.T_float :
return currentConstant.floatValue() != otherConstant.floatValue();
case TypeIds.T_double :
return currentConstant.doubleValue() != otherConstant.doubleValue();
case TypeIds.T_boolean :
return currentConstant.booleanValue() != otherConstant.booleanValue();
case TypeIds.T_JavaLangString :
return !currentConstant.stringValue().equals(otherConstant.stringValue());
}
}
return false;
}
private boolean hasStructuralMethodChanges(MethodInfo currentMethodInfo, MethodInfo otherMethodInfo) {
// generic signature
if (!CharOperation.equals(currentMethodInfo.getGenericSignature(), otherMethodInfo.getGenericSignature()))
return true;
if (currentMethodInfo.getModifiers() != otherMethodInfo.getModifiers())
return true;
if ((currentMethodInfo.getTagBits() & TagBits.AnnotationDeprecated) != (otherMethodInfo.getTagBits() & TagBits.AnnotationDeprecated))
return true;
if (hasStructuralAnnotationChanges(currentMethodInfo.getAnnotations(), otherMethodInfo.getAnnotations()))
return true;
// parameter annotations:
int currentAnnotatedParamsCount = currentMethodInfo.getAnnotatedParametersCount();
int otherAnnotatedParamsCount = otherMethodInfo.getAnnotatedParametersCount();
if (currentAnnotatedParamsCount != otherAnnotatedParamsCount)
return true;
for (int i=0; i<currentAnnotatedParamsCount; i++) {
if (hasStructuralAnnotationChanges(currentMethodInfo.getParameterAnnotations(i), otherMethodInfo.getParameterAnnotations(i)))
return true;
}
if (!CharOperation.equals(currentMethodInfo.getSelector(), otherMethodInfo.getSelector()))
return true;
if (!CharOperation.equals(currentMethodInfo.getMethodDescriptor(), otherMethodInfo.getMethodDescriptor()))
return true;
if (!CharOperation.equals(currentMethodInfo.getGenericSignature(), otherMethodInfo.getGenericSignature()))
return true;
char[][] currentThrownExceptions = currentMethodInfo.getExceptionTypeNames();
char[][] otherThrownExceptions = otherMethodInfo.getExceptionTypeNames();
if (currentThrownExceptions != otherThrownExceptions) { // TypeConstants.NoExceptions
int currentThrownExceptionsLength = currentThrownExceptions == null ? 0 : currentThrownExceptions.length;
int otherThrownExceptionsLength = otherThrownExceptions == null ? 0 : otherThrownExceptions.length;
if (currentThrownExceptionsLength != otherThrownExceptionsLength)
return true;
for (int k = 0; k < currentThrownExceptionsLength; k++)
if (!CharOperation.equals(currentThrownExceptions[k], otherThrownExceptions[k]))
return true;
}
return false;
}
/**
* This method is used to fully initialize the contents of the receiver. All methodinfos, fields infos
* will be therefore fully initialized and we can get rid of the bytes.
*/
private void initialize() throws ClassFormatException {
try {
for (int i = 0, max = this.fieldsCount; i < max; i++) {
this.fields[i].initialize();
}
for (int i = 0, max = this.methodsCount; i < max; i++) {
this.methods[i].initialize();
}
if (this.innerInfos != null) {
for (int i = 0, max = this.innerInfos.length; i < max; i++) {
this.innerInfos[i].initialize();
}
}
if (this.annotations != null) {
for (int i = 0, max = this.annotations.length; i < max; i++) {
this.annotations[i].initialize();
}
}
this.getEnclosingMethod();
reset();
} catch(RuntimeException e) {
ClassFormatException exception = new ClassFormatException(e, this.classFileName);
throw exception;
}
}
/**
* Answer true if the receiver is an anonymous type, false otherwise
*
* @return <CODE>boolean</CODE>
*/
public boolean isAnonymous() {
if (this.innerInfo == null) return false;
char[] innerSourceName = this.innerInfo.getSourceName();
return (innerSourceName == null || innerSourceName.length == 0);
}
/**
* Answer whether the receiver contains the resolved binary form
* or the unresolved source form of the type.
* @return boolean
*/
public boolean isBinaryType() {
return true;
}
/**
* Answer true if the receiver is a local type, false otherwise
*
* @return <CODE>boolean</CODE>
*/
public boolean isLocal() {
if (this.innerInfo == null) return false;
if (this.innerInfo.getEnclosingTypeName() != null) return false;
char[] innerSourceName = this.innerInfo.getSourceName();
return (innerSourceName != null && innerSourceName.length > 0);
}
/**
* Answer true if the receiver is a member type, false otherwise
*
* @return <CODE>boolean</CODE>
*/
public boolean isMember() {
if (this.innerInfo == null) return false;
if (this.innerInfo.getEnclosingTypeName() == null) return false;
char[] innerSourceName = this.innerInfo.getSourceName();
return (innerSourceName != null && innerSourceName.length > 0); // protection against ill-formed attributes (67600)
}
/**
* Answer true if the receiver is a nested type, false otherwise
*
* @return <CODE>boolean</CODE>
*/
public boolean isNestedType() {
return this.innerInfo != null;
}
/**
* Answer the source file name attribute. Return null if there is no source file attribute for the receiver.
*
* @return char[]
*/
public char[] sourceFileName() {
return this.sourceFileName;
}
/**
* 2015-02-14 for function type
*/
@Override
public char[] getReturnTypeName() {
return this.returnTypeName;
}
/**
* 2015-02-14 for function type
*/
@Override
public char[][] getParameterNames() {
return this.parameterNames;
}
/**
* 2015-02-14 for function type
*/
@Override
public char[][] getThrownExceptionNames() {
return this.thrownExceptionNames;
}
public String toString() {
java.io.ByteArrayOutputStream out = new java.io.ByteArrayOutputStream();
java.io.PrintWriter print = new java.io.PrintWriter(out);
print.println(getClass().getName() + "{"); //$NON-NLS-1$
print.println(" this.className: " + new String(getName())); //$NON-NLS-1$
print.println(" this.superclassName: " + (getSuperclassName() == null ? "null" : new String(getSuperclassName()))); //$NON-NLS-2$ //$NON-NLS-1$
print.println(" access_flags: " + printTypeModifiers(accessFlags()) + "(" + accessFlags() + ")"); //$NON-NLS-1$ //$NON-NLS-3$ //$NON-NLS-2$
print.flush();
return out.toString();
}
}
| [
"[email protected]"
]
| |
e5661dabbba029c1b9ab9730f3f3bf96a44c0355 | e419148b0680614a0ac8ff1f3d42a4f2e2292a11 | /src/main/java/com/example/demo/services/ResultService.java | ab60f1cb5e798469c8997ccd056b2a90e846ff0c | []
| no_license | aashirastogi-25/Online-Course-Feedback-System | e75d91e2d0627ca806ca3a12f010dc67d372a7cc | 7fb533068e1262edd17d28e11a99f6c73b163723 | refs/heads/master | 2023-01-03T15:22:32.458585 | 2020-10-29T13:29:25 | 2020-10-29T13:29:25 | 266,518,603 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,766 | java | package com.example.demo.services;
import com.example.demo.Repository.ResultRepository;
import com.example.demo.model.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.transaction.Transactional;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
@Service
public class ResultService {
@Autowired
ResultRepository resultRepository;
public void save(Result result) throws IOException {
resultRepository.save(result);
}
public Result findById(long result_id){
Result result = resultRepository.findById(result_id).orElse(null);
return result;
}
public void deleteById(long result_id){
resultRepository.deleteById(result_id);
}
public List<Result> findByUser_Id(long user_id){
List<Result> resultList=resultRepository.findByUser_UserId(user_id);
return resultList;
}
public List<Output> groupBy(String dname){
return resultRepository.groupBy(dname);
}
public List<Result> findBycname(String cname){
return resultRepository.findByCname(cname);
}
public List<CourseOutput> findPointsbycname(String cname){
return resultRepository.findPointsbycname(cname);
}
public List<DeptReport> bestcourseindept(String dname){
return resultRepository.bestcourseindept(dname);
}
public List<Output2> bestscoreindept(){
return resultRepository.bestscoreindept();
}
public List<Output3> lowestscoreindept(){
return resultRepository.Lowestscoreindept();
}
public List<Output4> bestscoreinuniv(){
return resultRepository.bestscoreinuniv();
}
}
| [
"[email protected]"
]
| |
fb21763824c8d47fcf71d2406307f6ddb08b20aa | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /large-multiproject/project17/src/main/java/org/gradle/test/performance17_2/Production17_188.java | 68e0f04a83c6b9c82dd91d6067943e0162ef02bf | []
| no_license | gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164276 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | null | UTF-8 | Java | false | false | 305 | java | package org.gradle.test.performance17_2;
public class Production17_188 extends org.gradle.test.performance10_2.Production10_188 {
private final String property;
public Production17_188() {
this.property = "foo";
}
public String getProperty() {
return property;
}
}
| [
"[email protected]"
]
| |
7f39d55773e811445801a8e64480683ee65eee57 | c8a9431279493e0c647dc02ca466423d03cf65bc | /src/test/java/pt/isel/ls/handlers/label/GetLabelHandlerTest.java | 2867cc6e4ed6351a3ebd3f7632ed3ab3de57cc04 | []
| no_license | xploitedd/LS-1920 | 8731c8ffe10af390460b374296a54e8a99055c05 | 0576a9acc95751f5fcae827b8e366dc78926f05f | refs/heads/master | 2022-11-21T14:30:24.256986 | 2020-06-20T17:00:21 | 2020-06-20T17:00:21 | 283,625,715 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,622 | java | package pt.isel.ls.handlers.label;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import pt.isel.ls.DatasourceUtils;
import pt.isel.ls.exceptions.router.RouteException;
import pt.isel.ls.router.Router;
import pt.isel.ls.router.request.RouteRequest;
import pt.isel.ls.router.response.HandlerResponse;
import pt.isel.ls.sql.ConnectionProvider;
import pt.isel.ls.sql.queries.LabelQueries;
import pt.isel.ls.view.label.LabelView;
public class GetLabelHandlerTest {
private static Router router;
@Before
public void beforeEach() throws RouteException {
ConnectionProvider provider = new ConnectionProvider(DatasourceUtils.getDataSource());
DatasourceUtils.executeFile("CreateTables.sql");
provider.execute(conn -> {
LabelQueries labelQueries = new LabelQueries(conn);
labelQueries.createNewLabel("Teste1");
return null;
});
GetLabelHandler glh = new GetLabelHandler(provider);
router = new Router();
router.registerRoute(glh);
}
@Test
public void getExistingLabel() throws RouteException {
RouteRequest request = RouteRequest.of(
"GET /labels/1");
HandlerResponse response = router.getHandler(request).execute(request);
Assert.assertTrue(response.getView() instanceof LabelView);
}
@Test(expected = RouteException.class)
public void getNonExistingLabel() throws RouteException {
RouteRequest request = RouteRequest.of(
"GET /labels/2");
router.getHandler(request).execute(request);
}
}
| [
"[email protected]"
]
| |
a021a89083cfe7f7ce2a2283741e578b8180c855 | 728c60e4a403051e773759c5a638a1568f333836 | /choco-solver/src/main/java/org/chocosolver/solver/constraints/nary/cnf/PropNogoods.java | 8f67c8a23c43fa2bb5df28b0e923cf88136ce82d | [
"BSD-4-Clause"
]
| permissive | JamesB0yd/choco3 | afebcd67949037715b71ae5fff6c4e8db208ff09 | 7dd4f6546e57a1dc082ce4c06dcdb6bf235f979f | refs/heads/master | 2021-01-19T07:34:54.386490 | 2015-11-20T14:44:07 | 2015-11-20T14:44:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 19,250 | java | /**
* Copyright (c) 2015, Ecole des Mines de Nantes
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the <organization>.
* 4. Neither the name of the <organization> 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 <COPYRIGHT HOLDER> ''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 <COPYRIGHT HOLDER> 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.
*/
package org.chocosolver.solver.constraints.nary.cnf;
import gnu.trove.list.TIntList;
import gnu.trove.list.array.TIntArrayList;
import gnu.trove.map.hash.TIntIntHashMap;
import gnu.trove.map.hash.TIntObjectHashMap;
import gnu.trove.stack.TIntStack;
import gnu.trove.stack.array.TIntArrayStack;
import org.chocosolver.memory.IStateInt;
import org.chocosolver.solver.Solver;
import org.chocosolver.solver.constraints.Propagator;
import org.chocosolver.solver.constraints.PropagatorPriority;
import org.chocosolver.solver.exception.ContradictionException;
import org.chocosolver.solver.explanations.RuleStore;
import org.chocosolver.solver.variables.BoolVar;
import org.chocosolver.solver.variables.IntVar;
import org.chocosolver.solver.variables.events.IEventType;
import org.chocosolver.util.ESat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.BitSet;
import static org.chocosolver.solver.constraints.nary.cnf.SatSolver.*;
/**
* Created by cprudhom on 20/01/15.
* Project: choco.
*/
public class PropNogoods extends Propagator<IntVar> {
private static final int NO_ENTRY = Integer.MAX_VALUE;
SatSolver sat_;
TIntIntHashMap[] vv2lit; // maintain uniqueness of pair VAR-VAL
int[] var2pos, lit2pos, lit2val;
IStateInt sat_trail_;
TIntList early_deductions_;
BitSet test_eq;
TIntStack fp; // lit instantiated -> fix point
// For #why() method only, lazily initialized
TIntObjectHashMap<ArrayList<SatSolver.Clause>> inClauses;
public PropNogoods(Solver solver) {
super(new BoolVar[]{solver.ONE()}, PropagatorPriority.VERY_SLOW, true);
this.vars = new IntVar[0];// erase solver.ONE from the variable scope
int k = 16;
this.vv2lit = new TIntIntHashMap[k];//new TIntObjectHashMap<>(16, .5f, NO_ENTRY);
this.lit2val = new int[k];//new TIntIntHashMap(16, .5f, NO_ENTRY, NO_ENTRY);
Arrays.fill(lit2val, NO_ENTRY);
this.lit2pos = new int[k];//new TIntIntHashMap(16, .5f, NO_ENTRY, NO_ENTRY);
Arrays.fill(lit2pos, NO_ENTRY);
this.var2pos = new int[k];//new TIntIntHashMap(16, .5f, NO_ENTRY, NO_ENTRY);
Arrays.fill(var2pos, NO_ENTRY);
//TODO: one satsolver per solver...
sat_ = new SatSolver();
early_deductions_ = new TIntArrayList();
sat_trail_ = solver.getEnvironment().makeInt();
test_eq = new BitSet();
fp = new TIntArrayStack();
}
@Override
public void propagate(int evtmask) throws ContradictionException {
if (!sat_.ok_) fails();
fp.clear();
sat_.cancelUntil(0); // to deal with learnt clauses, only called on coarse grain propagation
storeEarlyDeductions();
applyEarlyDeductions();
TIntIntHashMap map;
for (int i = 0; i < vars.length; ++i) {
IntVar var = vars[i];
for (int k : (map = vv2lit[var.getId()]).keys()) {
if (var.contains(k)) {
if (var.isInstantiated()) {
VariableBound(map.get(k), true);
}
} else {
VariableBound(map.get(k), false);
}
}
}
while (fp.size() > 0) {
VariableBound(fp.pop(), true);
}
}
@Override
public void propagate(int idxVarInProp, int mask) throws ContradictionException {
fp.clear();
IntVar var = vars[idxVarInProp];
TIntIntHashMap map;
for (int k : (map = vv2lit[var.getId()]).keys()) {
if (var.contains(k)) {
if (var.isInstantiated()) {
VariableBound(map.get(k), true);
}
} else {
VariableBound(map.get(k), false);
}
}
while (fp.size() > 0) {
VariableBound(fp.pop(), true);
}
}
@Override
public ESat isEntailed() {
if (vars.length == 0) return ESat.TRUE;
if (isCompletelyInstantiated()) {
int lit, var, val;
boolean sign;
for (int k : sat_.implies_.keys()) {
sign = sign(negated(k));
var = var(k);
IntVar ivar = vars[lit2pos[var]];
val = lit2val[var];
if (sign != ivar.contains(val)) {
TIntList lits = sat_.implies_.get(k);
for (int l : lits.toArray()) {
sign = sign(l);
var = var(l);
ivar = vars[lit2pos[var]];
val = lit2val[var];
if (sign != ivar.contains(val)) return ESat.FALSE;
}
}
}
for (SatSolver.Clause c : sat_.clauses) {
int cnt = 0;
for (int i = 0; i < c.size(); i++) {
lit = c._g(i);
sign = sign(lit);
var = var(lit);
IntVar ivar = vars[lit2pos[var]];
val = lit2val[var];
if (sign != ivar.contains(val)) {
cnt++;
} else break;
}
if (cnt == c.size()) return ESat.FALSE;
}
for (SatSolver.Clause c : sat_.learnts) {
int cnt = 0;
for (int i = 0; i < c.size(); i++) {
lit = c._g(i);
sign = sign(lit);
var = var(lit);
IntVar ivar = vars[lit2pos[var]];
val = lit2val[var];
if (sign != ivar.contains(val)) {
cnt++;
} else break;
}
if (cnt == c.size()) return ESat.FALSE;
}
return ESat.TRUE;
}
return ESat.UNDEFINED;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
public int Literal(IntVar ivar, int value) {
// TODO: deal with BoolVar
int vid = ivar.getId();
int var;
TIntIntHashMap map;
if (vid >= vv2lit.length) {
TIntIntHashMap[] tmp = vv2lit;
vv2lit = new TIntIntHashMap[vid + 1];
System.arraycopy(tmp, 0, vv2lit, 0, tmp.length);
int[] tmpi = var2pos;
var2pos = new int[vid + 1];
System.arraycopy(tmpi, 0, var2pos, 0, tmpi.length);
Arrays.fill(var2pos, tmpi.length, vid + 1, NO_ENTRY);
}
if ((map = vv2lit[vid]) == null) {
map = new TIntIntHashMap(16, .5f, NO_ENTRY, NO_ENTRY);
vv2lit[vid] = map;
}
int pos;
if ((pos = var2pos[vid]) == NO_ENTRY) {
addVariable(ivar);
pos = vars.length - 1;
var2pos[vid] = pos;
}
if ((var = map.get(value)) == NO_ENTRY) {
var = sat_.newVariable();
map.put(value, var);
if (var >= lit2pos.length) {
int[] tmp = lit2pos;
lit2pos = new int[var + 1];
System.arraycopy(tmp, 0, lit2pos, 0, tmp.length);
Arrays.fill(lit2pos, tmp.length, var + 1, NO_ENTRY);
tmp = lit2val;
lit2val = new int[var + 1];
System.arraycopy(tmp, 0, lit2val, 0, tmp.length);
Arrays.fill(lit2val, tmp.length, var + 1, NO_ENTRY);
}
lit2pos[var] = pos;
lit2val[var] = value;
}
return SatSolver.makeLiteral(var, true);
}
/**
* var points a clause variable whom value is now to be val.
*
* @param var a clause var
* @param new_value its value
* @throws ContradictionException
*/
void VariableBound(int var, boolean new_value) throws ContradictionException {
try {
if (sat_trail_.get() < sat_.trailMarker()) {
sat_.cancelUntil(sat_trail_.get());
assert (sat_trail_.get() == sat_.trailMarker());
}
int lit = makeLiteral(var, new_value);
boolean fail = !sat_.propagateOneLiteral(lit);
// Remark: explanations require to instantiated variables even if fail is set to true
sat_trail_.set(sat_.trailMarker());
for (int i = 0; i < sat_.touched_variables_.size(); ++i) {
lit = sat_.touched_variables_.get(i);
var = var(lit);
if (sign(lit)) {
vars[lit2pos[var]].instantiateTo(lit2val[var], this);
} else {
vars[lit2pos[var]].removeValue(lit2val[var], this);
if (vars[lit2pos[var]].isInstantiated()) {
IntVar tvar = vars[lit2pos[var]];
int value = tvar.getValue();
int alit = vv2lit[tvar.getId()].get(value);
if (alit != NO_ENTRY) {
fp.push(alit);
}
}
}
}
if (fail) {
// force failure by removing the last value
IntVar iv = vars[lit2pos[var]];
if (sign(lit)) {
iv.removeValue(lit2val[var], this);
} else {
iv.instantiateTo(lit2val[var], this);
}
}
} finally {
sat_.touched_variables_.resetQuick(); // issue#327
}
}
// Add a unit clause to the solver.
public boolean addNogood(int p) {
boolean result = sat_.addClause(p);
storeEarlyDeductions();
return result;
}
// Add a nogood to the solver, clears the vector.
public boolean addNogood(TIntList lits) {
boolean result = sat_.addClause(lits);
storeEarlyDeductions();
return result;
}
// Add a learnt clause
public void addLearnt(int... lits) {
sat_.learnClause(lits);
// early deductions of learnt clause may lead to incorrect behavior on backtrack
// since early deduction is not backtrackable.
this.getSolver().getEngine().propagateOnBacktrack(this); // issue#327
// compare the current clauses with the previous stored one,
// just in case the current one dominates the previous none
if (sat_.nLearnt() > 1) {
SatSolver.Clause last = sat_.learnts.get(sat_.learnts.size() - 1);
test_eq.clear();
for (int i = last.size() - 1; i >= 0; i--) {
test_eq.set(last._g(i));
}
for (int c = sat_.learnts.size() - 2; c >= 0; c--) {
int s = test_eq.cardinality();
SatSolver.Clause prev = sat_.learnts.get(c);
if (last.size() > 1 && last.size() < prev.size()) {
for (int i = prev.size() - 1; i >= 0; i--) {
s -= test_eq.get(prev._g(i)) ? 1 : 0;
}
if (s == 0) { // then last dominates prev
sat_.detachLearnt(c);
}
}
}
}
}
private void storeEarlyDeductions() {
for (int i = 0; i < sat_.touched_variables_.size(); ++i) {
int lit = sat_.touched_variables_.get(i);
early_deductions_.add(lit);
}
sat_.touched_variables_.resetQuick();
}
void applyEarlyDeductions() throws ContradictionException {
for (int i = 0; i < early_deductions_.size(); ++i) {
int lit = early_deductions_.get(i);
int var = var(lit);
if (sign(lit)) {
vars[lit2pos[var]].instantiateTo(lit2val[var], this);
} else {
vars[lit2pos[var]].removeValue(lit2val[var], this);
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@Override
public boolean why(RuleStore ruleStore, IntVar ivar, IEventType evt, int ivalue) {
if (inClauses == null) {
fillInClauses();
}
boolean newrules = ruleStore.addPropagatorActivationRule(this);
// When we got here, there are multiple cases:
// 1. the propagator fails, at least one clause or implication cannot be satisfied
// 2. the propagator is the cause of an instantiation
// but the clauses and implications may be lost (cf. propagate)
// get the index of the variable in the sat solver
int var = vv2lit[ivar.getId()].get(ivalue);
boolean new_value = true;
if (!ivar.contains(ivalue)) {
new_value = false;
}
int lit = makeLiteral(var, new_value);
int neg = negated(lit);
// A. implications:
// simply iterate over implies_ and add the instantiated variables
TIntList implies = sat_.implies_.get(lit);
if (implies != null) {
for (int i = implies.size() - 1; i >= 0; i--) {
int l = implies.get(i);
newrules |= _why(l, ruleStore);
}
}
implies = sat_.implies_.get(neg);
if (implies != null) {
for (int i = implies.size() - 1; i >= 0; i--) {
int l = implies.get(i);
newrules |= _why(l, ruleStore);
}
}
// B. clauses:
// We need to find the fully instantiated clauses where bvar appears
ArrayList<SatSolver.Clause> mClauses = inClauses.get(lit);
if (mClauses != null) {
for (int i = mClauses.size() - 1; i >= 0; i--) {
newrules |= _why(mClauses.get(i), ruleStore);
}
}
mClauses = inClauses.get(neg);
if (mClauses != null) {
for (int i = mClauses.size() - 1; i >= 0; i--) {
newrules |= _why(mClauses.get(i), ruleStore);
}
}
// C. learnt clauses:
// We need to find the fully instantiated clauses where bvar appears
// we cannot rely on watches_ because is not backtrackable
// So, we iterate over clauses where the two first literal are valued AND which contains bvar
for (int k = sat_.nLearnt() - 1; k >= 0; k--) {
newrules |= _why(neg, lit, sat_.learnts.get(k), ruleStore);
}
return newrules;
}
private void fillInClauses() {
inClauses = new TIntObjectHashMap<>();
for (int k = sat_.nClauses() - 1; k >= 0; k--) {
SatSolver.Clause cl = sat_.clauses.get(k);
for (int d = cl.size() - 1; d >= 0; d--) {
int l = cl._g(d);
ArrayList<SatSolver.Clause> mcls = inClauses.get(l);
if (mcls == null) {
mcls = new ArrayList<>();
inClauses.put(l, mcls);
}
mcls.add(cl);
}
}
}
private boolean _why(SatSolver.Clause cl, RuleStore ruleStore) {
boolean newrules = false;
// if the watched literals are instantiated
if (litIsKnown(cl._g(0)) && litIsKnown(cl._g(1))) {
for (int d = cl.size() - 1; d >= 0; d--) {
newrules |= _why(cl._g(d), ruleStore);
}
}
return newrules;
}
private boolean _why(int neg, int lit, SatSolver.Clause cl, RuleStore ruleStore) {
boolean newrules = false;
// if the variable watches
if (cl._g(0) == neg || cl._g(0) == lit || cl._g(1) == neg || cl._g(1) == lit) {
for (int d = cl.size() - 1; d >= 0; d--) {
newrules |= _why(cl._g(d), ruleStore);
}
} else
// if the watched literals are instantiated
if (litIsKnown(cl._g(0)) && litIsKnown(cl._g(1))) {
// then, look for the lit
int p = cl.pos(neg);
int q = cl.pos(lit);
if (p > -1 || q > -1) { // we found a clause where neg is in
for (int d = cl.size() - 1; d >= 0; d--) {
newrules |= _why(cl._g(d), ruleStore);
}
}
}
return newrules;
}
private boolean _why(int l, RuleStore ruleStore) {
int _var = var(l);
IntVar avar = vars[lit2pos[_var]];
int aval = lit2val[_var];
if (avar.contains(aval)) {
if (avar.isInstantiated()) {
return ruleStore.addFullDomainRule(avar);
}
} else {
return ruleStore.addRemovalRule(avar, aval);
}
return false;
}
private boolean litIsKnown(int l) {
int _var = var(l);
IntVar avar = vars[lit2pos[_var]];
int aval = lit2val[_var];
return !avar.contains(aval) || avar.isInstantiated();
}
}
| [
"[email protected]"
]
| |
835adea31d44f5cf77cc49b0399bb9574aa2f88c | ef6843232798d30c2bb98530b3bdc7a73158ec2d | /src/edu/itesm/mx/aop/mvc/ProyectoController.java | 2534ee09f21e6fdee9e10aa0c7196ef66053f32c | []
| no_license | magebol/Proyecto-AOP | 436e22fc13cb99c72ed271661b7160de51ddc854 | 1ae44331f665feb5e85d6aff60f624462fcd95c6 | refs/heads/master | 2020-05-16T11:53:11.841386 | 2014-07-08T16:15:19 | 2014-07-08T16:15:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,410 | java | package edu.itesm.mx.aop.mvc;
import java.io.IOException;
import com.fourspaces.couchdb.*;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import edu.itesm.mx.aop.mvc.JsonFromUrl;
@Controller
public class ProyectoController {
@RequestMapping(value="/", method= RequestMethod.GET)
public String abrirProyecto() throws IOException, Exception{
Session s = new Session("localhost", 5984);
String dbname = "earthquakes";
s.deleteDatabase(dbname);
s.createDatabase(dbname);
Database db = s.getDatabase(dbname);
Document doc = new Document();
String UrlExterna = "http://www.corsproxy.com/earthquake.usgs.gov/earthquakes/feed/geojson/2.5/day";
String PruebaString = JsonFromUrl.readJsonFromUrl(UrlExterna);
Object obj = PruebaString;
doc.put("temblores", obj);
db.saveDocument(doc, "7a88dd85d6318226761985d863001035");
return "proyecto";
}
@RequestMapping(value="/jsonpage", method= RequestMethod.GET)
@ResponseBody
public String jsonpage(){
Session s = new Session("localhost", 5984);
String dbname = "earthquakes";
Database db = s.getDatabase(dbname);
Document doc1 = new Document();
doc1 = db.getDocument("7a88dd85d6318226761985d863001035");
return doc1.toString();
}
}
| [
"[email protected]"
]
| |
fd1c3bc2e730b427dd18d77be36f0924e153174f | 3d3a2aa37831a81059889deec06ce95b06009c4e | /dondeando/src/main/java/dondeando/excepciones/InstanciacionExcepcion.java | 48fac4c8630e0ddc1b94bf8f518e68d7eb722b14 | []
| no_license | ortadilla/jcorralejo | 2aa9aea20d43869e50b9fe6f0201d72710d16164 | 6c9d431e586dcdd39f6ca3b910df8c90a53ceedd | refs/heads/master | 2016-09-05T09:21:46.811503 | 2013-03-11T17:20:28 | 2013-03-11T17:20:28 | 32,137,960 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 2,482 | java | package dondeando.excepciones;
/**
* Esta excepción es lanzada cuando se intenta instanciar un objeto
* mediante la factoría general no es posible.
* Puede ser por diferentes razones. Por ejemplo, no se ha indicado
* de que clase se quiere obtener la instancia, no es una clase
* válida, etc.
*
*/
public class InstanciacionExcepcion extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Construye una Excepcion sin mensaje de detalle.
*/
public InstanciacionExcepcion() {
super();
}
/**
* Construye una nueva excepción con el mensaje de detalle especificada y la
* causa.
*
* <p>
* Notar que el mensaje de detalle asociado con la <code>causa</code>
* <i>no</i>es incorporado automáticamente en el mensaje de detalle de la
* excepción.
*
* @param mensaje
* El mensaje de detalle (el cual es salvado para ser recuperado
* mas tarde por el método {@link Throwable#getMessage()} ).
* @param causa
* La causa (la cual es salvada para su posterior recuperación
* por el método {@link Throwable#getCause()} ). (Un valor
* <tt>null</tt> es permitido, e indica que la causa es
* inexistente o desconocida).
*/
public InstanciacionExcepcion(String mensaje, Throwable causa) {
super(mensaje, causa);
// TODO Auto-generated constructor stub
}
/**
* Construye una Excepcion con el mensaje de detalle especificada.
*
* @param mensaje
* El mensaje de detalle.
*/
public InstanciacionExcepcion(String mensaje) {
super(mensaje);
// TODO Auto-generated constructor stub
}
/**
* Construye una nueva excepción con la causa especificada, y un mensaje de
* detalle <tt>(causa==null ? null : causa.toString())</tt> (el cual
* típicamente contiene la clase y el mensaje de detalle de <tt>causa</tt>).
*
* Este constructor es útil para excepciones que son algo más que wrappers
* (sorry) para otros throwables.
*
* @param causa
* La causa (la cual es salvada para su posterior recuperación
* por el método {@link Throwable#getCause()} ). (Un valor
* <tt>null</tt> es permitido, e indica que la causa es
* inexistente o desconocida).
*/
public InstanciacionExcepcion(Throwable causa) {
super(causa);
// TODO Auto-generated constructor stub
}
}
| [
"ortadilla@12cb7d04-6001-11de-8abc-d1c337b90d21"
]
| ortadilla@12cb7d04-6001-11de-8abc-d1c337b90d21 |
cc339d4c09298ae98da9b76ad4f93179b26f7817 | e66b48cbf381594197f321c025abf1e1ca3cb576 | /app/src/main/java/com/basestructure/restclient/InsertTask.java | 061df2dba4e15365196bce1219cfaa5ada27cfae | []
| no_license | sambhaji213/BaseStructure | 0712ea81ad51b9b827757a680baee9aaaac51066 | f2cffaaa852b4f1cd26b6e596fa24d184206bf3b | refs/heads/master | 2021-01-11T00:49:43.360640 | 2016-10-11T05:53:42 | 2016-10-11T05:53:42 | 70,483,004 | 1 | 0 | null | 2020-11-23T09:05:17 | 2016-10-10T11:51:43 | Java | UTF-8 | Java | false | false | 1,429 | java | package com.basestructure.restclient;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.net.Uri;
import android.util.Log;
import com.basestructure.base.ApplicationClass;
import com.basestructure.provider.RestfulProvider;
import java.util.concurrent.Callable;
public class InsertTask implements Callable<Boolean> {
private static final String TAG = "InsertTask";
private String mTitle;
private String mArtist;
public InsertTask(String title, String artist )
{
mTitle = title;
mArtist = artist;
}
/**
* Insert a row into the table with data entered by the user.
* Set the status to "POST" and transacting flag to "pending".
*/
@Override
public Boolean call()
{
ContentResolver cr = ApplicationClass.getAppContext().getContentResolver();
ContentValues values = new ContentValues();
Uri uri;
//values.put( TableConstants.COL_TITLE, mTitle );
//values.put( TableConstants.COL_ARTIST, mArtist );
uri = cr.insert( RestfulProvider.CONTENT_URI_PROFILE_PENDING, values );
if ( uri == null ) {
Log.e( TAG, "Error setting insert request to PENDING status." );
// NotificationUtil.errorNotify( MethodEnum.POST );
return false;
}
return true;
}
} | [
"[email protected]"
]
| |
0c82d6b06fb01f30792ab22de0442f2f06684d76 | 7bea7fb60b5f60f89f546a12b43ca239e39255b5 | /src/org/omg/CosNaming/BindingIterator.java | 036bdc67888a0af131a6d42a1ff89fcc4265724c | []
| no_license | sorakeet/fitcorejdk | 67623ab26f1defb072ab473f195795262a8ddcdd | f946930a826ddcd688b2ddbb5bc907d2fc4174c3 | refs/heads/master | 2021-01-01T05:52:19.696053 | 2017-07-15T01:33:41 | 2017-07-15T01:33:41 | 97,292,673 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 187 | java | package org.omg.CosNaming;
public interface BindingIterator extends BindingIteratorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity{
} // interface BindingIterator
| [
"panxiaoping@9af151c5-2e68-9a40-a710-8967c58c11f7"
]
| panxiaoping@9af151c5-2e68-9a40-a710-8967c58c11f7 |
a100625c237d253fea1d246b0cdde2d8a7f11bac | ffd840b0120687190ce5d74bf2aacab2035dd772 | /src/main/java/com/raquelheredia/api/netflix/exceptions/NetflixRestExceptionHandler.java | 6e3a0e728d841273864afa1598c5ef59e8075627 | []
| no_license | Raquel-19/api-netflix | fe3211ff0289b090835ae3a83ac67881b0c553fe | fd24e7823af3a0867d7057b79a51e98f6bc87421 | refs/heads/master | 2023-06-19T01:31:30.447708 | 2021-07-16T10:10:45 | 2021-07-16T10:10:45 | 383,128,313 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,368 | java | package com.raquelheredia.api.netflix.exceptions;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;
import com.raquelheredia.api.netflix.responses.NetflixResponse;
import com.raquelheredia.api.netflix.util.ExceptionConstants;
@ControllerAdvice
@SuppressWarnings({ "rawtypes", "unchecked" })
public class NetflixRestExceptionHandler {
@ExceptionHandler({ Exception.class })
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
@ResponseBody
public NetflixResponse unhandledErrors(HttpServletRequest req, Exception ex) {
return new NetflixResponse(ExceptionConstants.ERROR, HttpStatus.INTERNAL_SERVER_ERROR.toString(),
ex.getMessage());
}
@ExceptionHandler({ NetflixExceptions.class })
@ResponseBody
public NetflixResponse handleLmException(final HttpServletRequest request, final HttpServletResponse response,
final NetflixExceptions ex) {
response.setStatus(ex.getCode());
return new NetflixResponse(ExceptionConstants.ERROR, String.valueOf(ex.getCode()), ex.getMessage(),
ex.getErrorList());
}
}
| [
"[email protected]"
]
| |
02fa9423da60accba1b9a174f567de8cd2e08454 | 359753b13e0b3b6f807b792d4f9b42b4c3d29ff1 | /Android/MyApplication/app/src/main/java/Class/Panier.java | ff18bb3be2b03b95e04884f8f208dc866d4e81f4 | []
| no_license | OlindO/projectYears | 2caf54ff83edbec2149e663d6e39e64b277dd27f | 7659059674709f49a1dbcf6137ad8eea893b4f07 | refs/heads/master | 2021-01-17T16:09:04.811879 | 2017-05-08T00:57:03 | 2017-05-08T00:57:03 | 70,244,477 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 429 | java | package Class;
/**
* Created by yanis on 27/02/2017.
*/
import java.util.ArrayList;
import java.util.Collection;
import Class.Livre;
import Class.Livre;
public class Panier extends ArrayList<Livre> {
public Panier(int initialCapacity) {
super(initialCapacity);
}
public Panier(Livre livre) {
}
public Panier() {
}
public Panier(Collection<? extends Livre> c) {
super(c);
}
} | [
"yanis abib"
]
| yanis abib |
d67390419e010affd90cc5239110dbeb0b9dd67b | 7f2bc36b856ac780dfc16e96d9d2f90b0f84f54d | /common/src/main/java/com/zhaodongdb/common/utils/StringUtil.java | b59d3bb2c9cebad1ae367fe891b4a82b5430ccee | []
| no_license | LawrenceHe/Montage | 80847d8aa8b6addac7c02c75b790cc3426df1744 | 3237fef234c529dbb31a31d7e0135c275c526c88 | refs/heads/master | 2023-05-13T08:44:27.948609 | 2020-04-21T02:53:52 | 2020-04-21T02:53:52 | 217,003,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 49,830 | java | package com.zhaodongdb.common.utils;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.UnsupportedEncodingException;
import java.math.BigDecimal;
import java.security.NoSuchAlgorithmException;
import java.text.DecimalFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.net.Uri;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.TextUtils;
import android.text.style.StrikethroughSpan;
import android.util.Log;
public class StringUtil {
// GBK编码
//public final static String ENCODE = "GBK"; // "GB18030";
// ====================身份证验证参数==================
final static int[] wi = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1 };
final static int[] vi = { 1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2 };
public static final String EMPTY = "";
public static String getUnNullString(String inStr) {
if (StringUtil.emptyOrNull(inStr)) {
inStr = "";
}
return inStr;
}
public static boolean checkIp(String str) {
boolean flag = false;
String[] s = new String[4];
// 检查是否只有数字和'.'。
if (!str.matches("[0-9[\\.]]{1,16}")) {
flag = false;
}
else {
// 字符串中的数字字符分开存储一个数组中
s = str.split("\\.");
for (int i = 0; i < s.length; i++) {
int a = Integer.parseInt(s[i]);
// 转换为二进制进行匹配
if (Integer.toBinaryString(a).matches("[0-1]{1,8}")) {
flag = true;
}
else {
flag = false;
break;
}
}
}
// if(flag){
// // System.out.println("ip is right");
// }else{
// // System.out.println("ip is wrong");
// }
return flag;
}
/**
* 校验字符串数组,是否EmptyOrNull
*
* @param valueAndNameArr
* 二维数组
* @param errorInfo
* @return
*/
public static boolean checkEmptyOrNull(String[][] valueAndNameArr, StringBuilder errorInfo) {
boolean flag = true;
for (String[] valueAndName : valueAndNameArr) {
if (StringUtil.emptyOrNull(valueAndName[0])) {
errorInfo.append(valueAndName[1] + ",");
flag = false;
}
}
if (!flag) {
errorInfo.append(" can't be emptyOrNull!");
}
return flag;
}
/**
* 判断字串是否为空
*
* @param str
* @return
*/
public static boolean emptyOrNull(String str) {
return str == null || str.length() == 0;
}
public static boolean equals(String str1, String str2) {
return str1 == null ? str2 == null : str1.equals(str2);
}
public static boolean equalsIgnoreCase(String str1, String str2) {
return str1 == null ? str2 == null : str1.equalsIgnoreCase(str2);
}
public static boolean emptyOrNull(String... arrStr) {
for (String str : arrStr) {
if (emptyOrNull(str)) {
return true;
}
}
return false;
}
/**
* 除去string中的占位字符
*
* @param str old str
* @return new str
*/
public static String replaceBlank(String str) {
if (emptyOrNull(str)) {
return "";
}
return str.replace(" ", "");
}
/**
* 将string转为int ,异常时返回-1
*
* @param s
* @return
*/
public static int toInt(String s) {
int i = 0;
try {
i = Integer.parseInt(s);
}
catch (Exception e) {
i = -1;
}
return i;
}
/**
* 将String转换为int,异常时,返回传入的{@code #defaultValue}
*
* @param str 需要转换为int的String
* @param defaultValue 异常时的默认值
* @return int
*/
public static int toInt(String str, int defaultValue) {
int i;
try {
i = Integer.parseInt(str);
}
catch (Exception e) {
i = defaultValue;
}
return i;
}
/**
* 将两个string转化成int并比较
* @param s1
* @param s2
* @return
*/
public static int compareStrToInt(String s1, String s2) {
int i = 0;
try {
i = Integer.parseInt(s1) - Integer.parseInt(s2);
}
catch (Exception e) {
}
return i;
}
/**
* 功能描述:cityID的String转Int方法,业务默认要求是0,这里为了确保业务正常,单独添加这个方法
*
* <pre>
* liuwj: 2013-4-6 下午3:57:08 新建
* </pre>
*
* @param s
* @return
*/
public static int cityIDToInt(String s) {
int i = 0;
try {
i = Integer.parseInt(s);
}
catch (Exception e) {
i = 0;
}
return i;
}
/**
*
* 功能描述:将value转换为string,并判断小数点后有无有效数值
*
* <pre>
* guzy: 2013-1-31 新建
* </pre>
*
* @param value
* @return
*/
public static String toDecimalString(float value) {
if (value < 0f) {
return "";
}
if (value == 0f) {
return "0";
}
// 因为value默认是带有小数点的, 所有转为String后需要判断小数点后部分是否为0, 是的话需要截取小数点前的部分返回即可
String result = Float.toString(value);
if (result != null) {
int pointIdx = result.indexOf(".");
if (pointIdx > 0) {
int number = toInt(result.substring(pointIdx + 1));
if (number == 0) {
return result.substring(0, pointIdx);
}
}
else {
return "0";
}
}
return result;
}
/**
*
* 功能描述:将value(单位:分)转换为string(单位元),并根据末两位的值自动保留小数点
*
* <pre>
* guzy: 2013-2-4 新建
* </pre>
*
* @param value
* @return
*/
public static String toDecimalString(int value) {
if (value < 0) {
return "";
}
if (value == 0) {
return "0";
}
if (value % 100 == 0) {
return String.valueOf(value / 100);
}
else {
return Float.toString((value / 100.0f));
}
}
public static String toDecimalString(long value) {
if (value < 0) {
return "";
}
if (value == 0) {
return "0";
}
if (value % 100 == 0) {
return String.valueOf(value / 100);
}
else {
return Double.toString((value / 100.0d));
}
}
/**
*
* 功能描述:将value(单位:分)转换为string(单位元) 并四舍五入
* <pre>
* xinyh: 2013-5-7 新建
* </pre>
*
* @param value
* @return
*/
public static String halfUpToDecimalString(int value) {
if (value < 0) {
return "";
}
if (value == 0) {
return "0";
}
if (value % 100 == 0) {
return String.valueOf(value / 100);
}
else {
StringBuffer strBuff = new StringBuffer();
strBuff.append(new BigDecimal(String.valueOf(value / 100.0f)).setScale(0, BigDecimal.ROUND_HALF_UP));
return strBuff.toString();
}
}
/**
* 将string 转为long,异常时返回-1
*
* @param s
* @return
*/
public static long toLong(String s) {
long i = 0L;
try {
i = Long.parseLong(s);
}
catch (Exception e) {
i = -1L;
}
return i;
}
/**
* 将string 转为float,异常时返回-1
*
* @param s
* @return
*/
public static float toFloat(String s) {
float i = 0f;
try {
i = Float.parseFloat(s);
}
catch (Exception e) {
i = -1f;
}
return i;
}
/**
* 将string 转为double,异常时返回-1
*
* @param s
* @return
*/
public static double toDouble(String s) {
double i = 0;
try {
i = Double.parseDouble(s);
}
catch (Exception e) {
i = -1;
}
return i;
}
/**
* 替换掉机场名称中含有国际的字段
*
* @param airportName
* @return
*/
public static String formatAirportName(String airportName) {
if (emptyOrNull(airportName)) {
return "";
}
if (airportName.contains("国际")) {
return airportName.replace("国际", "");
}
return airportName;
}
/**
* 根据类型获取机票订单状态
*
* code c--"已取消" p--处理中 r--全部退票 s--成交 t--部分退票 w--未处理 u--未提交 其他状态 --提交中
*
* @return
*/
public static String getFlightOrderState(String code) {
if (emptyOrNull(code)) {
return null;
}
String c = code.toLowerCase();
if (c.equals("c")) {
return "已取消";
}
else if (c.equals("p")) {
return "处理中";
}
else if (c.equals("r")) {
return "全部退票";
}
else if (c.equals("s")) {
return "成交";
}
else if (c.equals("t")) {
return "部分退票";
}
else if (c.equals("w")) {
return "未处理";
}
else if (c.equals("u")) {
return "未提交";
}
else {
return "提交中";
}
}
/**
*
* @param giftType
* @return 0送券 1返现 -1无
*/
public static byte checkIsBackMoney(String giftType) {
if (!StringUtil.emptyOrNull(giftType)) {
if (giftType.equalsIgnoreCase("L") || giftType.equalsIgnoreCase("U") || giftType.equalsIgnoreCase("R") || giftType.equalsIgnoreCase("T") || giftType.equalsIgnoreCase("S")) {
return 0;
}
else if (giftType.equalsIgnoreCase("C") || giftType.equalsIgnoreCase("D")) {
return 1;
}
}
return -1;
}
/**
* 去掉机场名称中含有国际机场与机场的字段
*
* @param airportName
* @return
*/
public static String shortAirportName(String airportName) {
if (airportName != null) {
int len = airportName.length();
if (airportName.endsWith("国际机场")) {
return airportName.substring(0, len - 4);
}
else if (airportName.endsWith("机场")) {
return airportName.substring(0, len - 2);
}
}
return "";
}
// /**
// * 根据名字与国籍返回正确的国籍
// *
// * @param name
// * @param nation
// * @return
// */
// public static String isValidNationAndName(String name, String nation) {
// if (!StringUtil.emptyOrNull(name) && !StringUtil.emptyOrNull(nation)) {
// if ("CN".equals(nation)) {
// if (!StringUtil.isValidCN(name)) {
// return "CN";
// }
// } else if (!"CN".equals(nation) && !"HK".equals(nation) &&
// !"MO".equals(nation) && !"TW".equals(nation)) {
// if (!StringUtil.isValidENName(name)) {
// return "EN";
// }
// }
// }
// return "";
// }
/**
* 取字串小数点前整数
*
* @param s
* @return
*/
public static String toIntString(String s) {
String intString = "";
try {
if (s.contains(".")) {
intString = s.substring(0, s.indexOf("."));
}
else {
intString = s;
}
}
catch (Exception e) {
}
return intString;
}
/**
* 将null转为""
*
* @param str
* @return
*/
public static String changeNullStr(String str) {
if (str == null) {
return "";
}
else {
return str;
}
}
/**
* 判断字串是否是数字
*
* @param str
* @return
*/
public static int isNumString(String str) {
Pattern p = Pattern.compile("[0-9]*");// 格式"a"
Matcher m = p.matcher(str);
if (m.matches()) {
return 1;
}
else {
return 0;
}
}
// /**
// * 判断字串是否是数字
// *
// * @param str
// * @return
// */
// public static boolean isPassword(String str) {
// Pattern p =
// Pattern.compile("[A-Za-z0-9\\!\\#\\@\\$\\%\\^\\&\\*\\.\\~\\`\\(\\)\\-\\_\\+\\=\\[\\]\\{\\}\\|\\;\\:\\'\\,\\.\\<\\>\\?\\/]{7,20}$");
// Matcher m = p.matcher(str);
// boolean valid = m.matches();
// return valid;
// }
// /**
// * 是否是英文
// *
// * @param str
// * @return
// */
// public static boolean isEnString(String str) {
// Pattern p = Pattern.compile("[\\s]*[A-Za-z]+[\\s]*");// 格式"a"
// Matcher m = p.matcher(str);
// boolean valid = m.matches();
// return valid;
// }
// /**
// * 首字母是否中文
// *
// * @param name
// * @return
// */
// public static boolean isFirstChCnStr(String name) {
// if (emptyOrNull(name)) {
// return false;
// }
// String str = name.substring(0, 1);
// if (isEnString(str)) {
// return false;
// }
// return true;
// }
/**
* email是否合法
*
* @param email
* @return true or false
*/
// public static boolean isValidEMail(String email) {
// Pattern p = Pattern.compile("\\S+@(\\S+\\.)+[\\S]{1,6}");
// Matcher m = p.matcher(email);
// boolean valid = m.matches();
// return valid;
// }
/**
* 输入 的字串不包含特殊字符
*
* @param string
* @return 不包则返回true 否则 返回 false
*/
public static boolean isConSpeCharacters(String string) {
if (string.replaceAll("[\u4e00-\u9fa5]*[a-z]*[A-Z]*\\d*-*_*\\s*", "").length() == 0) {
return true;
}
return false;
}
/**
* 是否为中国籍,包含港澳台
*
* @param nationality
* @return
*/
public static boolean isValidChineseNationality(String nationality) {
if ("".equals(nationality)) {
return true;
}
return "CNTWHKMO".indexOf(nationality.toUpperCase()) > -1;
}
// /**
// * 邮编是否正确,只验证长度以及是否全为数字
// *
// * @param code
// * @return
// */
// public static boolean isValidPostCode(String code) {
// if (emptyOrNull(code))
// return false;
// if (code.length() != 6)
// return false;
// return isNumString(code);
// }
// /**
// * 验证输入的手机号是否正确 首位为1 第二位为 3|4|5|8
// *
// * @param mobile
// * @return
// */
// public static boolean isMobileNumber(String mobile) {
// // //香港,澳门 手机
// if (mobile.startsWith("0") && mobile.length() == 12) {
// mobile = mobile.substring(1, mobile.length());
// }
// if (mobile.length() == 11) {
// char firstNum = mobile.charAt(0);
// if (firstNum == '1')
// return true;
// }
//
// return false;
// }
/**
* 航班号是否正确
*
* @param flightid
* @return true or false
*/
public static boolean isFlightID(String flightid) {
Pattern p = Pattern.compile("^(CA|CZ|FM|MU|BK|JD|EU|CN|NS|HU|VD|G5|HO|KY|3U|SC|ZH|GS|PN|JR|MF|8L|KN|QF|OS)+[A-Z0-9]{3,4}");
Matcher m = p.matcher(flightid);
boolean valid = m.matches();
return valid;
}
// /**
// * 身份证合法性验证,15位身份证只验证长度
// *
// * @param idcard
// * @return
// */
// public static boolean verifyID(String idcard) {
// if (null == idcard)
// return false;
// if (idcard.length() == 15) {
// // 15位时只做长度验证
// return true;
// }
// if (idcard.length() != 18) {
// return false;
// }
// String verify = idcard.substring(17, 18);
// if (verify.equalsIgnoreCase(getVerify(idcard))) {
// return true;
// }
// return false;
// }
// /**
// * 计算18位身份证明后一位
// *
// * @param eighteen
// * @return 计算出来的最后一位字串
// */
// private static String getVerify(String eighteen) {
// int remain = 0;
// if (eighteen.length() == 18) {
// eighteen = eighteen.substring(0, 17);
// }
// if (eighteen.length() == 17) {
// int sum = 0;
// for (int i = 0; i < 17; i++) {
// String k = eighteen.substring(i, i + 1);
// if ("-1".equalsIgnoreCase(k)) {
// return "";
// }
// ai[i] = toInt(k);
// }
// for (int i = 0; i < 17; i++) {
// sum += wi[i] * ai[i];
// }
// remain = sum % 11;
// }
// if (remain >= 0) {
// return remain == 2 ? "x" : String.valueOf(vi[remain]);
// } else {
// return "";
// }
// }
// /**
// * 验证英文名合法性 符合五种格式中任意一种即可 a/b c| a/b | a b c| a b| a
// *
// * @param name
// * @return true or false
// */
// public static boolean isValidENName(String name) {
// Pattern p1 =
// Pattern.compile("[\\s]*[A-Za-z]+/[A-Za-z]+[\\s]+[A-Za-z]+[\\s]*");//
// 格式"a/b c"
// Matcher m1 = p1.matcher(name);
// Pattern p2 = Pattern.compile("[\\s]*[A-Za-z]+/[A-Za-z]+[\\s]*");//
// 格式"a/b"
// Matcher m2 = p2.matcher(name);
// Pattern p3 =
// Pattern.compile("[\\s]*[A-Za-z]+[\\s]+[A-Za-z]+[\\s]+[A-Za-z]+[\\s]*");//
// 格式"a b c"
// Matcher m3 = p3.matcher(name);
// Pattern p4 = Pattern.compile("[\\s]*[A-Za-z]+[\\s]+[A-Za-z]+[\\s]*");//
// 格式"a b"
// Matcher m4 = p4.matcher(name);
// Pattern p5 = Pattern.compile("[\\s]*[A-Za-z]+[\\s]*");// 格式"a"
// Matcher m5 = p5.matcher(name);
// boolean valid = m1.matches() || m2.matches() || m3.matches() ||
// m4.matches() || m5.matches();
// return valid;
// }
// /**
// * 验证英文名合法性 符合两种格式中任意一种即可 a/b c| a/b
// *
// * @param name
// * @return
// */
// public static boolean isValidENName4Flight(String name) {
// Pattern p1 =
// Pattern.compile("[\\s]*[A-Za-z]+/[A-Za-z]+[\\s]+[A-Za-z]+[\\s]*");//
// 格式"a/b c"
// Matcher m1 = p1.matcher(name);
// Pattern p2 = Pattern.compile("[\\s]*[A-Za-z]+/[A-Za-z]+[\\s]*");//
// 格式"a/b"
// Matcher m2 = p2.matcher(name);
// boolean valid = m1.matches() || m2.matches();
// return valid;
// }
// /**
// * 常旅客卡校验
// *
// * @author yrguo
// * @param ffpCardId
// * @return
// */
// public static boolean isFFPCardID(String ffpCardId) {
// Pattern p = Pattern.compile("^[A-Za-z0-9]+$");
// Matcher m = p.matcher(ffpCardId);
// return m.matches();
// }
/**
* 计算EditText中输入字串的长度(按字节计算)
*
* @param temp
* @return
*/
public static int strlen(CharSequence temp) {
if (temp == null || temp.length() <= 0) {
return 0;
}
int len = 0;
char c;
for (int i = temp.length() - 1; i >= 0; i--) {
c = temp.charAt(i);
if ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
// 字母, 数字
len++;
}
else {
if (Character.isLetter(c)) { // 中文
len += 2;
}
else { // 符号或控制字符
len++;
}
}
}
return len;
}
/**
* 将年,月,日,时,分,拼成14位长度的字串
*
* @param _year
* 年
* @param _month
* 月
* @param _day
* 日
* @param _hour
* 时
* @param _minute
* 分
* @return 14位长度的字串
*/
public static String formatDateString(int _year, int _month, int _day, int _hour, int _minute) {
String value = String.valueOf(_year);
if (_month < 10) {
value += "0" + _month;
}
else {
value += _month;
}
if (_day < 10) {
value += "0" + _day;
}
else {
value += _day;
}
if (_hour < 10) {
value += "0" + _hour;
}
else {
value += _hour;
}
if (_minute < 10) {
value += "0" + _minute;
}
else {
value += _minute;
}
value += "00";
return value;
}
/**
* 将年,月,日拼成一个8位长的字串
*
* @param year
* 年
* @param month
* 月
* @param day
* 日
* @return 8位长的字串
*/
public static String formatDateString(int year, int month, int day) {
String value = String.valueOf(year);
while (value.length() < 4) {
value = "0" + value;
}
if (month < 10) {
value += "0" + month;
}
else {
value += month;
}
if (day < 10) {
value += "0" + day;
}
else {
value += day;
}
return value;
}
/**
* 格式化机票折扣字符串
*/
public static String formatFlightRate(String oriStr) {
if (emptyOrNull(oriStr)) {
return "null";
}
StringBuffer rateText = new StringBuffer();
if (toFloat(oriStr) >= 10) {
/** 折扣的值>=1的话,显示无折扣, */
rateText.append("全价");
// rateText.append("全价");
}
else {
DecimalFormat df = new DecimalFormat("########.0");
rateText.append("");
rateText.append(toDouble(df.format(toFloat(oriStr))));
// rateText.append(toDouble(df.format(toFloat(oriStr) * 10)));
rateText.append("折");
}
return rateText.toString();
}
/**
* MD5
*
* @param source
* @return
*/
public static String getMD5(byte[] source) {
StringBuilder sb = new StringBuilder();
java.security.MessageDigest md5 = null;
try {
md5 = java.security.MessageDigest.getInstance("MD5");
md5.update(source);
}
catch (NoSuchAlgorithmException e) {
}
if (md5 != null) {
for (byte b : md5.digest()) {
sb.append(String.format("%02X", b));
}
}
return sb.toString();
}
/**
* 处理特殊要求字符串,将顿号换成换行符
*/
public static String processString(String s) {
String r = "";
if (s != null && !"".equals(s)) {
r = s.replaceAll("、", "\n");
}
return r;
}
/**
* 将字串中换行符(BR)替换成\n,空格替换为 " "
*
* @param str
* @return
*/
public static String formatInfo(String str) {
String strInfo = str.replace("<BR/>", "\n");
strInfo = strInfo.replace("<br/>", "\n");
strInfo = strInfo.replace("<br>", "\n");
strInfo = strInfo.replace(" ", "");
strInfo = strInfo.replace("<t>", " ");
return strInfo;
}
/**
* 将str中含有src的替换成aim str与src 不能为空。
*
* @param str
* @param src
* @param aim
* @return
*/
public static String replaceStr(String str, String src, String aim) {
if (emptyOrNull(str) || emptyOrNull(src)) {
return "";
}
if (str.contains(src)) {
return str.replace(src, aim);
}
return str;
}
/**
* 返现值
*
* @param giftValue
* @return
*/
public static String getBackMoneyString(String giftValue) {
float value = Float.valueOf(giftValue);
if (value > 1.0f) {
return ((int) value) + "元";
}
else {
int value1 = (int) (value * 100);
return value1 + "%";
}
}
public static int getSeekBarProgress(int value, int minValue, int midValue, int maxValue) {
if (value < 0) {
return 0;
}
if (value <= midValue) {
return 50 * (value - minValue) / (midValue - minValue);
}
else {
return 50 + 50 * (value - midValue) / (maxValue - midValue);
}
}
public static int getSeekBarValue(int progress, int minValue, int midValue, int maxValue) {
if (progress < 0) {
return 0;
}
if (progress <= 50) {
return (int) ((midValue - minValue) * (progress / 50.00)) + minValue;
}
else {
int overValue = (int) ((progress - 50) * (maxValue - midValue) / 50.00);
return midValue + overValue;
}
}
/**
* string是否有效
*
* @param inputStr
* @return
*/
public static boolean isValidStr(String inputStr) {
char[] charArray = inputStr.toCharArray();
int length = charArray.length;
for (int i = 0; i < length; i++) {
if (!(charArray[i] >= '0' && charArray[i] <= '9') && !(charArray[i] >= 'A' && charArray[i] <= 'z') && charArray[i] != '_') {
return false;
}
}
return true;
}
/**
* 返回一个中间有线的SpannableString
*
* @param s
* @return
*/
public static SpannableString getMidLineStr(String s) {
SpannableString ss = new SpannableString(s);
ss.setSpan(new StrikethroughSpan(), 0, s.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
return ss;
}
/**
*
* @param firstStr
* @param secondStr
* @return
*/
public static boolean stringCompare(String firstStr, String secondStr) {
if (StringUtil.emptyOrNull(firstStr)) {
return false;
}
if (firstStr.compareTo(secondStr) > 0) {
return true;
}
else {
return false;
}
}
/**
* 根据机型标志字段获取机型
*
* @param craftKind
* @return
*/
public static String getCraftKindStr(String craftKind) {
String craftKindStr = "";
if (craftKind.equalsIgnoreCase("M")) {
craftKindStr = "中机型";
}
else if (craftKind.equalsIgnoreCase("S")) {
craftKindStr = "小机型";
}
else if (craftKind.equalsIgnoreCase("L")) {
craftKindStr = "大机型";
}
return craftKindStr;
}
public static String getDateMessage(String[] sa) {
String s = "";
if (sa != null && sa.length >= 4) {
s += sa[0];
if (toInt(sa[1]) < 10) {
s += "0" + sa[1];
}
else {
s += sa[1];
}
if (toInt(sa[2]) < 10) {
s += "0" + sa[2];
}
else {
s += sa[2];
}
}
return s;
}
/**
* 超过四位的字串前两位后加上:
*
* @param str
* @return
*/
public static String processTimeStr(String str) {
String s = "";
if (str != null && str.length() >= 4) {
s = str.substring(0, 2) + ":" + str.substring(2, str.length());
}
return s;
}
// public static String getInfoIdList(String[] infos) {
// int infoCount = 10;
// int infoLen = 10;
// StringBuilder infoStringBuilder = new StringBuilder();
// int size = infos.length;
// for (int i = 0; i < size; i++) {
// infoStringBuilder.append(FillStr(infos[i], infoLen));
// }
// int loop = infoCount - size;
// for (int i = 0; i < loop; i++) {
// infoStringBuilder.append(FillStr("", infoLen));
// }
// return infoStringBuilder.toString();
// }
/**
* 将日期拆分并将年月日存入数组中
*
* @param date
* @return
*/
public static int[] getDateField(String date) {
if (date != null && date.length() >= 8) {
int[] fields = new int[3];
fields[0] = toInt(date.substring(0, 4));
String month = date.substring(4, 6);
fields[1] = toInt(month) - 1;
String day = date.substring(6, 8);
fields[2] = toInt(day);
return fields;
}
return null;
}
/**
* 将年,月,日 ,三个值拼成 YYYY-MM-DD
*
* @param year
* @param month
* @param day
* @return
*/
public static String dateToString(int year, int month, int day) {
if (year < 0 || month < 0 || day < 0) {
return "";
}
else {
return year + "-" + month + "-" + day;
}
}
/**
* 将字串中的两个:替换成.
*
* @param d
* @return
*/
public static String parseTude(String d) {
String r = "";
if (d != null && !"".equals(d)) {
int i = d.indexOf(":");
r += d.substring(0, i) + ".";
String ss = d.substring(i + 1, d.length());
int si = ss.indexOf(":");
r += ss.substring(0, si) + ".";
r += ss.substring(si + 1);
}
return r;
}
/** 12-03修改:大舱位(ClassGrade);0:Y(经济舱);2:C(公务舱);3:F(头等舱) */
public static String getFlightClassName(String code) {
if ("Y".equalsIgnoreCase(code)) {
return "经济舱";
}
else if ("F".equalsIgnoreCase(code)) {
return "头等舱";
}
else if ("A".equalsIgnoreCase(code)) {
return "不限";
}
else if ("C".equalsIgnoreCase(code)) {
return "公务舱";
}
return "";
}
/**
* 获取航班类型 C/F合并
*/
public static String getFlightClassName2(String code) {
if ("Y".equalsIgnoreCase(code)) {
return "经济舱";
}
else if ("F".equalsIgnoreCase(code)) {
return "公务舱/头等舱";
}
else if ("A".equalsIgnoreCase(code)) {
return "不限";
}
else if ("C".equalsIgnoreCase(code)) {
return "公务舱/头等舱";
}
return "";
}
/** 12-17修改:(商务舱改为 公务舱) 大舱位(ClassGrade);0:Y(经济舱);2:C(公务舱);3:F(头等舱) */
public static String getFlightClassNameByFlag(int flag) {
String subClassName = "";
if (flag == 0) {
subClassName = "经济舱";
}
else if (flag == 2) {
subClassName = "公务舱";
// subClassName = "商务舱";
}
else if (flag == 3) {
subClassName = "头等舱";
}
return subClassName;
}
/** 12-02新增(ClassForDisplay):舱位标签(显示用),1: 高端; 2: 超值; 3: 豪华; 7:空中 */
public static String getFlightSubClassLabelByFlag(int flag) {
String subClassName = "";
switch (flag) {
case 1:
subClassName = "高端";
break;
case 2:
subClassName = "超值";
break;
case 3:
subClassName = "豪华";
break;
case 7:
subClassName = "空中";
break;
default:
break;
}
return subClassName;
}
/** 大舱位中文(显示用--ClassForDisplay),1: 高端经济舱; 2: 超值头等舱; 3: 超级经济舱; 4:商务舱; 5:头等舱; 6:经济舱 */
/** 11-18:修改:大舱位中文(显示用),1: 高端经济舱; 2: 超值头等舱; 3: 豪华; 4:公务舱; 5:头等舱; 6:经济舱 */
public static String getFlightSubClassNameByFlag(int flag) {
String subClassName = "";
switch (flag) {
case 1:
subClassName = "高端经济舱";
break;
case 2:
subClassName = "超值头等舱";
break;
case 3:
subClassName = "豪华经济舱";
break;
case 4:
subClassName = "公务舱";
// subClassName = "商务舱";
break;
case 5:
subClassName = "头等舱";
break;
case 6:
subClassName = "经济舱";
break;
default:
break;
}
return subClassName;
}
/**
* 1.name为繁体且证件类型为7(回乡证)或8(台胞证)或10(港澳通行证)时返回提示语句 "国内航班不接受繁体字登机,请提供证件上的简体中文姓名或英文姓名" 2.name为英文,国籍为中国,证件类型为身份证,军人证,外国人永久居留证时返回提示语“请确认您提交的姓名与证件上姓名是否一致” 3其他情况返回""
*
* @param name
* @param nationality
* @param idCardType
* 7回乡证,8台胞证,10港澳通行证
* @param birthday
* @return
*/
// public static String isValidCNName(String name, String nationality,
// String idCardType, String birthday) {
//
// if (isValidTWCN(name) && (idCardType.equals("7") ||
// idCardType.equals("8") || idCardType.equals("10"))) {
// return "国内航班不接受繁体字登机,请提供证件上的简体中文姓名或英文姓名";
// }
//
// if (isValidENName(name) && nationality.equalsIgnoreCase("CN") &&
// (idCardType.equals("1") || idCardType.equals("4") ||
// idCardType.equals("20") || idCardType.equals("00"))) {
// return "请确认您提交的姓名与证件上姓名是否一致";
// }
// return "";
// }
/**
* 在srcStr的position位置,插入insertStr
*
* @author liuwj 2012-6-5
* @param srcStr
* @param insertStr
* @param position
* @return
*/
public static String insertSymbolInStrPotion(String srcStr, String insertStr, int position) {
if (emptyOrNull(srcStr)) {
return "";
}
String str = "";
if (position > srcStr.length()) {
return str;
}
StringBuffer showStringBuffer = new StringBuffer(srcStr.length() + insertStr.length());
String tmep = srcStr.substring(position, srcStr.length());
showStringBuffer.append(srcStr.substring(0, position));
showStringBuffer.append(insertStr);
showStringBuffer.append(tmep);
str = showStringBuffer.toString();
return str;
}
/**
* 校验yyyyMMdd日期是否合法
*
* @author liuwj 2012-7-19下午3:21:59
* @param date
* @return 八位的年月日
*/
public static boolean isDateRight(String date) {
if (date.length() == 8) {
int year = -1;
int month = -1;
int day = -1;
boolean isLeapYear = false;// 闰年
year = toInt(date.substring(0, 4));
month = toInt(date.substring(4, 6));
day = toInt(date.substring(6, 8));
if (year / 4 == 0 && year / 100 != 0) {
isLeapYear = true;// 闰年
}
if (year / 400 == 0) {
isLeapYear = true;// 闰年
}
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
if (day <= 31 && day >= 1) {
return true;
}
break;
case 2:
if (isLeapYear) {
if (day <= 29 && day >= 1) {
return true;
}
}
else {
if (day <= 28 && day >= 1) {
return true;
}
}
break;
case 4:
case 6:
case 9:
case 11:
if (day <= 30 && day >= 1) {
return true;
}
break;
default:
return false;
}
return false;
}
return false;
}
/**
* 计算航班的两个日期
*
* @author liuwj 2012-6-6
* @param dateStr1
* @param dateStr2
* @param minusPlus
* @return
*/
public static int calcTwoDateUnsign(String dateStr1, String dateStr2) {
SimpleDateFormat sd = new SimpleDateFormat("yyyyMMdd");
long nd = 1000 * 24 * 60 * 60;// 一天的毫秒数
long diff;
// 获得两个时间的毫秒时间差异
try {
diff = sd.parse(dateStr2).getTime() - sd.parse(dateStr1).getTime();
long day = diff / nd;// 计算差多少天
return Math.abs((int) (day));
}
catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return -1;
}
/**
* 计算两个String类型的时间之和
*
* @author liuwj 2012-7-17下午6:09:44
* @param time1
* @param time2
* @return
*/
public static int plusGlobalTwoTime(String time1, String time2) {
int timeA = 0, timeB = 0;
if (!emptyOrNull(time1)) {
timeA = toInt(time1);
}
if (!emptyOrNull(time2)) {
timeB = toInt(time2);
}
return timeA + timeB;
}
/**
* 将 酒店评分 格式化 ,小数点后只有一位 。
*
* @param originGrade
* @param isShowZero
* :为 0 是否显示 :true = 显示 0.0 | false = “”
* @return
*/
public static String fromatGrade(String originGrade, boolean isShowZero) {
String grade = "0.0";
DecimalFormat decimalFormat = new DecimalFormat("########.0"); // 数字格式化
grade = decimalFormat.format(StringUtil.toFloat(originGrade));
double d = StringUtil.toDouble(grade);
if (d <= 0) {
if (!isShowZero) {
grade = "";
}
else {
grade = "0.0";
}
}
return grade;
}
/**
* 公里转化米 支持小数
*
* @return
*/
public static String kilometreToMetre(String kilometre) {
String retStr = "";
if (StringUtil.emptyOrNull(kilometre)) {
return retStr;
}
float floatData = StringUtil.toFloat(kilometre) * 1000;
if (floatData == -1000f) {
return retStr;
}
retStr = StringUtil.toIntString(floatData + "");
return retStr;
}
/**
* 米 转化 公里 支持小数
*
* @return
*/
public static String metreToKilometre(String metre) {
String retStr = "";
if (StringUtil.emptyOrNull(metre)) {
return retStr;
}
if (StringUtil.toInt(metre) == -1) {
return retStr;
}
float floatData = StringUtil.toInt(metre) / (1000f);
retStr = floatData + "";
return retStr;
}
/**
* 截取字符串前几位,如果不满的话,直接return原字符串
*
* @author liuwj 2012-11-9下午3:35:54
* @param content
* @param length
* @return
*/
public static String subString(String content, int length) {
if (content.length() < length) {
return content;
}
else {
return content.substring(0, length);
}
}
/**
* 以GBK编码格式计算字符串长度, 半角字符=1个长度, 全角字符=2个长度
* @param text 字符串
* @return 字符串长度
*/
public static int getSBCCaseLength(String text) {
if (text == null || text.length() == 0) {
return 0;
}
try {
return text.getBytes("GBK").length;
}
catch (UnsupportedEncodingException e) {
e.printStackTrace();
return 0;
}
}
/**
*
* 功能描述:4.1-4.5星算4.5星 4.6星到4.9星算5星
*
* <pre>
* dqwang: 2013-2-28 新建
* </pre>
*
* @param value
* @return
*/
public static float parseToHalfInteger(float value) {
if (value > 0) {
int valueInt = (int) value;
if (value > valueInt + 0.5f) {
return valueInt + 1;
}
else if (value > valueInt) {
return valueInt + 0.5f;
}
else {
return value;
}
}
else {
return 0.0f;
}
}
/**
* 功能描述:格式化货币符号
*
* <pre>
* junyingding: 2013-3-25 新建
* </pre>
*
* @param currency
* 货币类型
* @return 美元$,人民币¥,其他货币不变
*/
public static String getFormatCurrency(String currency) {
if (currency == null || currency.length() == 0) {
return "";
}
if ("RMB".equalsIgnoreCase(currency) || "CNY".equalsIgnoreCase(currency)) {
return "¥";
} /*
* else if ("USD".equalsIgnoreCase(currency)) {
* return "$";
* }
*/
else {
return currency;
}
}
/**
*
* 功能描述:电话分隔
*
* <pre>
* lbie: 2013-3-21 新建
* </pre>
*
* @param value
* @param splitChar
* @return
*/
public static String[] getStringArray(String value, String splitChar) {
String[] array = null;
if (!StringUtil.emptyOrNull(value)) {
array = value.split(splitChar);
}
return array;
}
/**
* 解析Extension 格式如 :key1=value1|key2=value2|。。。。。
*
* <pre>
* cxb: 2013-3-31 新建
* </pre>
*
* @param extensionStr
* 格式如 :key1=value1|key2=value2|。。。。。
* @return
*/
public static Map<String, String> handleExtensionStrToMap(String extensionStr) {
Map<String, String> retMap = new HashMap<String, String>();
if (StringUtil.emptyOrNull(extensionStr)) {
return retMap;
}
String[] content = extensionStr.split("\\|");
if (content == null || content.length <= 0) {
return retMap;
}
for (String temp : content) {
if (StringUtil.emptyOrNull(temp)) {
continue;
}
int index = temp.indexOf("=");
if (index <= 0) {// =dsa 没有key的不解析
continue;
}
try {
String key = temp.substring(0, index);
String value = temp.substring(index + 1, temp.length());
retMap.put(key.trim(), value.trim());
}
catch (Exception e) {
continue;
}
}
return retMap;
}
/**
* 解析Extension ,根据key返回value。如果没有对应的key,返回""
*
* @param extensionStr
* 格式如 :key1=value1|key2=value2|。。。。。
* @param key
* @return value
*/
public static String handleExtensionStrToGetValue(String extensionStr, String key) {
Map<String, String> retMap = handleExtensionStrToMap(extensionStr);
if (retMap.containsKey(key)) {
return retMap.get(key);
}
else {
return "";
}
}
/**
* 功能描述:出发日起价截取前2个日期+...
* <pre>
* junyingding: 2013-4-9 新建
* </pre>
*
* @param startPrice
* @return
*/
public static String getShortPriceDate(String priceDate) {
if (StringUtil.emptyOrNull(priceDate)) {
return "";
}
String[] strArray = priceDate.split("、");
if (null != strArray && strArray.length > 2) {
StringBuilder sb = new StringBuilder();
sb.append(strArray[0]).append("、").append(strArray[1]).append("...");
return sb.toString();
}
return priceDate;
}
/**
*
* 功能描述:判断字符串是否含中文
* <pre>
* youj: 2013-5-8 新建
* </pre>
*
* @param str
* @return
*/
public static boolean isContainChinese(String str) {
if (emptyOrNull(str)) {
return false;
}
char[] charArr = str.toCharArray();
for (char c : charArr) {
if (isContainChinese(c)) {
return true;
}
}
return false;
}
private static boolean isContainChinese(char c) {
Character.UnicodeBlock cu = Character.UnicodeBlock.of(c);
return cu == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS || cu == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS || cu == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
|| cu == Character.UnicodeBlock.GENERAL_PUNCTUATION || cu == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION || cu == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS ? true
: false;
}
/**
*
* 功能描述:传入秒数,如果超过一小时返回 hh:mm:ss否则 返回mm:ss格式字串
* <pre>
* xinyh: 2013-5-10 新建
* </pre>
*
* @param time
* @return
*/
public static String getTalkTime(int time) {
int hour = time / 3600;
int minu = (time % 3600) / 60;
int sec = time % 60;
String str = "";
if (hour == 0) {
str = String.format("%02d:%02d", minu, sec);
}
else {
str = String.format("%02d:%02d:%02d", hour, minu, sec);
}
return str;
}
/**
*
* 功能描述,按num位数截取字符串并以endString结尾.如果不够num位的,直接返回.
* 默认endString为"..."
* <pre>
* xubin: 2013-6-14 新建
* </pre>
* @param content原字符串
* @param num截取位数
* @param endString结尾字符串
* @return 转换后的字符串
*/
public static String cutStringByNum(String content, int num, String endString) {
String end = endString;
if (end == null) {
end = "...";
}
String str = "";
if (content.length() > num) {
str = content.substring(0, num) + end;
}
else {
str = content;
}
return str;
}
public static String convertDispatchFee(int value) {
if (value == 0) {
return "0";
}
if (value % 100 == 0) {
return String.valueOf(value / 100);
}
else {
return Float.toString((value / 100.0f));
}
}
public static int convertStringToIntOnlyForFocusFlight(String string) {
byte[] b = string.getBytes();
int value = 0;
for (int i = 0; i < b.length; i++) {
int n = (b[i] < 0 ? b[i] + 256 : (int) b[i]) << (8 * i);
value += n;
}
return Math.abs(value);
}
/**
*
* 功能描述:计算两个坐标之间的距离
*
* <pre>
* dqwang: 2013-1-27 新建
* </pre>
*
* @param lat1
* @param lng1
* @param lat2
* @param lng2
* @return
*/
public static double getDistance(double lat1, double lng1, double lat2, double lng2) {
double radLat1 = rad(lat1);
double radLat2 = rad(lat2);
double a = radLat1 - radLat2;
double b = rad(lng1) - rad(lng2);
double s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLat1) * Math.cos(radLat2) * Math.pow(Math.sin(b / 2), 2)));
s = s * 6378.137;
s = Math.round(s * 10000);
s = s / 10000;
return s;// 计算单位:公里
}
private static double rad(double d) {
return d * Math.PI / 180.0;
}
/**
*
* @param hotelStar
* 需要显示的星级/评级数组
* @param level
* 等级
* @return 显示的星级
*/
public static String getShowStar(String[] hotelStar, int level) {
if (hotelStar == null || hotelStar.length < level) {
return "";
}
String str = "";
if (level > 0 && level < 6) {
str = hotelStar[level - 1];
}
return str;
}
/**
* 小数字符串("0.05")转换为百分比字符串("5%")
*
* jbai: 2013-8-14 新建
*
* @param decimal
* @return
*/
public static String decimalToPercent(String decimal) {
float value = -1;
if (!emptyOrNull(decimal)) {
try {
value = Float.parseFloat(decimal);
}
catch (NumberFormatException e) {
}
}
if (value == -1) {
return "";
}
else {
DecimalFormat format = new DecimalFormat("0.#%");
return format.format(value);
}
}
/**
* 传入以分为单位的价格数字,转换成元以后,若有小数,去掉小数部分,整数部分+1.负数返回0
* 例如110返回1.1元
* @param price 以分为单位的价格数字
* @return
*/
public static String getCeilPriceString(int price) {
String priceText = "";
if (price <= 0) {
return "0";
}
if (price % 100 != 0) {
priceText = String.valueOf(price / 100 + 1);
}
else {
priceText = String.valueOf(price / 100);
}
return priceText;
}
/**
* 保留一位小数,第二位小数四舍五入.
* 如果value为非数字,返回0.0
* @param value
* @return
*/
public static String toOneDecimal(String value) {
Double huashi = 0d;
try {
huashi = Double.parseDouble(value);
}
catch (Exception e) {
}
DecimalFormat format = new DecimalFormat("#0.0");
String buf = format.format(huashi).toString();
return buf;
}
/**
* DateTime是值类型, 故目前无法给出一个空的数据. 约定如下:
* DateTime 0001-01-01 00:00:00表示为空日期;00010101000000
* Date 0001-01-01表示为空日期;00010101
*
* create by DingJunYing for v5.0
* 约定来自高文厂
*
* @param dateTime
* @return 日期为空返回true
*/
public static boolean isDateTimeEmpty(String dateTime) {
final String emptyDate = "00010101";// 8位空日期
final String emptyDateTime = "00010101000000";// 14位空日期
if (StringUtil.emptyOrNull(dateTime)) {
return true;
}
// 14位时间
if (dateTime.equals(emptyDateTime)) {
return true;
}
// 8位日期
if (dateTime.equals(emptyDate)) {
return true;
}
return false;
}
/**
* 根据指定的长度,自动加上换行符
*
* @param s
* @param num 多少字符换行
* @return
*/
public static String autoLineFeed(String s, int num) {
StringBuilder sb = new StringBuilder();
float size = 0f;
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (size >= num) {
sb.append("\n");
size = 0f;
}
Character.UnicodeBlock cUB = Character.UnicodeBlock.of(c);
if (cUB != Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS) {
sb.append(c);
size += 0.5;
;
}
else {
sb.append(c);
size += 1;
}
}
return sb.toString();
}
/**
* 拆分字符串,拆分后将字符换转换为aaaa(bb)样式
* @param text
* @return
*/
public static String getTextBySplitStr(String text) {
String[] arr = StringUtil.getStringArray(text, "\\|");
String result = "";
if (arr != null) {
if (arr.length == 1) {
result = arr[0];
}
else if (arr.length == 2) {
result = arr[0] + "(" + arr[1] + ")";
}
}
return result;
}
/**
* StringUtils.isNotBlank(null) = false
* StringUtils.isNotBlank("") = false
* StringUtils.isNotBlank(" ") = false
* StringUtils.isNotBlank("bob") = true
* StringUtils.isNotBlank(" bob ") = true
*
* @return
*/
public static Boolean isNotBlank(String text) {
if (text == null || "".equals(text)) {
return Boolean.FALSE;
}
else {
return Boolean.TRUE;
}
}
public static String ifBlankDefault(String text, String defaultString) {
if (text == null || "".equals(text)) {
return defaultString;
}
else {
return text;
}
}
/**
*
* 方法描述 判断字符串是否为 yyyy-MM-dd日期格式
*
* @param date
* @return
* @author yechen @date 2014年6月16日 上午11:25:02
*/
public static boolean isDate(String date) {
if (emptyOrNull(date)) {
return false;
}
String regex = "(([0-9]{3}[1-9]|[0-9]{2}[1-9][0-9]{1}|[0-9]{1}[1-9][0-9]{2}|[1-9][0-9]{3})-(((0[13578]|1[02])-(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)-(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8]))))|((([0-9]{2})(0[48]|[2468][048]|[13579][26])|((0[48]|[2468][048]|[3579][26])00))-02-29)";
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(date);
return m.matches();
}
/**
* URL过滤
*/
private static final Pattern URI_FILE_PATTERN = Pattern.compile("\\.(zip|rar|tar|apk|gz|z|exe|dmg|wav|mp3|mpeg|rm|avi|ram|doc|ppt|pdf|xls|xlsx|rtf|tmp|bat|shell|swf)$");
public static boolean isFileForUrl(String strUrl) {
String lastSegment = Uri.parse(strUrl).getLastPathSegment();
if (TextUtils.isEmpty(lastSegment)) {
return false;
}
return URI_FILE_PATTERN.matcher(lastSegment.toLowerCase()).find();
}
public static String trimXSSString(String string) {
return string.replace("<", "").replace(">", "");
}
/**
* split一个text,返回指定位置的字符串,如果不存在或者数据异常,则返回null
* @param content 要切割的字符串
* @param splitContent 切割的标志
* @param position 返回的数组指定position的内容
* @return
*/
public static String getSplitTextWithinPosition(String content, String splitContent, int position) {
String result = null;
if (!StringUtil.emptyOrNull(content) && !StringUtil.emptyOrNull(splitContent)) {
String[] temp = content.split(splitContent);
if (temp != null && temp.length >= position + 1) {
result = temp[position];
}
}
return result;
}
/***
* 判断 String 是否是 int zhengfuzhengshu正负整数
*
* @param input
* @return
*/
public static boolean isIntegerString(String input) {
Matcher mer = Pattern.compile("^[+-]?[0-9]+$").matcher(input);
return mer.find();
}
/***
* exception对象转化成字符串描述
* @param e exception对象
* @return exception对应的描述
*/
public static String getDescriptionFromException(Exception e) {
if (e == null) {
return "";
}
try {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
String ret = sw.toString();
return ret;
} catch (Exception e2) {
return "Bad getDescriptionFromException:"+e2.toString();
}
}
public static String escapeSql(String str) {
if (StringUtil.emptyOrNull(str)) {
return "";
}
// ' --> ''
str = str.replaceAll("'", "''");
// " --> ""
str = str.replaceAll("\"", "\"\"");
// \ --> (remove backslashes)
str = str.replaceAll("\\\\", "");
return str;
}
public static boolean isEmpty(String source) {
return source == null || source.length() == 0;
}
public static boolean isNotEmpty(String str) {
return str != null && str.length() > 0;
}
public static String subStringBetween(String source, String start, String end) {
if (source == null || start == null || end == null) {
return null;
}
int indexOf = source.indexOf(start);
if (indexOf == -1) return null;
int indexOf2 = source.indexOf(end, start.length() + indexOf);
return indexOf2 != -1 ? source.substring(start.length() + indexOf, indexOf2) : null;
}
public static String subStringAfter(String source, String prefix) {
if (isEmpty(source)) return source;
if (prefix == null) return EMPTY;
int indexOf = source.indexOf(prefix);
return indexOf != -1 ? source.substring(indexOf + prefix.length()) : EMPTY;
}
public static String trim(String str) {
return str == null ? null : str.trim();
}
public static boolean isBlank(String str) {
if (str != null) {
int length = str.length();
if (length != 0) {
for (int i = 0; i < length; i++) {
if (!Character.isWhitespace(str.charAt(i))) {
return false;
}
}
return true;
}
}
return true;
}
public static String join(Object[] objArr, String str) {
return objArr == null ? null : join(objArr, str, 0, objArr.length);
}
public static String join(Object[] objArr, String str, int i, int i2) {
if (objArr == null) {
return null;
}
if (str == null) {
str = EMPTY;
}
int i3 = i2 - i;
if (i3 <= 0) {
return EMPTY;
}
StringBuilder stringBuilder = new StringBuilder(((objArr[i] == null ? 128 : objArr[i].toString().length()) + str.length()) * i3);
for (int i4 = i; i4 < i2; i4++) {
if (i4 > i) {
stringBuilder.append(str);
}
if (objArr[i4] != null) {
stringBuilder.append(objArr[i4]);
}
}
return stringBuilder.toString();
}
}
| [
"[email protected]"
]
| |
0273c1753e8af9c1e75f866d268a9a70f2167665 | 9dbadd86a9c7e59d07870143762a0a83656f0325 | /src/test/java/leetcode/array/ThreeSumClosest.java | 1f4bfd7720d58969826f88c03de909abba0c120e | []
| no_license | BinbinGuan/rabbitMq-test | 57d18b1f200e041e6eb4dfe8b80b1bd2ba2fd2ad | 46f15373fb8743922e780efe51d40a3859c188a8 | refs/heads/master | 2022-11-27T16:51:13.819148 | 2021-05-10T03:27:20 | 2021-05-10T03:27:20 | 146,191,706 | 0 | 0 | null | 2022-11-21T22:39:51 | 2018-08-26T15:17:07 | Java | UTF-8 | Java | false | false | 1,422 | java | package leetcode.array;
import java.util.*;
import java.util.stream.Collectors;
/**
*
* 给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的三个整数,使得它们的和与 target 最接近。返回这三个数的和。假定每组输入只存在唯一答案。
*
* 例如,给定数组 nums = [-1,2,1,-4], 和 target = 1.
*
* 与 target 最接近的三个数的和为 2. (-1 + 2 + 1 = 2).
*
* 来源:力扣(LeetCode)
* 链接:https://leetcode-cn.com/problems/3sum-closest
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
* @author: GuanBin
* @date: Created in 下午11:06 2019/10/27
*/
public class ThreeSumClosest {
public static void main(String[] args) {
int [] nums = {-1,2,1,-4};
int target=1;
//遍历数组,都和target相减,找出差值最小的三个数
System.out.println(threeSumClosest(nums, target));
}
private static int threeSumClosest(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
int[] cun = new int[nums.length];
for (int i = 0; i < nums.length; i++) {
map.put(nums[i] + target, i);
cun[i] = nums[i] + target;
}
Arrays.sort(cun);
return nums[map.get(cun[0])] + nums[map.get(cun[1])] + nums[map.get(cun[2])];
}
}
| [
"[email protected]"
]
| |
5df08ccfec60560ba0ebea874658b6d88bf3bdf6 | 8030d94c8ee99a043d89852170772f7f2cd4e886 | /src/main/java/ee/ignorance/transformiceapi/protocol/server/PrivateChatResponse.java | 7fb87ae6f191d3f04e784e54f5eea2fbf3a6af8c | []
| no_license | Tikitaka/TransformiceAPI | d3c67a2227e825fb3fddcf5ba1dbb6d71761d47d | d24dab393dfaf2e50d001dd1c9a06f405428ece9 | refs/heads/master | 2021-01-15T17:37:23.240767 | 2011-03-06T19:26:35 | 2011-03-06T19:26:35 | 1,447,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,186 | java | package ee.ignorance.transformiceapi.protocol.server;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
public class PrivateChatResponse extends AbstractResponse{
private String sender;
private String message;
private int type;
public PrivateChatResponse(byte[] rawMessage) {
super(rawMessage);
}
@Override
public void parse(byte[] rawMessage) {
DataInputStream in = new DataInputStream(new ByteArrayInputStream(rawMessage));
try {
setType(in.readByte());
setSender(in.readUTF());
setMessage(in.readUTF());
} catch (Exception e) {
e.printStackTrace();
}
}
public void setSender(String sender) {
this.sender = sender;
}
public void setMessage(String message) {
this.message = message;
}
public String getSender() {
return sender;
}
public String getMessage() {
return message;
}
public String setType(int type) {
return sender;
}
public int getType() {
return type;
}
}
| [
"[email protected]"
]
| |
6dff25b287eec9e0c020c2f4567c56e50b2d9a0f | dbd8781c2c0c0ae99cee6ac33642511edfe49455 | /module_d/src/main/java/cn/neuwljs/module_d/view/IFragmentDCView.java | 76c4889b6c0bf0aa92d007c706a96f26e596ecb9 | [
"Apache-2.0"
]
| permissive | XiaogegeChen/Android-NEUWaiter | 5d72281f7340a8d2a45435412010fa7ede114283 | f64124b0deda8525aa6c4555725e61a840c95ef5 | refs/heads/master | 2020-05-03T14:00:30.292337 | 2019-05-28T13:31:14 | 2019-05-28T13:31:14 | 178,666,299 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 882 | java | package cn.neuwljs.module_d.view;
import cn.neuwljs.common.base.IBaseView;
import cn.neuwljs.login.User;
public interface IFragmentDCView extends IBaseView {
/**
* 显示请求登陆对话框
*/
void showApply();
/**
* 关闭请求登陆对话框
*/
void dismissApply();
/**
* 显示用户的基本信息
* @param user 用户bean
*/
void showUserInfo(User user);
/**
* 显示上传对话框
*/
void showLoading();
/**
* 关闭上传对话框
*/
void dismissLoading();
/**
* 显示上传失败对话框
*/
void showFailure();
/**
* 关闭上传失败对话框
*/
void dismissFailure();
/**
* 显示上传成功对话框
*/
void showSuccess();
/**
* 关闭上传成功对话框
*/
void dismissSuccess();
}
| [
"[email protected]"
]
| |
badd1f90b05a5e53f2debc01ef6d0be902042197 | 9b64a0b050ef3b3b56902bac71ce5a8f810c6f4d | /torque-generator/src/test/java/org/apache/torque/Test.java | 760f81b172478945a34fc1befa478c0d2a25b2be | [
"Apache-2.0"
]
| permissive | yin-bp/torque | 6e9f32125a59d13a06b5589acc4b43543e7998c1 | dd270c17d23d529e008dacfb5532309a9ab86283 | refs/heads/master | 2023-08-23T07:05:26.052960 | 2023-08-08T07:53:49 | 2023-08-08T07:53:49 | 8,844,690 | 0 | 0 | null | 2021-04-18T10:17:04 | 2013-03-18T01:23:38 | Java | UTF-8 | Java | false | false | 364 | java | package org.apache.torque;
import org.frameworkset.persitent.util.SQLUtil;
public class Test {
public static void testEtlTlp(){
SQLUtil sqlUtilInsert = SQLUtil.getInstance("schema/test.xml");
String sql = sqlUtilInsert.getSQL("test_mq_rule");
System.out.println(sql);
}
public static void main(String args[])
{
testEtlTlp();
}
}
| [
"[email protected]"
]
| |
97a142435f6a17d6d2751844c07317ba54181100 | 4ebe8ffc9f789ddfa1001a50efa7654f1d838831 | /buder_qijian_view/app/src/main/java/com/test/customview/SpiderView.java | 11dbed87b964b8e81d7482ac25f736e3b90a123d | []
| no_license | whysqwhw/CustomView | 0b42cb6d0d78356c174827078668442bed37dff6 | 79f38ab413e3d9e5e29c01df11b07ae180ac5d0a | refs/heads/master | 2023-03-18T01:24:45.496530 | 2020-05-05T06:35:16 | 2020-05-05T06:35:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,788 | java | package com.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.Rect;
import android.util.AttributeSet;
import android.view.View;
import androidx.annotation.Nullable;
public class SpiderView extends View {
//正N边形边线
Paint edgesPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
//中心发出的射线
Paint radialLinesPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
//等级线
Paint rankPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
//等级文字
Paint rankTextPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
//自定义view的宽高
float width, height;
//战力值数据
private double[] rankData = {0.5, 0.2, 0.8, 0.6, 0.9, 0.6, 0.2, 0.8, 0.4, 0.9, 0.1, 0.7, 0.2, 0.9};
//战力种类
private String[] rankText = {"击杀", "助攻", "金钱", "物理", "防御", "魔法", "装备", "血量", "魔抗", "穿甲", "综合", "装甲", "魔抗"};
//N边形的边数
int edges = 7;
//根据边数求得每个顶点对应的度数
double degrees = 360 / edges;
//根据度数,转化为弧度
double hudu = (Math.PI / 180) * degrees;
{
edgesPaint.setStyle(Paint.Style.STROKE);
edgesPaint.setStrokeWidth(3);
edgesPaint.setColor(Color.BLACK);
radialLinesPaint.setStyle(Paint.Style.STROKE);
radialLinesPaint.setStrokeWidth(2);
radialLinesPaint.setColor(Color.BLUE);
rankPaint.setStyle(Paint.Style.STROKE);
rankPaint.setStrokeWidth(10);
rankPaint.setColor(Color.RED);
rankTextPaint.setStyle(Paint.Style.FILL);
rankTextPaint.setStrokeWidth(1);
rankTextPaint.setColor(Color.BLACK);
rankTextPaint.setTextSize(50);
}
public SpiderView(Context context) {
super(context);
}
public SpiderView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public SpiderView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
width = w;
height = h;
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
//正N边形个数
edgesPaint.setStyle(Paint.Style.FILL);
edgesPaint.setColor(Color.parseColor("#c3e3e5"));
drawPolygon(canvas, 400.0F);
edgesPaint.setColor(Color.parseColor("#85cdd4"));
drawPolygon(canvas, 300.0F);
edgesPaint.setColor(Color.parseColor("#48afb6"));
drawPolygon(canvas, 200.0F);
edgesPaint.setColor(Color.parseColor("#22737b"));
drawPolygon(canvas, 100.0F);
//从中心点到各个顶点的射线
drawLines(canvas, 400);
//画战力值区域
drawRanks(canvas, 400);
//画战力文字
drawRankText(canvas, 400);
}
/**
* 画战力值区域
*
* @param canvas
* @param radius
*/
private void drawRanks(Canvas canvas, float radius) {
Path path = new Path();
float endx, endy;
for (int i = 0; i < edges; i++) {
endx = (float) (width / 2 + radius * Math.sin(hudu * i) * rankData[i]);
endy = (float) (height / 2 - radius * Math.cos(hudu * i) * rankData[i]);
if (i == 0) {
path.moveTo(width / 2, (float) (height / 2 - radius * 0.5));
} else {
path.lineTo(endx, endy);
}
}
path.close();
canvas.drawPath(path, rankPaint);
}
/**
* 画战力文字
*
* @param canvas
* @param radius
*/
private void drawRankText(Canvas canvas, float radius) {
float endx, endy;
Rect bounds = new Rect();
for (int i = 0; i < edges; i++) {
rankTextPaint.getTextBounds(rankText[i], 0, rankText[i].length(), bounds);
endx = (float) (width / 2 + radius * 1.2 * Math.sin(hudu * i) - (bounds.right - bounds.left) / 2);
endy = (float) (height / 2 - radius * 1.1 * Math.cos(hudu * i) + (bounds.bottom - bounds.top) / 2);
canvas.drawText(rankText[i], endx, endy, rankTextPaint);
}
}
/**
* 从中心点到各个顶点的射线
*
* @param canvas
* @param radius
*/
private void drawLines(Canvas canvas, float radius) {
//从中心点出发
Path path = new Path();
path.moveTo(width / 2, height / 2);
float endx, endy;
for (int i = 0; i < edges; i++) {
endx = (float) (width / 2 + radius * Math.sin(hudu * i));
endy = (float) (height / 2 - radius * Math.cos(hudu * i));
path.lineTo(endx, endy);
canvas.drawPath(path, radialLinesPaint);
//画完一条线后,重置起点在中心点,再画下一条直线
endx = width / 2;
endy = height / 2;
path.moveTo(endx, endy);
}
}
/**
* 画正N边形
*
* @param canvas
* @param radius
*/
private void drawPolygon(Canvas canvas, float radius) {
//从上面的顶点出发
Path path = new Path();
path.moveTo(width / 2, height / 2 - radius);
float endx, endy;
for (int i = 0; i < edges; i++) {
endx = (float) (width / 2 + radius * Math.sin(hudu * i));
endy = (float) (height / 2 - radius * Math.cos(hudu * i));
path.lineTo(endx, endy);
}
path.close();
canvas.drawPath(path, edgesPaint);
}
}
| [
"[email protected]"
]
| |
aa4e90346ed7c14f3575764e29d104652582f36e | 7143f3084f852ec7f38bdbbce6b2ea37428cf74b | /src/server/Shared.java | d8e80b2a3e7dd2e02e398c28ad191aaa70de0c8c | []
| no_license | Necromeat/ClassChat | 39ce6c81211d704b5a04fa6834a12ef11c33c863 | 4d4d1b13717ada9daae24099d8b57d3bb6b43179 | refs/heads/master | 2021-01-19T22:01:51.852567 | 2013-09-18T19:35:27 | 2013-09-18T19:35:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 226 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package server;
/**
*
* @author Andrew
*/
public class Shared {
static final String connect="";
}
| [
"[email protected]"
]
| |
fd0379c022cecaac01ab84be1a5332a50f01a1d0 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_532ed56d26d4a35100f4b5067c3fb05480a58f36/Application/2_532ed56d26d4a35100f4b5067c3fb05480a58f36_Application_s.java | 3b68277e2ff14d74ece9c0883fde005e494f668a | []
| no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 740 | java | package controllers;
import play.*;
import play.mvc.*;
public class Application extends Controller {
public static void index()
{
render();
}
public static void webApp()
{
render();
}
public static void webSite()
{
render();
}
public static void company()
{
render();
}
public static void ref()
{
render();
}
public static void contact()
{
render();
}
public static void phoenixProject()
{
render();
}
public static void appFacebook()
{
render();
}
public static void cloud()
{
render();
}
}
| [
"[email protected]"
]
| |
aea7a1c9e1d56eaca55a17d5a61a1503391aadb1 | 76209b9cec9aba965d4dfc673773d300a4161c99 | /client/src/main/java/com/dottydingo/hyperion/client/MultiMap.java | d422413c42830194113b2584c631678b9546ead1 | [
"Apache-2.0"
]
| permissive | tharrisx1/hyperion | 7724b1ae65c7263fb1e2838956705f1bfdca6add | dbd9d07528991419cee2883d2826b79f92624157 | refs/heads/master | 2020-04-30T20:10:27.534887 | 2018-08-09T15:26:00 | 2018-08-09T15:26:00 | 177,058,709 | 0 | 0 | Apache-2.0 | 2019-03-22T02:34:43 | 2019-03-22T02:34:42 | null | UTF-8 | Java | false | false | 3,484 | java | package com.dottydingo.hyperion.client;
import java.util.*;
/**
* A map that can hold multiple values for the same key.
*/
public class MultiMap
{
private Map<String,List<String>> map = new TreeMap<String,List<String>>(new CaseInsensitiveComparator());
/**
* Return the values stored for the supplied key
* @param key The key
* @return The values stored for this key, null if there are no values stored
*/
public List<String> get(String key)
{
if(key == null)
throw new IllegalArgumentException("Null keys not allowed.");
return map.get(key);
}
/**
* Return the first value stored for the supplied key
* @param key The key
* @return the first value stored for the key, null if there are no values stored
*/
public String getFirst(String key)
{
if(key == null)
throw new IllegalArgumentException("Null keys not allowed.");
List<String> vals = map.get(key);
if(vals == null || vals.size() == 0)
return null;
return vals.get(0);
}
/**
* Set a value for the supplied key. This will overwrite any values that are currently stored for this key.
* @param key The key
* @param value The value to store
*/
public void set(String key, String value)
{
if(key == null)
throw new IllegalArgumentException("Null keys not allowed.");
if(value == null)
throw new IllegalArgumentException("Null values not allowed.");
ArrayList<String> vals = new ArrayList<String>();
vals.add(value);
map.put(key,vals);
}
/**
* Add a value for the supplied key. This will add the value to any existing values stored for this key.
* @param key the key
* @param value The value
*/
public void add(String key, String value)
{
if(key == null)
throw new IllegalArgumentException("Null keys not allowed.");
if(value == null)
throw new IllegalArgumentException("Null values not allowed.");
List<String> vals = map.get(key);
if(vals == null)
{
vals = new ArrayList<String>();
map.put(key,vals);
}
vals.add(value);
}
/**
* Return the keys stored in this map
* @return The keys
*/
public Set<String> getKeys()
{
return map.keySet();
}
/**
* Return the entry set for this map
* @return The entry set
*/
public Set<Map.Entry<String,List<String>>> entries()
{
return map.entrySet();
}
/**
* Merge the values in the specified map with the values in this map and return the results in a new map.
* @param multiMap The map to merge
* @return A new map containing the merged values
*/
public MultiMap merge(MultiMap multiMap)
{
MultiMap result = new MultiMap();
result.map.putAll(this.map);
result.map.putAll(multiMap.map);
return result;
}
/**
* Return a flag indicating if the map is empty
* @return True if empty, false otherwise
*/
public boolean isEmpty()
{
return map.isEmpty();
}
private class CaseInsensitiveComparator implements Comparator<String>
{
@Override
public int compare(String o1, String o2)
{
return o1.toLowerCase().compareTo(o2.toLowerCase());
}
}
}
| [
"[email protected]"
]
| |
9a7bd4df5a1f339c560d42ee9c1d309813391a69 | e70fdfa84c74b39f62ee3dfc612567a258661e6b | /App1/App1.Android/obj/Debug/android/src/android/support/v7/recyclerview/R.java | b28e6fcae1c03c4d248f97098d51d746ef578c1c | []
| no_license | Wallacewss2033/iPlant-xamarin | 6a703f5c5f635ceca0c74ef0a901630cc60026ee | b89ea094edade4dde426fe8f6e610dcfb0dec251 | refs/heads/master | 2023-04-02T00:07:24.178740 | 2021-03-22T01:50:08 | 2021-03-22T01:50:08 | 350,168,566 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 631,994 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.v7.recyclerview;
public final class R {
public static final class anim {
public static final int abc_fade_in=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_fab_in=0x7f04000c;
public static final int design_fab_out=0x7f04000d;
public static final int design_snackbar_in=0x7f04000e;
public static final int design_snackbar_out=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=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=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 actionBarPopupTheme=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>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010054;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=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 actionDropDownStyle=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 actionLayout=0x7f0100cc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010061;
/** <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=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 actionModeBackground=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=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 actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=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 actionModeStyle=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 actionModeWebSearchDrawable=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 actionOverflowButtonStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f010058;
/** <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=0x7f0100ce;
/** <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=0x7f0100cd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 alertDialogButtonGroupStyle=0x7f0100a7;
/** <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=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a9;
/** <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=0x7f0100bc;
/** <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=0x7f0100bd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100c4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010028;
/** <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=0x7f01002a;
/** <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=0x7f010029;
/** <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=0x7f010101;
/** <p>Must be one of the following constant values.</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=0x7f010102;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100c6;
/** <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=0x7f01012c;
/** <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=0x7f010109;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010135;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010108;
/** <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=0x7f01010a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 borderlessButtonStyle=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonBarButtonStyle=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 buttonBarNegativeButtonStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f01007b;
/** <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=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=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 buttonStyleSmall=0x7f0100b0;
/** <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=0x7f0100be;
/** <p>Must be one of the following constant values.</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=0x7f0100bf;
/** <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=0x7f010011;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010012;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010013;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010014;
/** <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=0x7f010016;
/** <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=0x7f010015;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 closeIcon=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 closeItemLayout=0x7f01003a;
/** <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=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 collapseIcon=0x7f0100f7;
/** <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=0x7f010117;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010111;
/** <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=0x7f0100c0;
/** <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=0x7f01009e;
/** <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=0x7f0100a5;
/** <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=0x7f0100a2;
/** <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=0x7f0100a0;
/** <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=0x7f0100a1;
/** <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=0x7f01009f;
/** <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=0x7f01009c;
/** <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=0x7f01009d;
/** <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=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 commitIcon=0x7f0100de;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010033;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010034;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010035;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010032;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010036;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 contentPaddingBottom=0x7f01001b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingLeft=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 contentPaddingRight=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 contentPaddingTop=0x7f01001a;
/** <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=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 controlBackground=0x7f0100a4;
/** <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=0x7f01014b;
/** <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=0x7f01014c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01014e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01014d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002b;
/** <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=0x7f0100d8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=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 dialogTheme=0x7f010073;
/** <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=0x7f010021;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=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 dividerHorizontal=0x7f010081;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010080;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 drawerArrowStyle=0x7f01001c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010093;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 editTextBackground=0x7f010088;
/** <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=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010038;
/** <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=0x7f010149;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01014a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003c;
/** <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=0x7f010103;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010118;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 expandedTitleTextAppearance=0x7f010110;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010010;
/** <p>Must be one of the following constant values.</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=0x7f010128;
/** <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=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 gapBetweenBars=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010133;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001d;
/** <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=0x7f010031;
/** <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=0x7f01014f;
/** <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=0x7f010148;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010147;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 homeLayout=0x7f01002c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 iconifiedByDefault=0x7f0100d6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 indeterminateProgressStyle=0x7f01002e;
/** <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=0x7f01003b;
/** <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=0x7f010134;
/** <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=0x7f01001e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010131;
/** <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=0x7f01012f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010030;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 itemTextColor=0x7f010130;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=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 layout=0x7f0100d5;
/** <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=0x7f01011f;
/** <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=0x7f010121;
/** <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=0x7f01011e;
/** <p>Must be one of the following constant values.</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=0x7f01011a;
/** <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=0x7f01011b;
/** <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=0x7f010123;
/** <p>Must be one of the following constant values.</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=0x7f010122;
/** <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=0x7f010120;
/** <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=0x7f010106;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listItemLayout=0x7f010041;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=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 listPopupWindowStyle=0x7f010094;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01008e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010090;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01008f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010091;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010092;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010026;
/** <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=0x7f0100fb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010136;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f5;
/** <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=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 mediaRouteButtonStyle=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 mediaRouteCloseDrawable=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 mediaRouteControlPanelThemeOverlay=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 mediaRouteDefaultIconDrawable=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 mediaRoutePauseDrawable=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 mediaRoutePlayDrawable=0x7f01000a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerGroupIconDrawable=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 mediaRouteSpeakerIconDrawable=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 mediaRouteStopDrawable=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 mediaRouteTheme=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 mediaRouteTvIconDrawable=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 menu=0x7f01012e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003f;
/** <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=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100f9;
/** <p>Must be one of the following constant values.</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=0x7f010020;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=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 paddingEnd=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 paddingTopNoTitle=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 panelBackground=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 panelMenuListTheme=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 panelMenuListWidth=0x7f010099;
/** <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=0x7f010152;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010151;
/** <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=0x7f010150;
/** <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=0x7f010153;
/** <p>Must be one of the following constant values.</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=0x7f010154;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 popupTheme=0x7f010039;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010086;
/** <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=0x7f0100cf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010129;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 queryBackground=0x7f0100e0;
/** <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=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 radioButtonStyle=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 ratingBarStyle=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b7;
/** <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=0x7f010127;
/** <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=0x7f010116;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010115;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 selectableItemBackground=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f01007e;
/** <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=0x7f0100cb;
/** <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=0x7f0100c9;
/** <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=0x7f0100ec;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f010042;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010040;
/** <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=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 spinnerDropDownItemStyle=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 spinnerStyle=0x7f0100b9;
/** <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=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 srcCompat=0x7f010043;
/** <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=0x7f0100d2;
/** <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=0x7f010104;
/** <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=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011d;
/** <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=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=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 submitBackground=0x7f0100e1;
/** <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=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 subtitleTextAppearance=0x7f0100ee;
/** <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=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 subtitleTextStyle=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 suggestionRowLayout=0x7f0100df;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100e9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ea;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01013a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010139;
/** <p>Must be one of the following constant values.</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=0x7f01013c;
/** <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=0x7f010137;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010138;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 tabMinWidth=0x7f01013d;
/** <p>Must be one of the following constant values.</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=0x7f01013b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010146;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010145;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 tabPaddingStart=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 tabPaddingTop=0x7f010143;
/** <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=0x7f010141;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01013f;
/** <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=0x7f010140;
/** <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=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 textAppearanceListItem=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 textAppearanceListItemSecondary=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 textAppearanceListItemSmall=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 textAppearancePopupMenuHeader=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 textAppearanceSearchResultSubtitle=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 textAppearanceSearchResultTitle=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010071;
/** <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=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 textColorError=0x7f010126;
/** <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=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100e7;
/** <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=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 thumbTintMode=0x7f0100e3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010046;
/** <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=0x7f010047;
/** <p>Must be one of the following constant values.</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=0x7f010048;
/** <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=0x7f010044;
/** <p>Must be one of the following constant values.</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=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 title=0x7f01001f;
/** <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=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ef;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100f0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ed;
/** <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=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarStyle=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 track=0x7f0100e4;
/** <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=0x7f0100e5;
/** <p>Must be one of the following constant values.</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=0x7f0100e6;
/** <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=0x7f01012b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100dd;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01004a;
/** <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=0x7f01004c;
/** <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=0x7f01004d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010051;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f01004f;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f01004e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010050;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010052;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010053;
/** <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=0x7f01004b;
}
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=0x7f0c004d;
public static final int abc_background_cache_hint_selector_material_light=0x7f0c004e;
public static final int abc_btn_colored_borderless_text_material=0x7f0c004f;
public static final int abc_btn_colored_text_material=0x7f0c0050;
public static final int abc_color_highlight_material=0x7f0c0051;
public static final int abc_hint_foreground_material_dark=0x7f0c0052;
public static final int abc_hint_foreground_material_light=0x7f0c0053;
public static final int abc_input_method_navigation_guard=0x7f0c0005;
public static final int abc_primary_text_disable_only_material_dark=0x7f0c0054;
public static final int abc_primary_text_disable_only_material_light=0x7f0c0055;
public static final int abc_primary_text_material_dark=0x7f0c0056;
public static final int abc_primary_text_material_light=0x7f0c0057;
public static final int abc_search_url_text=0x7f0c0058;
public static final int abc_search_url_text_normal=0x7f0c0006;
public static final int abc_search_url_text_pressed=0x7f0c0007;
public static final int abc_search_url_text_selected=0x7f0c0008;
public static final int abc_secondary_text_material_dark=0x7f0c0059;
public static final int abc_secondary_text_material_light=0x7f0c005a;
public static final int abc_tint_btn_checkable=0x7f0c005b;
public static final int abc_tint_default=0x7f0c005c;
public static final int abc_tint_edittext=0x7f0c005d;
public static final int abc_tint_seek_thumb=0x7f0c005e;
public static final int abc_tint_spinner=0x7f0c005f;
public static final int abc_tint_switch_thumb=0x7f0c0060;
public static final int abc_tint_switch_track=0x7f0c0061;
public static final int accent=0x7f0c004c;
public static final int accent_material_dark=0x7f0c0009;
public static final int accent_material_light=0x7f0c000a;
public static final int background_floating_material_dark=0x7f0c000b;
public static final int background_floating_material_light=0x7f0c000c;
public static final int background_material_dark=0x7f0c000d;
public static final int background_material_light=0x7f0c000e;
public static final int bright_foreground_disabled_material_dark=0x7f0c000f;
public static final int bright_foreground_disabled_material_light=0x7f0c0010;
public static final int bright_foreground_inverse_material_dark=0x7f0c0011;
public static final int bright_foreground_inverse_material_light=0x7f0c0012;
public static final int bright_foreground_material_dark=0x7f0c0013;
public static final int bright_foreground_material_light=0x7f0c0014;
public static final int button_material_dark=0x7f0c0015;
public static final int button_material_light=0x7f0c0016;
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=0x7f0c003f;
public static final int design_error=0x7f0c0062;
public static final int design_fab_shadow_end_color=0x7f0c0040;
public static final int design_fab_shadow_mid_color=0x7f0c0041;
public static final int design_fab_shadow_start_color=0x7f0c0042;
public static final int design_fab_stroke_end_inner_color=0x7f0c0043;
public static final int design_fab_stroke_end_outer_color=0x7f0c0044;
public static final int design_fab_stroke_top_inner_color=0x7f0c0045;
public static final int design_fab_stroke_top_outer_color=0x7f0c0046;
public static final int design_snackbar_background_color=0x7f0c0047;
public static final int design_textinput_error_color_dark=0x7f0c0048;
public static final int design_textinput_error_color_light=0x7f0c0049;
public static final int design_tint_password_toggle=0x7f0c0063;
public static final int dim_foreground_disabled_material_dark=0x7f0c0017;
public static final int dim_foreground_disabled_material_light=0x7f0c0018;
public static final int dim_foreground_material_dark=0x7f0c0019;
public static final int dim_foreground_material_light=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=0x7f0c0004;
public static final int notification_icon_bg_color=0x7f0c002b;
public static final int notification_material_background_media_default_color=0x7f0c002c;
public static final int primary=0x7f0c004a;
public static final int primaryDark=0x7f0c004b;
public static final int primary_dark_material_dark=0x7f0c002d;
public static final int primary_dark_material_light=0x7f0c002e;
public static final int primary_material_dark=0x7f0c002f;
public static final int primary_material_light=0x7f0c0030;
public static final int primary_text_default_material_dark=0x7f0c0031;
public static final int primary_text_default_material_light=0x7f0c0032;
public static final int primary_text_disabled_material_dark=0x7f0c0033;
public static final int primary_text_disabled_material_light=0x7f0c0034;
public static final int ripple_material_dark=0x7f0c0035;
public static final int ripple_material_light=0x7f0c0036;
public static final int secondary_text_default_material_dark=0x7f0c0037;
public static final int secondary_text_default_material_light=0x7f0c0038;
public static final int secondary_text_disabled_material_dark=0x7f0c0039;
public static final int secondary_text_disabled_material_light=0x7f0c003a;
public static final int switch_thumb_disabled_material_dark=0x7f0c003b;
public static final int switch_thumb_disabled_material_light=0x7f0c003c;
public static final int switch_thumb_material_dark=0x7f0c0064;
public static final int switch_thumb_material_light=0x7f0c0065;
public static final int switch_thumb_normal_material_dark=0x7f0c003d;
public static final int switch_thumb_normal_material_light=0x7f0c003e;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f070018;
public static final int abc_action_bar_content_inset_with_nav=0x7f070019;
public static final int abc_action_bar_default_height_material=0x7f07000d;
public static final int abc_action_bar_default_padding_end_material=0x7f07001a;
public static final int abc_action_bar_default_padding_start_material=0x7f07001b;
public static final int abc_action_bar_elevation_material=0x7f070021;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070022;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070023;
public static final int abc_action_bar_overflow_padding_start_material=0x7f070024;
public static final int abc_action_bar_progress_bar_size=0x7f07000e;
public static final int abc_action_bar_stacked_max_height=0x7f070025;
public static final int abc_action_bar_stacked_tab_max_width=0x7f070026;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070027;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f070028;
public static final int abc_action_button_min_height_material=0x7f070029;
public static final int abc_action_button_min_width_material=0x7f07002a;
public static final int abc_action_button_min_width_overflow_material=0x7f07002b;
public static final int abc_alert_dialog_button_bar_height=0x7f07000c;
public static final int abc_button_inset_horizontal_material=0x7f07002c;
public static final int abc_button_inset_vertical_material=0x7f07002d;
public static final int abc_button_padding_horizontal_material=0x7f07002e;
public static final int abc_button_padding_vertical_material=0x7f07002f;
public static final int abc_cascading_menus_min_smallest_width=0x7f070030;
public static final int abc_config_prefDialogWidth=0x7f070011;
public static final int abc_control_corner_material=0x7f070031;
public static final int abc_control_inset_material=0x7f070032;
public static final int abc_control_padding_material=0x7f070033;
public static final int abc_dialog_fixed_height_major=0x7f070012;
public static final int abc_dialog_fixed_height_minor=0x7f070013;
public static final int abc_dialog_fixed_width_major=0x7f070014;
public static final int abc_dialog_fixed_width_minor=0x7f070015;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070034;
public static final int abc_dialog_list_padding_top_no_title=0x7f070035;
public static final int abc_dialog_min_width_major=0x7f070016;
public static final int abc_dialog_min_width_minor=0x7f070017;
public static final int abc_dialog_padding_material=0x7f070036;
public static final int abc_dialog_padding_top_material=0x7f070037;
public static final int abc_dialog_title_divider_material=0x7f070038;
public static final int abc_disabled_alpha_material_dark=0x7f070039;
public static final int abc_disabled_alpha_material_light=0x7f07003a;
public static final int abc_dropdownitem_icon_width=0x7f07003b;
public static final int abc_dropdownitem_text_padding_left=0x7f07003c;
public static final int abc_dropdownitem_text_padding_right=0x7f07003d;
public static final int abc_edit_text_inset_bottom_material=0x7f07003e;
public static final int abc_edit_text_inset_horizontal_material=0x7f07003f;
public static final int abc_edit_text_inset_top_material=0x7f070040;
public static final int abc_floating_window_z=0x7f070041;
public static final int abc_list_item_padding_horizontal_material=0x7f070042;
public static final int abc_panel_menu_list_width=0x7f070043;
public static final int abc_progress_bar_height_material=0x7f070044;
public static final int abc_search_view_preferred_height=0x7f070045;
public static final int abc_search_view_preferred_width=0x7f070046;
public static final int abc_seekbar_track_background_height_material=0x7f070047;
public static final int abc_seekbar_track_progress_height_material=0x7f070048;
public static final int abc_select_dialog_padding_start_material=0x7f070049;
public static final int abc_switch_padding=0x7f07001d;
public static final int abc_text_size_body_1_material=0x7f07004a;
public static final int abc_text_size_body_2_material=0x7f07004b;
public static final int abc_text_size_button_material=0x7f07004c;
public static final int abc_text_size_caption_material=0x7f07004d;
public static final int abc_text_size_display_1_material=0x7f07004e;
public static final int abc_text_size_display_2_material=0x7f07004f;
public static final int abc_text_size_display_3_material=0x7f070050;
public static final int abc_text_size_display_4_material=0x7f070051;
public static final int abc_text_size_headline_material=0x7f070052;
public static final int abc_text_size_large_material=0x7f070053;
public static final int abc_text_size_medium_material=0x7f070054;
public static final int abc_text_size_menu_header_material=0x7f070055;
public static final int abc_text_size_menu_material=0x7f070056;
public static final int abc_text_size_small_material=0x7f070057;
public static final int abc_text_size_subhead_material=0x7f070058;
public static final int abc_text_size_subtitle_material_toolbar=0x7f07000f;
public static final int abc_text_size_title_material=0x7f070059;
public static final int abc_text_size_title_material_toolbar=0x7f070010;
public static final int cardview_compat_inset_shadow=0x7f070009;
public static final int cardview_default_elevation=0x7f07000a;
public static final int cardview_default_radius=0x7f07000b;
public static final int design_appbar_elevation=0x7f070076;
public static final int design_bottom_navigation_active_item_max_width=0x7f070077;
public static final int design_bottom_navigation_active_text_size=0x7f070078;
public static final int design_bottom_navigation_elevation=0x7f070079;
public static final int design_bottom_navigation_height=0x7f07007a;
public static final int design_bottom_navigation_item_max_width=0x7f07007b;
public static final int design_bottom_navigation_item_min_width=0x7f07007c;
public static final int design_bottom_navigation_margin=0x7f07007d;
public static final int design_bottom_navigation_shadow_height=0x7f07007e;
public static final int design_bottom_navigation_text_size=0x7f07007f;
public static final int design_bottom_sheet_modal_elevation=0x7f070080;
public static final int design_bottom_sheet_peek_height_min=0x7f070081;
public static final int design_fab_border_width=0x7f070082;
public static final int design_fab_elevation=0x7f070083;
public static final int design_fab_image_size=0x7f070084;
public static final int design_fab_size_mini=0x7f070085;
public static final int design_fab_size_normal=0x7f070086;
public static final int design_fab_translation_z_pressed=0x7f070087;
public static final int design_navigation_elevation=0x7f070088;
public static final int design_navigation_icon_padding=0x7f070089;
public static final int design_navigation_icon_size=0x7f07008a;
public static final int design_navigation_max_width=0x7f07006e;
public static final int design_navigation_padding_bottom=0x7f07008b;
public static final int design_navigation_separator_vertical_padding=0x7f07008c;
public static final int design_snackbar_action_inline_max_width=0x7f07006f;
public static final int design_snackbar_background_corner_radius=0x7f070070;
public static final int design_snackbar_elevation=0x7f07008d;
public static final int design_snackbar_extra_spacing_horizontal=0x7f070071;
public static final int design_snackbar_max_width=0x7f070072;
public static final int design_snackbar_min_width=0x7f070073;
public static final int design_snackbar_padding_horizontal=0x7f07008e;
public static final int design_snackbar_padding_vertical=0x7f07008f;
public static final int design_snackbar_padding_vertical_2lines=0x7f070074;
public static final int design_snackbar_text_size=0x7f070090;
public static final int design_tab_max_width=0x7f070091;
public static final int design_tab_scrollable_min_width=0x7f070075;
public static final int design_tab_text_size=0x7f070092;
public static final int design_tab_text_size_2line=0x7f070093;
public static final int disabled_alpha_material_dark=0x7f07005a;
public static final int disabled_alpha_material_light=0x7f07005b;
public static final int highlight_alpha_material_colored=0x7f07005c;
public static final int highlight_alpha_material_dark=0x7f07005d;
public static final int highlight_alpha_material_light=0x7f07005e;
public static final int hint_alpha_material_dark=0x7f07005f;
public static final int hint_alpha_material_light=0x7f070060;
public static final int hint_pressed_alpha_material_dark=0x7f070061;
public static final int hint_pressed_alpha_material_light=0x7f070062;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070000;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070001;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070002;
public static final int mr_controller_volume_group_list_item_height=0x7f070003;
public static final int mr_controller_volume_group_list_item_icon_size=0x7f070004;
public static final int mr_controller_volume_group_list_max_height=0x7f070005;
public static final int mr_controller_volume_group_list_padding_top=0x7f070008;
public static final int mr_dialog_fixed_width_major=0x7f070006;
public static final int mr_dialog_fixed_width_minor=0x7f070007;
public static final int notification_action_icon_size=0x7f070063;
public static final int notification_action_text_size=0x7f070064;
public static final int notification_big_circle_margin=0x7f070065;
public static final int notification_content_margin_start=0x7f07001e;
public static final int notification_large_icon_height=0x7f070066;
public static final int notification_large_icon_width=0x7f070067;
public static final int notification_main_column_padding_top=0x7f07001f;
public static final int notification_media_narrow_margin=0x7f070020;
public static final int notification_right_icon_size=0x7f070068;
public static final int notification_right_side_padding_top=0x7f07001c;
public static final int notification_small_icon_background_padding=0x7f070069;
public static final int notification_small_icon_size_as_large=0x7f07006a;
public static final int notification_subtext_size=0x7f07006b;
public static final int notification_top_pad=0x7f07006c;
public static final int notification_top_pad_large_text=0x7f07006d;
}
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 alface=0x7f020053;
public static final int apagar_cadastrar=0x7f020054;
public static final int avd_hide_password=0x7f020055;
public static final int avd_hide_password_1=0x7f020124;
public static final int avd_hide_password_2=0x7f020125;
public static final int avd_hide_password_3=0x7f020126;
public static final int avd_show_password=0x7f020056;
public static final int avd_show_password_1=0x7f020127;
public static final int avd_show_password_2=0x7f020128;
public static final int avd_show_password_3=0x7f020129;
public static final int banner=0x7f020057;
public static final int btncad=0x7f020058;
public static final int btncomu=0x7f020059;
public static final int btnconf=0x7f02005a;
public static final int btniniciar=0x7f02005b;
public static final int btntutorial=0x7f02005c;
public static final int camera=0x7f02005d;
public static final int coentro=0x7f02005e;
public static final int couve=0x7f02005f;
public static final int design_bottom_navigation_item_background=0x7f020060;
public static final int design_fab_background=0x7f020061;
public static final int design_ic_visibility=0x7f020062;
public static final int design_ic_visibility_off=0x7f020063;
public static final int design_password_eye=0x7f020064;
public static final int design_snackbar_background=0x7f020065;
public static final int ic_audiotrack_dark=0x7f020066;
public static final int ic_audiotrack_light=0x7f020067;
public static final int ic_dialog_close_dark=0x7f020068;
public static final int ic_dialog_close_light=0x7f020069;
public static final int ic_group_collapse_00=0x7f02006a;
public static final int ic_group_collapse_01=0x7f02006b;
public static final int ic_group_collapse_02=0x7f02006c;
public static final int ic_group_collapse_03=0x7f02006d;
public static final int ic_group_collapse_04=0x7f02006e;
public static final int ic_group_collapse_05=0x7f02006f;
public static final int ic_group_collapse_06=0x7f020070;
public static final int ic_group_collapse_07=0x7f020071;
public static final int ic_group_collapse_08=0x7f020072;
public static final int ic_group_collapse_09=0x7f020073;
public static final int ic_group_collapse_10=0x7f020074;
public static final int ic_group_collapse_11=0x7f020075;
public static final int ic_group_collapse_12=0x7f020076;
public static final int ic_group_collapse_13=0x7f020077;
public static final int ic_group_collapse_14=0x7f020078;
public static final int ic_group_collapse_15=0x7f020079;
public static final int ic_group_expand_00=0x7f02007a;
public static final int ic_group_expand_01=0x7f02007b;
public static final int ic_group_expand_02=0x7f02007c;
public static final int ic_group_expand_03=0x7f02007d;
public static final int ic_group_expand_04=0x7f02007e;
public static final int ic_group_expand_05=0x7f02007f;
public static final int ic_group_expand_06=0x7f020080;
public static final int ic_group_expand_07=0x7f020081;
public static final int ic_group_expand_08=0x7f020082;
public static final int ic_group_expand_09=0x7f020083;
public static final int ic_group_expand_10=0x7f020084;
public static final int ic_group_expand_11=0x7f020085;
public static final int ic_group_expand_12=0x7f020086;
public static final int ic_group_expand_13=0x7f020087;
public static final int ic_group_expand_14=0x7f020088;
public static final int ic_group_expand_15=0x7f020089;
public static final int ic_media_pause_dark=0x7f02008a;
public static final int ic_media_pause_light=0x7f02008b;
public static final int ic_media_play_dark=0x7f02008c;
public static final int ic_media_play_light=0x7f02008d;
public static final int ic_media_stop_dark=0x7f02008e;
public static final int ic_media_stop_light=0x7f02008f;
public static final int ic_mr_button_connected_00_dark=0x7f020090;
public static final int ic_mr_button_connected_00_light=0x7f020091;
public static final int ic_mr_button_connected_01_dark=0x7f020092;
public static final int ic_mr_button_connected_01_light=0x7f020093;
public static final int ic_mr_button_connected_02_dark=0x7f020094;
public static final int ic_mr_button_connected_02_light=0x7f020095;
public static final int ic_mr_button_connected_03_dark=0x7f020096;
public static final int ic_mr_button_connected_03_light=0x7f020097;
public static final int ic_mr_button_connected_04_dark=0x7f020098;
public static final int ic_mr_button_connected_04_light=0x7f020099;
public static final int ic_mr_button_connected_05_dark=0x7f02009a;
public static final int ic_mr_button_connected_05_light=0x7f02009b;
public static final int ic_mr_button_connected_06_dark=0x7f02009c;
public static final int ic_mr_button_connected_06_light=0x7f02009d;
public static final int ic_mr_button_connected_07_dark=0x7f02009e;
public static final int ic_mr_button_connected_07_light=0x7f02009f;
public static final int ic_mr_button_connected_08_dark=0x7f0200a0;
public static final int ic_mr_button_connected_08_light=0x7f0200a1;
public static final int ic_mr_button_connected_09_dark=0x7f0200a2;
public static final int ic_mr_button_connected_09_light=0x7f0200a3;
public static final int ic_mr_button_connected_10_dark=0x7f0200a4;
public static final int ic_mr_button_connected_10_light=0x7f0200a5;
public static final int ic_mr_button_connected_11_dark=0x7f0200a6;
public static final int ic_mr_button_connected_11_light=0x7f0200a7;
public static final int ic_mr_button_connected_12_dark=0x7f0200a8;
public static final int ic_mr_button_connected_12_light=0x7f0200a9;
public static final int ic_mr_button_connected_13_dark=0x7f0200aa;
public static final int ic_mr_button_connected_13_light=0x7f0200ab;
public static final int ic_mr_button_connected_14_dark=0x7f0200ac;
public static final int ic_mr_button_connected_14_light=0x7f0200ad;
public static final int ic_mr_button_connected_15_dark=0x7f0200ae;
public static final int ic_mr_button_connected_15_light=0x7f0200af;
public static final int ic_mr_button_connected_16_dark=0x7f0200b0;
public static final int ic_mr_button_connected_16_light=0x7f0200b1;
public static final int ic_mr_button_connected_17_dark=0x7f0200b2;
public static final int ic_mr_button_connected_17_light=0x7f0200b3;
public static final int ic_mr_button_connected_18_dark=0x7f0200b4;
public static final int ic_mr_button_connected_18_light=0x7f0200b5;
public static final int ic_mr_button_connected_19_dark=0x7f0200b6;
public static final int ic_mr_button_connected_19_light=0x7f0200b7;
public static final int ic_mr_button_connected_20_dark=0x7f0200b8;
public static final int ic_mr_button_connected_20_light=0x7f0200b9;
public static final int ic_mr_button_connected_21_dark=0x7f0200ba;
public static final int ic_mr_button_connected_21_light=0x7f0200bb;
public static final int ic_mr_button_connected_22_dark=0x7f0200bc;
public static final int ic_mr_button_connected_22_light=0x7f0200bd;
public static final int ic_mr_button_connecting_00_dark=0x7f0200be;
public static final int ic_mr_button_connecting_00_light=0x7f0200bf;
public static final int ic_mr_button_connecting_01_dark=0x7f0200c0;
public static final int ic_mr_button_connecting_01_light=0x7f0200c1;
public static final int ic_mr_button_connecting_02_dark=0x7f0200c2;
public static final int ic_mr_button_connecting_02_light=0x7f0200c3;
public static final int ic_mr_button_connecting_03_dark=0x7f0200c4;
public static final int ic_mr_button_connecting_03_light=0x7f0200c5;
public static final int ic_mr_button_connecting_04_dark=0x7f0200c6;
public static final int ic_mr_button_connecting_04_light=0x7f0200c7;
public static final int ic_mr_button_connecting_05_dark=0x7f0200c8;
public static final int ic_mr_button_connecting_05_light=0x7f0200c9;
public static final int ic_mr_button_connecting_06_dark=0x7f0200ca;
public static final int ic_mr_button_connecting_06_light=0x7f0200cb;
public static final int ic_mr_button_connecting_07_dark=0x7f0200cc;
public static final int ic_mr_button_connecting_07_light=0x7f0200cd;
public static final int ic_mr_button_connecting_08_dark=0x7f0200ce;
public static final int ic_mr_button_connecting_08_light=0x7f0200cf;
public static final int ic_mr_button_connecting_09_dark=0x7f0200d0;
public static final int ic_mr_button_connecting_09_light=0x7f0200d1;
public static final int ic_mr_button_connecting_10_dark=0x7f0200d2;
public static final int ic_mr_button_connecting_10_light=0x7f0200d3;
public static final int ic_mr_button_connecting_11_dark=0x7f0200d4;
public static final int ic_mr_button_connecting_11_light=0x7f0200d5;
public static final int ic_mr_button_connecting_12_dark=0x7f0200d6;
public static final int ic_mr_button_connecting_12_light=0x7f0200d7;
public static final int ic_mr_button_connecting_13_dark=0x7f0200d8;
public static final int ic_mr_button_connecting_13_light=0x7f0200d9;
public static final int ic_mr_button_connecting_14_dark=0x7f0200da;
public static final int ic_mr_button_connecting_14_light=0x7f0200db;
public static final int ic_mr_button_connecting_15_dark=0x7f0200dc;
public static final int ic_mr_button_connecting_15_light=0x7f0200dd;
public static final int ic_mr_button_connecting_16_dark=0x7f0200de;
public static final int ic_mr_button_connecting_16_light=0x7f0200df;
public static final int ic_mr_button_connecting_17_dark=0x7f0200e0;
public static final int ic_mr_button_connecting_17_light=0x7f0200e1;
public static final int ic_mr_button_connecting_18_dark=0x7f0200e2;
public static final int ic_mr_button_connecting_18_light=0x7f0200e3;
public static final int ic_mr_button_connecting_19_dark=0x7f0200e4;
public static final int ic_mr_button_connecting_19_light=0x7f0200e5;
public static final int ic_mr_button_connecting_20_dark=0x7f0200e6;
public static final int ic_mr_button_connecting_20_light=0x7f0200e7;
public static final int ic_mr_button_connecting_21_dark=0x7f0200e8;
public static final int ic_mr_button_connecting_21_light=0x7f0200e9;
public static final int ic_mr_button_connecting_22_dark=0x7f0200ea;
public static final int ic_mr_button_connecting_22_light=0x7f0200eb;
public static final int ic_mr_button_disabled_dark=0x7f0200ec;
public static final int ic_mr_button_disabled_light=0x7f0200ed;
public static final int ic_mr_button_disconnected_dark=0x7f0200ee;
public static final int ic_mr_button_disconnected_light=0x7f0200ef;
public static final int ic_mr_button_grey=0x7f0200f0;
public static final int ic_vol_type_speaker_dark=0x7f0200f1;
public static final int ic_vol_type_speaker_group_dark=0x7f0200f2;
public static final int ic_vol_type_speaker_group_light=0x7f0200f3;
public static final int ic_vol_type_speaker_light=0x7f0200f4;
public static final int ic_vol_type_tv_dark=0x7f0200f5;
public static final int ic_vol_type_tv_light=0x7f0200f6;
public static final int icon=0x7f0200f7;
public static final int imgs_cadastrar=0x7f0200f8;
public static final int iplant=0x7f0200f9;
public static final int login=0x7f0200fa;
public static final int logo=0x7f0200fb;
public static final int mr_button_connected_dark=0x7f0200fc;
public static final int mr_button_connected_light=0x7f0200fd;
public static final int mr_button_connecting_dark=0x7f0200fe;
public static final int mr_button_connecting_light=0x7f0200ff;
public static final int mr_button_dark=0x7f020100;
public static final int mr_button_light=0x7f020101;
public static final int mr_dialog_close_dark=0x7f020102;
public static final int mr_dialog_close_light=0x7f020103;
public static final int mr_dialog_material_background_dark=0x7f020104;
public static final int mr_dialog_material_background_light=0x7f020105;
public static final int mr_group_collapse=0x7f020106;
public static final int mr_group_expand=0x7f020107;
public static final int mr_media_pause_dark=0x7f020108;
public static final int mr_media_pause_light=0x7f020109;
public static final int mr_media_play_dark=0x7f02010a;
public static final int mr_media_play_light=0x7f02010b;
public static final int mr_media_stop_dark=0x7f02010c;
public static final int mr_media_stop_light=0x7f02010d;
public static final int mr_vol_type_audiotrack_dark=0x7f02010e;
public static final int mr_vol_type_audiotrack_light=0x7f02010f;
public static final int navigation_empty_icon=0x7f020110;
public static final int nome_iplant=0x7f020111;
public static final int notification_action_background=0x7f020112;
public static final int notification_bg=0x7f020113;
public static final int notification_bg_low=0x7f020114;
public static final int notification_bg_low_normal=0x7f020115;
public static final int notification_bg_low_pressed=0x7f020116;
public static final int notification_bg_normal=0x7f020117;
public static final int notification_bg_normal_pressed=0x7f020118;
public static final int notification_icon_background=0x7f020119;
public static final int notification_template_icon_bg=0x7f020122;
public static final int notification_template_icon_low_bg=0x7f020123;
public static final int notification_tile_bg=0x7f02011a;
public static final int notify_panel_notification_icon_bg=0x7f02011b;
public static final int pimentao=0x7f02011c;
public static final int pipino=0x7f02011d;
public static final int sobre=0x7f02011e;
public static final int splash=0x7f02011f;
public static final int tomate=0x7f020120;
public static final int voltar=0x7f020121;
}
public static final class id {
public static final int action0=0x7f08009e;
public static final int action_bar=0x7f080064;
public static final int action_bar_activity_content=0x7f080001;
public static final int action_bar_container=0x7f080063;
public static final int action_bar_root=0x7f08005f;
public static final int action_bar_spinner=0x7f080002;
public static final int action_bar_subtitle=0x7f080042;
public static final int action_bar_title=0x7f080041;
public static final int action_container=0x7f08009b;
public static final int action_context_bar=0x7f080065;
public static final int action_divider=0x7f0800a2;
public static final int action_image=0x7f08009c;
public static final int action_menu_divider=0x7f080003;
public static final int action_menu_presenter=0x7f080004;
public static final int action_mode_bar=0x7f080061;
public static final int action_mode_bar_stub=0x7f080060;
public static final int action_mode_close_button=0x7f080043;
public static final int action_text=0x7f08009d;
public static final int actions=0x7f0800ab;
public static final int activity_chooser_view_content=0x7f080044;
public static final int add=0x7f08001e;
public static final int alertTitle=0x7f080058;
public static final int all=0x7f08003d;
public static final int always=0x7f080023;
public static final int auto=0x7f08002f;
public static final int beginning=0x7f080020;
public static final int bottom=0x7f080028;
public static final int buttonPanel=0x7f08004b;
public static final int cancel_action=0x7f08009f;
public static final int center=0x7f080030;
public static final int center_horizontal=0x7f080031;
public static final int center_vertical=0x7f080032;
public static final int checkbox=0x7f08005b;
public static final int chronometer=0x7f0800a7;
public static final int clip_horizontal=0x7f080039;
public static final int clip_vertical=0x7f08003a;
public static final int collapseActionView=0x7f080024;
public static final int container=0x7f080075;
public static final int contentPanel=0x7f08004e;
public static final int coordinator=0x7f080076;
public static final int custom=0x7f080055;
public static final int customPanel=0x7f080054;
public static final int decor_content_parent=0x7f080062;
public static final int default_activity_button=0x7f080047;
public static final int design_bottom_sheet=0x7f080078;
public static final int design_menu_item_action_area=0x7f08007f;
public static final int design_menu_item_action_area_stub=0x7f08007e;
public static final int design_menu_item_text=0x7f08007d;
public static final int design_navigation_view=0x7f08007c;
public static final int disableHome=0x7f080012;
public static final int edit_query=0x7f080066;
public static final int end=0x7f080021;
public static final int end_padder=0x7f0800b1;
public static final int enterAlways=0x7f08002a;
public static final int enterAlwaysCollapsed=0x7f08002b;
public static final int exitUntilCollapsed=0x7f08002c;
public static final int expand_activities_button=0x7f080045;
public static final int expanded_menu=0x7f08005a;
public static final int fill=0x7f08003b;
public static final int fill_horizontal=0x7f08003c;
public static final int fill_vertical=0x7f080033;
public static final int fixed=0x7f08003f;
public static final int home=0x7f080005;
public static final int homeAsUp=0x7f080013;
public static final int icon=0x7f080049;
public static final int icon_group=0x7f0800ac;
public static final int ifRoom=0x7f080025;
public static final int image=0x7f080046;
public static final int info=0x7f0800a8;
public static final int item_touch_helper_previous_elevation=0x7f080000;
public static final int largeLabel=0x7f080074;
public static final int left=0x7f080034;
public static final int line1=0x7f0800ad;
public static final int line3=0x7f0800af;
public static final int listMode=0x7f08000f;
public static final int list_item=0x7f080048;
public static final int masked=0x7f0800b5;
public static final int media_actions=0x7f0800a1;
public static final int middle=0x7f080022;
public static final int mini=0x7f08003e;
public static final int mr_art=0x7f08008d;
public static final int mr_chooser_list=0x7f080082;
public static final int mr_chooser_route_desc=0x7f080085;
public static final int mr_chooser_route_icon=0x7f080083;
public static final int mr_chooser_route_name=0x7f080084;
public static final int mr_chooser_title=0x7f080081;
public static final int mr_close=0x7f08008a;
public static final int mr_control_divider=0x7f080090;
public static final int mr_control_playback_ctrl=0x7f080096;
public static final int mr_control_subtitle=0x7f080099;
public static final int mr_control_title=0x7f080098;
public static final int mr_control_title_container=0x7f080097;
public static final int mr_custom_control=0x7f08008b;
public static final int mr_default_control=0x7f08008c;
public static final int mr_dialog_area=0x7f080087;
public static final int mr_expandable_area=0x7f080086;
public static final int mr_group_expand_collapse=0x7f08009a;
public static final int mr_media_main_control=0x7f08008e;
public static final int mr_name=0x7f080089;
public static final int mr_playback_control=0x7f08008f;
public static final int mr_title_bar=0x7f080088;
public static final int mr_volume_control=0x7f080091;
public static final int mr_volume_group_list=0x7f080092;
public static final int mr_volume_item_icon=0x7f080094;
public static final int mr_volume_slider=0x7f080095;
public static final int multiply=0x7f080019;
public static final int navigation_header_container=0x7f08007b;
public static final int never=0x7f080026;
public static final int none=0x7f080014;
public static final int normal=0x7f080010;
public static final int notification_background=0x7f0800aa;
public static final int notification_main_column=0x7f0800a4;
public static final int notification_main_column_container=0x7f0800a3;
public static final int parallax=0x7f080037;
public static final int parentPanel=0x7f08004d;
public static final int pin=0x7f080038;
public static final int progress_circular=0x7f080006;
public static final int progress_horizontal=0x7f080007;
public static final int radio=0x7f08005d;
public static final int right=0x7f080035;
public static final int right_icon=0x7f0800a9;
public static final int right_side=0x7f0800a5;
public static final int screen=0x7f08001a;
public static final int scroll=0x7f08002d;
public static final int scrollIndicatorDown=0x7f080053;
public static final int scrollIndicatorUp=0x7f08004f;
public static final int scrollView=0x7f080050;
public static final int scrollable=0x7f080040;
public static final int search_badge=0x7f080068;
public static final int search_bar=0x7f080067;
public static final int search_button=0x7f080069;
public static final int search_close_btn=0x7f08006e;
public static final int search_edit_frame=0x7f08006a;
public static final int search_go_btn=0x7f080070;
public static final int search_mag_icon=0x7f08006b;
public static final int search_plate=0x7f08006c;
public static final int search_src_text=0x7f08006d;
public static final int search_voice_btn=0x7f080071;
public static final int select_dialog_listview=0x7f080072;
public static final int shortcut=0x7f08005c;
public static final int showCustom=0x7f080015;
public static final int showHome=0x7f080016;
public static final int showTitle=0x7f080017;
public static final int sliding_tabs=0x7f0800b2;
public static final int smallLabel=0x7f080073;
public static final int snackbar_action=0x7f08007a;
public static final int snackbar_text=0x7f080079;
public static final int snap=0x7f08002e;
public static final int spacer=0x7f08004c;
public static final int split_action_bar=0x7f080008;
public static final int src_atop=0x7f08001b;
public static final int src_in=0x7f08001c;
public static final int src_over=0x7f08001d;
public static final int start=0x7f080036;
public static final int status_bar_latest_event_content=0x7f0800a0;
public static final int submenuarrow=0x7f08005e;
public static final int submit_area=0x7f08006f;
public static final int tabMode=0x7f080011;
public static final int text=0x7f0800b0;
public static final int text2=0x7f0800ae;
public static final int textSpacerNoButtons=0x7f080052;
public static final int textSpacerNoTitle=0x7f080051;
public static final int text_input_password_toggle=0x7f080080;
public static final int textinput_counter=0x7f08000c;
public static final int textinput_error=0x7f08000d;
public static final int time=0x7f0800a6;
public static final int title=0x7f08004a;
public static final int titleDividerNoCustom=0x7f080059;
public static final int title_template=0x7f080057;
public static final int toolbar=0x7f0800b3;
public static final int top=0x7f080029;
public static final int topPanel=0x7f080056;
public static final int touch_outside=0x7f080077;
public static final int transition_current_scene=0x7f08000a;
public static final int transition_scene_layoutid_cache=0x7f08000b;
public static final int up=0x7f080009;
public static final int useLogo=0x7f080018;
public static final int view_offset_helper=0x7f08000e;
public static final int visible=0x7f0800b4;
public static final int volume_item_container=0x7f080093;
public static final int withText=0x7f080027;
public static final int wrap_content=0x7f08001f;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=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 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=0x7f0a0006;
}
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 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=0x7f090014;
public static final int mr_controller_stop_casting=0x7f090010;
public static final int mr_controller_volume_slider=0x7f090011;
public static final int mr_system_route_name=0x7f090012;
public static final int mr_user_route_category_name=0x7f090013;
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=0x7f0b00ae;
public static final int AlertDialog_AppCompat_Light=0x7f0b00af;
public static final int Animation_AppCompat_Dialog=0x7f0b00b0;
public static final int Animation_AppCompat_DropDownUp=0x7f0b00b1;
public static final int Animation_Design_BottomSheetDialog=0x7f0b0170;
public static final int AppCompatDialogStyle=0x7f0b018b;
public static final int Base_AlertDialog_AppCompat=0x7f0b00b2;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00b3;
public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b4;
public static final int Base_Animation_AppCompat_DropDownUp=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=0x7f0b004e;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b004f;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b0050;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0036;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0051;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0052;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0053;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0054;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0055;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0056;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b001a;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0057;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b001b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0058;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0059;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b005a;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b005b;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00b8;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b005c;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b005d;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0b005e;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b001d;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b005f;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001e;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0060;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00a3;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0061;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0062;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0063;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0064;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0065;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0066;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0067;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00aa;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00ab;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00a4;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00b9;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0068;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0069;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b006a;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b006b;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b006c;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00ba;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b006d;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b006e;
public static final int Base_Theme_AppCompat=0x7f0b006f;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00bb;
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=0x7f0b00bc;
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=0x7f0b0070;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00bd;
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=0x7f0b00be;
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=0x7f0b00bf;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00c0;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00c1;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00c2;
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=0x7f0b00c3;
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_V21_Theme_AppCompat=0x7f0b0071;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0072;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0073;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0074;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b0075;
public static final int Base_V22_Theme_AppCompat=0x7f0b00a1;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0b00a2;
public static final int Base_V23_Theme_AppCompat=0x7f0b00a5;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0b00a6;
public static final int Base_V7_Theme_AppCompat=0x7f0b00c4;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00c5;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00c6;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00c7;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00c8;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00c9;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00ca;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0b00cb;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00cc;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00cd;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0076;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0077;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0078;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0079;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b007a;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0b00ce;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00cf;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0034;
public static final int Base_Widget_AppCompat_Button=0x7f0b007b;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b007c;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b007d;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00d0;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b00a7;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007e;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007f;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00d1;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0080;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0081;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00d2;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b000f;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00d3;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082;
public static final int Base_Widget_AppCompat_EditText=0x7f0b0035;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0083;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00d4;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00d5;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00d6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0086;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0087;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0088;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b00d7;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0089;
public static final int Base_Widget_AppCompat_ListView=0x7f0b008a;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b008b;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b008c;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b008d;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b008e;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00d8;
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=0x7f0b008f;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b00a8;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b00a9;
public static final int Base_Widget_AppCompat_SearchView=0x7f0b00d9;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00da;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0b0090;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00db;
public static final int Base_Widget_AppCompat_Spinner=0x7f0b0091;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0012;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b0092;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00dc;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0093;
public static final int Base_Widget_Design_AppBarLayout=0x7f0b0171;
public static final int Base_Widget_Design_TabLayout=0x7f0b0172;
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=0x7f0b0189;
/** Base theme applied no matter what API
*/
public static final int MainTheme_Base=0x7f0b018a;
public static final int Platform_AppCompat=0x7f0b002d;
public static final int Platform_AppCompat_Light=0x7f0b002e;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0b0094;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0095;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0096;
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=0x7f0b0097;
public static final int Platform_V21_AppCompat_Light=0x7f0b0098;
public static final int Platform_V25_AppCompat=0x7f0b00ac;
public static final int Platform_V25_AppCompat_Light=0x7f0b00ad;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0031;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b0040;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b0041;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b0042;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b0043;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b0044;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b0045;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0046;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0047;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0048;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0049;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b004a;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b004b;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b004c;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b004d;
public static final int TextAppearance_AppCompat=0x7f0b00dd;
public static final int TextAppearance_AppCompat_Body1=0x7f0b00de;
public static final int TextAppearance_AppCompat_Body2=0x7f0b00df;
public static final int TextAppearance_AppCompat_Button=0x7f0b00e0;
public static final int TextAppearance_AppCompat_Caption=0x7f0b00e1;
public static final int TextAppearance_AppCompat_Display1=0x7f0b00e2;
public static final int TextAppearance_AppCompat_Display2=0x7f0b00e3;
public static final int TextAppearance_AppCompat_Display3=0x7f0b00e4;
public static final int TextAppearance_AppCompat_Display4=0x7f0b00e5;
public static final int TextAppearance_AppCompat_Headline=0x7f0b00e6;
public static final int TextAppearance_AppCompat_Inverse=0x7f0b00e7;
public static final int TextAppearance_AppCompat_Large=0x7f0b00e8;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00e9;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00ea;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00eb;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ec;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00ed;
public static final int TextAppearance_AppCompat_Medium=0x7f0b00ee;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00ef;
public static final int TextAppearance_AppCompat_Menu=0x7f0b00f0;
public static final int TextAppearance_AppCompat_Notification=0x7f0b0039;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b0099;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b009a;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00f1;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00f2;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b009b;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b009c;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b009d;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b003a;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b009e;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00f3;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00f4;
public static final int TextAppearance_AppCompat_Small=0x7f0b00f5;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00f6;
public static final int TextAppearance_AppCompat_Subhead=0x7f0b00f7;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00f8;
public static final int TextAppearance_AppCompat_Title=0x7f0b00f9;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00fa;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00fb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00fc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00fd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00fe;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ff;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0100;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0101;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0102;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0103;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b0104;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0105;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0106;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0107;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0108;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0109;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b010a;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b010b;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b010c;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b010d;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b0173;
public static final int TextAppearance_Design_Counter=0x7f0b0174;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0b0175;
public static final int TextAppearance_Design_Error=0x7f0b0176;
public static final int TextAppearance_Design_Hint=0x7f0b0177;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0b0178;
public static final int TextAppearance_Design_Tab=0x7f0b0179;
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_StatusBar_EventContent=0x7f0b003b;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0b003c;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0b003d;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0b003e;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0b003f;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b010e;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b010f;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0110;
public static final int Theme_AppCompat=0x7f0b0111;
public static final int Theme_AppCompat_CompactMenu=0x7f0b0112;
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=0x7f0b0113;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0114;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0115;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0116;
public static final int Theme_AppCompat_Light=0x7f0b0117;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0118;
public static final int Theme_AppCompat_Light_Dialog=0x7f0b0119;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b011a;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b011b;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b011c;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b011d;
public static final int Theme_AppCompat_NoActionBar=0x7f0b011e;
public static final int Theme_Design=0x7f0b017a;
public static final int Theme_Design_BottomSheetDialog=0x7f0b017b;
public static final int Theme_Design_Light=0x7f0b017c;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0b017d;
public static final int Theme_Design_Light_NoActionBar=0x7f0b017e;
public static final int Theme_Design_NoActionBar=0x7f0b017f;
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=0x7f0b011f;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0120;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0121;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0122;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b0123;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0124;
public static final int ThemeOverlay_AppCompat_Light=0x7f0b0125;
public static final int ThemeOverlay_MediaRouter_Dark=0x7f0b0007;
public static final int ThemeOverlay_MediaRouter_Light=0x7f0b0008;
public static final int Widget_AppCompat_ActionBar=0x7f0b0126;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0127;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0128;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0129;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b012a;
public static final int Widget_AppCompat_ActionButton=0x7f0b012b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b012c;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b012d;
public static final int Widget_AppCompat_ActionMode=0x7f0b012e;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012f;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0130;
public static final int Widget_AppCompat_Button=0x7f0b0131;
public static final int Widget_AppCompat_Button_Borderless=0x7f0b0132;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b0133;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0134;
public static final int Widget_AppCompat_Button_Colored=0x7f0b0135;
public static final int Widget_AppCompat_Button_Small=0x7f0b0136;
public static final int Widget_AppCompat_ButtonBar=0x7f0b0137;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0138;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0139;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b013a;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b013b;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b013c;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b013d;
public static final int Widget_AppCompat_EditText=0x7f0b013e;
public static final int Widget_AppCompat_ImageButton=0x7f0b013f;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0140;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0141;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0142;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0143;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0144;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0145;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0146;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0147;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0148;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0149;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b014a;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b014b;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b014c;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b014d;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014e;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014f;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0150;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0151;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0152;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0153;
public static final int Widget_AppCompat_Light_SearchView=0x7f0b0154;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0155;
public static final int Widget_AppCompat_ListMenuView=0x7f0b0156;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0157;
public static final int Widget_AppCompat_ListView=0x7f0b0158;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0159;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b015a;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f0b009f;
public static final int Widget_AppCompat_NotificationActionText=0x7f0b00a0;
public static final int Widget_AppCompat_PopupMenu=0x7f0b015b;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b015c;
public static final int Widget_AppCompat_PopupWindow=0x7f0b015d;
public static final int Widget_AppCompat_ProgressBar=0x7f0b015e;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015f;
public static final int Widget_AppCompat_RatingBar=0x7f0b0160;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b0161;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0b0162;
public static final int Widget_AppCompat_SearchView=0x7f0b0163;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0164;
public static final int Widget_AppCompat_SeekBar=0x7f0b0165;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0166;
public static final int Widget_AppCompat_Spinner=0x7f0b0167;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0168;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0169;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b016a;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b016b;
public static final int Widget_AppCompat_Toolbar=0x7f0b016c;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b016d;
public static final int Widget_Design_AppBarLayout=0x7f0b016f;
public static final int Widget_Design_BottomNavigationView=0x7f0b0180;
public static final int Widget_Design_BottomSheet_Modal=0x7f0b0181;
public static final int Widget_Design_CollapsingToolbar=0x7f0b0182;
public static final int Widget_Design_CoordinatorLayout=0x7f0b0183;
public static final int Widget_Design_FloatingActionButton=0x7f0b0184;
public static final int Widget_Design_NavigationView=0x7f0b0185;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0b0186;
public static final int Widget_Design_Snackbar=0x7f0b0187;
public static final int Widget_Design_TabLayout=0x7f0b016e;
public static final int Widget_Design_TextInputLayout=0x7f0b0188;
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.App1:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.App1:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.App1:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.App1:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.App1:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.App1:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.App1:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.App1:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.App1:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.App1:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.companyname.App1:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.companyname.App1:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.companyname.App1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.companyname.App1:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.App1:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.App1:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.companyname.App1:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.companyname.App1:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.App1:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.companyname.App1:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.companyname.App1:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.companyname.App1:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.companyname.App1:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.App1:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.App1:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.companyname.App1:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.App1:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.companyname.App1:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.App1: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 = {
0x7f01001d, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d,
0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031,
0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035,
0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f010079
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.App1:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.App1:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.companyname.App1:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.App1:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.App1: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 = {
0x7f01001d, 0x7f010023, 0x7f010024, 0x7f010028,
0x7f01002a, 0x7f01003a
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.App1:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01003b, 0x7f01003c
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.App1:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.companyname.App1:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.App1:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.companyname.App1:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.App1: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, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f010042
};
/**
<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.App1.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.App1:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.companyname.App1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.companyname.App1:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010038, 0x7f010103
};
/**
<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 com.companyname.App1.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.App1:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.App1:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.App1:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010104, 0x7f010105
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.App1:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010106, 0x7f010107
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint com.companyname.App1:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.App1: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, 0x7f010043, 0x7f010044, 0x7f010045
};
/**
<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.App1.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.App1:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.App1:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.App1: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, 0x7f010046, 0x7f010047, 0x7f010048
};
/**
<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.App1.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.App1:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.App1:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010049
};
/**
<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.App1.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.App1: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.App1:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.App1:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.App1:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.App1:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.App1:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.App1:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.App1:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.App1:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.App1:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.App1:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.App1:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.App1:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.App1:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.App1:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.App1:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.App1:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.App1:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.App1:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.App1:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.App1:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.App1:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.App1:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.App1:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.App1:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.App1:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.App1:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.App1:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.App1:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.App1:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.App1:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.App1:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.App1:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.App1:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.App1:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.App1: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.App1:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.App1:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.App1:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.App1:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.App1:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.App1:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.App1:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.App1:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.App1:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.App1:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.App1:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.App1:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.App1:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.App1:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.App1:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.App1:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.App1:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.App1:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.App1:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.App1:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.App1:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.App1:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.App1:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.App1:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.App1:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.App1:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.App1:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.App1:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.App1:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.App1:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.App1:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.App1:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.App1:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.App1:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.App1:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.App1:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.App1:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.App1:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.App1:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.App1:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.App1:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.App1:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.App1:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.App1:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.App1:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.App1:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.App1:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.App1:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.App1:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.App1:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.App1:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.App1:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.App1:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.App1:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.App1:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.App1:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.App1:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.App1:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.App1:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.App1:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.App1:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.App1:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.App1:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.App1:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.App1:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.App1:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.App1:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.App1:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.App1:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.App1:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.App1:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.App1:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.App1:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.App1:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.App1:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.App1:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.App1:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.App1:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.App1:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1.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.App1:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.App1:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.App1:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.App1:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu com.companyname.App1: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 = {
0x7f010038, 0x7f01012e, 0x7f01012f, 0x7f010130,
0x7f010131
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.App1:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.App1: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 = {
0x7f010108, 0x7f010109, 0x7f01010a
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100bc
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius com.companyname.App1:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation com.companyname.App1:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation com.companyname.App1:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.App1:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.App1:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding com.companyname.App1:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.App1:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.App1:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight com.companyname.App1:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop com.companyname.App1: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, 0x7f010011, 0x7f010012,
0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016,
0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a,
0x7f01001b
};
/**
<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.App1.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.App1:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.App1:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.App1:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.App1:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.App1:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.App1:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.App1:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.App1:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.App1:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.App1:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.App1:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.App1:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.App1:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.App1:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.App1:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.App1: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 = {
0x7f01001f, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115,
0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.App1:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01011a, 0x7f01011b
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1: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, 0x7f0100bd
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.App1:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100be, 0x7f0100bf
};
/**
<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.App1.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.App1:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.App1:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f01011c, 0x7f01011d
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.App1:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.App1:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.App1:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.App1:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.App1: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, 0x7f01011e, 0x7f01011f, 0x7f010120,
0x7f010121, 0x7f010122, 0x7f010123
};
/**
<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.App1.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.App1:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.App1:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.companyname.App1:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010124, 0x7f010125, 0x7f010126
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.App1: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.App1:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.App1:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.App1:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.companyname.App1:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.App1:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.App1:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.App1:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.App1: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 = {
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.App1:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.App1:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.companyname.App1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.App1:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.App1:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.App1:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.App1: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 = {
0x7f010038, 0x7f010101, 0x7f010102, 0x7f010127,
0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f01012c
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.App1: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, 0x7f01012d
};
/**
<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.App1.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.App1: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.App1:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.App1:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.App1:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.App1: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, 0x7f010027, 0x7f0100c8, 0x7f0100c9,
0x7f0100ca
};
/**
<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.App1.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.App1:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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_buttonTint com.companyname.App1:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable com.companyname.App1:externalRouteEnabledDrawable}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_buttonTint
@see #MediaRouteButton_externalRouteEnabledDrawable
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010010, 0x7f0100be
};
/**
<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.App1.R.attr#buttonTint}
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.App1:buttonTint
*/
public static final int MediaRouteButton_buttonTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:externalRouteEnabledDrawable
*/
public static final int MediaRouteButton_externalRouteEnabledDrawable = 2;
/** 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.App1:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.App1:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.companyname.App1:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.companyname.App1:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.App1:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.companyname.App1: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, 0x7f0100cf,
0x7f0100d0
};
/**
<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.App1.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.App1:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.companyname.App1:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.companyname.App1:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.companyname.App1:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.App1:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.companyname.App1:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.companyname.App1: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, 0x7f010038,
0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010131,
0x7f010132, 0x7f010133
};
/**
<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.App1.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.App1:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1: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, 0x7f0100d1
};
/**
<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.App1.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.App1: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.App1:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100d2
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.App1:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100d3, 0x7f0100d4
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.companyname.App1:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.App1:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.companyname.App1:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.App1:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010134
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010135
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.companyname.App1:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.App1:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.companyname.App1:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.App1:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.companyname.App1:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.companyname.App1:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.companyname.App1:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.companyname.App1:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.companyname.App1:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.companyname.App1:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.App1:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.companyname.App1: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,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1
};
/**
<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.App1.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.App1:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.App1:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010038, 0x7f010136
};
/**
<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.App1.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.App1:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1: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,
0x7f010039
};
/**
<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.App1.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.App1: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.App1:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.App1:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.App1:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.App1:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.App1:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.App1:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.App1:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.App1:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.companyname.App1:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.companyname.App1:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.App1: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, 0x7f0100e2,
0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6,
0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea,
0x7f0100eb, 0x7f0100ec
};
/**
<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.App1.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.App1:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.companyname.App1:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.companyname.App1:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.App1:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.App1:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.App1:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.App1:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.companyname.App1:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.companyname.App1:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.App1:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.App1:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.App1:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.App1:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.App1:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.App1:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.companyname.App1: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 = {
0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a,
0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e,
0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146
};
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.App1:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f010049
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.App1:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.App1:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.App1:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.App1:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.App1:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.App1:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.App1:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.App1:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.App1:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.App1:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.App1:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.App1:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.App1:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.App1: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, 0x7f010147, 0x7f010148,
0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c,
0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150,
0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154
};
/**
<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.App1.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.App1:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.App1:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.companyname.App1:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.App1:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.App1:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.App1:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.App1:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.App1:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.App1:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.companyname.App1:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.companyname.App1:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.App1:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.App1:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.companyname.App1:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.companyname.App1:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.companyname.App1:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.App1:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.App1:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.companyname.App1:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.companyname.App1:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.App1:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.App1:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.App1:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.App1:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.companyname.App1:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.App1:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.companyname.App1: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, 0x7f01001f, 0x7f010022,
0x7f010026, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f010036, 0x7f010037, 0x7f010039,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8,
0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc,
0x7f0100fd
};
/**
<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.App1.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.App1:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.companyname.App1:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.companyname.App1: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, 0x7f0100fe, 0x7f0100ff,
0x7f010100
};
/**
<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.App1.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.App1:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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.App1:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.App1:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010101, 0x7f010102
};
/**
<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.App1.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.App1:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.App1.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.App1: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]"
]
| |
b05f2e26be8d7d0acf01cd117deeb79b56ff7a2c | 00476109e4b4ddfa56be059526da1108582a89f0 | /src/main/java/streams/exercises/moneymanager/solutions/MinMaxTransactions.java | 41060698dd45f7f5c72ce2418b60ae872013cc54 | [
"MIT"
]
| permissive | coetzeehei/java-streams | cab176c7406a35c21841248f5db0a11ed2cd33a1 | 790c1b706a2c4730dfb7977efe1e7043d30051d7 | refs/heads/master | 2022-03-17T11:03:06.685770 | 2019-12-02T14:42:47 | 2019-12-02T14:42:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,731 | java | package streams.exercises.moneymanager.solutions;
import streams.exercises.moneymanager.domain.TransactionFeedEntry;
import java.util.Comparator;
import java.util.DoubleSummaryStatistics;
import java.util.Optional;
import java.util.OptionalDouble;
import java.util.stream.Stream;
public class MinMaxTransactions {
private Stream<TransactionFeedEntry> transactionFeed;
private MinMaxTransactions(Stream<TransactionFeedEntry> transactionFeed) {
this.transactionFeed = transactionFeed;
}
public static MinMaxTransactions from(Stream<TransactionFeedEntry> transactionFeed) {
return new MinMaxTransactions(transactionFeed);
}
public OptionalDouble getSmallestDeposit() {
return transactionFeed.filter(TransactionFeedEntry::isDeposit)
.mapToDouble(TransactionFeedEntry::getDeposit).min();
}
public OptionalDouble getLargestDeposit() {
return transactionFeed.filter(TransactionFeedEntry::isDeposit)
.mapToDouble(TransactionFeedEntry::getDeposit).max();
}
public Optional<Double> getLargestTransaction() {
return transactionFeed.map(entry -> (entry.isDeposit() ? entry.getDeposit() : entry.getWithdrawal() * -1))
.max(Comparator.comparingDouble(Math::abs));
}
public OptionalDouble getSmallestWithdrawal() {
return transactionFeed.filter(TransactionFeedEntry::isWithdrawl)
.mapToDouble(TransactionFeedEntry::getWithdrawal).min();
}
public OptionalDouble getLargestWithdrawal() {
return transactionFeed.filter(TransactionFeedEntry::isWithdrawl)
.mapToDouble(TransactionFeedEntry::getWithdrawal).max();
}
}
| [
"[email protected]"
]
| |
5a37b287fcee515083b961c8585ef779607ae81b | bb5bb58b30a15e9277427217f20667ef87493eaf | /mybookstore/target/tomcat/work/Tomcat/localhost/mybookstore/org/apache/jsp/WEB_002dINF/flows/checkout/orderConfirmation_jsp.java | 305923f4bea0e7d15f40cad05218a79b57e79227 | []
| no_license | JanhaviJaiswar26/Online-Book-Store | b3ff80ff9b76fb9a142dd800e328eb8af630739c | 0d37aea677ed46a5b7cf4e47d50f60cb61029eaa | refs/heads/master | 2023-03-16T14:54:46.422186 | 2017-02-20T06:20:49 | 2017-02-20T06:20:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 55,734 | java | /*
* Generated by the Jasper component of Apache Tomcat
* Version: Apache Tomcat/7.0.47
* Generated at: 2017-02-18 08:47:43 UTC
* Note: The last modified time of this file was set to
* the last modified time of the source file after
* generation to assist with modification tracking.
*/
package org.apache.jsp.WEB_002dINF.flows.checkout;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public final class orderConfirmation_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {
private static final javax.servlet.jsp.JspFactory _jspxFactory =
javax.servlet.jsp.JspFactory.getDefaultFactory();
private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants;
static {
_jspx_dependants = new java.util.HashMap<java.lang.String,java.lang.Long>(2);
_jspx_dependants.put("/WEB-INF/views/template/header.jsp", Long.valueOf(1487365984586L));
_jspx_dependants.put("/WEB-INF/views/template/footer.jsp", Long.valueOf(1487159633059L));
}
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fif_0026_005ftest;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fform_005fform_0026_005fcommandName_005fclass;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005ffmt_005fformatDate_0026_005fvalue_005ftype_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fforEach_0026_005fvar_005fitems;
private javax.el.ExpressionFactory _el_expressionfactory;
private org.apache.tomcat.InstanceManager _jsp_instancemanager;
public java.util.Map<java.lang.String,java.lang.Long> getDependants() {
return _jspx_dependants;
}
public void _jspInit() {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fform_005fform_0026_005fcommandName_005fclass = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005ffmt_005fformatDate_0026_005fvalue_005ftype_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fc_005fforEach_0026_005fvar_005fitems = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
_jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig());
}
public void _jspDestroy() {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.release();
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.release();
_005fjspx_005ftagPool_005fform_005fform_0026_005fcommandName_005fclass.release();
_005fjspx_005ftagPool_005ffmt_005fformatDate_0026_005fvalue_005ftype_005fnobody.release();
_005fjspx_005ftagPool_005fc_005fforEach_0026_005fvar_005fitems.release();
}
public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response)
throws java.io.IOException, javax.servlet.ServletException {
final javax.servlet.jsp.PageContext pageContext;
javax.servlet.http.HttpSession session = null;
final javax.servlet.ServletContext application;
final javax.servlet.ServletConfig config;
javax.servlet.jsp.JspWriter out = null;
final java.lang.Object page = this;
javax.servlet.jsp.JspWriter _jspx_out = null;
javax.servlet.jsp.PageContext _jspx_page_context = null;
try {
response.setContentType("text/html");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out.write('\n');
out.write('\n');
out.write(" \r\n");
out.write("\r\n");
out.write("<html>\r\n");
out.write("<head>\r\n");
out.write("<meta charset=\"utf-8\">\r\n");
out.write("<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n");
out.write("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n");
out.write("<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->\r\n");
out.write("<meta name=\"description\" content=\"\">\r\n");
out.write("<meta name=\"author\" content=\"\">\r\n");
out.write("<link rel=\"icon\" href=\"../../favicon.ico\">\r\n");
out.write("\r\n");
out.write("<title>Tops Book Store</title>\r\n");
out.write("\r\n");
out.write("<!-- Anjular JS -->\r\n");
out.write("<script src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js\"></script>\r\n");
out.write("\r\n");
out.write("<!-- Bootstrap core CSS -->\r\n");
out.write("<link href=\"");
if (_jspx_meth_c_005furl_005f0(_jspx_page_context))
return;
out.write("\"rel=\"stylesheet\" />\r\n");
out.write("\r\n");
out.write("<!-- Carousel CSS -->\r\n");
out.write("<link href=\"");
if (_jspx_meth_c_005furl_005f1(_jspx_page_context))
return;
out.write("\"rel=\"stylesheet\" />\r\n");
out.write("\r\n");
out.write("<!-- Main CSS -->\r\n");
out.write("<link href=\"");
if (_jspx_meth_c_005furl_005f2(_jspx_page_context))
return;
out.write("\"rel=\"stylesheet\" />\r\n");
out.write("\r\n");
out.write("\r\n");
out.write("</head>\r\n");
out.write("<!-- NAVBAR\r\n");
out.write("================================================== -->\r\n");
out.write("<body>\r\n");
out.write("\t<div class=\"navbar-wrapper\">\r\n");
out.write("\t\t<div class=\"container\">\r\n");
out.write("\r\n");
out.write("\t\t\t<nav class=\"navbar navbar-inverse navbar-static-top\">\r\n");
out.write("\t\t\t\t<div class=\"container\">\r\n");
out.write("\t\t\t\t\t<div class=\"navbar-header\">\r\n");
out.write("\t\t\t\t\t\t<button type=\"button\" class=\"navbar-toggle collapsed\"\r\n");
out.write("\t\t\t\t\t\t\tdata-toggle=\"collapse\" data-target=\"#navbar\"\r\n");
out.write("\t\t\t\t\t\t\taria-expanded=\"false\" aria-controls=\"navbar\">\r\n");
out.write("\t\t\t\t\t\t\t<span class=\"sr-only\">Toggle navigation</span> <span\r\n");
out.write("\t\t\t\t\t\t\t\tclass=\"icon-bar\"></span> <span class=\"icon-bar\"></span> <span\r\n");
out.write("\t\t\t\t\t\t\t\tclass=\"icon-bar\"></span>\r\n");
out.write("\t\t\t\t\t\t</button>\r\n");
out.write("\t\t\t\t\t\t<a class=\"navbar-brand\" href=\"#\">Tops Book Store</a>\r\n");
out.write("\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t<div id=\"navbar\" class=\"navbar-collapse collapse\">\r\n");
out.write("\t\t\t\t\t\t<ul class=\"nav navbar-nav\">\r\n");
out.write("\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f3(_jspx_page_context))
return;
out.write("\">Home</a></li>\r\n");
out.write("\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f4(_jspx_page_context))
return;
out.write("\">Books</a></li>\r\n");
out.write("\t\t\t\t\t\t\t<li><a href=\"#contact\">Contact</a></li>\r\n");
out.write("\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t<ul class=\"nav navbar-nav pull-right\">\r\n");
out.write("\t\t\t\t\t\t");
if (_jspx_meth_c_005fif_005f0(_jspx_page_context))
return;
out.write("\r\n");
out.write("\t\t\t\t\t\t");
if (_jspx_meth_c_005fif_005f3(_jspx_page_context))
return;
out.write("\r\n");
out.write("\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t</div>\r\n");
out.write("\t\t\t</nav>\r\n");
out.write("\r\n");
out.write("\t\t</div>\r\n");
out.write("\t</div>");
out.write('\n');
out.write('\n');
java.util.Date now = null;
now = (java.util.Date) _jspx_page_context.getAttribute("now", javax.servlet.jsp.PageContext.PAGE_SCOPE);
if (now == null){
now = new java.util.Date();
_jspx_page_context.setAttribute("now", now, javax.servlet.jsp.PageContext.PAGE_SCOPE);
}
out.write("\n");
out.write("\n");
out.write("<div class=\"container-wrapper\">\n");
out.write(" <div class=\"container\">\n");
out.write(" <div class=\"page-header\">\n");
out.write(" <h1>Order</h1>\n");
out.write("\n");
out.write(" <p class=\"lead\">Order confirmation</p>\n");
out.write(" </div>\n");
out.write("\n");
out.write(" <div class=\"container\">\n");
out.write("\n");
out.write(" <div class=\"row\">\n");
out.write("\n");
out.write(" ");
if (_jspx_meth_form_005fform_005f0(_jspx_page_context))
return;
out.write("\n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write("\n");
out.write("<!-- FOOTER -->\r\n");
out.write("<footer>\r\n");
out.write("\t<p class=\"pull-right\">\r\n");
out.write("\t\t<a href=\"#\">Back to top</a>\r\n");
out.write("\t</p>\r\n");
out.write("\t<p>\r\n");
out.write("\t\t© 2016 Company, Inc. · <a href=\"#\">Privacy</a> · <a\r\n");
out.write("\t\t\thref=\"#\">Terms</a>\r\n");
out.write("\t</p>\r\n");
out.write("</footer>\r\n");
out.write("</div>\r\n");
out.write("\r\n");
out.write("</div>\r\n");
out.write("<!-- /.container -->\r\n");
out.write("\r\n");
out.write("\r\n");
out.write("<!-- Bootstrap core JavaScript\r\n");
out.write(" ================================================== -->\r\n");
out.write("<!-- Placed at the end of the document so the pages load faster -->\r\n");
out.write("<script\r\n");
out.write("\tsrc=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js\"></script>\r\n");
out.write("<script>\r\n");
out.write("\twindow.jQuery\r\n");
out.write("\t\t\t|| document\r\n");
out.write("\t\t\t\t\t.write('<script src=\"");
if (_jspx_meth_c_005furl_005f10(_jspx_page_context))
return;
out.write("\"><\\/script>')\r\n");
out.write("</script>\r\n");
out.write("<script src=\"");
if (_jspx_meth_c_005furl_005f11(_jspx_page_context))
return;
out.write("\"></script>\r\n");
out.write("\r\n");
out.write("</body>\r\n");
out.write("</html>");
} catch (java.lang.Throwable t) {
if (!(t instanceof javax.servlet.jsp.SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
try { out.clearBuffer(); } catch (java.io.IOException e) {}
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
private boolean _jspx_meth_c_005furl_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f0.setParent(null);
// /WEB-INF/views/template/header.jsp(19,12) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f0.setValue("/resources/css/bootstrap.min.css");
int _jspx_eval_c_005furl_005f0 = _jspx_th_c_005furl_005f0.doStartTag();
if (_jspx_th_c_005furl_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0);
return false;
}
private boolean _jspx_meth_c_005furl_005f1(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f1 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f1.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f1.setParent(null);
// /WEB-INF/views/template/header.jsp(22,12) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f1.setValue("/resources/css/carousel.css");
int _jspx_eval_c_005furl_005f1 = _jspx_th_c_005furl_005f1.doStartTag();
if (_jspx_th_c_005furl_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f1);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f1);
return false;
}
private boolean _jspx_meth_c_005furl_005f2(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f2 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f2.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f2.setParent(null);
// /WEB-INF/views/template/header.jsp(25,12) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f2.setValue("/resources/css/main.css");
int _jspx_eval_c_005furl_005f2 = _jspx_th_c_005furl_005f2.doStartTag();
if (_jspx_th_c_005furl_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f2);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f2);
return false;
}
private boolean _jspx_meth_c_005furl_005f3(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f3 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f3.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f3.setParent(null);
// /WEB-INF/views/template/header.jsp(49,20) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f3.setValue("/");
int _jspx_eval_c_005furl_005f3 = _jspx_th_c_005furl_005f3.doStartTag();
if (_jspx_th_c_005furl_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f3);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f3);
return false;
}
private boolean _jspx_meth_c_005furl_005f4(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f4 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f4.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f4.setParent(null);
// /WEB-INF/views/template/header.jsp(50,20) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f4.setValue("/book/bookList");
int _jspx_eval_c_005furl_005f4 = _jspx_th_c_005furl_005f4.doStartTag();
if (_jspx_th_c_005furl_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f4);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f4);
return false;
}
private boolean _jspx_meth_c_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f0 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
_jspx_th_c_005fif_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f0.setParent(null);
// /WEB-INF/views/template/header.jsp(54,6) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f0.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.userPrincipal.name != null}", java.lang.Boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)).booleanValue());
int _jspx_eval_c_005fif_005f0 = _jspx_th_c_005fif_005f0.doStartTag();
if (_jspx_eval_c_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("\r\n");
out.write("\t\t\t\t\t\t\t<li><a>Welocme: ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.userPrincipal.name}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("</a></li>\r\n");
out.write("\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f5(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("\">Logout</a></li>\r\n");
out.write("\t\t\t\t\t\t\t");
if (_jspx_meth_c_005fif_005f1(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("\r\n");
out.write("\t\t\t\t\t\t\t");
if (_jspx_meth_c_005fif_005f2(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("\r\n");
out.write("\t\t\t\t\t\t\t\r\n");
out.write("\t\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f0.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f0);
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f0);
return false;
}
private boolean _jspx_meth_c_005furl_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f5 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f5.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/template/header.jsp(56,20) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f5.setValue("/j_spring_security_logout");
int _jspx_eval_c_005furl_005f5 = _jspx_th_c_005furl_005f5.doStartTag();
if (_jspx_th_c_005furl_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f5);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f5);
return false;
}
private boolean _jspx_meth_c_005fif_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f1 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
_jspx_th_c_005fif_005f1.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/template/header.jsp(57,7) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f1.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.userPrincipal.name != 'admin'}", java.lang.Boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)).booleanValue());
int _jspx_eval_c_005fif_005f1 = _jspx_th_c_005fif_005f1.doStartTag();
if (_jspx_eval_c_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("\r\n");
out.write("\t\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f6(_jspx_th_c_005fif_005f1, _jspx_page_context))
return true;
out.write("\">Cart</a></li>\r\n");
out.write("\t\t\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f1.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f1);
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f1);
return false;
}
private boolean _jspx_meth_c_005furl_005f6(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f6 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f6.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f1);
// /WEB-INF/views/template/header.jsp(58,21) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f6.setValue("/customer/cart");
int _jspx_eval_c_005furl_005f6 = _jspx_th_c_005furl_005f6.doStartTag();
if (_jspx_th_c_005furl_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f6);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f6);
return false;
}
private boolean _jspx_meth_c_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f2 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
_jspx_th_c_005fif_005f2.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/template/header.jsp(60,7) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f2.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.userPrincipal.name == 'admin'}", java.lang.Boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)).booleanValue());
int _jspx_eval_c_005fif_005f2 = _jspx_th_c_005fif_005f2.doStartTag();
if (_jspx_eval_c_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("\r\n");
out.write("\t\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f7(_jspx_th_c_005fif_005f2, _jspx_page_context))
return true;
out.write("\">Admin</a></li>\r\n");
out.write("\t\t\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f2.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f2);
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f2);
return false;
}
private boolean _jspx_meth_c_005furl_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f7 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f7.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f2);
// /WEB-INF/views/template/header.jsp(61,21) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f7.setValue("/admin");
int _jspx_eval_c_005furl_005f7 = _jspx_th_c_005furl_005f7.doStartTag();
if (_jspx_th_c_005furl_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f7);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f7);
return false;
}
private boolean _jspx_meth_c_005fif_005f3(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f3 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
_jspx_th_c_005fif_005f3.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f3.setParent(null);
// /WEB-INF/views/template/header.jsp(65,6) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f3.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.userPrincipal.name == null}", java.lang.Boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)).booleanValue());
int _jspx_eval_c_005fif_005f3 = _jspx_th_c_005fif_005f3.doStartTag();
if (_jspx_eval_c_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("\r\n");
out.write("\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f8(_jspx_th_c_005fif_005f3, _jspx_page_context))
return true;
out.write("\">Login</a></li>\r\n");
out.write("\t\t\t\t\t\t\t<li><a href=\"");
if (_jspx_meth_c_005furl_005f9(_jspx_th_c_005fif_005f3, _jspx_page_context))
return true;
out.write("\">Register</a></li>\r\n");
out.write("\t\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f3.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f3);
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f3);
return false;
}
private boolean _jspx_meth_c_005furl_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f8 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f8.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f3);
// /WEB-INF/views/template/header.jsp(66,20) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f8.setValue("/admin");
int _jspx_eval_c_005furl_005f8 = _jspx_th_c_005furl_005f8.doStartTag();
if (_jspx_th_c_005furl_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f8);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f8);
return false;
}
private boolean _jspx_meth_c_005furl_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f9 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f9.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f3);
// /WEB-INF/views/template/header.jsp(67,20) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f9.setValue("/register");
int _jspx_eval_c_005furl_005f9 = _jspx_th_c_005furl_005f9.doStartTag();
if (_jspx_th_c_005furl_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f9);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f9);
return false;
}
private boolean _jspx_meth_form_005fform_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// form:form
org.springframework.web.servlet.tags.form.FormTag _jspx_th_form_005fform_005f0 = (org.springframework.web.servlet.tags.form.FormTag) _005fjspx_005ftagPool_005fform_005fform_0026_005fcommandName_005fclass.get(org.springframework.web.servlet.tags.form.FormTag.class);
_jspx_th_form_005fform_005f0.setPageContext(_jspx_page_context);
_jspx_th_form_005fform_005f0.setParent(null);
// /WEB-INF/flows/checkout/orderConfirmation.jsp(19,16) name = commandName type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_form_005fform_005f0.setCommandName("order");
// /WEB-INF/flows/checkout/orderConfirmation.jsp(19,16) null
_jspx_th_form_005fform_005f0.setDynamicAttribute(null, "class", "form-horizontal");
int[] _jspx_push_body_count_form_005fform_005f0 = new int[] { 0 };
try {
int _jspx_eval_form_005fform_005f0 = _jspx_th_form_005fform_005f0.doStartTag();
if (_jspx_eval_form_005fform_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("\n");
out.write("\n");
out.write(" <div class=\"well col-xs-10 col-sm-10 col-md-6 col-xs-offset-1 col-sm-offset-1 col-md-offset-3\">\n");
out.write("\n");
out.write(" <div class=\"txt-center\">\n");
out.write(" <h1>Receipt</h1>\n");
out.write(" </div>\n");
out.write(" <div class=\"row\">\n");
out.write(" <div class=\"col-xs-6 col-sm-6 col-md-6\">\n");
out.write(" <address>\n");
out.write(" <strong>Shipping Address</strong><br/>\n");
out.write(" ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.shippingAddress.streetName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("\n");
out.write(" <br/>\n");
out.write(" ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.shippingAddress.city}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write(',');
out.write(' ');
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.shippingAddress.state}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("\n");
out.write(" <br/>\n");
out.write(" ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.shippingAddress.country}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write(',');
out.write(' ');
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.shippingAddress.zipCode}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("\n");
out.write(" </address>\n");
out.write(" </div>\n");
out.write(" <div class=\"col-xs-6 col-sm-6 col-md-6 text-right\">\n");
out.write(" <p>Shipping Date: ");
if (_jspx_meth_fmt_005fformatDate_005f0(_jspx_th_form_005fform_005f0, _jspx_page_context, _jspx_push_body_count_form_005fform_005f0))
return true;
out.write("</p>\n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write("\n");
out.write(" <div class=\"row\">\n");
out.write(" <div class=\"col-xs-6 col-sm-6 col-md-6\">\n");
out.write(" <address>\n");
out.write(" <strong>Billing Address</strong><br/>\n");
out.write(" ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.billingAddress.streetName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("\n");
out.write(" <br/>\n");
out.write(" ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.billingAddress.city}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write(',');
out.write(' ');
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.billingAddress.state}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("\n");
out.write(" <br/>\n");
out.write(" ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.billingAddress.country}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write(',');
out.write(' ');
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.customer.billingAddress.zipCode}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("\n");
out.write(" </address>\n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write("\n");
out.write(" <div class=\"row\">\n");
out.write(" <table class=\"table table-hover\">\n");
out.write(" <thead>\n");
out.write(" <tr>\n");
out.write(" <td>Book</td>\n");
out.write(" <td>Unit</td>\n");
out.write(" <td class=\"text-center\">Price</td>\n");
out.write(" <td class=\"text-center\">Total</td>\n");
out.write(" </tr>\n");
out.write(" </thead>\n");
out.write(" <tbody>\n");
out.write(" ");
if (_jspx_meth_c_005fforEach_005f0(_jspx_th_form_005fform_005f0, _jspx_page_context, _jspx_push_body_count_form_005fform_005f0))
return true;
out.write("\n");
out.write("\n");
out.write(" <tr>\n");
out.write(" <td></td>\n");
out.write(" <td></td>\n");
out.write(" <td class=\"text-right\">\n");
out.write(" <h4><strong>Grand Total:</strong></h4>\n");
out.write(" </td>\n");
out.write(" <td class=\"text-center text-danger\">\n");
out.write(" <h4><strong>$ ");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${order.cart.grandTotal}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("</strong></h4>\n");
out.write(" </td>\n");
out.write(" </tr>\n");
out.write("\n");
out.write(" </tbody>\n");
out.write(" </table>\n");
out.write(" </div>\n");
out.write("\n");
out.write("\n");
out.write(" <input type=\"hidden\" name=\"_flowExecutionKey\" />\n");
out.write("\n");
out.write(" <br/><br/>\n");
out.write("\n");
out.write(" <button class=\"btn btn-default\" name=\"_eventId_backToCollectShippingDetail\">Back</button>\n");
out.write("\n");
out.write(" <input type=\"submit\" value=\"Submit Order\" class=\"btn btn-default\" name=\"_eventId_orderConfirmed\" />\n");
out.write("\n");
out.write(" <button class=\"btn btn-default\" name=\"_eventId_cancel\">Cancel</button>\n");
out.write(" </div>\n");
out.write(" ");
int evalDoAfterBody = _jspx_th_form_005fform_005f0.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_form_005fform_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_form_005fform_005f0[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_form_005fform_005f0.doCatch(_jspx_exception);
} finally {
_jspx_th_form_005fform_005f0.doFinally();
_005fjspx_005ftagPool_005fform_005fform_0026_005fcommandName_005fclass.reuse(_jspx_th_form_005fform_005f0);
}
return false;
}
private boolean _jspx_meth_fmt_005fformatDate_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_form_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context, int[] _jspx_push_body_count_form_005fform_005f0)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// fmt:formatDate
org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag _jspx_th_fmt_005fformatDate_005f0 = (org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag) _005fjspx_005ftagPool_005ffmt_005fformatDate_0026_005fvalue_005ftype_005fnobody.get(org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag.class);
_jspx_th_fmt_005fformatDate_005f0.setPageContext(_jspx_page_context);
_jspx_th_fmt_005fformatDate_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_form_005fform_005f0);
// /WEB-INF/flows/checkout/orderConfirmation.jsp(38,50) name = type type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fmt_005fformatDate_005f0.setType("date");
// /WEB-INF/flows/checkout/orderConfirmation.jsp(38,50) name = value type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fmt_005fformatDate_005f0.setValue((java.util.Date) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${now}", java.util.Date.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
int _jspx_eval_fmt_005fformatDate_005f0 = _jspx_th_fmt_005fformatDate_005f0.doStartTag();
if (_jspx_th_fmt_005fformatDate_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005ffmt_005fformatDate_0026_005fvalue_005ftype_005fnobody.reuse(_jspx_th_fmt_005fformatDate_005f0);
return true;
}
_005fjspx_005ftagPool_005ffmt_005fformatDate_0026_005fvalue_005ftype_005fnobody.reuse(_jspx_th_fmt_005fformatDate_005f0);
return false;
}
private boolean _jspx_meth_c_005fforEach_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_form_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context, int[] _jspx_push_body_count_form_005fform_005f0)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:forEach
org.apache.taglibs.standard.tag.rt.core.ForEachTag _jspx_th_c_005fforEach_005f0 = (org.apache.taglibs.standard.tag.rt.core.ForEachTag) _005fjspx_005ftagPool_005fc_005fforEach_0026_005fvar_005fitems.get(org.apache.taglibs.standard.tag.rt.core.ForEachTag.class);
_jspx_th_c_005fforEach_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005fforEach_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_form_005fform_005f0);
// /WEB-INF/flows/checkout/orderConfirmation.jsp(66,32) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fforEach_005f0.setVar("cartItem");
// /WEB-INF/flows/checkout/orderConfirmation.jsp(66,32) name = items type = javax.el.ValueExpression reqTime = true required = false fragment = false deferredValue = true expectedTypeName = java.lang.Object deferredMethod = false methodSignature = null
_jspx_th_c_005fforEach_005f0.setItems(new org.apache.jasper.el.JspValueExpression("/WEB-INF/flows/checkout/orderConfirmation.jsp(66,32) '${order.cart.cartItems}'",_el_expressionfactory.createValueExpression(_jspx_page_context.getELContext(),"${order.cart.cartItems}",java.lang.Object.class)).getValue(_jspx_page_context.getELContext()));
int[] _jspx_push_body_count_c_005fforEach_005f0 = new int[] { 0 };
try {
int _jspx_eval_c_005fforEach_005f0 = _jspx_th_c_005fforEach_005f0.doStartTag();
if (_jspx_eval_c_005fforEach_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("\n");
out.write(" <tr>\n");
out.write(" <td class=\"col-md-9\"><em>");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${cartItem.book.bookName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("</em></td>\n");
out.write(" <td class=\"col-md-1\" style=\"text-align: center\">");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${cartItem.quantity}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("</td>\n");
out.write(" <td class=\"col-md-1\" style=\"text-align: center\">");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${cartItem.book.bookPrice}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("</td>\n");
out.write(" <td class=\"col-md-1\" style=\"text-align: center\">");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${cartItem.totalPrice}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));
out.write("</td>\n");
out.write(" </tr>\n");
out.write(" ");
int evalDoAfterBody = _jspx_th_c_005fforEach_005f0.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fforEach_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_c_005fforEach_005f0[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_c_005fforEach_005f0.doCatch(_jspx_exception);
} finally {
_jspx_th_c_005fforEach_005f0.doFinally();
_005fjspx_005ftagPool_005fc_005fforEach_0026_005fvar_005fitems.reuse(_jspx_th_c_005fforEach_005f0);
}
return false;
}
private boolean _jspx_meth_c_005furl_005f10(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f10 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f10.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f10.setParent(null);
// /WEB-INF/views/template/footer.jsp(25,26) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f10.setValue("/resources/js/jquery-3.1.1.min.js");
int _jspx_eval_c_005furl_005f10 = _jspx_th_c_005furl_005f10.doStartTag();
if (_jspx_th_c_005furl_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f10);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f10);
return false;
}
private boolean _jspx_meth_c_005furl_005f11(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f11 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
_jspx_th_c_005furl_005f11.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f11.setParent(null);
// /WEB-INF/views/template/footer.jsp(27,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f11.setValue("/resources/js/bootstrap.min.js");
int _jspx_eval_c_005furl_005f11 = _jspx_th_c_005furl_005f11.doStartTag();
if (_jspx_th_c_005furl_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f11);
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f11);
return false;
}
}
| [
"[email protected]"
]
| |
15eeaedfd12e68646cc0c03263937d2a069371dc | 3827676d6d02510db97d9f387d0bd07dce2bb8bd | /src/zadaci_13_02_2018/Zadatak_2_MinimumNiza.java | bc664bcf0fc6d71f9eb1cbe2215a3b5bfd011f3e | []
| no_license | OmerSalkanovic/BILD-IT-Zadaci | a4017062c3da56c6f1525aee85d3b07634134ff6 | 7740514738e03a79589ed7b2767f8d9b21112f01 | refs/heads/master | 2021-04-30T11:23:43.192760 | 2018-02-27T17:40:15 | 2018-02-27T17:40:15 | 121,252,628 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 507 | java | package zadaci_13_02_2018;
import java.util.Scanner;
public class Zadatak_2_MinimumNiza extends Methods {
public static void main(String[] args) {
runApp();
}
public static void runApp() {
Scanner unos = new Scanner(System.in);
double[] array = new double[10];
for(int i=0;i<array.length;i++) {
System.out.print("Unesi " + (i+1) + " element niza: ");
array[i] = unos.nextDouble();
}
System.out.println("Najmanji element niza je " + min(array));
unos.close();
}
}
| [
"[email protected]"
]
| |
59ddefa0d92541718f200ff65b876e3a8c58ecb9 | 835c4b1e74c74cb27a64fec7acd319f0d629f535 | /MidTerm_801084151/app/src/main/java/com/example/midterm_801084151/forecastAdapter.java | bc6762856bafdeba81a52b439c808878a8efdcc9 | []
| no_license | harshkv/WeatherApplication | 1d1533e83c4ac08eaede341b3d12fa28bb937b22 | c847dbc012a464640dc15e53fdf65941021402d7 | refs/heads/master | 2020-09-25T07:57:59.806907 | 2019-12-20T17:33:34 | 2019-12-20T17:33:34 | 225,956,210 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,796 | java | package com.example.midterm_801084151;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import com.squareup.picasso.Picasso;
import org.ocpsoft.prettytime.PrettyTime;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import static android.view.LayoutInflater.*;
public class forecastAdapter extends RecyclerView.Adapter<forecastAdapter.viewHolder> {
ArrayList<weatherForcast> mdata;
public forecastAdapter(ArrayList<weatherForcast> mdata) {
this.mdata = mdata;
}
@NonNull
@Override
public viewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view = from(parent.getContext())
.inflate(R.layout.each_item, parent, false);
viewHolder viewHolder = new viewHolder(view);
return viewHolder;
}
@Override
public void onBindViewHolder(@NonNull viewHolder holder, int position) {
weatherForcast weather = mdata.get(position);
holder.tv_settempf.setText("Temperature " +weather.getTempf());
holder.tv_sethumif.setText("Humidity "+weather.getHumidityf());
holder.tv_descf.setText(weather.getDescf());
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
Date convertedDate = null;
try {
convertedDate = dateFormat.parse(weather.datef);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
PrettyTime p = new PrettyTime();
long dateinmilli= convertedDate.getTime();
holder.tv_timef.setText( p.format(new Date(dateinmilli)));
String url = "http://openweathermap.org/img/wn/" + weather.imageIconf + "@2x.png";
Picasso.get().load(url).resize(300, 300).centerCrop().into((holder.iv_icon));
}
@Override
public int getItemCount() {
return mdata.size();
}
public static class viewHolder extends RecyclerView.ViewHolder{
TextView tv_timef, tv_settempf, tv_sethumif,tv_descf,tv_time;
ImageView iv_icon;
public viewHolder(@NonNull View itemView) {
super(itemView);
tv_timef = itemView.findViewById(R.id.tv_time);
tv_settempf = itemView.findViewById(R.id.tv_settemp);
tv_sethumif = itemView.findViewById(R.id.tv_sethumi);
tv_descf = itemView.findViewById(R.id.tv_desc);
tv_timef = itemView.findViewById(R.id.tv_time);
iv_icon = itemView.findViewById(R.id.iv_icon);
}
}
}
| [
"[email protected]"
]
| |
47ca4fa2d9289673a44255c2eb7a87a24660176e | 622259e01d8555d552ddeba045fafe6624d80312 | /edu.harvard.i2b2.eclipse.plugins.previousQuery/gensrc/edu/harvard/i2b2/crcxmljaxb/datavo/pdo/query/RangeType.java | 7bb14de3ae2244279dbb41c2aa7abdc1e04ab413 | []
| no_license | kmullins/i2b2-workbench-old | 93c8e7a3ec7fc70b68c4ce0ae9f2f2c5101f5774 | 8144b0b62924fa8a0e4076bf9672033bdff3b1ff | refs/heads/master | 2021-05-30T01:06:11.258874 | 2015-11-05T18:00:58 | 2015-11-05T18:00:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,462 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.07.21 at 10:39:09 AM EDT
//
package edu.harvard.i2b2.crcxmljaxb.datavo.pdo.query;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for rangeType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="rangeType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="min" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="max" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "rangeType")
@XmlSeeAlso({
EidListType.class,
PatientListType.class,
EventListType.class,
PidListType.class
})
public class RangeType {
@XmlAttribute
protected Integer min;
@XmlAttribute
protected Integer max;
/**
* Gets the value of the min property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMin() {
return min;
}
/**
* Sets the value of the min property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMin(Integer value) {
this.min = value;
}
/**
* Gets the value of the max property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMax() {
return max;
}
/**
* Sets the value of the max property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMax(Integer value) {
this.max = value;
}
}
| [
"[email protected]"
]
| |
3808da66b5a4a386aa5d7572484fc7bfe41a5927 | c970a9be696ea20172e96c7440929a463b420599 | /app/src/main/java/edu/hzuapps/androidworks/homeworks/net1314080903218/Net1314080903218SDFileExplorer.java | b88780da3e5888ee7dd2855183aadc329e4bf36b | []
| no_license | TPGorTJK/android-labs | 877bbfe660738d588f3fde191c8f12d93aaba01b | 1e57a900a6226487884d62791d4ebee1ffa29972 | refs/heads/master | 2021-01-15T22:15:36.757579 | 2016-06-29T16:58:57 | 2016-06-29T16:58:57 | 57,192,845 | 0 | 0 | null | 2016-04-27T07:24:52 | 2016-04-27T07:24:52 | null | GB18030 | Java | false | false | 4,067 | java | package edu.hzuapps.androidworks.homeworks.Net134080903218;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
public class Net1314080903218SDFileExplorer extends Activity
{
ListView listView;
TextView textView;
// 记录当前的父文件夹
File currentParent;
// 记录当前路径下的所有文件的文件数组
File[] currentFiles;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.Net1314080903218main);
// 获取列出全部文件的ListView
listView = (ListView) findViewById(R.id.list);
textView = (TextView) findViewById(R.id.path);
// 获取系统的SD卡的目录
File root = new File("/mnt/sdcard/");
// 如果 SD卡存在
if (root.exists())
{
currentParent = root;
currentFiles = root.listFiles();
// 使用当前目录下的全部文件、文件夹来填充ListView
inflateListView(currentFiles);
}
// 为ListView的列表项的单击事件绑定监听器
listView.setOnItemClickListener(new OnItemClickListener()
{
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id)
{
// 用户单击了文件,直接返回,不做任何处理
if (currentFiles[position].isFile()) return;
// 获取用户点击的文件夹下的所有文件
File[] tmp = currentFiles[position].listFiles();
if (tmp == null || tmp.length == 0)
{
Toast.makeText(SDFileExplorer.this
, "当前路径不可访问或该路径下没有文件",
Toast.LENGTH_SHORT).show();
}
else
{
// 获取用户单击的列表项对应的文件夹,设为当前的父文件夹
currentParent = currentFiles[position]; //②
// 保存当前的父文件夹内的全部文件和文件夹
currentFiles = tmp;
// 再次更新ListView
inflateListView(currentFiles);
}
}
});
// 获取上一级目录的按钮
Button parent = (Button) findViewById(R.id.parent);
parent.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View source)
{
try
{
if (!currentParent.getCanonicalPath()
.equals("/mnt/sdcard"))
{
// 获取上一级目录
currentParent = currentParent.getParentFile();
// 列出当前目录下所有文件
currentFiles = currentParent.listFiles();
// 再次更新ListView
inflateListView(currentFiles);
}
}
catch (IOException e)
{
e.printStackTrace();
}
}
});
}
private void inflateListView(File[] files) //①
{
// 创建一个List集合,List集合的元素是Map
List<Map<String, Object>> listItems =
new ArrayList<Map<String, Object>>();
for (int i = 0; i < files.length; i++)
{
Map<String, Object> listItem =
new HashMap<String, Object>();
// 如果当前File是文件夹,使用folder图标;否则使用file图标
if (files[i].isDirectory())
{
listItem.put("icon", R.drawable.folder);
}
else
{
listItem.put("icon", R.drawable.file);
}
listItem.put("fileName", files[i].getName());
// 添加List项
listItems.add(listItem);
}
// 创建一个SimpleAdapter
SimpleAdapter simpleAdapter = new SimpleAdapter(this
, listItems, R.layout.line
, new String[]{ "icon", "fileName" }
, new int[]{R.id.icon, R.id.file_name });
// 为ListView设置Adapter
listView.setAdapter(simpleAdapter);
try
{
textView.setText("当前路径为:"
+ currentParent.getCanonicalPath());
}
catch (IOException e)
{
e.printStackTrace();
}
}
} | [
"[email protected]"
]
| |
822c4ba14cbc5485d3e371f6c14ff2f3033ab06f | 52085a90f2198beb424b876299fe53a56a8460da | /tuts/ConstructorOverload.java | f3e472ede3223d78fbb088ba92442706a14fb6b5 | []
| no_license | TanayKapoor/JAVA | fd054faebf599668fe1f4d99de426f17c49ef9e0 | 088fd0c286120b06150e51a143bca710a34fd625 | refs/heads/main | 2023-05-07T07:40:28.503976 | 2021-05-27T05:46:46 | 2021-05-27T05:46:46 | 326,614,569 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 700 | java | package tuts;
class Box {
double width;
double height;
double length;
Box() {
width = -1;
height = -1;
length = -1;
}
Box(double w, double h, double l) {
System.out.println("Constructor 2");
width = w;
height = h;
length = l;
}
Box(double l) {
width = height = length = l;
}
double volume() {
return height * length * width;
}
}
public class ConstructorOverload {
public static void main(String[] args) {
Box box1 = new Box(10, 20, 30);
Box box2 = new Box(30);
System.out.println(box1.volume());
System.out.println(box2.volume());
}
}
| [
"[email protected]"
]
| |
13cc1d64b20c11a0a68f04e07865f8e87e237cde | c2a9aaa0354e0e052b36482a4e22fa2b362843f9 | /Minihack6/src/controllers/EnemyControllerWhite.java | 62ef3452fd2a2e0e5998160ffd27b19e93388b61 | []
| no_license | lehuyduc/Mini-hackathon | 12789b7f7c760312efcfa6667f5f277344d3b090 | 3b99c3f9ab02e1f9fe81b9f05055e05e8636db77 | refs/heads/master | 2021-01-11T05:16:29.811843 | 2018-04-18T09:17:21 | 2018-04-18T09:17:21 | 71,677,983 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,224 | java | package controllers;
import main.GameConfig;
import main.gameScreens.PlayGameScreen;
import models.GameObject;
import utilities.Utils;
import java.awt.*;
/**
* Created by Le Huy Duc on 23/10/2016.
*/
public class EnemyControllerWhite extends EnemyController implements Colliable {
private static int SIZEX = 50, SIZEY = 50;
private int moveStep;
private EnemyControllerWhite(int column, int row) {
super(column,row);
unitName = "mummy";
moveDirections = 4;
maxMoveStep = 2;
gameObject.setPowerLevel(2);
gameObject.setHealth(2);
}
public static EnemyControllerWhite create(int column, int row) {
return new EnemyControllerWhite(column,row);
}
public void init() {
moveStep = maxMoveStep;
}
//********** COLLISION *********************************************************************
@Override
public GameObject getCollisionObject() {
return gameObject;
}
@Override
public void onCollide(Colliable col) {
if (col instanceof EnemyController) {
GameObject go = col.getCollisionObject();
go.takeDamage(gameObject.getPowerLevel());
}
if (col instanceof PlayerController) {
GameObject go = col.getCollisionObject();
go.takeDamage(1000);
}
}
// Mummy trắng đi ngang trước dọc sau
private Point tryDirection(int column0, int row0) {
int column, row, sql = GameConfig.DEFAULT_TILE_LENGTH, best = 1000000;
Point res = new Point(column0,row0);
GameObject player = PlayerController.instance.getGameObject();
for (int i=0;i<=moveDirections;i++) {
column = column0 + dx[i];
row = row0 + dy[i];
if (Utils.manDistance(column,row,player.getColumn(),player.getRow()) <= best) {
best = Utils.manDistance(column,row,player.getColumn(),player.getRow());
if (Utils.canMoveTo(column0,row0,column,row)) {
res = new Point(column,row);
moveType = moveTypes[i];
beginPoint = new Point(gameObject.getX(),gameObject.getY());
targetPoint = new Point(column*sql+sql/2,row*sql+sql/2);
targetGrid = new Point(column,row);
}
}
}
return res;
}
public void move(GameObject go) {
Point target = tryDirection(go.getColumn(),go.getRow());
if (target.x==getColumn() && target.y==getRow()) return; // do nothing because already there
isMoving = true;
animationView.firstImage = System.currentTimeMillis();
}
public boolean finished() {
return (!isMoving) && (!isFighting) && moveStep==0;
}
public void draw(Graphics g) {
if (animationView.nImage==0) animationView.setSheet("mummy_down.png",5);
if (isMoving) animationView.drawImage(g,gameObject);
else animationView.drawImage(g,gameObject,true);
}
public void run() {
if (isMoving) {moveAnimation(); return;}
if (PlayGameScreen.playerTurn) return;
if (moveStep > 0) {moveStep--; move(gameObject);}
}
}
| [
"[email protected]"
]
| |
6e200f85a05177729c918f5e88026fe69417e235 | b2743e356060dc9145b0aa6c773e4c2e70735c0d | /Assignment/src/token/Token.java | 4bb212c76b320cbdba40eaacb6474f5e89f09ea2 | []
| no_license | Joan0018/Data-Strucure-and-Algrithm-Project | 1c7b060c3a229208fdb5fbef4ca755b489d4c2fb | 4576b1f3933f3d4db2bf125237c13c87f874f650 | refs/heads/master | 2023-07-09T08:11:08.961687 | 2021-08-16T02:56:41 | 2021-08-16T02:56:41 | 321,879,338 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,222 | 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 token;
//import java.util.logging.Logger;
/**
*
* @author Yeu
*/
public class Token{
private String name;
private char token;
private int count;
public Token() {
}
public Token(String name) {
this.name = name;
}
public Token(char token) {
this.token = token;
}
public Token(String name, char token, int count) {
this.name = name;
this.count = count;
this.token = token;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setToken(char token) {
this.token = token;
}
public char getToken() {
return token;
}
public void setCount(int count) {
this.count = count;
}
public int getCount() {
return count;
}
@Override
public String toString() {
return "Token{" + "name=" + name + ", token=" + token + ", count=" + count + '}';
}
}
| [
"[email protected]"
]
| |
a5ed9b549f7c547295e5c3f9900bf1ad57863d6b | c8639695664846ace28de748dbd3d621f7241ab7 | /mvc03/src/main/java/kt/c/listener/ContextLoaderListener02.java | b6b9dcc1076a98383ca632030dcb8da60892d38e | []
| no_license | JisuChoi/ktds_web | ed4c4cd57cea3127d97c78bc9b12be5c96104e8f | 38adcc2b5fac22292a4b2c255053e08db784b9ee | refs/heads/master | 2016-09-16T04:58:25.508304 | 2014-08-13T10:46:49 | 2014-08-13T10:46:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,002 | java | package kt.c.listener;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import kt.c.control.BoardDeleteController;
import kt.c.control.BoardDetailController;
import kt.c.control.BoardListController;
import kt.c.control.BoardUpdateController;
import kt.c.control.BoardWriteController;
import kt.c.control.LoginController;
import kt.c.control.LogoutController;
import kt.c.dao.BoardDAO;
import kt.c.dao.LoginDAO;
import oracle.jdbc.pool.OracleDataSource;
public class ContextLoaderListener02 implements ServletContextListener {
OracleDataSource dataSource;
/* 웹 애플리케이션이 시작되면 호출된다.*/
@Override
public void contextInitialized(ServletContextEvent sce) {
System.out.println("ContextLoaderListener.contextInitialized()");
// 웹 애플리케이션을 시작할 때 서블릿이나 필터 등이 사용할 데이터 준비
ServletContext ctx = sce.getServletContext();
ctx.setAttribute("contextRoot", ctx.getContextPath());
try {
dataSource = new OracleDataSource();
dataSource.setURL("jdbc:oracle:thin:hr/[email protected]:1521:xe");
BoardDAO boardDAO = new BoardDAO();
boardDAO.setDataSource(dataSource);
LoginDAO loginDAO = new LoginDAO();
loginDAO.setDataSource(dataSource);
BoardListController boardListController = new BoardListController();
boardListController.setBoardDAO(boardDAO);
ctx.setAttribute("/board/list.do", boardListController);
LoginController loginController = new LoginController();
loginController.setLoginDAO(loginDAO);
ctx.setAttribute("/auth/login.do", loginController);
BoardDetailController boardDetailController = new BoardDetailController();
boardDetailController.setBoardDAO(boardDAO);
ctx.setAttribute("/board/detail.do", boardDetailController);
BoardDeleteController boardDeleteController = new BoardDeleteController();
boardDeleteController.setBoardDAO(boardDAO);
ctx.setAttribute("/board/delete.do", boardDeleteController);
BoardWriteController boardWriteController = new BoardWriteController();
boardWriteController.setBoardDAO(boardDAO);
ctx.setAttribute("/board/write.do", boardWriteController);
BoardUpdateController boardUpdateController = new BoardUpdateController();
boardUpdateController.setBoardDAO(boardDAO);
ctx.setAttribute("/board/update.do", boardUpdateController);
ctx.setAttribute("/auth/logout.do", new LogoutController());
} catch (Exception e) {
e.printStackTrace();
}
}
/* 웹 애플리케이션을 종료하기 전에 호출된다.*/
@Override
public void contextDestroyed(ServletContextEvent sce) {
System.out.println("ContextLoaderListener.contextDestroyed()");
// 웹 애플리케이션을 종료하기 전에 마무리할 작업 수행
try {dataSource.close();} catch(Throwable e) {}
}
}
| [
"[email protected]"
]
| |
af744cf458a587eb330d963b37a00cd730eab54e | c64f4426910f94b3de9c992bd9e08fa3b9cbbcd2 | /module02/ca/mcgill/comp303/module02/lecture2/Hand.java | dc41c1a07fa248b432f847f09d27a6d91eed8f14 | []
| no_license | aplescia/SolitaireCOMP303 | 4f858c9b9dce63289f0b596e401f87a3b3a77096 | 99555d18354c1fa56591a9bca876dddbce82e3fc | refs/heads/master | 2021-05-04T10:51:13.563355 | 2016-01-24T20:53:23 | 2016-01-24T20:53:23 | 50,307,088 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 950 | java | package ca.mcgill.comp303.module02.lecture2;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import ca.mcgill.comp303.module02.lecture2.Card.Rank;
public class Hand implements Iterable<Card>
{
private List<Card> aCards = new ArrayList<Card>();
@Override
public Iterator<Card> iterator()
{
return aCards.iterator();
}
public static Comparator<Hand> createComparator(Rank pRank)
{
return new HandComparator(pRank);
}
}
class HandComparator implements Comparator<Hand>
{
private final Rank aRank;
public HandComparator(Rank pRank)
{
aRank = pRank;
}
@Override
public int compare(Hand pHand1, Hand pHand2)
{
return numberOfCardsWithRank(pHand1) - numberOfCardsWithRank(pHand2);
}
private int numberOfCardsWithRank(Hand pHand)
{
int total = 0;
for( Card card : pHand)
{
if( card.getRank() == aRank )
{
total++;
}
}
return total;
}
}
| [
"[email protected]"
]
| |
4cc852be2f3520407ccc8876927a5e930acc9e5f | d2509f2e74c16c1fc904154e36dfd4a5a7aecb72 | /fehidro-api-v2/src/main/java/fehidro/api/controller/TipoPropostaController.java | e831d84313ed5d29bfd4fd7abbcb248b850f3c86 | []
| no_license | leotiso/fehidro | 569c4ddfc1ab8c8fca43d6c335eb44a00e3b5a72 | dc69c747b5734e9ae25242080d36a41d5b7f344f | refs/heads/master | 2023-01-24T13:00:46.031271 | 2020-12-06T00:06:33 | 2020-12-06T00:06:33 | 260,064,313 | 0 | 4 | null | 2020-12-06T00:06:34 | 2020-04-29T23:00:10 | Java | UTF-8 | Java | false | false | 2,446 | java | package fehidro.api.controller;
import java.net.URI;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.util.UriComponentsBuilder;
import fehidro.api.model.TipoProposta;
import fehidro.api.repository.TipoPropostaRepository;
import io.swagger.annotations.ApiOperation;
@RestController
@RequestMapping("/tipoProposta")
public class TipoPropostaController {
@Autowired
private TipoPropostaRepository _tipoPropostaRepository;
@ApiOperation(value = "Retorna uma lista de tipos de proposta")
@GetMapping(produces="application/json")
public ResponseEntity<List<TipoProposta>> getAll() {
return ResponseEntity.ok(_tipoPropostaRepository.findAll());
}
@ApiOperation(value = "Retorna um tipo de proposta encontrado por seu id")
@GetMapping(value = "/{id}", produces="application/json")
public ResponseEntity<TipoProposta> get(@PathVariable(value = "id") Long id) {
Optional<TipoProposta> tipoProposta = _tipoPropostaRepository.findById(id);
if(tipoProposta.isPresent()) {
return ResponseEntity.ok(tipoProposta.get());
}
return ResponseEntity.notFound().build();
}
@ApiOperation(value = "Cadastra um novo tipo de proposta")
@PostMapping(produces="application/json", consumes="application/json")
public ResponseEntity<TipoProposta> add(@RequestBody TipoProposta tipoProposta, UriComponentsBuilder uriBuilder) {
TipoProposta cadastrado = _tipoPropostaRepository.save(tipoProposta);
URI uri = uriBuilder.path("/{id}").buildAndExpand(cadastrado.getId()).toUri();
return ResponseEntity.created(uri).body(cadastrado);
}
@ApiOperation(value = "Atualiza um tipo de proposta")
@PutMapping(produces="application/json", consumes="application/json")
public ResponseEntity<TipoProposta> update(@RequestBody TipoProposta tipoProposta) {
TipoProposta cadastrado = _tipoPropostaRepository.save(tipoProposta);
return ResponseEntity.ok(cadastrado);
}
}
| [
"[email protected]"
]
| |
5e6d6da7ad05c00aec63dd11873038c3b591505a | 9757dd7e5d1083d546913120430dcb29bb93a781 | /TD11/src/fr/umlv/shopping/DigitalItem.java | 6dea34b53755d57c81ecc58a3e1e5f3369533710 | [
"MIT"
]
| permissive | vscav/java-lab | 7656a0515f61c4936f5f51b673b6e131c1001971 | 925940d95e1c83ce80bdcf982832980c12c24e44 | refs/heads/main | 2023-05-06T11:30:17.848149 | 2021-05-30T20:44:34 | 2021-05-30T20:44:34 | 337,152,934 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 254 | java | package fr.umlv.shopping;
public abstract class DigitalItem implements Item {
public String toTextFormat() {
return getType() + SaverLoader.SEPARATOR + getProps();
}
abstract protected String getType();
abstract protected String getProps();
}
| [
"[email protected]"
]
| |
6b3eba7f0022162ff9a3afa98fa2940951e66f64 | 379ea1e4556f95640ead953e8962ef13eab5ed3f | /src/main/java/pl/programirex/pokemonidzapi/dto/game/GetUserTeamDto.java | d6e254180334041fc6bcbd83f0085f04432d2546 | []
| no_license | kobrynsky/pokemon-idz-api | 2a35def494461d647e53fc6b25f4e63b534a2f14 | 883742e8f41e2252966c907f6a9301b9a1436845 | refs/heads/master | 2023-05-13T23:00:33.468372 | 2019-06-12T18:07:05 | 2019-06-12T18:07:05 | 186,056,984 | 0 | 0 | null | 2021-06-04T21:59:31 | 2019-05-10T21:33:44 | Java | UTF-8 | Java | false | false | 505 | java | package pl.programirex.pokemonidzapi.dto.game;
import lombok.Data;
import javax.validation.constraints.NotNull;
import java.util.List;
@Data
public class GetUserTeamDto {
public GetUserTeamDto(String login, List<Long> pokemonIds, Long mainPokemonId)
{
this.login = login;
this.pokemonIds = pokemonIds;
this.mainPokemonId = mainPokemonId;
}
@NotNull
private String login;
@NotNull
private List<Long> pokemonIds;
private Long mainPokemonId;
}
| [
"[email protected]"
]
| |
4e30c8b027b986d39674d9fefa3747f240901731 | bc463a2aa99b6ac274b3c993db84539303b7eedd | /src/com/kingdee/eas/fdc/invite/designsupplier/designbase/app/DesignAccreditationTypeControllerBean.java | ccdf96d4a41b9ccaebb5d1611cdfeadef6489677 | []
| no_license | ggddver/cifi | 456d06f508bf5d48410017c2b66615fe23afa915 | a1e3a92dbb79fa0eae462417c5ea375db3c498f9 | refs/heads/master | 2021-01-15T12:26:25.592750 | 2015-01-08T08:45:07 | 2015-01-08T08:45:07 | 28,952,885 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,721 | java | package com.kingdee.eas.fdc.invite.designsupplier.designbase.app;
import org.apache.log4j.Logger;
import javax.ejb.*;
import java.rmi.RemoteException;
import com.kingdee.bos.*;
import com.kingdee.bos.util.BOSObjectType;
import com.kingdee.bos.metadata.IMetaDataPK;
import com.kingdee.bos.metadata.rule.RuleExecutor;
import com.kingdee.bos.metadata.MetaDataPK;
//import com.kingdee.bos.metadata.entity.EntityViewInfo;
import com.kingdee.bos.framework.ejb.AbstractEntityControllerBean;
import com.kingdee.bos.framework.ejb.AbstractBizControllerBean;
//import com.kingdee.bos.dao.IObjectPK;
import com.kingdee.bos.dao.IObjectValue;
import com.kingdee.bos.dao.IObjectCollection;
import com.kingdee.bos.service.ServiceContext;
import com.kingdee.bos.service.IServiceContext;
import java.lang.String;
import com.kingdee.eas.common.EASBizException;
import com.kingdee.bos.metadata.entity.EntityViewInfo;
import com.kingdee.bos.dao.IObjectPK;
import com.kingdee.eas.framework.CoreBaseInfo;
import com.kingdee.eas.framework.ObjectBaseCollection;
import com.kingdee.eas.framework.app.DataBaseControllerBean;
import com.kingdee.bos.metadata.entity.SelectorItemCollection;
import com.kingdee.eas.framework.CoreBaseCollection;
import com.kingdee.eas.framework.DataBaseCollection;
import com.kingdee.eas.fdc.invite.designsupplier.designbase.DesignAccreditationTypeCollection;
import com.kingdee.eas.fdc.invite.designsupplier.designbase.DesignAccreditationTypeInfo;
public class DesignAccreditationTypeControllerBean extends AbstractDesignAccreditationTypeControllerBean
{
private static Logger logger =
Logger.getLogger("com.kingdee.eas.fdc.invite.designsupplier.designbase.app.DesignAccreditationTypeControllerBean");
} | [
"[email protected]"
]
| |
c450dd7e38c9c651ebaf8c8c9439c5c7c9f663f7 | a763a19e3bb7251767639f82c8c13597c5115f06 | /basic/src/main/java/com/alibaba/dubbo/pojo/HiWorld.java | ce7e55fc79ac99c7893b58753dd792ca0cbabeeb | []
| no_license | wxbabyboy1/dubbo-demo | c404d8681c5fb6b722c59f3e2d05789a49393944 | 3a8628c40db4121afc4191f7b1f3840f6922cc9a | refs/heads/master | 2021-01-24T03:37:17.772453 | 2018-02-26T12:13:10 | 2018-02-26T12:13:10 | 122,723,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 314 | java | package com.alibaba.dubbo.pojo;
import java.io.Serializable;
/**
* Created by ZhaGuolong on 2018/2/26.
*/
public class HiWorld implements Serializable {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
| [
"[email protected]"
]
| |
ba5c589c65a9f55555b44b5bc015ea91fcbc8547 | 1113aa17b5623eab592b2defb662e753bf90360a | /extra/Bank.java | ee205e547115b2b1ac11211be759ef4095a7487d | [
"MIT"
]
| permissive | jamestiotio/esc | c29afe40929639e58db7f0dc0482815a812c075c | 971d9018e389b5ac374438792a417c74541898e2 | refs/heads/main | 2023-01-24T09:44:49.500887 | 2021-05-16T10:31:27 | 2021-05-16T10:31:27 | 336,866,653 | 0 | 0 | MIT | 2021-11-04T15:56:21 | 2021-02-07T19:04:35 | Java | UTF-8 | Java | false | false | 2,670 | java | import org.junit.Test;
import java.util.ArrayList;
import java.util.Random;
import java.util.concurrent.locks.ReentrantLock;
public class Bank {
@Test
public void test() throws InterruptedException {
SynchronizedAccount account = new SynchronizedAccount(1, 5);
ArrayList<Thread> threads = new ArrayList<>();
for (int i = 0; i < 20; i++) {
WithdrawThread w = new WithdrawThread(account);
DepositThread d = new DepositThread(account);
CheckBalanceThread c = new CheckBalanceThread(account);
threads.add(w);
threads.add(d);
threads.add(c);
}
System.out.println("Balance " + account.getBalance());
for (Thread t : threads) {
t.start();
}
for (Thread t : threads) {
t.join();
}
}
}
class WithdrawThread extends Thread {
SynchronizedAccount acc;
WithdrawThread(SynchronizedAccount s) {
acc = s;
}
public void run() {
acc.withdraw(new Random().nextInt(10));
}
}
class DepositThread extends Thread {
SynchronizedAccount acc;
DepositThread(SynchronizedAccount s) {
acc = s;
}
public void run() {
acc.deposit(new Random().nextInt(10));
}
}
class CheckBalanceThread extends Thread {
SynchronizedAccount acc;
CheckBalanceThread(SynchronizedAccount s) {
acc = s;
}
public void run() {
System.out.println("Balance " + acc.getBalance());
}
}
class SynchronizedAccount {
private int id;
private int balance;
private static ReentrantLock mutex = new ReentrantLock();
// The constructor has to lock, because the balance variable
// must not be accessible till it is set.
public SynchronizedAccount(int registerId, int initialAmount) {
mutex.lock();
id = registerId;
balance = initialAmount;
mutex.unlock();
}
// precondition: deposit >= 0
public boolean deposit(int deposit) {
if (deposit < 0)
return false;
mutex.lock();
System.out.println("Depositing " + deposit);
balance += deposit;
mutex.unlock();
return true;
}
public boolean withdraw(int withdrawal) {
if (withdrawal < 0)
return false;
mutex.lock();
if (withdrawal > balance) {
mutex.unlock();
return false;
}
System.out.println("Withdrawing " + withdrawal);
balance -= withdrawal;
mutex.unlock();
return true;
}
public int getBalance() {
return balance;
}
}
| [
"[email protected]"
]
| |
73f9b335ab1a87140e8d4bb355ee36b01d803a84 | bbf63f5f54b99f5ab05afa96b03ce5c723701f17 | /src/main/java/com/cpsj/service/ObservacionService.java | 787b198a3579307d479a1bf0838d44967aa92e98 | []
| no_license | nati17/CPSJ | f3ccb323455de72fe9295dbb580d82bada118375 | e2385e42f5604176f1aea53f0d2a8f915e117490 | refs/heads/master | 2020-03-27T05:44:33.226040 | 2018-09-16T16:19:28 | 2018-09-16T16:19:28 | 146,046,103 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 831 | java | package com.cpsj.service;
import com.cpsj.service.dto.ObservacionDTO;
import java.util.List;
import java.util.Optional;
/**
* Service Interface for managing Observacion.
*/
public interface ObservacionService {
/**
* Save a observacion.
*
* @param observacionDTO the entity to save
* @return the persisted entity
*/
ObservacionDTO save(ObservacionDTO observacionDTO);
/**
* Get all the observacions.
*
* @return the list of entities
*/
List<ObservacionDTO> findAll();
/**
* Get the "id" observacion.
*
* @param id the id of the entity
* @return the entity
*/
Optional<ObservacionDTO> findOne(Long id);
/**
* Delete the "id" observacion.
*
* @param id the id of the entity
*/
void delete(Long id);
}
| [
"[email protected]"
]
| |
a58db90465b9b907dbcf5396d65e273e78972c48 | 4de615f837425315d3e06c06268da920fe815a80 | /app/src/main/java/edu/makebu/automeet/TimeSlotListActivity.java | e91287261ff9c83fdafded71f448153ec7412897 | []
| no_license | edluo1/AutoMeet | d223b2de67f4ea22b634201268a816c9eee9101a | cd2949de37b800bc0dd42cd2d6af0ee377f20f70 | refs/heads/master | 2021-01-12T17:35:37.797441 | 2016-10-23T05:04:51 | 2016-10-23T05:04:51 | 71,611,320 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 6,443 | java | package edu.makebu.automeet;
import android.app.DatePickerDialog;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;
import android.support.design.widget.FloatingActionButton;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.DatePicker;
import android.widget.TextView;
import android.widget.Toast;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;
import java.util.Locale;
import static android.widget.Toast.LENGTH_SHORT;
/**
* An activity representing a list of TimeSlots. This activity
* has different presentations for handset and tablet-size devices. On
* handsets, the activity presents a list of items, which when touched,
* lead to a {@link TimeSlotDetailActivity} representing
* item details. On tablets, the activity presents the list of items and
* item details side-by-side using two vertical panes.
*/
public class TimeSlotListActivity extends AppCompatActivity {
/**
* Whether or not the activity is in two-pane mode, i.e. running on a tablet
* device.
*/
private boolean mTwoPane;
private DatePickerDialog.OnDateSetListener date;
private Calendar myCalendar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_timeslot_list);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
myCalendar = Calendar.getInstance();
date = new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int year, int monthOfYear,
int dayOfMonth) {
// TODO Auto-generated method stub
myCalendar.set(Calendar.YEAR, year);
myCalendar.set(Calendar.MONTH, monthOfYear);
myCalendar.set(Calendar.DAY_OF_MONTH, dayOfMonth);
updateLabel();
}
};
setSupportActionBar(toolbar);
toolbar.setTitle(getTitle());
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new DatePickerDialog(TimeSlotListActivity.this, date, myCalendar
.get(Calendar.YEAR), myCalendar.get(Calendar.MONTH),
myCalendar.get(Calendar.DAY_OF_MONTH)).show();
}
});
View recyclerView = findViewById(R.id.timeslot_list);
assert recyclerView != null;
setupRecyclerView((RecyclerView) recyclerView);
if (findViewById(R.id.timeslot_detail_container) != null) {
// The detail container view will be present only in the
// large-screen layouts (res/values-w900dp).
// If this view is present, then the
// activity should be in two-pane mode.
mTwoPane = true;
}
}
private void updateLabel() {
String myFormat = "MM/dd/yyyy"; //In which you need put here
SimpleDateFormat sdf = new SimpleDateFormat(myFormat, Locale.US);
Toast dateSet = Toast.makeText(this, sdf.format(myCalendar.getTime()), LENGTH_SHORT);
dateSet.show();
}
private void setupRecyclerView(@NonNull RecyclerView recyclerView) {
recyclerView.setAdapter(new SimpleItemRecyclerViewAdapter(TimelineContent.ITEMS));
}
public class SimpleItemRecyclerViewAdapter
extends RecyclerView.Adapter<SimpleItemRecyclerViewAdapter.ViewHolder> {
private final List<TimelineHour> mValues;
public SimpleItemRecyclerViewAdapter(List<TimelineHour> items) {
mValues = items;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.timeslot_list_content, parent, false);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(final ViewHolder holder, int position) {
holder.mItem = mValues.get(position);
holder.mIdView.setText(mValues.get(position).id);
holder.mContentView.setText(mValues.get(position).content);
holder.mView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (mTwoPane) {
Bundle arguments = new Bundle();
arguments.putString(TimeSlotDetailFragment.ARG_ITEM_ID, holder.mItem.id);
TimeSlotDetailFragment fragment = new TimeSlotDetailFragment();
fragment.setArguments(arguments);
getSupportFragmentManager().beginTransaction()
.replace(R.id.timeslot_detail_container, fragment)
.commit();
} else {
Context context = v.getContext();
Intent intent = new Intent(context, TimeSlotDetailActivity.class);
intent.putExtra(TimeSlotDetailFragment.ARG_ITEM_ID, holder.mItem.id);
context.startActivity(intent);
}
}
});
}
@Override
public int getItemCount() {
return mValues.size();
}
public class ViewHolder extends RecyclerView.ViewHolder {
public final View mView;
public final TextView mIdView;
public final TextView mContentView;
public TimelineHour mItem;
public ViewHolder(View view) {
super(view);
mView = view;
mIdView = (TextView) view.findViewById(R.id.id);
mContentView = (TextView) view.findViewById(R.id.content);
}
@Override
public String toString() {
return super.toString() + " '" + mContentView.getText() + "'";
}
}
}
}
| [
"[email protected]"
]
| |
cc14139f542b0b26b30b42f404c966a6f6d41de2 | c7c23ce17f3fc3500ae885bb0077b91e9a2a7acc | /bizcore/WEB-INF/bcex_custom_src/com/doublechaintech/bcex/question/QuestionCustomManagerImpl.java | a252488a589ddb54698027b1bbfd57defb740be8 | []
| no_license | doublechaintech/bcex-biz-suite | 94250e04264bd8b0a2905ea512e407fc3a639b78 | c5aa55629b3fe4222789a8931f3e0d92f165a161 | refs/heads/master | 2020-09-05T19:35:58.182241 | 2019-11-12T10:06:02 | 2019-11-12T10:06:02 | 220,193,679 | 4 | 1 | null | null | null | null | UTF-8 | Java | false | false | 821 | java |
/*
这里面放置你需要定制的行为,可以增加方法,也可以重写原来的方法,主要是增加新的约束和关联。
注意,在同名方法里面一定要使用super来调用,不然将会出现缓冲出溢出的问题Stack Overflow。
这个类讲在第一次生成,此后这些文件不会被覆盖,如果名字发生了变更,则需要手动删除,修改本类来适应新的模型变更,
这个类已经被配置到了相应的Spring配置文件 WEB-INF/bcex_custom_src/META-INF/bcex_custom.xml 中,
所以直接在里面重写或者增加新的方法将会修改客户的行为
*/
package com.doublechaintech.bcex.question;
import java.util.Date;
import com.doublechaintech.bcex.BcexUserContext;
public class QuestionCustomManagerImpl extends QuestionManagerImpl{
}
| [
"[email protected]"
]
| |
d3a13c48d14e65464e4d1c1850f41761319c539a | 196e4b63832dbb669761364fe48c2a696dcda0ff | /Topics/LocalDate/Find all mondays/src/Main.java | 2f2838b0baf6ef889f28455287a5c834d7ba4429 | []
| no_license | Henrijian/recipes | f3bf02b6d6f7d47e74ab6e9a5a49c07f68adb896 | 3989c2fcd75db76df419a4690459e3826d31d9d1 | refs/heads/master | 2023-08-15T18:57:31.955241 | 2021-10-06T04:52:09 | 2021-10-06T04:52:09 | 414,073,108 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 886 | java | import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.LocalTime;
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// put your code here
Scanner scanner = new Scanner(System.in);
if (!scanner.hasNext()) {
System.out.println("no year input");
return;
}
LocalTime.MIDNIGHT
int year = scanner.nextInt();
if (!scanner.hasNext()) {
System.out.println("no month input");
return;
}
int month = scanner.nextInt();
LocalDate date = LocalDate.of(year, month, 1);
for (int i = 0; i < date.lengthOfMonth(); i++) {
LocalDate checkDate = date.plusDays(i);
if (checkDate.getDayOfWeek() == DayOfWeek.MONDAY) {
System.out.println(checkDate);
}
}
}
} | [
"[email protected]"
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.