blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9636c5613bd6f2f6ce38e7c181011e8f671de0dd | 877598ee2de0cdf2d7495b8e3be67d99a1334a8f | /src/main/java/com/roxket/web/ControladorInicio.java | 469378aa20097c40acbf6a9b61a1d935d520cd02 | [] | no_license | roxket/CRUD-Spring-Boot | 99d88b50ab4b636dab39f4e41cb6846b7cb6e495 | e1f17351353be667629bd32e2f4395ed8dadf0e2 | refs/heads/master | 2022-11-06T01:56:08.084365 | 2020-06-26T22:27:09 | 2020-06-26T22:27:09 | 275,143,865 | 0 | 0 | null | 2020-06-26T17:02:53 | 2020-06-26T11:50:36 | HTML | UTF-8 | Java | false | false | 2,765 | java |
package com.roxket.web;
import com.roxket.domain.Persona;
import com.roxket.service.IPersonaService;
import javax.validation.Valid;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.security.core.userdetails.User;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.Errors;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
/**
*
* @author Roxket
*/
@Controller
@Slf4j
public class ControladorInicio { //implementa servlets internamente
@Autowired // inyectamos la capa logica de servicio
private IPersonaService personaService;
@GetMapping("/") //path de solicitud tipo get. Ruta de inicio
//@AuthenticationPrincipal User: inyeccion de dependencia para capturar el usuario login en la aplicacion
public String inicio(Model model, @AuthenticationPrincipal User user){ //inyeccion de dependencia (principio hollywood)
var personas = personaService.listarPersonas(); //Aunque instanciamos la interfaz, busca dentro del contenedor la implementación de esta con la anotacion @Service
log.info("Ejecutando el controlador SpringMVC");
log.info("usuario login: " + user);
model.addAttribute("personas", personas);
var saldoTotal = 0D;
for(var p : personas){
saldoTotal += p.getSaldo();
}
model.addAttribute("saldoTotal", saldoTotal);
model.addAttribute("totalClientes", personas.size());
return "index";
}
@GetMapping("/agregar")
public String agregar(Persona persona){ //inyecta el objeto desde la fabrica de spring
return "modificar";
}
@PostMapping("/guardar") //path de solicitud tipo Post
public String guardar(@Valid Persona persona, Errors errores){ // Inyecta el objeto y recupera los parametros desde el formulario. Si existe el objeto en memoria, pasa la instancia
if (errores.hasErrors()) { //@Valid y Errors validación en el método
return "modificar";
} else{
personaService.guardar(persona);
return "redirect:/";}
}
@GetMapping("/editar/{idPersona}")
public String editar(Persona persona, Model model){ // si existe, lo settea, sino lo inicializa y lo asocia al parametro. Con model pasa el objeto a la siguiente peticion
persona = personaService.encontrarPersona(persona); //recupera el objeto desde la bbdd
model.addAttribute("persona", persona); //setea el parametro a la vista
return "modificar"; //return a la vista modificar
}
@GetMapping("/eliminar")
public String eliminar(Persona persona){
personaService.eliminar(persona);
return "redirect:/";
}
}
| [
"[email protected]"
] | |
0fcff213628267cb569d80b4715bf9b72a0b9481 | b9eecfc36dc152c0d9602c06d5da490be98df5c1 | /IT@CuttingEdge/app/src/main/java/com/dpsn/espice/itcuttingedge/HomeFragment.java | 6442e43276a4d3004d6556a45dc284a2b9c88c38 | [] | no_license | decryptonite/IT-CuttingEdge | 750557a64db453a15667d5307691473ff1ca5335 | e9fa6392745dd3874cc1b2bf13820fc6cb26d988 | refs/heads/master | 2018-12-28T01:09:28.029316 | 2015-05-07T16:40:31 | 2015-05-07T16:40:31 | 35,231,236 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 541 | java | package com.dpsn.espice.itcuttingedge;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
/**
* Created by Sony on 07-05-2015.
*/
public class HomeFragment extends Fragment {
public HomeFragment(){}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_home, container, false);
return rootView;
}
}
| [
"[email protected]"
] | |
2e18bc952098856fee0e940031be361fa3dacf6a | 8da7a57b407e7fb75a4608754e03143de3db4ff9 | /src/model/HMMBase.java | 98ffd6e5f9f2348323ba2dfddf5a439aa5e02c29 | [] | no_license | weexp/hmm-1 | 63ba844b62a291156dcc1b5d06f09c75aa20e3af | b3e77f95f907e6832a13e1b621223715cd9b2dd1 | refs/heads/master | 2021-05-26T17:06:33.283855 | 2014-01-22T23:34:38 | 2014-01-22T23:34:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,199 | java | package model;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Random;
import model.param.HMMParamBase;
import model.param.HMMParamRegular;
public abstract class HMMBase {
public int nrStates = -1;
public int nrObs = -1;
public HMMParamBase param;
String baseDir = "out/model/";
public HMMType hmmType;
public abstract void initializeRandom(Random r);
public abstract void initializeZeros();
public void checkModel() {
param.check();
}
public void updateFromCounts(HMMParamBase counts) {
//counts.normalize();
counts.normalize(param);
param.cloneFrom(counts);
}
public void updateFromCountsWeighted(HMMParamBase counts, double weight) {
param.initial.cloneWeightedFrom(counts.initial, weight);
param.transition.cloneWeightedFrom(counts.transition, weight);
param.observation.cloneWeightedFrom(counts.observation, weight);
this.param.normalize();
}
public String saveModel() {
return saveModel(-1);
}
/*
* return the location saved
*/
public String saveModel(int iterCount) {
String modelFile;
if(iterCount < 0) {
modelFile = baseDir + "model_final_states_" + nrStates + ".txt";
} else {
modelFile = baseDir + "model_iter_" + iterCount + "_states_" + nrStates + ".txt";
}
PrintWriter pw;
try {
pw = new PrintWriter(modelFile);
pw.println(nrStates);
pw.println(nrObs);
pw.println();
// initial
for (int i = 0; i < nrStates; i++) {
pw.print(param.initial.get(i, 0));
if (i != nrStates) {
pw.print(" ");
}
}
pw.println();
pw.println();
// transition
for (int i = 0; i < nrStates; i++) {
for (int j = 0; j < nrStates; j++) {
pw.print(param.transition.get(j, i));
if (j != nrStates) {
pw.print(" ");
}
}
pw.println();
}
pw.println();
for (int i = 0; i < nrStates; i++) {
for (int j = 0; j < nrObs; j++) {
pw.print(param.observation.get(j, i));
if (j != nrObs) {
pw.print(" ");
}
}
pw.println();
}
pw.println();
pw.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
}
return modelFile;
}
public void loadModel(String location) {
System.out.println("loading model from : " + location);
//TODO: currently loads only the exact same file format saved
try {
BufferedReader br = new BufferedReader(new FileReader(location));
try{
nrStates = Integer.parseInt(br.readLine());
this.nrObs = Integer.parseInt(br.readLine());
this.initializeZeros();
br.readLine();
//load initial
String splitted[] = br.readLine().split("(\\s+|\\t+)");
if(nrStates != splitted.length) {
br.close();
throw new RuntimeException("Loading model, Initial parameters not matching number of states");
}
for(int i=0; i<nrStates; i++) {
double prob = Double.parseDouble(splitted[i]);
this.param.initial.set(i, 0, prob);
}
br.readLine();
//transition
for(int i=0; i<nrStates; i++) {
splitted = br.readLine().split("(\\s+|\\t+)");
if(nrStates != splitted.length) {
br.close();
System.err.format("For transition: nrStates=%d, from file=%d\n", nrStates, splitted.length);
throw new RuntimeException("Loading model, transition parameters not matching number of states");
}
for(int j=0; j<splitted.length; j++) {
double prob = Double.parseDouble(splitted[j]);
this.param.transition.set(j, i, prob);
}
}
br.readLine();
//observation
for(int i=0; i<nrStates; i++) {
splitted = br.readLine().split("(\\s+|\\t+)");
if(nrObs != splitted.length) {
br.close();
System.err.format("nrStates=%d, from file=%d\n", nrObs, splitted.length);
throw new RuntimeException("Loading model, obs parameters not matching number of states");
}
for(int j=0; j<splitted.length; j++) {
double prob = Double.parseDouble(splitted[j]);
this.param.observation.set(j, i, prob);
}
}
br.close();
System.out.format("Model loaded successfully with %d states and %d observations \n", nrStates, nrObs);
} catch(NumberFormatException e) {
e.printStackTrace();
System.err.println("Error loading model");
System.exit(-1);
}
}
catch (FileNotFoundException fnfe) {
fnfe.printStackTrace();
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void clone(HMMNoFinalState other) {
if(this.param == null) {
this.param = new HMMParamRegular(this);
}
this.param.cloneFrom(other.param);
}
public static void main(String[] args) {
int nrStates = 10;
int nrObs = 65000;
HMMBase h = new HMMNoFinalState(nrStates, nrObs);
h.initializeRandom(new Random());
h.saveModel();
HMMBase hloaded = new HMMNoFinalState(nrStates, nrObs);
hloaded.loadModel("out/model/model_final_states_" + nrStates + ".txt");
if(h.param.equalsApprox(hloaded.param)) {
System.out.println("Params match approx!");
}
if(h.param.equalsExact(hloaded.param)) {
System.out.println("Params match exactly!");
}
}
}
| [
"[email protected]"
] | |
d4327b32574dd78c7ddcc041ac3b2c99a5601333 | 5a92eef391f0fa8709b74239d815bb36c9fe6224 | /CodeFrame/se.chalmers.turtlebotmission.xtext.ui/xtend-gen/se/chalmers/turtlebot/ui/labeling/TurtleMissionDescriptionLabelProvider.java | 9d8e7e7fb9e9233768dc4bc1f9440bd258ff2fca | [] | no_license | hayasamaana/wasp-turtle-dsl | f7513b34c844ad5b01c5586eb64771649b4e4639 | 1f210a3d3990d396b93369fcd4082ea338a046da | refs/heads/master | 2021-05-07T18:41:44.486859 | 2017-09-07T21:15:52 | 2017-09-07T21:15:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | /**
* generated by Xtext 2.10.0
*/
package se.chalmers.turtlebot.ui.labeling;
import org.eclipse.xtext.ui.label.DefaultDescriptionLabelProvider;
/**
* Provides labels for IEObjectDescriptions and IResourceDescriptions.
*
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider
*/
@SuppressWarnings("all")
public class TurtleMissionDescriptionLabelProvider extends DefaultDescriptionLabelProvider {
}
| [
"[email protected]"
] | |
05eb01d72aae5c8c54b6c83edc7b75e95cd8aa8f | dc3e1d782ab2bb6b7dd750338e70cc4354c313a8 | /Droid/obj/Debug/android/src/no/toremorkved/jlxaml/R.java | 17875a797589404da67173d7af78eba86039394f | [] | no_license | darkwood/jlxaml | c4eb3120d9eb600855d3b806759226e52176dabd | a2af0c148fcdfad07b19b1694df06b1d967dfb81 | refs/heads/master | 2021-08-14T13:31:51.455964 | 2017-11-15T20:51:41 | 2017-11-15T20:51:41 | 110,162,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 548,806 | 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 no.toremorkved.jlxaml;
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 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 MediaRouteControllerWindowBackground=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 actionBarDivider=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=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 actionBarPopupTheme=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarSplitStyle=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 actionBarStyle=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 actionBarTabBarStyle=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 actionBarTabStyle=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 actionBarTabTextStyle=0x7f010058;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=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 actionLayout=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010063;
/** <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=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 actionModeBackground=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=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 actionModePasteDrawable=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 actionModePopupWindowStyle=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=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 actionModeStyle=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 actionModeWebSearchDrawable=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 actionOverflowButtonStyle=0x7f010059;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005a;
/** <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=0x7f0100cb;
/** <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=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 activityChooserViewStyle=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 alertDialogButtonGroupStyle=0x7f0100a6;
/** <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=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a8;
/** <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=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100c1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 autoCompleteTextViewStyle=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 background=0x7f010032;
/** <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=0x7f010034;
/** <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=0x7f010033;
/** <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=0x7f0100f5;
/** <p>Must be one of the following constant values.</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=0x7f0100f6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=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 behavior_overlapTop=0x7f010121;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_peekHeight=0x7f0100fa;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 borderlessButtonStyle=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=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 buttonBarButtonStyle=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 buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=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 buttonBarPositiveButtonStyle=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=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 buttonPanelSideLayout=0x7f010045;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=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 buttonStyleSmall=0x7f0100af;
/** <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=0x7f0100bb;
/** <p>Must be one of the following constant values.</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=0x7f0100bc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardBackgroundColor=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 cardCornerRadius=0x7f01001c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardElevation=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardMaxElevation=0x7f01001e;
/** <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=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 cardUseCompatPadding=0x7f01001f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=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 closeIcon=0x7f0100d3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f010042;
/** <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=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100eb;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f010108;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010104;
/** <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=0x7f0100bd;
/** <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 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=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 contentInsetEnd=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f01003e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01003f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPadding=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingBottom=0x7f010025;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010022;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010023;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010024;
/** <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=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 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=0x7f010137;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f010138;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f010035;
/** <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=0x7f0100d2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 dialogTheme=0x7f010074;
/** <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=0x7f01002b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010031;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010082;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=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 drawableSize=0x7f0100bf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010026;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=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 dropdownListPreferredItemHeight=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 editTextBackground=0x7f010089;
/** <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=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100b2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010040;
/** <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=0x7f010135;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f010136;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f010044;
/** <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=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 expandedTitleGravity=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 expandedTitleMargin=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 expandedTitleMarginBottom=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 expandedTitleMarginEnd=0x7f010101;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=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 expandedTitleMarginTop=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010103;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001a;
/** <p>Must be one of the following constant values.</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>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f010115;
/** <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=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 gapBetweenBars=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=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 headerLayout=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010027;
/** <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=0x7f01003b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f01013b;
/** <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=0x7f010134;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010133;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 homeLayout=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f01002f;
/** <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=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 imageButtonStyle=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 indeterminateProgressStyle=0x7f010038;
/** <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=0x7f010043;
/** <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=0x7f010120;
/** <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=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=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 itemIconTint=0x7f01011b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f01003a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011e;
/** <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=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 keylines=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100cf;
/** <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=0x7f01010e;
/** <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=0x7f010110;
/** <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=0x7f01010d;
/** <p>Must be one of the following constant values.</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=0x7f0100fc;
/** <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=0x7f0100fd;
/** <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=0x7f01010f;
/** <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=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 layout_scrollInterpolator=0x7f0100f9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listItemLayout=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 listLayout=0x7f010046;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010095;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 listPreferredItemHeightLarge=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 listPreferredItemHeightSmall=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 listPreferredItemPaddingLeft=0x7f010092;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010030;
/** <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=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 maxActionInlineWidth=0x7f010122;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100ea;
/** <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=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 mediaRouteAudioTrackDrawable=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 mediaRouteBluetoothIconDrawable=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 mediaRouteButtonStyle=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 mediaRouteCastDrawable=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 mediaRouteChooserPrimaryTextStyle=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 mediaRouteChooserSecondaryTextStyle=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 mediaRouteCloseDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteCollapseGroupDrawable=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 mediaRouteConnectingDrawable=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 mediaRouteControllerPrimaryTextStyle=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 mediaRouteControllerSecondaryTextStyle=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 mediaRouteControllerTitleTextStyle=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteDefaultIconDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteExpandGroupDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteOffDrawable=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteOnDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePauseDrawable=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 mediaRoutePlayDrawable=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerGroupIconDrawable=0x7f010017;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerIconDrawable=0x7f010018;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTvIconDrawable=0x7f010019;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f010047;
/** <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=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100ed;
/** <p>Must be one of the following constant values.</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=0x7f01002a;
/** <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=0x7f0100cd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 paddingStart=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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 reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=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 popupWindowStyle=0x7f010087;
/** <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=0x7f0100cc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 progressBarPadding=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 progressBarStyle=0x7f010037;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100da;
/** <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=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 ratingBarStyleIndicator=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 ratingBarStyleSmall=0x7f0100b6;
/** <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=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 searchHintIcon=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 searchIcon=0x7f0100d5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f01007f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f0100c8;
/** <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=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 showText=0x7f0100e2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010048;
/** <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=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=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 spinnerStyle=0x7f0100b8;
/** <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=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=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 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=0x7f0100ce;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01010c;
/** <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=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 submitBackground=0x7f0100db;
/** <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=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 subtitleTextAppearance=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 subtitleTextColor=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f01002e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=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 switchPadding=0x7f0100e0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f010126;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f010125;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010128;
/** <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=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f01012a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f010129;
/** <p>Must be one of the following constant values.</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=0x7f010127;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010132;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010131;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010130;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f01012f;
/** <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=0x7f01012d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01012b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f01012c;
/** <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=0x7f01004b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=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 textAppearanceListItem=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 textAppearanceSearchResultSubtitle=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 textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f010073;
/** <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=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int textColorError=0x7f010113;
/** <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=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 theme=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=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 thumbTextPadding=0x7f0100dd;
/** <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=0x7f010029;
/** <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=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 titleMarginBottom=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 titleMarginEnd=0x7f0100e7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100e3;
/** <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=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=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 toolbarId=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 toolbarNavigationButtonStyle=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 toolbarStyle=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 track=0x7f0100dc;
/** <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=0x7f010118;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100d7;
/** <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=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 windowActionBarOverlay=0x7f01004e;
/** <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=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 windowFixedHeightMajor=0x7f010053;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=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 windowFixedWidthMajor=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 windowFixedWidthMinor=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 windowMinWidthMajor=0x7f010054;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010055;
/** <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=0x7f01004d;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0c0003;
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0c0001;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0c0004;
public static final int abc_allow_stacked_button_bar=0x7f0c0000;
public static final int abc_config_actionMenuItemAllCaps=0x7f0c0005;
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0c0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0006;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0007;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0048;
public static final int abc_background_cache_hint_selector_material_light=0x7f0b0049;
public static final int abc_color_highlight_material=0x7f0b004a;
public static final int abc_input_method_navigation_guard=0x7f0b0004;
public static final int abc_primary_text_disable_only_material_dark=0x7f0b004b;
public static final int abc_primary_text_disable_only_material_light=0x7f0b004c;
public static final int abc_primary_text_material_dark=0x7f0b004d;
public static final int abc_primary_text_material_light=0x7f0b004e;
public static final int abc_search_url_text=0x7f0b004f;
public static final int abc_search_url_text_normal=0x7f0b0005;
public static final int abc_search_url_text_pressed=0x7f0b0006;
public static final int abc_search_url_text_selected=0x7f0b0007;
public static final int abc_secondary_text_material_dark=0x7f0b0050;
public static final int abc_secondary_text_material_light=0x7f0b0051;
public static final int accent_material_dark=0x7f0b0008;
public static final int accent_material_light=0x7f0b0009;
public static final int background_floating_material_dark=0x7f0b000a;
public static final int background_floating_material_light=0x7f0b000b;
public static final int background_material_dark=0x7f0b000c;
public static final int background_material_light=0x7f0b000d;
public static final int bright_foreground_disabled_material_dark=0x7f0b000e;
public static final int bright_foreground_disabled_material_light=0x7f0b000f;
public static final int bright_foreground_inverse_material_dark=0x7f0b0010;
public static final int bright_foreground_inverse_material_light=0x7f0b0011;
public static final int bright_foreground_material_dark=0x7f0b0012;
public static final int bright_foreground_material_light=0x7f0b0013;
public static final int button_material_dark=0x7f0b0014;
public static final int button_material_light=0x7f0b0015;
public static final int cardview_dark_background=0x7f0b0000;
public static final int cardview_light_background=0x7f0b0001;
public static final int cardview_shadow_end_color=0x7f0b0002;
public static final int cardview_shadow_start_color=0x7f0b0003;
public static final int design_fab_shadow_end_color=0x7f0b003e;
public static final int design_fab_shadow_mid_color=0x7f0b003f;
public static final int design_fab_shadow_start_color=0x7f0b0040;
public static final int design_fab_stroke_end_inner_color=0x7f0b0041;
public static final int design_fab_stroke_end_outer_color=0x7f0b0042;
public static final int design_fab_stroke_top_inner_color=0x7f0b0043;
public static final int design_fab_stroke_top_outer_color=0x7f0b0044;
public static final int design_snackbar_background_color=0x7f0b0045;
public static final int design_textinput_error_color_dark=0x7f0b0046;
public static final int design_textinput_error_color_light=0x7f0b0047;
public static final int dim_foreground_disabled_material_dark=0x7f0b0016;
public static final int dim_foreground_disabled_material_light=0x7f0b0017;
public static final int dim_foreground_material_dark=0x7f0b0018;
public static final int dim_foreground_material_light=0x7f0b0019;
public static final int foreground_material_dark=0x7f0b001a;
public static final int foreground_material_light=0x7f0b001b;
public static final int highlighted_text_material_dark=0x7f0b001c;
public static final int highlighted_text_material_light=0x7f0b001d;
public static final int hint_foreground_material_dark=0x7f0b001e;
public static final int hint_foreground_material_light=0x7f0b001f;
public static final int material_blue_grey_800=0x7f0b0020;
public static final int material_blue_grey_900=0x7f0b0021;
public static final int material_blue_grey_950=0x7f0b0022;
public static final int material_deep_teal_200=0x7f0b0023;
public static final int material_deep_teal_500=0x7f0b0024;
public static final int material_grey_100=0x7f0b0025;
public static final int material_grey_300=0x7f0b0026;
public static final int material_grey_50=0x7f0b0027;
public static final int material_grey_600=0x7f0b0028;
public static final int material_grey_800=0x7f0b0029;
public static final int material_grey_850=0x7f0b002a;
public static final int material_grey_900=0x7f0b002b;
public static final int primary_dark_material_dark=0x7f0b002c;
public static final int primary_dark_material_light=0x7f0b002d;
public static final int primary_material_dark=0x7f0b002e;
public static final int primary_material_light=0x7f0b002f;
public static final int primary_text_default_material_dark=0x7f0b0030;
public static final int primary_text_default_material_light=0x7f0b0031;
public static final int primary_text_disabled_material_dark=0x7f0b0032;
public static final int primary_text_disabled_material_light=0x7f0b0033;
public static final int ripple_material_dark=0x7f0b0034;
public static final int ripple_material_light=0x7f0b0035;
public static final int secondary_text_default_material_dark=0x7f0b0036;
public static final int secondary_text_default_material_light=0x7f0b0037;
public static final int secondary_text_disabled_material_dark=0x7f0b0038;
public static final int secondary_text_disabled_material_light=0x7f0b0039;
public static final int switch_thumb_disabled_material_dark=0x7f0b003a;
public static final int switch_thumb_disabled_material_light=0x7f0b003b;
public static final int switch_thumb_material_dark=0x7f0b0052;
public static final int switch_thumb_material_light=0x7f0b0053;
public static final int switch_thumb_normal_material_dark=0x7f0b003c;
public static final int switch_thumb_normal_material_light=0x7f0b003d;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f060019;
public static final int abc_action_bar_default_height_material=0x7f06000d;
public static final int abc_action_bar_default_padding_end_material=0x7f06001a;
public static final int abc_action_bar_default_padding_start_material=0x7f06001b;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f06001d;
public static final int abc_action_bar_overflow_padding_end_material=0x7f06001e;
public static final int abc_action_bar_overflow_padding_start_material=0x7f06001f;
public static final int abc_action_bar_progress_bar_size=0x7f06000e;
public static final int abc_action_bar_stacked_max_height=0x7f060020;
public static final int abc_action_bar_stacked_tab_max_width=0x7f060021;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060022;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f060023;
public static final int abc_action_button_min_height_material=0x7f060024;
public static final int abc_action_button_min_width_material=0x7f060025;
public static final int abc_action_button_min_width_overflow_material=0x7f060026;
public static final int abc_alert_dialog_button_bar_height=0x7f06000c;
public static final int abc_button_inset_horizontal_material=0x7f060027;
public static final int abc_button_inset_vertical_material=0x7f060028;
public static final int abc_button_padding_horizontal_material=0x7f060029;
public static final int abc_button_padding_vertical_material=0x7f06002a;
public static final int abc_config_prefDialogWidth=0x7f060011;
public static final int abc_control_corner_material=0x7f06002b;
public static final int abc_control_inset_material=0x7f06002c;
public static final int abc_control_padding_material=0x7f06002d;
public static final int abc_dialog_fixed_height_major=0x7f060012;
public static final int abc_dialog_fixed_height_minor=0x7f060013;
public static final int abc_dialog_fixed_width_major=0x7f060014;
public static final int abc_dialog_fixed_width_minor=0x7f060015;
public static final int abc_dialog_list_padding_vertical_material=0x7f06002e;
public static final int abc_dialog_min_width_major=0x7f060016;
public static final int abc_dialog_min_width_minor=0x7f060017;
public static final int abc_dialog_padding_material=0x7f06002f;
public static final int abc_dialog_padding_top_material=0x7f060030;
public static final int abc_disabled_alpha_material_dark=0x7f060031;
public static final int abc_disabled_alpha_material_light=0x7f060032;
public static final int abc_dropdownitem_icon_width=0x7f060033;
public static final int abc_dropdownitem_text_padding_left=0x7f060034;
public static final int abc_dropdownitem_text_padding_right=0x7f060035;
public static final int abc_edit_text_inset_bottom_material=0x7f060036;
public static final int abc_edit_text_inset_horizontal_material=0x7f060037;
public static final int abc_edit_text_inset_top_material=0x7f060038;
public static final int abc_floating_window_z=0x7f060039;
public static final int abc_list_item_padding_horizontal_material=0x7f06003a;
public static final int abc_panel_menu_list_width=0x7f06003b;
public static final int abc_search_view_preferred_width=0x7f06003c;
public static final int abc_search_view_text_min_width=0x7f060018;
public static final int abc_seekbar_track_background_height_material=0x7f06003d;
public static final int abc_seekbar_track_progress_height_material=0x7f06003e;
public static final int abc_select_dialog_padding_start_material=0x7f06003f;
public static final int abc_switch_padding=0x7f06001c;
public static final int abc_text_size_body_1_material=0x7f060040;
public static final int abc_text_size_body_2_material=0x7f060041;
public static final int abc_text_size_button_material=0x7f060042;
public static final int abc_text_size_caption_material=0x7f060043;
public static final int abc_text_size_display_1_material=0x7f060044;
public static final int abc_text_size_display_2_material=0x7f060045;
public static final int abc_text_size_display_3_material=0x7f060046;
public static final int abc_text_size_display_4_material=0x7f060047;
public static final int abc_text_size_headline_material=0x7f060048;
public static final int abc_text_size_large_material=0x7f060049;
public static final int abc_text_size_medium_material=0x7f06004a;
public static final int abc_text_size_menu_material=0x7f06004b;
public static final int abc_text_size_small_material=0x7f06004c;
public static final int abc_text_size_subhead_material=0x7f06004d;
public static final int abc_text_size_subtitle_material_toolbar=0x7f06000f;
public static final int abc_text_size_title_material=0x7f06004e;
public static final int abc_text_size_title_material_toolbar=0x7f060010;
public static final int cardview_compat_inset_shadow=0x7f060009;
public static final int cardview_default_elevation=0x7f06000a;
public static final int cardview_default_radius=0x7f06000b;
public static final int design_appbar_elevation=0x7f06005f;
public static final int design_bottom_sheet_modal_elevation=0x7f060060;
public static final int design_bottom_sheet_modal_peek_height=0x7f060061;
public static final int design_fab_border_width=0x7f060062;
public static final int design_fab_elevation=0x7f060063;
public static final int design_fab_image_size=0x7f060064;
public static final int design_fab_size_mini=0x7f060065;
public static final int design_fab_size_normal=0x7f060066;
public static final int design_fab_translation_z_pressed=0x7f060067;
public static final int design_navigation_elevation=0x7f060068;
public static final int design_navigation_icon_padding=0x7f060069;
public static final int design_navigation_icon_size=0x7f06006a;
public static final int design_navigation_max_width=0x7f060057;
public static final int design_navigation_padding_bottom=0x7f06006b;
public static final int design_navigation_separator_vertical_padding=0x7f06006c;
public static final int design_snackbar_action_inline_max_width=0x7f060058;
public static final int design_snackbar_background_corner_radius=0x7f060059;
public static final int design_snackbar_elevation=0x7f06006d;
public static final int design_snackbar_extra_spacing_horizontal=0x7f06005a;
public static final int design_snackbar_max_width=0x7f06005b;
public static final int design_snackbar_min_width=0x7f06005c;
public static final int design_snackbar_padding_horizontal=0x7f06006e;
public static final int design_snackbar_padding_vertical=0x7f06006f;
public static final int design_snackbar_padding_vertical_2lines=0x7f06005d;
public static final int design_snackbar_text_size=0x7f060070;
public static final int design_tab_max_width=0x7f060071;
public static final int design_tab_scrollable_min_width=0x7f06005e;
public static final int design_tab_text_size=0x7f060072;
public static final int design_tab_text_size_2line=0x7f060073;
public static final int disabled_alpha_material_dark=0x7f06004f;
public static final int disabled_alpha_material_light=0x7f060050;
public static final int highlight_alpha_material_colored=0x7f060051;
public static final int highlight_alpha_material_dark=0x7f060052;
public static final int highlight_alpha_material_light=0x7f060053;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f060000;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f060001;
public static final int item_touch_helper_swipe_escape_velocity=0x7f060002;
public static final int mr_controller_volume_group_list_item_height=0x7f060003;
public static final int mr_controller_volume_group_list_item_icon_size=0x7f060004;
public static final int mr_controller_volume_group_list_max_height=0x7f060005;
public static final int mr_controller_volume_group_list_padding_top=0x7f060008;
public static final int mr_dialog_fixed_width_major=0x7f060006;
public static final int mr_dialog_fixed_width_minor=0x7f060007;
public static final int notification_large_icon_height=0x7f060054;
public static final int notification_large_icon_width=0x7f060055;
public static final int notification_subtext_size=0x7f060056;
}
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_rating_star_off_mtrl_alpha=0x7f02000b;
public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
public static final int abc_cab_background_internal_bg=0x7f02000f;
public static final int abc_cab_background_top_material=0x7f020010;
public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;
public static final int abc_control_background_material=0x7f020012;
public static final int abc_dialog_material_background_dark=0x7f020013;
public static final int abc_dialog_material_background_light=0x7f020014;
public static final int abc_edit_text_material=0x7f020015;
public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
public static final int abc_ic_clear_mtrl_alpha=0x7f020017;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;
public static final int abc_ic_star_black_16dp=0x7f020021;
public static final int abc_ic_star_black_36dp=0x7f020022;
public static final int abc_ic_star_half_black_16dp=0x7f020023;
public static final int abc_ic_star_half_black_36dp=0x7f020024;
public static final int abc_ic_voice_search_api_mtrl_alpha=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_full_material=0x7f020035;
public static final int abc_ratingbar_indicator_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_track_material=0x7f02003e;
public static final int abc_spinner_mtrl_am_alpha=0x7f02003f;
public static final int abc_spinner_textfield_background_material=0x7f020040;
public static final int abc_switch_thumb_material=0x7f020041;
public static final int abc_switch_track_mtrl_alpha=0x7f020042;
public static final int abc_tab_indicator_material=0x7f020043;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020044;
public static final int abc_text_cursor_material=0x7f020045;
public static final int abc_textfield_activated_mtrl_alpha=0x7f020046;
public static final int abc_textfield_default_mtrl_alpha=0x7f020047;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020048;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020049;
public static final int abc_textfield_search_material=0x7f02004a;
public static final int design_fab_background=0x7f02004b;
public static final int design_snackbar_background=0x7f02004c;
public static final int ic_audiotrack=0x7f02004d;
public static final int ic_audiotrack_light=0x7f02004e;
public static final int ic_bluetooth_grey=0x7f02004f;
public static final int ic_bluetooth_white=0x7f020050;
public static final int ic_cast_dark=0x7f020051;
public static final int ic_cast_disabled_light=0x7f020052;
public static final int ic_cast_grey=0x7f020053;
public static final int ic_cast_light=0x7f020054;
public static final int ic_cast_off_light=0x7f020055;
public static final int ic_cast_on_0_light=0x7f020056;
public static final int ic_cast_on_1_light=0x7f020057;
public static final int ic_cast_on_2_light=0x7f020058;
public static final int ic_cast_on_light=0x7f020059;
public static final int ic_cast_white=0x7f02005a;
public static final int ic_close_dark=0x7f02005b;
public static final int ic_close_light=0x7f02005c;
public static final int ic_collapse=0x7f02005d;
public static final int ic_collapse_00000=0x7f02005e;
public static final int ic_collapse_00001=0x7f02005f;
public static final int ic_collapse_00002=0x7f020060;
public static final int ic_collapse_00003=0x7f020061;
public static final int ic_collapse_00004=0x7f020062;
public static final int ic_collapse_00005=0x7f020063;
public static final int ic_collapse_00006=0x7f020064;
public static final int ic_collapse_00007=0x7f020065;
public static final int ic_collapse_00008=0x7f020066;
public static final int ic_collapse_00009=0x7f020067;
public static final int ic_collapse_00010=0x7f020068;
public static final int ic_collapse_00011=0x7f020069;
public static final int ic_collapse_00012=0x7f02006a;
public static final int ic_collapse_00013=0x7f02006b;
public static final int ic_collapse_00014=0x7f02006c;
public static final int ic_collapse_00015=0x7f02006d;
public static final int ic_expand=0x7f02006e;
public static final int ic_expand_00000=0x7f02006f;
public static final int ic_expand_00001=0x7f020070;
public static final int ic_expand_00002=0x7f020071;
public static final int ic_expand_00003=0x7f020072;
public static final int ic_expand_00004=0x7f020073;
public static final int ic_expand_00005=0x7f020074;
public static final int ic_expand_00006=0x7f020075;
public static final int ic_expand_00007=0x7f020076;
public static final int ic_expand_00008=0x7f020077;
public static final int ic_expand_00009=0x7f020078;
public static final int ic_expand_00010=0x7f020079;
public static final int ic_expand_00011=0x7f02007a;
public static final int ic_expand_00012=0x7f02007b;
public static final int ic_expand_00013=0x7f02007c;
public static final int ic_expand_00014=0x7f02007d;
public static final int ic_expand_00015=0x7f02007e;
public static final int ic_media_pause=0x7f02007f;
public static final int ic_media_play=0x7f020080;
public static final int ic_media_route_disabled_mono_dark=0x7f020081;
public static final int ic_media_route_off_mono_dark=0x7f020082;
public static final int ic_media_route_on_0_mono_dark=0x7f020083;
public static final int ic_media_route_on_1_mono_dark=0x7f020084;
public static final int ic_media_route_on_2_mono_dark=0x7f020085;
public static final int ic_media_route_on_mono_dark=0x7f020086;
public static final int ic_pause_dark=0x7f020087;
public static final int ic_pause_light=0x7f020088;
public static final int ic_play_dark=0x7f020089;
public static final int ic_play_light=0x7f02008a;
public static final int ic_speaker_dark=0x7f02008b;
public static final int ic_speaker_group_dark=0x7f02008c;
public static final int ic_speaker_group_light=0x7f02008d;
public static final int ic_speaker_light=0x7f02008e;
public static final int ic_tv_dark=0x7f02008f;
public static final int ic_tv_light=0x7f020090;
public static final int icon=0x7f020091;
public static final int mr_dialog_material_background_dark=0x7f020092;
public static final int mr_dialog_material_background_light=0x7f020093;
public static final int mr_ic_audiotrack_light=0x7f020094;
public static final int mr_ic_cast_dark=0x7f020095;
public static final int mr_ic_cast_light=0x7f020096;
public static final int mr_ic_close_dark=0x7f020097;
public static final int mr_ic_close_light=0x7f020098;
public static final int mr_ic_media_route_connecting_mono_dark=0x7f020099;
public static final int mr_ic_media_route_connecting_mono_light=0x7f02009a;
public static final int mr_ic_media_route_mono_dark=0x7f02009b;
public static final int mr_ic_media_route_mono_light=0x7f02009c;
public static final int mr_ic_pause_dark=0x7f02009d;
public static final int mr_ic_pause_light=0x7f02009e;
public static final int mr_ic_play_dark=0x7f02009f;
public static final int mr_ic_play_light=0x7f0200a0;
public static final int notification_template_icon_bg=0x7f0200a2;
public static final int xamarin_logo=0x7f0200a1;
}
public static final class id {
public static final int action0=0x7f07008b;
public static final int action_bar=0x7f07005a;
public static final int action_bar_activity_content=0x7f070001;
public static final int action_bar_container=0x7f070059;
public static final int action_bar_root=0x7f070055;
public static final int action_bar_spinner=0x7f070002;
public static final int action_bar_subtitle=0x7f07003b;
public static final int action_bar_title=0x7f07003a;
public static final int action_context_bar=0x7f07005b;
public static final int action_divider=0x7f07008f;
public static final int action_menu_divider=0x7f070003;
public static final int action_menu_presenter=0x7f070004;
public static final int action_mode_bar=0x7f070057;
public static final int action_mode_bar_stub=0x7f070056;
public static final int action_mode_close_button=0x7f07003c;
public static final int activity_chooser_view_content=0x7f07003d;
public static final int alertTitle=0x7f070049;
public static final int always=0x7f07001e;
public static final int beginning=0x7f07001b;
public static final int bottom=0x7f07002a;
public static final int buttonPanel=0x7f070044;
public static final int cancel_action=0x7f07008c;
public static final int center=0x7f07002b;
public static final int center_horizontal=0x7f07002c;
public static final int center_vertical=0x7f07002d;
public static final int checkbox=0x7f070052;
public static final int chronometer=0x7f070092;
public static final int clip_horizontal=0x7f070033;
public static final int clip_vertical=0x7f070034;
public static final int collapseActionView=0x7f07001f;
public static final int contentPanel=0x7f07004a;
public static final int custom=0x7f070050;
public static final int customPanel=0x7f07004f;
public static final int decor_content_parent=0x7f070058;
public static final int default_activity_button=0x7f070040;
public static final int design_bottom_sheet=0x7f07006a;
public static final int design_menu_item_action_area=0x7f070071;
public static final int design_menu_item_action_area_stub=0x7f070070;
public static final int design_menu_item_text=0x7f07006f;
public static final int design_navigation_view=0x7f07006e;
public static final int disableHome=0x7f07000e;
public static final int edit_query=0x7f07005c;
public static final int end=0x7f07001c;
public static final int end_padder=0x7f070097;
public static final int enterAlways=0x7f070023;
public static final int enterAlwaysCollapsed=0x7f070024;
public static final int exitUntilCollapsed=0x7f070025;
public static final int expand_activities_button=0x7f07003e;
public static final int expanded_menu=0x7f070051;
public static final int fill=0x7f070035;
public static final int fill_horizontal=0x7f070036;
public static final int fill_vertical=0x7f07002e;
public static final int fixed=0x7f070038;
public static final int home=0x7f070005;
public static final int homeAsUp=0x7f07000f;
public static final int icon=0x7f070042;
public static final int ifRoom=0x7f070020;
public static final int image=0x7f07003f;
public static final int info=0x7f070096;
public static final int item_touch_helper_previous_elevation=0x7f070000;
public static final int left=0x7f07002f;
public static final int line1=0x7f070090;
public static final int line3=0x7f070094;
public static final int listMode=0x7f07000b;
public static final int list_item=0x7f070041;
public static final int media_actions=0x7f07008e;
public static final int middle=0x7f07001d;
public static final int mini=0x7f070037;
public static final int mr_art=0x7f07007d;
public static final int mr_chooser_list=0x7f070072;
public static final int mr_chooser_route_desc=0x7f070075;
public static final int mr_chooser_route_icon=0x7f070073;
public static final int mr_chooser_route_name=0x7f070074;
public static final int mr_close=0x7f07007a;
public static final int mr_control_divider=0x7f070080;
public static final int mr_control_play_pause=0x7f070086;
public static final int mr_control_subtitle=0x7f070089;
public static final int mr_control_title=0x7f070088;
public static final int mr_control_title_container=0x7f070087;
public static final int mr_custom_control=0x7f07007b;
public static final int mr_default_control=0x7f07007c;
public static final int mr_dialog_area=0x7f070077;
public static final int mr_expandable_area=0x7f070076;
public static final int mr_group_expand_collapse=0x7f07008a;
public static final int mr_media_main_control=0x7f07007e;
public static final int mr_name=0x7f070079;
public static final int mr_playback_control=0x7f07007f;
public static final int mr_title_bar=0x7f070078;
public static final int mr_volume_control=0x7f070081;
public static final int mr_volume_group_list=0x7f070082;
public static final int mr_volume_item_icon=0x7f070084;
public static final int mr_volume_slider=0x7f070085;
public static final int multiply=0x7f070016;
public static final int navigation_header_container=0x7f07006d;
public static final int never=0x7f070021;
public static final int none=0x7f070010;
public static final int normal=0x7f07000c;
public static final int parallax=0x7f070028;
public static final int parentPanel=0x7f070046;
public static final int pin=0x7f070029;
public static final int progress_circular=0x7f070006;
public static final int progress_horizontal=0x7f070007;
public static final int radio=0x7f070054;
public static final int right=0x7f070030;
public static final int screen=0x7f070017;
public static final int scroll=0x7f070026;
public static final int scrollIndicatorDown=0x7f07004e;
public static final int scrollIndicatorUp=0x7f07004b;
public static final int scrollView=0x7f07004c;
public static final int scrollable=0x7f070039;
public static final int search_badge=0x7f07005e;
public static final int search_bar=0x7f07005d;
public static final int search_button=0x7f07005f;
public static final int search_close_btn=0x7f070064;
public static final int search_edit_frame=0x7f070060;
public static final int search_go_btn=0x7f070066;
public static final int search_mag_icon=0x7f070061;
public static final int search_plate=0x7f070062;
public static final int search_src_text=0x7f070063;
public static final int search_voice_btn=0x7f070067;
public static final int select_dialog_listview=0x7f070068;
public static final int shortcut=0x7f070053;
public static final int showCustom=0x7f070011;
public static final int showHome=0x7f070012;
public static final int showTitle=0x7f070013;
public static final int sliding_tabs=0x7f070098;
public static final int snackbar_action=0x7f07006c;
public static final int snackbar_text=0x7f07006b;
public static final int snap=0x7f070027;
public static final int spacer=0x7f070045;
public static final int split_action_bar=0x7f070008;
public static final int src_atop=0x7f070018;
public static final int src_in=0x7f070019;
public static final int src_over=0x7f07001a;
public static final int start=0x7f070031;
public static final int status_bar_latest_event_content=0x7f07008d;
public static final int submit_area=0x7f070065;
public static final int tabMode=0x7f07000d;
public static final int text=0x7f070095;
public static final int text2=0x7f070093;
public static final int textSpacerNoButtons=0x7f07004d;
public static final int time=0x7f070091;
public static final int title=0x7f070043;
public static final int title_template=0x7f070048;
public static final int toolbar=0x7f070099;
public static final int top=0x7f070032;
public static final int topPanel=0x7f070047;
public static final int touch_outside=0x7f070069;
public static final int up=0x7f070009;
public static final int useLogo=0x7f070014;
public static final int view_offset_helper=0x7f07000a;
public static final int volume_item_container=0x7f070083;
public static final int withText=0x7f070022;
public static final int wrap_content=0x7f070015;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f090004;
public static final int abc_config_activityShortDur=0x7f090005;
public static final int abc_max_action_buttons=0x7f090003;
public static final int bottom_sheet_slide_duration=0x7f090009;
public static final int cancel_button_image_alpha=0x7f090006;
public static final int design_snackbar_text_max_lines=0x7f090008;
public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f090000;
public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f090001;
public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f090002;
public static final int status_bar_notification_info_maxnum=0x7f090007;
}
public static final class interpolator {
public static final int mr_fast_out_slow_in=0x7f050000;
public static final int mr_linear_out_slow_in=0x7f050001;
}
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_dialog_title_material=0x7f03000b;
public static final int abc_expanded_menu_layout=0x7f03000c;
public static final int abc_list_menu_item_checkbox=0x7f03000d;
public static final int abc_list_menu_item_icon=0x7f03000e;
public static final int abc_list_menu_item_layout=0x7f03000f;
public static final int abc_list_menu_item_radio=0x7f030010;
public static final int abc_popup_menu_item_layout=0x7f030011;
public static final int abc_screen_content_include=0x7f030012;
public static final int abc_screen_simple=0x7f030013;
public static final int abc_screen_simple_overlay_action_mode=0x7f030014;
public static final int abc_screen_toolbar=0x7f030015;
public static final int abc_search_dropdown_item_icons_2line=0x7f030016;
public static final int abc_search_view=0x7f030017;
public static final int abc_select_dialog_material=0x7f030018;
public static final int design_bottom_sheet_dialog=0x7f030019;
public static final int design_layout_snackbar=0x7f03001a;
public static final int design_layout_snackbar_include=0x7f03001b;
public static final int design_layout_tab_icon=0x7f03001c;
public static final int design_layout_tab_text=0x7f03001d;
public static final int design_menu_item_action_area=0x7f03001e;
public static final int design_navigation_item=0x7f03001f;
public static final int design_navigation_item_header=0x7f030020;
public static final int design_navigation_item_separator=0x7f030021;
public static final int design_navigation_item_subheader=0x7f030022;
public static final int design_navigation_menu=0x7f030023;
public static final int design_navigation_menu_item=0x7f030024;
public static final int mr_chooser_dialog=0x7f030025;
public static final int mr_chooser_list_item=0x7f030026;
public static final int mr_controller_material_dialog_b=0x7f030027;
public static final int mr_controller_volume_item=0x7f030028;
public static final int mr_playback_control=0x7f030029;
public static final int mr_volume_control=0x7f03002a;
public static final int notification_media_action=0x7f03002b;
public static final int notification_media_cancel_action=0x7f03002c;
public static final int notification_template_big_media=0x7f03002d;
public static final int notification_template_big_media_narrow=0x7f03002e;
public static final int notification_template_lines=0x7f03002f;
public static final int notification_template_media=0x7f030030;
public static final int notification_template_part_chronometer=0x7f030031;
public static final int notification_template_part_time=0x7f030032;
public static final int select_dialog_item_material=0x7f030033;
public static final int select_dialog_multichoice_material=0x7f030034;
public static final int select_dialog_singlechoice_material=0x7f030035;
public static final int support_simple_spinner_dropdown_item=0x7f030036;
public static final int tabbar=0x7f030037;
public static final int toolbar=0x7f030038;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f08000f;
public static final int abc_action_bar_home_description_format=0x7f080010;
public static final int abc_action_bar_home_subtitle_description_format=0x7f080011;
public static final int abc_action_bar_up_description=0x7f080012;
public static final int abc_action_menu_overflow_description=0x7f080013;
public static final int abc_action_mode_done=0x7f080014;
public static final int abc_activity_chooser_view_see_all=0x7f080015;
public static final int abc_activitychooserview_choose_application=0x7f080016;
public static final int abc_capital_off=0x7f080017;
public static final int abc_capital_on=0x7f080018;
public static final int abc_search_hint=0x7f080019;
public static final int abc_searchview_description_clear=0x7f08001a;
public static final int abc_searchview_description_query=0x7f08001b;
public static final int abc_searchview_description_search=0x7f08001c;
public static final int abc_searchview_description_submit=0x7f08001d;
public static final int abc_searchview_description_voice=0x7f08001e;
public static final int abc_shareactionprovider_share_with=0x7f08001f;
public static final int abc_shareactionprovider_share_with_application=0x7f080020;
public static final int abc_toolbar_collapse_description=0x7f080021;
public static final int appbar_scrolling_view_behavior=0x7f080023;
public static final int bottom_sheet_behavior=0x7f080024;
public static final int character_counter_pattern=0x7f080025;
public static final int mr_button_content_description=0x7f080000;
public static final int mr_chooser_searching=0x7f080001;
public static final int mr_chooser_title=0x7f080002;
public static final int mr_controller_casting_screen=0x7f080003;
public static final int mr_controller_close_description=0x7f080004;
public static final int mr_controller_collapse_group=0x7f080005;
public static final int mr_controller_disconnect=0x7f080006;
public static final int mr_controller_expand_group=0x7f080007;
public static final int mr_controller_no_info_available=0x7f080008;
public static final int mr_controller_no_media_selected=0x7f080009;
public static final int mr_controller_pause=0x7f08000a;
public static final int mr_controller_play=0x7f08000b;
public static final int mr_controller_stop=0x7f08000c;
public static final int mr_system_route_name=0x7f08000d;
public static final int mr_user_route_category_name=0x7f08000e;
public static final int status_bar_notification_info_overflow=0x7f080022;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0a00a1;
public static final int AlertDialog_AppCompat_Light=0x7f0a00a2;
public static final int Animation_AppCompat_Dialog=0x7f0a00a3;
public static final int Animation_AppCompat_DropDownUp=0x7f0a00a4;
public static final int Animation_Design_BottomSheetDialog=0x7f0a015a;
public static final int AppCompatDialogStyle=0x7f0a0174;
public static final int Base_AlertDialog_AppCompat=0x7f0a00a5;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0a00a6;
public static final int Base_Animation_AppCompat_Dialog=0x7f0a00a7;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0a00a8;
public static final int Base_CardView=0x7f0a0018;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0a00a9;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00aa;
public static final int Base_TextAppearance_AppCompat=0x7f0a0051;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0a0052;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0a0053;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0a003b;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0a0054;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0a0055;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0a0056;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0a0057;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0a0058;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0a0059;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0a0026;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0a005a;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a0027;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a005b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a005c;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0a005d;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a0028;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0a005e;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00ab;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a005f;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0060;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0a0061;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a0029;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0a0062;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a002a;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0a0063;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a002b;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a009a;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a0064;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a0065;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a0066;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a0067;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0068;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0069;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a006a;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a009b;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00ac;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a006b;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a006c;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a006d;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a006e;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ad;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a006f;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0070;
public static final int Base_Theme_AppCompat=0x7f0a0071;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0a00ae;
public static final int Base_Theme_AppCompat_Dialog=0x7f0a002c;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0a00af;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00b0;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a00b1;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a001c;
public static final int Base_Theme_AppCompat_Light=0x7f0a0072;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00b2;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0a002d;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a00b3;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00b4;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a00b5;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a001d;
public static final int Base_ThemeOverlay_AppCompat=0x7f0a00b6;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00b7;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00b8;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00b9;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0a00ba;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0a002e;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a002f;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0037;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0a0038;
public static final int Base_V21_Theme_AppCompat=0x7f0a0073;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0a0074;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0a0075;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a0076;
public static final int Base_V22_Theme_AppCompat=0x7f0a0098;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0a0099;
public static final int Base_V23_Theme_AppCompat=0x7f0a009c;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0a009d;
public static final int Base_V7_Theme_AppCompat=0x7f0a00bb;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0a00bc;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0a00bd;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00be;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00bf;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0a00c0;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0a00c1;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00c2;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00c3;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0077;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0078;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0a0079;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a007a;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a007b;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0a00c4;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00c5;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0039;
public static final int Base_Widget_AppCompat_Button=0x7f0a007c;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0a007d;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a007e;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00c6;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0a009e;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0a007f;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0a0080;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00c7;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0081;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0082;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00c8;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a001b;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00c9;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a0083;
public static final int Base_Widget_AppCompat_EditText=0x7f0a003a;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0a0084;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00ca;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00cb;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00cc;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0086;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0087;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0088;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0089;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0a008a;
public static final int Base_Widget_AppCompat_ListView=0x7f0a008b;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0a008c;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0a008d;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0a008e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a008f;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0a00cd;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0a0030;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0031;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0a0090;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a009f;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0a00a0;
public static final int Base_Widget_AppCompat_SearchView=0x7f0a00ce;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00cf;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0a0091;
public static final int Base_Widget_AppCompat_Spinner=0x7f0a0092;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a001e;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a0093;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0a00d0;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0094;
public static final int Base_Widget_Design_TabLayout=0x7f0a015b;
public static final int CardView=0x7f0a0017;
public static final int CardView_Dark=0x7f0a0019;
public static final int CardView_Light=0x7f0a001a;
public static final int MyTheme=0x7f0a0172;
/** Base theme applied no matter what API
*/
public static final int MyTheme_Base=0x7f0a0173;
public static final int Platform_AppCompat=0x7f0a0032;
public static final int Platform_AppCompat_Light=0x7f0a0033;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0a0095;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0096;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0097;
public static final int Platform_V11_AppCompat=0x7f0a0034;
public static final int Platform_V11_AppCompat_Light=0x7f0a0035;
public static final int Platform_V14_AppCompat=0x7f0a003c;
public static final int Platform_V14_AppCompat_Light=0x7f0a003d;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0a0036;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0043;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a0044;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a0045;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a0046;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a0047;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0048;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0049;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a004a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a004b;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a004c;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a004d;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a004e;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a004f;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0050;
public static final int TextAppearance_AppCompat=0x7f0a00d1;
public static final int TextAppearance_AppCompat_Body1=0x7f0a00d2;
public static final int TextAppearance_AppCompat_Body2=0x7f0a00d3;
public static final int TextAppearance_AppCompat_Button=0x7f0a00d4;
public static final int TextAppearance_AppCompat_Caption=0x7f0a00d5;
public static final int TextAppearance_AppCompat_Display1=0x7f0a00d6;
public static final int TextAppearance_AppCompat_Display2=0x7f0a00d7;
public static final int TextAppearance_AppCompat_Display3=0x7f0a00d8;
public static final int TextAppearance_AppCompat_Display4=0x7f0a00d9;
public static final int TextAppearance_AppCompat_Headline=0x7f0a00da;
public static final int TextAppearance_AppCompat_Inverse=0x7f0a00db;
public static final int TextAppearance_AppCompat_Large=0x7f0a00dc;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0a00dd;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00de;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00df;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00e0;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00e1;
public static final int TextAppearance_AppCompat_Medium=0x7f0a00e2;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00e3;
public static final int TextAppearance_AppCompat_Menu=0x7f0a00e4;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00e5;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00e6;
public static final int TextAppearance_AppCompat_Small=0x7f0a00e7;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0a00e8;
public static final int TextAppearance_AppCompat_Subhead=0x7f0a00e9;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00ea;
public static final int TextAppearance_AppCompat_Title=0x7f0a00eb;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0a00ec;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00ed;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00ee;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00ef;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00f0;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00f1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00f2;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00f3;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00f4;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00f5;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0a00f6;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00f7;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f8;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00f9;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00fa;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0a00fb;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00fc;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a015c;
public static final int TextAppearance_Design_Counter=0x7f0a015d;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0a015e;
public static final int TextAppearance_Design_Error=0x7f0a015f;
public static final int TextAppearance_Design_Hint=0x7f0a0160;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0a0161;
public static final int TextAppearance_Design_Tab=0x7f0a0162;
public static final int TextAppearance_StatusBar_EventContent=0x7f0a003e;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0a003f;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0a0040;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0a0041;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0a0042;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00fd;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00fe;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00ff;
public static final int Theme_AppCompat=0x7f0a0100;
public static final int Theme_AppCompat_CompactMenu=0x7f0a0101;
public static final int Theme_AppCompat_DayNight=0x7f0a001f;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0020;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0a0021;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0022;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0023;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0024;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0a0025;
public static final int Theme_AppCompat_Dialog=0x7f0a0102;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0a0103;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0a0104;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0a0105;
public static final int Theme_AppCompat_Light=0x7f0a0106;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0a0107;
public static final int Theme_AppCompat_Light_Dialog=0x7f0a0108;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0a0109;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a010a;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a010b;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0a010c;
public static final int Theme_AppCompat_NoActionBar=0x7f0a010d;
public static final int Theme_Design=0x7f0a0163;
public static final int Theme_Design_BottomSheetDialog=0x7f0a0164;
public static final int Theme_Design_Light=0x7f0a0165;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0a0166;
public static final int Theme_Design_Light_NoActionBar=0x7f0a0167;
public static final int Theme_Design_NoActionBar=0x7f0a0168;
public static final int Theme_MediaRouter=0x7f0a0000;
public static final int Theme_MediaRouter_Light=0x7f0a0001;
public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0a0002;
public static final int Theme_MediaRouter_LightControlPanel=0x7f0a0003;
public static final int ThemeOverlay_AppCompat=0x7f0a010e;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0a010f;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0a0110;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0111;
public static final int ThemeOverlay_AppCompat_Light=0x7f0a0112;
public static final int Widget_AppCompat_ActionBar=0x7f0a0113;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0a0114;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0a0115;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0a0116;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0a0117;
public static final int Widget_AppCompat_ActionButton=0x7f0a0118;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0119;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0a011a;
public static final int Widget_AppCompat_ActionMode=0x7f0a011b;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0a011c;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0a011d;
public static final int Widget_AppCompat_Button=0x7f0a011e;
public static final int Widget_AppCompat_Button_Borderless=0x7f0a011f;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0120;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0121;
public static final int Widget_AppCompat_Button_Colored=0x7f0a0122;
public static final int Widget_AppCompat_Button_Small=0x7f0a0123;
public static final int Widget_AppCompat_ButtonBar=0x7f0a0124;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0125;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0126;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0127;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0a0128;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0a0129;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012a;
public static final int Widget_AppCompat_EditText=0x7f0a012b;
public static final int Widget_AppCompat_ImageButton=0x7f0a012c;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0a012d;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a012e;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012f;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0130;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0131;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0132;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0133;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0134;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0135;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0a0136;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0137;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0138;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0139;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013a;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013b;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a013c;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0a013d;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0a013e;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0a013f;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0140;
public static final int Widget_AppCompat_Light_SearchView=0x7f0a0141;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0142;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0a0143;
public static final int Widget_AppCompat_ListView=0x7f0a0144;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0a0145;
public static final int Widget_AppCompat_ListView_Menu=0x7f0a0146;
public static final int Widget_AppCompat_PopupMenu=0x7f0a0147;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0148;
public static final int Widget_AppCompat_PopupWindow=0x7f0a0149;
public static final int Widget_AppCompat_ProgressBar=0x7f0a014a;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a014b;
public static final int Widget_AppCompat_RatingBar=0x7f0a014c;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0a014d;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0a014e;
public static final int Widget_AppCompat_SearchView=0x7f0a014f;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0a0150;
public static final int Widget_AppCompat_SeekBar=0x7f0a0151;
public static final int Widget_AppCompat_Spinner=0x7f0a0152;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0a0153;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0154;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0a0155;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0156;
public static final int Widget_AppCompat_Toolbar=0x7f0a0157;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0158;
public static final int Widget_Design_AppBarLayout=0x7f0a0169;
public static final int Widget_Design_BottomSheet_Modal=0x7f0a016a;
public static final int Widget_Design_CollapsingToolbar=0x7f0a016b;
public static final int Widget_Design_CoordinatorLayout=0x7f0a016c;
public static final int Widget_Design_FloatingActionButton=0x7f0a016d;
public static final int Widget_Design_NavigationView=0x7f0a016e;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0a016f;
public static final int Widget_Design_Snackbar=0x7f0a0170;
public static final int Widget_Design_TabLayout=0x7f0a0159;
public static final int Widget_Design_TextInputLayout=0x7f0a0171;
public static final int Widget_MediaRouter_ChooserText=0x7f0a0004;
public static final int Widget_MediaRouter_ChooserText_Primary=0x7f0a0005;
public static final int Widget_MediaRouter_ChooserText_Primary_Dark=0x7f0a0006;
public static final int Widget_MediaRouter_ChooserText_Primary_Light=0x7f0a0007;
public static final int Widget_MediaRouter_ChooserText_Secondary=0x7f0a0008;
public static final int Widget_MediaRouter_ChooserText_Secondary_Dark=0x7f0a0009;
public static final int Widget_MediaRouter_ChooserText_Secondary_Light=0x7f0a000a;
public static final int Widget_MediaRouter_ControllerText=0x7f0a000b;
public static final int Widget_MediaRouter_ControllerText_Primary=0x7f0a000c;
public static final int Widget_MediaRouter_ControllerText_Primary_Dark=0x7f0a000d;
public static final int Widget_MediaRouter_ControllerText_Primary_Light=0x7f0a000e;
public static final int Widget_MediaRouter_ControllerText_Secondary=0x7f0a000f;
public static final int Widget_MediaRouter_ControllerText_Secondary_Dark=0x7f0a0010;
public static final int Widget_MediaRouter_ControllerText_Secondary_Light=0x7f0a0011;
public static final int Widget_MediaRouter_ControllerText_Title=0x7f0a0012;
public static final int Widget_MediaRouter_ControllerText_Title_Dark=0x7f0a0013;
public static final int Widget_MediaRouter_ControllerText_Title_Light=0x7f0a0014;
public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0a0015;
public static final int Widget_MediaRouter_MediaRouteButton=0x7f0a0016;
}
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 no.toremorkved.jlxaml:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit no.toremorkved.jlxaml:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked no.toremorkved.jlxaml:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd no.toremorkved.jlxaml:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft no.toremorkved.jlxaml:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight no.toremorkved.jlxaml:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart no.toremorkved.jlxaml:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout no.toremorkved.jlxaml:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions no.toremorkved.jlxaml:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider no.toremorkved.jlxaml:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation no.toremorkved.jlxaml:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height no.toremorkved.jlxaml:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll no.toremorkved.jlxaml:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator no.toremorkved.jlxaml:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout no.toremorkved.jlxaml:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon no.toremorkved.jlxaml:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle no.toremorkved.jlxaml:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding no.toremorkved.jlxaml:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo no.toremorkved.jlxaml:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode no.toremorkved.jlxaml:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme no.toremorkved.jlxaml:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding no.toremorkved.jlxaml:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle no.toremorkved.jlxaml:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle no.toremorkved.jlxaml:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle no.toremorkved.jlxaml:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title no.toremorkved.jlxaml:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle no.toremorkved.jlxaml:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@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 = {
0x7f010027, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f01007a
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:elevation
*/
public static final int ActionBar_elevation = 24;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 26;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:popupTheme
*/
public static final int ActionBar_popupTheme = 25;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit no.toremorkved.jlxaml:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout no.toremorkved.jlxaml:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height no.toremorkved.jlxaml:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle no.toremorkved.jlxaml:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle no.toremorkved.jlxaml: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 = {
0x7f010027, 0x7f01002d, 0x7f01002e, 0x7f010032,
0x7f010034, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount no.toremorkved.jlxaml:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010043, 0x7f010044
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout no.toremorkved.jlxaml:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout no.toremorkved.jlxaml:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout no.toremorkved.jlxaml:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout no.toremorkved.jlxaml: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_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010045, 0x7f010046, 0x7f010047,
0x7f010048, 0x7f010049
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded no.toremorkved.jlxaml:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010040, 0x7f0100f7
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayout_LayoutParams.
<p>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_LayoutParams_layout_scrollFlags no.toremorkved.jlxaml:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator no.toremorkved.jlxaml:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_LayoutParams_layout_scrollFlags
@see #AppBarLayout_LayoutParams_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_LayoutParams = {
0x7f0100f8, 0x7f0100f9
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_LayoutParams} 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 no.toremorkved.jlxaml:layout_scrollFlags
*/
public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name no.toremorkved.jlxaml:layout_scrollInterpolator
*/
public static final int AppBarLayout_LayoutParams_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 no.toremorkved.jlxaml:srcCompat}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f01004a
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/** 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 no.toremorkved.jlxaml:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01004b
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground no.toremorkved.jlxaml:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme no.toremorkved.jlxaml:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize no.toremorkved.jlxaml:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle no.toremorkved.jlxaml:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle no.toremorkved.jlxaml:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle no.toremorkved.jlxaml:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle no.toremorkved.jlxaml:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle no.toremorkved.jlxaml:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme no.toremorkved.jlxaml:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme no.toremorkved.jlxaml:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle no.toremorkved.jlxaml:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle no.toremorkved.jlxaml:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance no.toremorkved.jlxaml:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor no.toremorkved.jlxaml:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground no.toremorkved.jlxaml:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle no.toremorkved.jlxaml:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable no.toremorkved.jlxaml:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable no.toremorkved.jlxaml:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable no.toremorkved.jlxaml:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable no.toremorkved.jlxaml:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable no.toremorkved.jlxaml:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle no.toremorkved.jlxaml:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable no.toremorkved.jlxaml:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable no.toremorkved.jlxaml:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground no.toremorkved.jlxaml:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle no.toremorkved.jlxaml:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable no.toremorkved.jlxaml:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle no.toremorkved.jlxaml:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle no.toremorkved.jlxaml:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle no.toremorkved.jlxaml:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle no.toremorkved.jlxaml:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons no.toremorkved.jlxaml:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle no.toremorkved.jlxaml:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle no.toremorkved.jlxaml:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle no.toremorkved.jlxaml:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle no.toremorkved.jlxaml:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle no.toremorkved.jlxaml:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle no.toremorkved.jlxaml:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle no.toremorkved.jlxaml:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle no.toremorkved.jlxaml:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall no.toremorkved.jlxaml:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle no.toremorkved.jlxaml:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle no.toremorkved.jlxaml:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent no.toremorkved.jlxaml:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal no.toremorkved.jlxaml:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated no.toremorkved.jlxaml:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight no.toremorkved.jlxaml:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal no.toremorkved.jlxaml:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary no.toremorkved.jlxaml:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark no.toremorkved.jlxaml:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal no.toremorkved.jlxaml:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground no.toremorkved.jlxaml:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding no.toremorkved.jlxaml:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme no.toremorkved.jlxaml:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal no.toremorkved.jlxaml:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical no.toremorkved.jlxaml:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle no.toremorkved.jlxaml:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight no.toremorkved.jlxaml:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground no.toremorkved.jlxaml:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor no.toremorkved.jlxaml:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle no.toremorkved.jlxaml:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator no.toremorkved.jlxaml:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle no.toremorkved.jlxaml:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator no.toremorkved.jlxaml:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog no.toremorkved.jlxaml:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle no.toremorkved.jlxaml:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight no.toremorkved.jlxaml:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge no.toremorkved.jlxaml:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall no.toremorkved.jlxaml:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft no.toremorkved.jlxaml:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight no.toremorkved.jlxaml:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground no.toremorkved.jlxaml:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme no.toremorkved.jlxaml:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth no.toremorkved.jlxaml:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle no.toremorkved.jlxaml:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle no.toremorkved.jlxaml:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle no.toremorkved.jlxaml:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle no.toremorkved.jlxaml:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator no.toremorkved.jlxaml:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall no.toremorkved.jlxaml:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle no.toremorkved.jlxaml:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle no.toremorkved.jlxaml:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground no.toremorkved.jlxaml:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless no.toremorkved.jlxaml:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle no.toremorkved.jlxaml:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle no.toremorkved.jlxaml:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle no.toremorkved.jlxaml:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu no.toremorkved.jlxaml:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem no.toremorkved.jlxaml:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall no.toremorkved.jlxaml:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle no.toremorkved.jlxaml:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle no.toremorkved.jlxaml:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu no.toremorkved.jlxaml:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem no.toremorkved.jlxaml:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl no.toremorkved.jlxaml:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle no.toremorkved.jlxaml:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle no.toremorkved.jlxaml:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar no.toremorkved.jlxaml:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay no.toremorkved.jlxaml:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay no.toremorkved.jlxaml:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor no.toremorkved.jlxaml:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor no.toremorkved.jlxaml:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor no.toremorkved.jlxaml:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor no.toremorkved.jlxaml:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor no.toremorkved.jlxaml:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor no.toremorkved.jlxaml:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle no.toremorkved.jlxaml: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_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_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_textAppearanceListItemSmall
@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, 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
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 49;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 45;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 57;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 93;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 91;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 94;
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 54;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 51;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 50;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 100;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 101;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 102;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 103;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 84;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 88;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 86;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 87;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 85;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 82;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 83;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 90;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 43;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 42;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 56;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 55;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 74;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 63;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 62;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 104;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 48;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 64;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 44;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 75;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 69;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 78;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 80;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 79;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 60;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 61;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 105;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 106;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 108;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 68;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 109;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 52;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 110;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 111;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 76;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 67;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 58;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomSheetBehavior_Params.
<p>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_Params_behavior_hideable no.toremorkved.jlxaml:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Params_behavior_peekHeight no.toremorkved.jlxaml:behavior_peekHeight}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Params_behavior_hideable
@see #BottomSheetBehavior_Params_behavior_peekHeight
*/
public static final int[] BottomSheetBehavior_Params = {
0x7f0100fa, 0x7f0100fb
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Params} 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 no.toremorkved.jlxaml:behavior_hideable
*/
public static final int BottomSheetBehavior_Params_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Params} 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 no.toremorkved.jlxaml:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0;
/** 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 no.toremorkved.jlxaml:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100ba
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius no.toremorkved.jlxaml:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation no.toremorkved.jlxaml:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation no.toremorkved.jlxaml:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap no.toremorkved.jlxaml:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding no.toremorkved.jlxaml:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding no.toremorkved.jlxaml:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom no.toremorkved.jlxaml:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft no.toremorkved.jlxaml:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight no.toremorkved.jlxaml:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop no.toremorkved.jlxaml: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, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024,
0x7f010025
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentPaddingTop
*/
public static final int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode no.toremorkved.jlxaml:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier no.toremorkved.jlxaml:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode
@see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingAppBarLayout_LayoutParams = {
0x7f0100fc, 0x7f0100fd
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} 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 no.toremorkved.jlxaml:layout_collapseMode
*/
public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} 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 no.toremorkved.jlxaml:layout_collapseParallaxMultiplier
*/
public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
/** 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 no.toremorkved.jlxaml:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance no.toremorkved.jlxaml:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim no.toremorkved.jlxaml:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity no.toremorkved.jlxaml:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin no.toremorkved.jlxaml:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom no.toremorkved.jlxaml:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd no.toremorkved.jlxaml:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart no.toremorkved.jlxaml:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop no.toremorkved.jlxaml:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance no.toremorkved.jlxaml:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim no.toremorkved.jlxaml:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title no.toremorkved.jlxaml:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled no.toremorkved.jlxaml:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId no.toremorkved.jlxaml: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_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010029, 0x7f0100fe, 0x7f0100ff, 0x7f010100,
0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104,
0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108,
0x7f010109, 0x7f01010a
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 13;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** 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 no.toremorkved.jlxaml:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode no.toremorkved.jlxaml:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100bb, 0x7f0100bc
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground no.toremorkved.jlxaml:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f01010b, 0x7f01010c
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_LayoutParams.
<p>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_LayoutParams_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchor no.toremorkved.jlxaml:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity no.toremorkved.jlxaml:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_behavior no.toremorkved.jlxaml:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_keyline no.toremorkved.jlxaml:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_LayoutParams_android_layout_gravity
@see #CoordinatorLayout_LayoutParams_layout_anchor
@see #CoordinatorLayout_LayoutParams_layout_anchorGravity
@see #CoordinatorLayout_LayoutParams_layout_behavior
@see #CoordinatorLayout_LayoutParams_layout_keyline
*/
public static final int[] CoordinatorLayout_LayoutParams = {
0x010100b3, 0x7f01010d, 0x7f01010e, 0x7f01010f,
0x7f010110
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name no.toremorkved.jlxaml:layout_anchor
*/
public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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 no.toremorkved.jlxaml:layout_anchorGravity
*/
public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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 no.toremorkved.jlxaml:layout_behavior
*/
public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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 no.toremorkved.jlxaml:layout_keyline
*/
public static final int CoordinatorLayout_LayoutParams_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 no.toremorkved.jlxaml:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle no.toremorkved.jlxaml:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError no.toremorkved.jlxaml:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010111, 0x7f010112, 0x7f010113
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength no.toremorkved.jlxaml:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength no.toremorkved.jlxaml:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color no.toremorkved.jlxaml:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize no.toremorkved.jlxaml:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars no.toremorkved.jlxaml:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars no.toremorkved.jlxaml:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness no.toremorkved.jlxaml: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 = {
0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0,
0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode no.toremorkved.jlxaml:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth no.toremorkved.jlxaml:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation no.toremorkved.jlxaml:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize no.toremorkved.jlxaml:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ no.toremorkved.jlxaml:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor no.toremorkved.jlxaml:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding no.toremorkved.jlxaml: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 = {
0x7f010040, 0x7f0100f5, 0x7f0100f6, 0x7f010114,
0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name no.toremorkved.jlxaml:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 7;
/** 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 no.toremorkved.jlxaml: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, 0x7f010119
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding no.toremorkved.jlxaml:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild no.toremorkved.jlxaml:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers no.toremorkved.jlxaml: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, 0x7f010031, 0x7f0100c5, 0x7f0100c6,
0x7f0100c7
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable no.toremorkved.jlxaml:externalRouteEnabledDrawable}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f01001a
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass no.toremorkved.jlxaml:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass no.toremorkved.jlxaml: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 no.toremorkved.jlxaml: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, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca,
0x7f0100cb
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:preserveIconSpacing}</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
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100cc
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/** 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 no.toremorkved.jlxaml:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout no.toremorkved.jlxaml:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground no.toremorkved.jlxaml:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint no.toremorkved.jlxaml:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance no.toremorkved.jlxaml:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor no.toremorkved.jlxaml:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu no.toremorkved.jlxaml: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, 0x7f010040,
0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d,
0x7f01011e, 0x7f01011f
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor no.toremorkved.jlxaml:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x7f0100cd
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 1;
/** 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 no.toremorkved.jlxaml:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager no.toremorkved.jlxaml:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout no.toremorkved.jlxaml:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount no.toremorkved.jlxaml:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd no.toremorkved.jlxaml:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002,
0x7f010003
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:layoutManager
*/
public static final int RecyclerView_layoutManager = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:spanCount
*/
public static final int RecyclerView_spanCount = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 4;
/** 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 no.toremorkved.jlxaml:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010120
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Params.
<p>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_Params_behavior_overlapTop no.toremorkved.jlxaml:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Params_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Params = {
0x7f010121
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Params} 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 no.toremorkved.jlxaml:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Params_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 no.toremorkved.jlxaml:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon no.toremorkved.jlxaml:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint no.toremorkved.jlxaml:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon no.toremorkved.jlxaml:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault no.toremorkved.jlxaml:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout no.toremorkved.jlxaml:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground no.toremorkved.jlxaml:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint no.toremorkved.jlxaml:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon no.toremorkved.jlxaml:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon no.toremorkved.jlxaml:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground no.toremorkved.jlxaml:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout no.toremorkved.jlxaml:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon no.toremorkved.jlxaml: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,
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6,
0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da,
0x7f0100db
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth no.toremorkved.jlxaml:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010040, 0x7f010122
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml: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,
0x7f010041
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack no.toremorkved.jlxaml:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth no.toremorkved.jlxaml:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding no.toremorkved.jlxaml:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance no.toremorkved.jlxaml:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding no.toremorkved.jlxaml:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track no.toremorkved.jlxaml:track}</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_track
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:showText
*/
public static final int SwitchCompat_showText = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:splitTrack
*/
public static final int SwitchCompat_splitTrack = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:switchPadding
*/
public static final int SwitchCompat_switchPadding = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:track
*/
public static final int SwitchCompat_track = 3;
/** 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 no.toremorkved.jlxaml:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart no.toremorkved.jlxaml:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity no.toremorkved.jlxaml:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor no.toremorkved.jlxaml:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight no.toremorkved.jlxaml:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth no.toremorkved.jlxaml:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth no.toremorkved.jlxaml:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode no.toremorkved.jlxaml:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding no.toremorkved.jlxaml:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom no.toremorkved.jlxaml:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd no.toremorkved.jlxaml:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart no.toremorkved.jlxaml:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop no.toremorkved.jlxaml:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor no.toremorkved.jlxaml:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance no.toremorkved.jlxaml:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor no.toremorkved.jlxaml: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 = {
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e,
0x7f01012f, 0x7f010130, 0x7f010131, 0x7f010132
};
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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_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 no.toremorkved.jlxaml: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_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x01010161, 0x01010162, 0x01010163, 0x01010164,
0x7f01004b
};
/**
<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 = 4;
/**
<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 = 5;
/**
<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 = 6;
/**
<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 = 7;
/**
<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#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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 8;
/** 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 no.toremorkved.jlxaml:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength no.toremorkved.jlxaml:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance no.toremorkved.jlxaml:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance no.toremorkved.jlxaml:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled no.toremorkved.jlxaml:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance no.toremorkved.jlxaml:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled no.toremorkved.jlxaml:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled no.toremorkved.jlxaml:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance no.toremorkved.jlxaml:hintTextAppearance}</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
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010133, 0x7f010134,
0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138,
0x7f010139, 0x7f01013a, 0x7f01013b
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/** 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_collapseContentDescription no.toremorkved.jlxaml:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon no.toremorkved.jlxaml:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd no.toremorkved.jlxaml:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft no.toremorkved.jlxaml:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight no.toremorkved.jlxaml:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart no.toremorkved.jlxaml:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo no.toremorkved.jlxaml:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription no.toremorkved.jlxaml:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight no.toremorkved.jlxaml:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription no.toremorkved.jlxaml:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon no.toremorkved.jlxaml:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme no.toremorkved.jlxaml:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle no.toremorkved.jlxaml:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance no.toremorkved.jlxaml:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor no.toremorkved.jlxaml:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title no.toremorkved.jlxaml:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom no.toremorkved.jlxaml:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd no.toremorkved.jlxaml:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart no.toremorkved.jlxaml:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop no.toremorkved.jlxaml:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins no.toremorkved.jlxaml:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance no.toremorkved.jlxaml:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor no.toremorkved.jlxaml:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@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_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, 0x7f010029, 0x7f01002c,
0x7f010030, 0x7f01003c, 0x7f01003d, 0x7f01003e,
0x7f01003f, 0x7f010041, 0x7f0100e3, 0x7f0100e4,
0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8,
0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 19;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:collapseIcon
*/
public static final int Toolbar_collapseIcon = 18;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:logoDescription
*/
public static final int Toolbar_logoDescription = 22;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 17;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 21;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:navigationIcon
*/
public static final int Toolbar_navigationIcon = 20;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:popupTheme
*/
public static final int Toolbar_popupTheme = 9;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 11;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 24;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 16;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 14;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 13;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 15;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleMargins
*/
public static final int Toolbar_titleMargins = 12;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 10;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:titleTextColor
*/
public static final int Toolbar_titleTextColor = 23;
/** 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 no.toremorkved.jlxaml:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart no.toremorkved.jlxaml:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme no.toremorkved.jlxaml: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, 0x7f0100f2, 0x7f0100f3,
0x7f0100f4
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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 no.toremorkved.jlxaml:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode no.toremorkved.jlxaml:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f0100f5, 0x7f0100f6
};
/**
<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 no.toremorkved.jlxaml.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 no.toremorkved.jlxaml:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link no.toremorkved.jlxaml.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 no.toremorkved.jlxaml: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]"
] | |
947f73213704c02793107b8915e1d0d673910d20 | bcc208d7420bf4260e7bef75c85b3754415fb4c8 | /CuryMean/app/src/main/java/com/launcher/mummu/curymean/listeners/FirebaseAuthListener.java | dd48688e20869514a94ae19423e4b8d51447266f | [] | no_license | thasneemp/hotel_test_pro | 6f8e3b91149d8b6087248e731a9a40cb52f018eb | ad66f30554d585d694fcf2269e652477ded5fe37 | refs/heads/master | 2021-01-18T07:34:13.373956 | 2017-03-08T10:37:45 | 2017-03-08T10:37:45 | 84,292,177 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 340 | java | package com.launcher.mummu.curymean.listeners;
import android.support.annotation.NonNull;
import com.google.android.gms.tasks.Task;
import com.google.firebase.auth.AuthResult;
/**
* Created by muhammed on 3/8/2017.
*/
public interface FirebaseAuthListener {
void onComplete(@NonNull Task<AuthResult> task);
void onError();
}
| [
"[email protected]"
] | |
8da0cb846ebcc7c67dc7f53983c13b3be4c4c477 | 11abceaa8c3357d5e1bad428e3e59b5f903beee2 | /src/jwmh/tablestreams/CSVTableReader.java | 5882a8483e9c8edebd85195da616460986764692 | [] | no_license | TurkeyMcMac/tablestreams | 28504aad508705d40488bd8e8a8f87c48aaf020b | e642d95b2ec2260b7e5c13781a62f78afb46457c | refs/heads/master | 2020-04-06T23:17:09.789796 | 2019-03-17T14:43:28 | 2019-03-17T14:43:28 | 157,863,907 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 955 | java | package jwmh.tablestreams;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
/**
* A reader of Comma-Separated Values.
*
* @author Jude Melton-Houghton
*
* @see <a href="https://tools.ietf.org/html/rfc4180">The CSV specification</a>
* @see CSVTableWriter
*/
public class CSVTableReader extends DSVTableReader
{
/**
* Instantiate from an input stream.
*
* @param source
* the input stream
*/
public CSVTableReader(InputStream source)
{
this(new InputStreamReader(source));
}
/**
* Instantiate from a reader.
*
* @param source
* the reader
*/
public CSVTableReader(Reader source)
{
this(new BufferedReader(source));
}
/**
* Instantiate from a buffered reader.
*
* @param source
* the reader
*/
public CSVTableReader(BufferedReader source)
{
super(source, ',');
}
}
| [
"[email protected]"
] | |
bf47dc2fc821e45c6bced9d74e0ecbb21c500732 | 486bf2978501b46c47653a5083e343d6e09469ba | /hello-concurrency/src/main/java/cn/chenhenry/java/concurrency/in/practice/StatelessFactorizer.java | 531fdbfc2d09698584a007290f4ae0acc470d993 | [
"MIT"
] | permissive | HenryChenV/hello-java | 5b6f0b56e55dee262f7a22171981093a2f02f332 | d71bce1cd5ff717a01eb2e95e38028c195434a4c | refs/heads/master | 2023-01-11T23:12:23.622700 | 2022-12-25T03:58:05 | 2022-12-25T03:58:05 | 157,085,535 | 0 | 0 | MIT | 2022-12-25T03:59:02 | 2018-11-11T14:06:19 | Java | UTF-8 | Java | false | false | 624 | java | package cn.chenhenry.java.concurrency.in.practice;
import javax.servlet.*;
import java.io.IOException;
public class StatelessFactorizer implements Servlet {
@Override
public void init(ServletConfig servletConfig) throws ServletException {
}
@Override
public ServletConfig getServletConfig() {
return null;
}
@Override
public void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, IOException {
}
@Override
public String getServletInfo() {
return null;
}
@Override
public void destroy() {
}
}
| [
"[email protected]"
] | |
6135db7657975a8485a16c666610ae52279589d5 | ae74bb44397b2a9a55348ce651e40d2b4c282866 | /src/com/macchicken/controller/EditPersonController.java | 6f6fc03f8c566dcb9511d7fa728e83c2fb4446b1 | [] | no_license | macchicken/gradle_springFour | efcf82a576fa7c43ff1d90004a2f2d7932fbe735 | 693b819d47317635fb528f4d0a78ad7dd3966b9e | refs/heads/master | 2016-09-06T17:51:40.612827 | 2015-05-02T05:23:07 | 2015-05-02T05:23:07 | 34,572,868 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,769 | java | package com.macchicken.controller;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
import com.macchicken.dto.Person;
import com.macchicken.dto.PersonVS;
import com.macchicken.model.PersonModel;
import com.macchicken.model.PersonModelVS;
import com.macchicken.service.EditService;
import com.macchicken.service.IPersonServie;
import com.macchicken.service.PersonService;
import com.macchicken.utils.ObjectTools;
@RestController
public class EditPersonController {
@Resource(name="editService")
private EditService editService;
@Resource(name="personInMemorySerive")
private PersonService personService;
@Resource(name="newPersonSerivce")
private IPersonServie newPersonSerivce;
@RequestMapping(value="/mymvc/saveperson.do", method = RequestMethod.POST)
public Map<String,Object> savePersonInfo(PersonModel person){
Person data=(Person) ObjectTools.MapToObject(person, new Person());
editService.savePerson(data);
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
result.put("person", person);
return result;
}
@RequestMapping(value="/mymvc/queryperson.do", method = RequestMethod.GET)
public Map<String,Object> queryPersonInfo(){
Person data=editService.getPerson();
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
result.put("person", ObjectTools.MapToModel(data, new PersonModel()));
return result;
}
@RequestMapping(value="/mymvc/editperson.do")
public ModelAndView editPersonInfo(String id){
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("createperson");
modelAndView.addObject("personid",id);
return modelAndView;
}
@RequestMapping(value="/mymvc/editpersonindb.do")
public ModelAndView editPersonInfoIndb(String id){
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("createpersondb");
modelAndView.addObject("personid",id);
return modelAndView;
}
@RequestMapping(value="/mymvc/deleteperson.do")
public ModelAndView deletePersonInfo(String id){
personService.deletePerson(Integer.parseInt(id));
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("viewperson");
return modelAndView;
}
@RequestMapping(value="/mymvc/deletepersonindb.do")
public ModelAndView deletePersonInfoIndb(String id){
newPersonSerivce.delete(id);
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("viewpersondb");
return modelAndView;
}
@RequestMapping(value="/mymvc/getPerson.do", method = RequestMethod.GET)
public Map<String,Object> getPersonInfo(String id){
Person data=personService.getPerson(Integer.parseInt(id));
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
result.put("person", ObjectTools.MapToModel(data, new PersonModel()));
return result;
}
@RequestMapping(value="/mymvc/getPersonindb.do", method = RequestMethod.GET)
public Map<String,Object> getPersonInfoIndb(String id){
PersonVS data=newPersonSerivce.select(id);
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
result.put("person", ObjectTools.MapToModel(data, new PersonModelVS()));
return result;
}
@RequestMapping(value="/mymvc/saveOrUpdatePerson.do", method = RequestMethod.POST)
public Map<String,Object> saveOrUpdatePersonInfo(PersonModel person){
Person data=(Person) ObjectTools.MapToObject(person, new Person());
if (person.getId() >-1) {
personService.update(data) ;
} else {
personService.save(data);
}
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
return result;
}
@RequestMapping(value="/mymvc/saveOrUpdatePersonindb.do", method = RequestMethod.POST)
public Map<String,Object> saveOrUpdatePersonInfoIndb(PersonModelVS person){
PersonVS data=(PersonVS) ObjectTools.MapToObject(person, new PersonVS());
if (data.getId()!=null&&!"-1".equals(data.getId().trim())) {
newPersonSerivce.update(data);
} else {
String newId= java.util.UUID.randomUUID().toString().replaceAll("-", "");
data.setId(newId);
newPersonSerivce.save(data);
}
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
return result;
}
@RequestMapping(value="/mymvc/getPersons.do", method = RequestMethod.GET)
public Map<String,Object> getPersonsInfo(){
List<Person> temp=personService.getPersons();
List<PersonModel> personList = null;
if (temp!=null&&temp.size()>0){
personList = new ArrayList<PersonModel>(temp.size());
int i=0;
for (Person p : temp){
personList.add(i,(PersonModel) ObjectTools.MapToModel(p, new PersonModel()));i++;
}}else{
personList= new ArrayList<PersonModel>();
}
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
result.put("personlist", personList);
return result;
}
@RequestMapping(value="/mymvc/getPersonsindb.do", method = RequestMethod.GET)
public Map<String,Object> getPersonsInfoIndb(){
List<PersonVS> temp=newPersonSerivce.selectAll();
List<PersonModelVS> personList = null;;
if (temp!=null&&temp.size()>0){
personList = new ArrayList<PersonModelVS>(temp.size());
int i=0;
for (PersonVS p : temp){
personList.add(i,(PersonModelVS) ObjectTools.MapToModel(p, new PersonModelVS()));i++;
}}else{
personList = new ArrayList<PersonModelVS>();
}
HashMap<String,Object> result=new HashMap<String,Object>();
result.put("success", true);
result.put("personlist", personList);
return result;
}
@RequestMapping(value="/mymvc/viewperson.do")
public ModelAndView Viewpeopele(){
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("viewperson");
return modelAndView;
}
@RequestMapping(value="/mymvc/viewpersonindb.do")
public ModelAndView ViewpeopeleIndb(){
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("viewpersondb");
return modelAndView;
}
@RequestMapping(value = "/mymvc/createpersonindb.do")
public ModelAndView MyCreatepersonIndb(){
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("createpersondb");
modelAndView.addObject("personid", -1);
return modelAndView;
}
}
| [
"[email protected]"
] | |
dd47b05cc82d69cd9065666df990c844757b07fa | aadf2b420cc3822ae20e02cab345c9ec6fb0c616 | /app/src/main/java/com/example/lana/bs/munch/ui/adapters/CategoryListAdapter.java | 39669340e4cbae3a7f572000ea01389cebabdfa0 | [] | no_license | slayLana/chris | f42e2493d2af3ef5029e62030dbe2123d1f182be | 0de7364f1012c8b71f96fed0d950b09abe60d4d6 | refs/heads/master | 2021-09-10T01:35:36.747172 | 2018-03-20T15:28:07 | 2018-03-20T15:28:07 | 126,035,958 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,006 | java | package com.example.lana.bs.munch.ui.adapters;
import android.content.Context;
import android.support.v4.content.ContextCompat;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.example.lana.bs.munch.R;
import com.example.lana.bs.munch.models.SettingsPreferences;
import com.example.lana.bs.munch.models.CategoryItem;
import java.util.List;
/**
* Created by Lana on 01/01/2018.
*/
public class CategoryListAdapter extends BaseAdapter {
private Context mContext;
private List<CategoryItem> mCategoryItems;
public CategoryListAdapter(Context mContext, List<CategoryItem> mCategoryItems) {
this.mContext = mContext;
this.mCategoryItems = mCategoryItems;
}
@Override
public int getCount() {
return mCategoryItems.size();
}
@Override
public Object getItem(int i) {
return null;
}
@Override
public long getItemId(int i) {
return 0;
}
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
View itemView = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.item_category, viewGroup, false);
TextView txtCategoryName = (TextView) itemView.findViewById(R.id.text_view_category);
ImageView imgCategory = (ImageView) itemView.findViewById(R.id.image_view_category);
txtCategoryName.setText(mCategoryItems.get(i).getCategoryName());
imgCategory.setImageDrawable(mCategoryItems.get(i).getCategoryImg());
//add a white color filter to the images if dark theme is selected
if (!SettingsPreferences.THEME) {
txtCategoryName.setTextColor(ContextCompat.getColor(viewGroup.getContext(), R.color.md_grey_100));
imgCategory.setColorFilter(ContextCompat.getColor(viewGroup.getContext(), R.color.md_grey_100));
}
return itemView;
}
}
| [
"[email protected]"
] | |
6cc0cc7777b3bd656306c344c9251b77beea5798 | 8ed0c33cd1808e0467c8443c56f2552392f0de2a | /src/lib/ui/factories/MyListsPageObjectFactory.java | 4eff1240836c33d7f81c0798457fef9c74d70928 | [
"Apache-2.0"
] | permissive | DmitriyNeurov/avt_mobile | b30618381d1e0604fea852820ad6d20efa573d3a | b894782ccd0a1b0a20c646fd9cbca0b0bec85e30 | refs/heads/master | 2020-05-25T04:53:08.590551 | 2019-07-16T08:19:51 | 2019-07-16T08:19:51 | 187,635,831 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 675 | java | package lib.ui.factories;
import lib.Platform;
import lib.ui.MyListsPageObject;
import lib.ui.android.AndroidMyListsPageObject;
import lib.ui.ios.iOSMyListsPageObject;
import lib.ui.mobile_web.MWMyListsPageObject;
import org.openqa.selenium.remote.RemoteWebDriver;
public class MyListsPageObjectFactory {
public static MyListsPageObject get(RemoteWebDriver driver)
{
if (Platform.getInstance().isAndroid()){
return new AndroidMyListsPageObject(driver);
}else if (Platform.getInstance().isIOS()){
return new iOSMyListsPageObject(driver);
}else {
return new MWMyListsPageObject(driver);
}
}
}
| [
"[email protected]"
] | |
b954b12f3c3f6c006c8acde9479154a835c0a83d | d63402c1fdeb5b13de9667696b2b8e09ffb13fd9 | /kods/Sthenos-main/app/src/main/java/com/example/sthenos/equipment/Resistancebands.java | 08810f63db659d000caa1405ec82322eecbad965 | [] | no_license | rvtprog-kval-21/d43-RobertsKristiansMarkuns-sthenos | 3dc5e4244c5cf26e15fc1a557fe25f6ea07d914d | d813850f4cb5ca9527f33c449de03276d1fee2b1 | refs/heads/main | 2023-05-30T05:01:11.631835 | 2021-06-11T17:07:08 | 2021-06-11T17:07:08 | 309,124,639 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,746 | java | package com.example.sthenos.equipment;
import android.content.Intent;
import android.os.Bundle;
import android.view.MenuItem;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import com.example.sthenos.Equipment;
import com.example.sthenos.IndoorActivity;
import com.example.sthenos.MainActivity;
import com.example.sthenos.MobilityActivity;
import com.example.sthenos.OutdoorActivity;
import com.example.sthenos.R;
import com.example.sthenos.indoor.pushups.InclinePushUp;
import com.google.android.material.bottomnavigation.BottomNavigationView;
import static com.example.sthenos.R.drawable.resistancebands1;
import static com.example.sthenos.R.drawable.weightveststhenos;
public class Resistancebands extends AppCompatActivity {
//Variables
TextView productTitle, priceTag, descText;
ImageView productImage;
Button addToCart;
BottomNavigationView bottomNavbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//This Line will make the status bar from the screen see through
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.collapsing_toolbar_equipment_activity);
/*--------Hooks---------*/
//Image
productImage = findViewById(R.id.productImageView);
//TextView
productTitle = findViewById(R.id.productTitleTextView);
priceTag = findViewById(R.id.priceTagTextView);
descText = findViewById(R.id.productDescriptionTextTextView);
//Buttons
addToCart = findViewById(R.id.btnAddToCart);
//Bottom Navigation Bar
bottomNavbar = findViewById(R.id.BottomNavBar);
/*---------Setting ImageView values--------------*/
productImage.setImageResource(resistancebands1);
/*---------Setting TextView values--------------*/
productTitle.setText("ResistanceBand");
priceTag.setText("9.99$");
descText.setText("Make your workouts harder with our resistance band that you can use for any" +
"exercise to make it more difficult and your gains more rewarding!");
/*---------Button onClickListener--------------*/
addToCart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast toast = Toast.makeText(getApplicationContext(), " Item Added To Cart", Toast.LENGTH_SHORT);
toast.show();
}
});
bottomNavbar.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
switch (item.getItemId()){
case R.id.nav_indoor:
Intent indoor = new Intent(Resistancebands.this, IndoorActivity.class);
Toast.makeText(Resistancebands.this, item.getTitle(), Toast.LENGTH_SHORT).show();
startActivity(indoor);
break;
case R.id.nav_outdoor:
Intent outdoor = new Intent(Resistancebands.this, OutdoorActivity.class);
Toast.makeText(Resistancebands.this, item.getTitle(), Toast.LENGTH_SHORT).show();
startActivity(outdoor);
break;
case R.id.nav_home:
Intent home = new Intent(Resistancebands.this, MainActivity.class);
Toast.makeText(Resistancebands.this, item.getTitle(), Toast.LENGTH_SHORT).show();
startActivity(home);
break;
case R.id.nav_mobility:
Intent mobility = new Intent(Resistancebands.this, MobilityActivity.class);
Toast.makeText(Resistancebands.this, item.getTitle(), Toast.LENGTH_SHORT).show();
startActivity(mobility);
break;
case R.id.nav_equipment:
Intent equipment = new Intent(Resistancebands.this, Equipment.class);
Toast.makeText(Resistancebands.this, item.getTitle(), Toast.LENGTH_SHORT).show();
startActivity(equipment);
break;
}
return true;
}
});
}
}
| [
"[email protected]"
] | |
3fca75a631ebb257a4022752fd5f6ea59199984d | 908a2af075dc4775e858ded9353e681900fa7c78 | /src/java/nginx/clojure/java/NginxJavaRingHandler.java | fc3583b92303cdab3989acb9dc5290c161a49761 | [
"BSD-3-Clause"
] | permissive | gitssie/nginx-clojure | 447ba7137f00f56fd8362f275d6cd2d88fb31d12 | 851643ae949c61a957ff3b2916a0570c358ce50f | refs/heads/master | 2021-05-28T01:16:03.520145 | 2014-11-11T15:32:30 | 2014-11-11T15:32:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 203 | java | /**
* Copyright (C) Zhang,Yuexiang (xfeep)
*
*/
package nginx.clojure.java;
import java.util.Map;
public interface NginxJavaRingHandler {
public Object[] invoke(Map<String, Object> request);
}
| [
"[email protected]"
] | |
0473702d78b3de9cb41d14ae7c2bbf9c97655891 | 05af9eef61983d9198ce00612d2d195d0878d2ff | /app/src/test/java/com/faizun/thiefrobberlandlordpolice/ExampleUnitTest.java | 0449594789d6e25dc01048b6fa382c3e0a065337 | [] | no_license | Faizun-Faria/Thief-Robber-Landlord-Police | 2024497d50d1a9d04ff862e8a3c9ff333b4dfab9 | 35f49e9ccbe766b26f65fab497bee5128efba359 | refs/heads/main | 2023-04-02T05:49:43.612953 | 2021-04-17T20:21:11 | 2021-04-17T20:21:11 | 333,307,250 | 6 | 10 | null | null | null | null | UTF-8 | Java | false | false | 397 | java | package com.faizun.thiefrobberlandlordpolice;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"[email protected]"
] | |
3b65e9df5c86ad40889a1ecd7cca0e848e7e310d | 453d46fd303217b5726772e0556d2ea66f055e4e | /src/model/Rectangle.java | 77d3ed6227e939c40a7649602d8fca49a4e92aac | [] | no_license | tonysau/GTI410-Lab01 | 8dbde5cadab3901ae58e32f3d58f1c2d4986ecc2 | c22b34a0b7caf95a5cd0c532c11aade3ef13d06f | refs/heads/master | 2020-04-10T00:48:01.745626 | 2016-10-19T02:48:46 | 2016-10-19T02:48:46 | 68,210,305 | 0 | 2 | null | null | null | null | ISO-8859-1 | Java | false | false | 5,886 | java | /*
This file is part of j2dcg.
j2dcg is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
j2dcg 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 j2dcg; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package model;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Point;
import controller.MementoIF;
/**
* <p>Title: Rectangle</p>
* <p>Description: Subclass of a Shape, representing a Rectangle.</p>
* <p>Copyright: Copyright (c) 2004 Mohammed Elghaouat, Colin B-B, Eric Paquette</p>
* <p>Company: (ÉTS) - École de Technologie Supérieure</p>
* @author unascribed
* @version $Revision: 1.13 $
*/
public class Rectangle extends ColoredShape {
private int width;
private int height;
/**
* Constructor where rectangles attributes can be specified.
* @param centerX the x coordinate of the rectangle's center
* @param centerY the y coordinate of the rectangle's center
* @param color color of the rectangle
* @param width the width of the rectangle
* @param height the height of the rectangle
*/
public Rectangle(double centerX, double centerY, Pixel color, int width, int height) {
super(centerX, centerY, color);
setWidth(width);
setHeight(height);
}
/**
* Rectangle constructor. Default color is black.
* @param centerX the x coordinate of the rectangle's center
* @param centerY the y coordinate of the rectangle's center
* @param width the width of the rectangle
* @param height the height of the rectangle
*/
public Rectangle(double centerX, double centerY, int width, int height) {
this(centerX, centerY, new Pixel(0), width, height);
}
/**
* Rectangle rendering method.
* @param g Graphics rendering context
*/
public void drawHook(Graphics g){
g.setColor(getColor().toColor());
Graphics2D g2d = (Graphics2D)g;
g2d.draw(getRectangle());
}
/**
* Is the specified point within the rectangle selection thickness?
* @param aPt specified point coordinates
* @return point contained inside flag value
*/
public boolean isThisPointInHook(Point aPt) {
int distX =(int) Math.abs(aPt.getX()-getCenter().getX());
int distY =(int) Math.abs(aPt.getY()-getCenter().getY());
boolean onX = (Math.abs(distY-height/2)<=SELECTION_THICKNESS)&&(distX<=width/2);
boolean onY = (Math.abs(distX-width/2)<=SELECTION_THICKNESS)&&(distY<=height/2);
if (onX||onY) {
return true;
} else {
return false;
}
}
/**
* Is the specified point within the rectangle area?
* @param aPt specified point coordinates
* @return point contained inside flag value
*/
public boolean isThisPointWithIn(Point aPt){
int distX =(int) Math.abs(aPt.getX()-getCenter().getX());
int distY =(int) Math.abs(aPt.getY()-getCenter().getY());
if ((distX<width/2)&&(distY<height/2)) {
return true;
} else {
return false;
}
}
/**
* Set the rectangle corner coordinates
* @param aCorner1 first corner coordinate (top-left)
* @param aCorner2 second corner coordinate (bottom-right)
*/
public void setCorners(Point aCorner1, Point aCorner2){
double maxX = Math.max(aCorner2.getX(),aCorner1.getX());
double maxY = Math.max(aCorner2.getY(),aCorner1.getY());
setCenter(maxX - Math.abs(aCorner2.getX()-aCorner1.getX())/2,
maxY - Math.abs(aCorner2.getY()-aCorner1.getY())/2);
width = (int)Math.abs(aCorner2.getX()-aCorner1.getX());
height = (int)Math.abs(aCorner2.getY()-aCorner1.getY());
}
public java.awt.Rectangle getRectangle() {
return new java.awt.Rectangle((int)(getCenter().getX()-width/2),
(int)(getCenter().getY()-height/2),
width,
height);
}
public java.awt.Rectangle getTransformedRectangle() {
Point transformedCenter = getTransformedCenter();
return new java.awt.Rectangle((int)(transformedCenter.getX()-width/2),
(int)(transformedCenter.getY()-height/2),
width,
height);
}
// Memento Support.
private void setWidth(int dx) {
this.width = dx;
// coloredshape already notifies observers
}
private void setHeight(int dy) {
this.height = dy;
// coloredshape already notifies observers
}
// @see model.ColoredShape#createMemento()
public MementoIF createMemento() {
return new RectangleMemento(super.createMemento(), width, height);
}
// @see model.ColoredShape#setMemento(controller.MementoIF)
public void setMemento(MementoIF memento) {
RectangleMemento m = (RectangleMemento)memento;
setWidth(m.getWidth());
setHeight(m.getHeight());
super.setMemento(m.getParent());
}
/** Supports undo. */
private class RectangleMemento implements MementoIF {
private final MementoIF memParent;
private final int memWidth;
private final int memHeight;
/**
* @param m the parent memento
* @param dx the width
* @param dy the height
*/
RectangleMemento(MementoIF m, int dx, int dy) {
memParent = m;
memWidth = dx;
memHeight = dy;
}
int getWidth() { return memWidth; }
int getHeight() { return memHeight; }
MementoIF getParent() { return memParent; }
}
}
| [
"[email protected]"
] | |
957645e812a6ac5f4c4bf7bb74a3f6d1b6749e85 | 47b450f593b61e8d4fb8d8d5f6fd4231651589bc | /src/java/util/Deque.java | dd4717b611303200fb1d427d77153249d8b23c06 | [] | no_license | jiayi-zh/jdk-source | 877d79b25cc290b1935fe55f9ec940b88b159cca | b226fe32b0909e3b29610218d3622d6d795ca2f4 | refs/heads/master | 2023-06-01T08:55:02.436349 | 2021-06-25T10:33:37 | 2021-06-25T10:33:37 | 326,683,948 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 23,459 | java | /*
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*
*
*
*
*
*
* Written by Doug Lea and Josh Bloch with assistance from members of
* JCP JSR-166 Expert Group and released to the public domain, as explained
* at http://creativecommons.org/publicdomain/zero/1.0/
*/
package java.util;
/**
* A linear collection that supports element insertion and removal at
* both ends. The name <i>deque</i> is short for "double ended queue"
* and is usually pronounced "deck". Most {@code Deque}
* implementations place no fixed limits on the number of elements
* they may contain, but this interface supports capacity-restricted
* deques as well as those with no fixed size limit.
*
* <p>This interface defines methods to access the elements at both
* ends of the deque. Methods are provided to insert, remove, and
* examine the element. Each of these methods exists in two forms:
* one throws an exception if the operation fails, the other returns a
* special value (either {@code null} or {@code false}, depending on
* the operation). The latter form of the insert operation is
* designed specifically for use with capacity-restricted
* {@code Deque} implementations; in most implementations, insert
* operations cannot fail.
*
* <p>The twelve methods described above are summarized in the
* following table:
*
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <caption>Summary of Deque methods</caption>
* <tr>
* <td></td>
* <td ALIGN=CENTER COLSPAN = 2> <b>First Element (Head)</b></td>
* <td ALIGN=CENTER COLSPAN = 2> <b>Last Element (Tail)</b></td>
* </tr>
* <tr>
* <td></td>
* <td ALIGN=CENTER><em>Throws exception</em></td>
* <td ALIGN=CENTER><em>Special value</em></td>
* <td ALIGN=CENTER><em>Throws exception</em></td>
* <td ALIGN=CENTER><em>Special value</em></td>
* </tr>
* <tr>
* <td><b>Insert</b></td>
* <td>{@link Deque#addFirst addFirst(e)}</td>
* <td>{@link Deque#offerFirst offerFirst(e)}</td>
* <td>{@link Deque#addLast addLast(e)}</td>
* <td>{@link Deque#offerLast offerLast(e)}</td>
* </tr>
* <tr>
* <td><b>Remove</b></td>
* <td>{@link Deque#removeFirst removeFirst()}</td>
* <td>{@link Deque#pollFirst pollFirst()}</td>
* <td>{@link Deque#removeLast removeLast()}</td>
* <td>{@link Deque#pollLast pollLast()}</td>
* </tr>
* <tr>
* <td><b>Examine</b></td>
* <td>{@link Deque#getFirst getFirst()}</td>
* <td>{@link Deque#peekFirst peekFirst()}</td>
* <td>{@link Deque#getLast getLast()}</td>
* <td>{@link Deque#peekLast peekLast()}</td>
* </tr>
* </table>
*
* <p>This interface extends the {@link Queue} interface. When a deque is
* used as a queue, FIFO (First-In-First-Out) behavior results. Elements are
* added at the end of the deque and removed from the beginning. The methods
* inherited from the {@code Queue} interface are precisely equivalent to
* {@code Deque} methods as indicated in the following table:
*
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <caption>Comparison of Queue and Deque methods</caption>
* <tr>
* <td ALIGN=CENTER> <b>{@code Queue} Method</b></td>
* <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#add add(e)}</td>
* <td>{@link #addLast addLast(e)}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#offer offer(e)}</td>
* <td>{@link #offerLast offerLast(e)}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#remove remove()}</td>
* <td>{@link #removeFirst removeFirst()}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#poll poll()}</td>
* <td>{@link #pollFirst pollFirst()}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#element element()}</td>
* <td>{@link #getFirst getFirst()}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#peek peek()}</td>
* <td>{@link #peek peekFirst()}</td>
* </tr>
* </table>
*
* <p>Deques can also be used as LIFO (Last-In-First-Out) stacks. This
* interface should be used in preference to the legacy {@link Stack} class.
* When a deque is used as a stack, elements are pushed and popped from the
* beginning of the deque. Stack methods are precisely equivalent to
* {@code Deque} methods as indicated in the table below:
*
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <caption>Comparison of Stack and Deque methods</caption>
* <tr>
* <td ALIGN=CENTER> <b>Stack Method</b></td>
* <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
* </tr>
* <tr>
* <td>{@link #push push(e)}</td>
* <td>{@link #addFirst addFirst(e)}</td>
* </tr>
* <tr>
* <td>{@link #pop pop()}</td>
* <td>{@link #removeFirst removeFirst()}</td>
* </tr>
* <tr>
* <td>{@link #peek peek()}</td>
* <td>{@link #peekFirst peekFirst()}</td>
* </tr>
* </table>
*
* <p>Note that the {@link #peek peek} method works equally well when
* a deque is used as a queue or a stack; in either case, elements are
* drawn from the beginning of the deque.
*
* <p>This interface provides two methods to remove interior
* elements, {@link #removeFirstOccurrence removeFirstOccurrence} and
* {@link #removeLastOccurrence removeLastOccurrence}.
*
* <p>Unlike the {@link List} interface, this interface does not
* provide support for indexed access to elements.
*
* <p>While {@code Deque} implementations are not strictly required
* to prohibit the insertion of null elements, they are strongly
* encouraged to do so. Users of any {@code Deque} implementations
* that do allow null elements are strongly encouraged <i>not</i> to
* take advantage of the ability to insert nulls. This is so because
* {@code null} is used as a special return value by various methods
* to indicated that the deque is empty.
*
* <p>{@code Deque} implementations generally do not define
* element-based versions of the {@code equals} and {@code hashCode}
* methods, but instead inherit the identity-based versions from class
* {@code Object}.
*
* <p>This interface is a member of the <a
* href="{@docRoot}/../technotes/guides/collections/index.html"> Java Collections
* Framework</a>.
*
* @author Doug Lea
* @author Josh Bloch
* @since 1.6
* @param <E> the type of elements held in this collection
*/
public interface Deque<E> extends Queue<E> { /**
* Inserts the specified element at the front of this deque if it is
* possible to do so immediately without violating capacity restrictions,
* throwing an {@code IllegalStateException} if no space is currently
* available. When using a capacity-restricted deque, it is generally
* preferable to use method {@link #offerFirst}.
*
* @param e the element to add
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
void addFirst(E e); // 添加首元素,如果违背了容量限制,则抛出异常
/**
* Inserts the specified element at the end of this deque if it is
* possible to do so immediately without violating capacity restrictions,
* throwing an {@code IllegalStateException} if no space is currently
* available. When using a capacity-restricted deque, it is generally
* preferable to use method {@link #offerLast}.
*
* <p>This method is equivalent to {@link #add}.
*
* @param e the element to add
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
void addLast(E e); // 追加尾元素,如果违背了容量限制,则抛出异常
/**
* Inserts the specified element at the front of this deque unless it would
* violate capacity restrictions. When using a capacity-restricted deque,
* this method is generally preferable to the {@link #addFirst} method,
* which can fail to insert an element only by throwing an exception.
*
* @param e the element to add
* @return {@code true} if the element was added to this deque, else
* {@code false}
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean offerFirst(E e); // 添加首元素,如果违背了容量限制,则返回false
/**
* Inserts the specified element at the end of this deque unless it would
* violate capacity restrictions. When using a capacity-restricted deque,
* this method is generally preferable to the {@link #addLast} method,
* which can fail to insert an element only by throwing an exception.
*
* @param e the element to add
* @return {@code true} if the element was added to this deque, else
* {@code false}
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean offerLast(E e); // 追加尾元素,如果违背了容量限制,则返回false
/**
* Retrieves and removes the first element of this deque. This method
* differs from {@link #pollFirst pollFirst} only in that it throws an
* exception if this deque is empty.
*
* @return the head of this deque
* @throws NoSuchElementException if this deque is empty
*/
E removeFirst(); // 移除首元素,如果队列为空则抛出异常
/**
* Retrieves and removes the last element of this deque. This method
* differs from {@link #pollLast pollLast} only in that it throws an
* exception if this deque is empty.
*
* @return the tail of this deque
* @throws NoSuchElementException if this deque is empty
*/
E removeLast();
/**
* Retrieves and removes the first element of this deque,
* or returns {@code null} if this deque is empty.
*
* @return the head of this deque, or {@code null} if this deque is empty
*/
E pollFirst();
/**
* Retrieves and removes the last element of this deque,
* or returns {@code null} if this deque is empty.
*
* @return the tail of this deque, or {@code null} if this deque is empty
*/
E pollLast();
/**
* Retrieves, but does not remove, the first element of this deque.
*
* This method differs from {@link #peekFirst peekFirst} only in that it
* throws an exception if this deque is empty.
*
* @return the head of this deque
* @throws NoSuchElementException if this deque is empty
*/
E getFirst();
/**
* Retrieves, but does not remove, the last element of this deque.
* This method differs from {@link #peekLast peekLast} only in that it
* throws an exception if this deque is empty.
*
* @return the tail of this deque
* @throws NoSuchElementException if this deque is empty
*/
E getLast();
/**
* Retrieves, but does not remove, the first element of this deque,
* or returns {@code null} if this deque is empty.
*
* @return the head of this deque, or {@code null} if this deque is empty
*/
E peekFirst();
/**
* Retrieves, but does not remove, the last element of this deque,
* or returns {@code null} if this deque is empty.
*
* @return the tail of this deque, or {@code null} if this deque is empty
*/
E peekLast();
/**
* Removes the first occurrence of the specified element from this deque.
* If the deque does not contain the element, it is unchanged.
* More formally, removes the first element {@code e} such that
* <tt>(o==null ? e==null : o.equals(e))</tt>
* (if such an element exists).
* Returns {@code true} if this deque contained the specified element
* (or equivalently, if this deque changed as a result of the call).
*
* @param o element to be removed from this deque, if present
* @return {@code true} if an element was removed as a result of this call
* @throws ClassCastException if the class of the specified element
* is incompatible with this deque
* (<a href="Collection.html#optional-restrictions">optional</a>)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* (<a href="Collection.html#optional-restrictions">optional</a>)
*/
boolean removeFirstOccurrence(Object o);
/**
* Removes the last occurrence of the specified element from this deque.
* If the deque does not contain the element, it is unchanged.
* More formally, removes the last element {@code e} such that
* <tt>(o==null ? e==null : o.equals(e))</tt>
* (if such an element exists).
* Returns {@code true} if this deque contained the specified element
* (or equivalently, if this deque changed as a result of the call).
*
* @param o element to be removed from this deque, if present
* @return {@code true} if an element was removed as a result of this call
* @throws ClassCastException if the class of the specified element
* is incompatible with this deque
* (<a href="Collection.html#optional-restrictions">optional</a>)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* (<a href="Collection.html#optional-restrictions">optional</a>)
*/
boolean removeLastOccurrence(Object o);
// *** Queue methods ***
/**
* Inserts the specified element into the queue represented by this deque
* (in other words, at the tail of this deque) if it is possible to do so
* immediately without violating capacity restrictions, returning
* {@code true} upon success and throwing an
* {@code IllegalStateException} if no space is currently available.
* When using a capacity-restricted deque, it is generally preferable to
* use {@link #offer(Object) offer}.
*
* <p>This method is equivalent to {@link #addLast}.
*
* @param e the element to add
* @return {@code true} (as specified by {@link Collection#add})
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean add(E e);
/**
* Inserts the specified element into the queue represented by this deque
* (in other words, at the tail of this deque) if it is possible to do so
* immediately without violating capacity restrictions, returning
* {@code true} upon success and {@code false} if no space is currently
* available. When using a capacity-restricted deque, this method is
* generally preferable to the {@link #add} method, which can fail to
* insert an element only by throwing an exception.
*
* <p>This method is equivalent to {@link #offerLast}.
*
* @param e the element to add
* @return {@code true} if the element was added to this deque, else
* {@code false}
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean offer(E e);
/**
* Retrieves and removes the head of the queue represented by this deque
* (in other words, the first element of this deque).
* This method differs from {@link #poll poll} only in that it throws an
* exception if this deque is empty.
*
* <p>This method is equivalent to {@link #removeFirst()}.
*
* @return the head of the queue represented by this deque
* @throws NoSuchElementException if this deque is empty
*/
E remove();
/**
* Retrieves and removes the head of the queue represented by this deque
* (in other words, the first element of this deque), or returns
* {@code null} if this deque is empty.
*
* <p>This method is equivalent to {@link #pollFirst()}.
*
* @return the first element of this deque, or {@code null} if
* this deque is empty
*/
E poll(); // 获取队列首元素并移除
/**
* Retrieves, but does not remove, the head of the queue represented by
* this deque (in other words, the first element of this deque).
* This method differs from {@link #peek peek} only in that it throws an
* exception if this deque is empty.
*
* <p>This method is equivalent to {@link #getFirst()}.
*
* @return the head of the queue represented by this deque
* @throws NoSuchElementException if this deque is empty
*/
E element();
/**
* Retrieves, but does not remove, the head of the queue represented by
* this deque (in other words, the first element of this deque), or
* returns {@code null} if this deque is empty.
*
* <p>This method is equivalent to {@link #peekFirst()}.
*
* @return the head of the queue represented by this deque, or
* {@code null} if this deque is empty
*/
E peek(); // 获取首元素但不删除
// *** Stack methods ***
/**
* Pushes an element onto the stack represented by this deque (in other
* words, at the head of this deque) if it is possible to do so
* immediately without violating capacity restrictions, throwing an
* {@code IllegalStateException} if no space is currently available.
*
* <p>This method is equivalent to {@link #addFirst}.
*
* @param e the element to push
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
void push(E e);
/**
* Pops an element from the stack represented by this deque. In other
* words, removes and returns the first element of this deque.
*
* <p>This method is equivalent to {@link #removeFirst()}.
*
* @return the element at the front of this deque (which is the top
* of the stack represented by this deque)
* @throws NoSuchElementException if this deque is empty
*/
E pop();
// *** Collection methods ***
/**
* Removes the first occurrence of the specified element from this deque.
* If the deque does not contain the element, it is unchanged.
* More formally, removes the first element {@code e} such that
* <tt>(o==null ? e==null : o.equals(e))</tt>
* (if such an element exists).
* Returns {@code true} if this deque contained the specified element
* (or equivalently, if this deque changed as a result of the call).
*
* <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
*
* @param o element to be removed from this deque, if present
* @return {@code true} if an element was removed as a result of this call
* @throws ClassCastException if the class of the specified element
* is incompatible with this deque
* (<a href="Collection.html#optional-restrictions">optional</a>)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* (<a href="Collection.html#optional-restrictions">optional</a>)
*/
boolean remove(Object o);
/**
* Returns {@code true} if this deque contains the specified element.
* More formally, returns {@code true} if and only if this deque contains
* at least one element {@code e} such that
* <tt>(o==null ? e==null : o.equals(e))</tt>.
*
* @param o element whose presence in this deque is to be tested
* @return {@code true} if this deque contains the specified element
* @throws ClassCastException if the type of the specified element
* is incompatible with this deque
* (<a href="Collection.html#optional-restrictions">optional</a>)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* (<a href="Collection.html#optional-restrictions">optional</a>)
*/
boolean contains(Object o);
/**
* Returns the number of elements in this deque.
*
* @return the number of elements in this deque
*/
public int size();
/**
* Returns an iterator over the elements in this deque in proper sequence.
* The elements will be returned in order from first (head) to last (tail).
*
* @return an iterator over the elements in this deque in proper sequence
*/
Iterator<E> iterator();
/**
* Returns an iterator over the elements in this deque in reverse
* sequential order. The elements will be returned in order from
* last (tail) to first (head).
*
* @return an iterator over the elements in this deque in reverse
* sequence
*/
Iterator<E> descendingIterator();
}
| [
"[email protected]"
] | |
b197d49dd0895429578be9c02c547d59cdf4290e | f3dee816876d816d5e8f69e16c87c4b6fda62fa2 | /PizzaService/src/Strings/OrderGUI_en_Strings.java | c847efc8e55cabb3f3db14b31be69d7a5fb309a9 | [] | no_license | PizzaServiceeee/Pizza | e5b940d4cd8a6673cb3bbd796ec21435cc3a4993 | 64b0d30167b7e0a846c63806e614ccb68c250613 | refs/heads/master | 2020-05-07T08:57:23.922938 | 2019-07-14T18:25:18 | 2019-07-14T18:25:18 | 179,142,851 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 540 | java | package Strings;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class OrderGUI_en_Strings {
private static final String BUNDLE_NAME = "Properties.OrderGUI_en"; //$NON-NLS-1$
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
private OrderGUI_en_Strings() {
}
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}
| [
"[email protected]"
] | |
212abca0d6a0165b969c23b1289e63c6b3539d2c | 7ad641ca13b0c4196559696d3dc502e5ac358035 | /web/src/test/java/cn/edu/nefu/embedded/user/UserServiceTest.java | 4aff0a44d9d26b1649c2d0c2dcfd246e1809b3ef | [] | no_license | suifengbaobao/embedded-user | 28f493df1a722be48af6624d1080443d4d9a11a6 | 9ab6673947cf48d8b6221a3ef3b24befb74ce68c | refs/heads/master | 2020-03-10T04:04:48.318586 | 2018-05-21T06:42:47 | 2018-05-21T06:42:47 | 129,182,715 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,977 | java | package cn.edu.nefu.embedded.user;
import cn.edu.nefu.embedded.user.api.UserService;
import cn.edu.nefu.embedded.user.common.RemoteResult;
import cn.edu.nefu.embedded.user.dto.UserDto;
import java.util.List;
import java.util.UUID;
import org.assertj.core.util.Lists;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
/**
* UserServiceTest
* created by banshui on 2018/4/18
*/
@RunWith(SpringRunner.class)
@SpringBootTest(classes = EmbeddedUserApplication.class)
public class UserServiceTest {
@Autowired
private UserService userService;
@Test
public void testInsert(){
UserDto userDto = new UserDto();
userDto.setUuid(UUID.randomUUID().toString().replaceAll("-", ""));
userDto.setUserName("李四");
userDto.setNickName("四儿");
userDto.setAvatar("http://ogmrlx6wj.bkt.clouddn.com/hzw-1002.png");
userDto.setCollege("机电工程学院");
userDto.setSubject("电子信息工程");
userDto.setClassLevel(3);
userDto.setBirthday(System.currentTimeMillis() / 1000);
userDto.setEmail("[email protected]");
userDto.setPhone("15534567812");
userDto.setWeChat("lisier");
userDto.setQq("33332222");
userDto.setSex(1);
userDto.setSignature("努力,奋斗,加油!");
userDto.setStudentId("2014333333");
userDto.setPassword("oooo123");
userDto.setIsDeleted(Boolean.FALSE);
RemoteResult<Long> result = userService.insert(userDto);
System.out.print(result);
}
@Test
public void testUpdate(){
UserDto userDto = new UserDto();
userDto.setUserId(1L);
userDto.setUserName("测试李四");
RemoteResult<Boolean> result = userService.update(userDto);
System.out.print(result);
}
@Test
public void testQueryByUserId(){
RemoteResult<UserDto> result = userService.queryByUserId(2L);
System.out.println(result);
}
@Test
public void testQueryByEmail(){
RemoteResult<UserDto> result = userService.queryByEmail("[email protected]");
System.out.println(result);
}
@Test
public void testQueryByPhone(){
RemoteResult<UserDto> result = userService.queryByPhone("15512345678");
System.out.println(result);
}
@Test
public void testQueryByStudentId(){
RemoteResult<UserDto> result = userService.queryByStudentId("2014333333");
System.out.println(result);
}
@Test
public void testQueryByNickName(){
RemoteResult<UserDto> result = userService.queryByNickName("四儿");
System.out.println(result);
}
@Test
public void testQueryByUserIds(){
RemoteResult<List<UserDto>> result = userService.queryByUserIds(Lists.newArrayList(1L, 2L));
System.out.println(result);
}
@Test
public void testDeleteByUserId(){
RemoteResult<Boolean> result = userService.deleteByUserId(1L);
System.out.println(result);
}
}
| [
"[email protected]"
] | |
7de36fdf4fbe3a266f2fc7e612e041944a30c951 | 25e64f8407b9584b79812adcffbda0d085924221 | /springStudy/src/main/java/com/test/springStudy/board/model/dao/BoardDAOImpl.java | 9c8706b5ccf746082503632daaeaca7aeda26bac | [] | no_license | merryoumin/springStudy | c1dec03c025b6caf94a637d4703761538bc17f4c | e929797f325a3e7723473903d09ebfaba08bbfd4 | refs/heads/master | 2023-04-23T20:56:57.394417 | 2021-05-09T05:32:25 | 2021-05-09T05:32:25 | 365,673,807 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,282 | java | package com.test.springStudy.board.model.dao;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.inject.Inject;
import org.apache.ibatis.session.SqlSession;
import com.test.springStudy.board.model.dto.BoardDTO;
import com.test.springStudy.board.model.dto.CommentBoardDTO;
public class BoardDAOImpl implements BoardDAO {
@Inject
SqlSession SqlSession;
@Override
public int getMaxNum() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int getMaxRefNo() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int getMaxNoticeNo(String tbl) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int setInsert(BoardDTO dto) {
// TODO Auto-generated method stub
return 0;
}
@Override
public List<BoardDTO> getList(HashMap<String, Object> map, int startRecord, int lastRecord) {
// TODO Auto-generated method stub
return null;
}
@Override
public int getTotalRecord(HashMap<String, Object> map) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int getTotalRecordComment(int no) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int setCommmentInsert(CommentBoardDTO dto) {
// TODO Auto-generated method stub
return 0;
}
@Override
public List<CommentBoardDTO> getCommentListAll(int no, int startRecord, int lastRecord) {
// TODO Auto-generated method stub
return null;
}
@Override
public BoardDTO getView(Map<String, Object> map, BoardDTO dto) {
// TODO Auto-generated method stub
return null;
}
@Override
public void setUpdatHit(int no) {
// TODO Auto-generated method stub
}
@Override
public void setUpdateRelevel(BoardDTO dto) {
// TODO Auto-generated method stub
}
@Override
public void setUpdate(BoardDTO dto) {
// TODO Auto-generated method stub
}
@Override
public int deleteBoard(BoardDTO dto) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int deleteCM(CommentBoardDTO dto) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int updateCM(CommentBoardDTO dto) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int boardChk(String tbl) {
// TODO Auto-generated method stub
return 0;
}
}
| [
"[email protected]"
] | |
ce465d5b848251036df0de4afc28f0c0f8eb1531 | 8ddd03dab2f1ca98098cb601f9cafab86f5facb4 | /Prac_09/DebuggingExercises/DebugFifteen4.java | 89653a03f2a7fa24a02ed39195f76dab723f61d2 | [] | no_license | camclark/CP2406_Pracs | 8d82352f5229d98db0db8fb9f4f58af870e5c81b | 53163d60cd0c14dc92f5328db80dc32c39957b74 | refs/heads/master | 2021-01-16T00:42:39.053714 | 2017-11-02T06:52:55 | 2017-11-02T06:52:55 | 99,975,215 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,304 | java | import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class DebugFifteen4 extends JFrame implements ActionListener
{
JMenuBar mainBar = new JMenuBar();
JMenu menu1 = new JMenu("File");
JMenu menu2 = new JMenu("Symbols");
JMenu menu3 = new JMenu("Cities");
JMenuItem exit = new JMenuItem("Exit");
JMenuItem animal = new JMenuItem("Animal");
JMenuItem song = new JMenuItem("Song");
JMenuItem flower = new JMenuItem("Flower");
JMenuItem milwaukee = new JMenuItem("Milwaukee");
JMenuItem madison = new JMenuItem("Madison");
JLabel label1 = new JLabel(" Wisconsin Facts ");
JLabel label2 = new JLabel();
public DebugFifteen4()
{
setTitle("Facts about Wisconsin");
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
setLayout(new FlowLayout());
setJMenuBar(mainBar);
mainBar.add(menu1);
mainBar.add(menu2);
mainBar.add(menu3);
menu1.add(exit);
menu2.add(animal);
menu2.add(song);
menu2.add(flower);
menu3.add(milwaukee);
menu3.add(madison);
exit.addActionListener(this);
animal.addActionListener(this);
song.addActionListener(this);
flower.addActionListener(this);
milwaukee.addActionListener(this);
madison.addActionListener(this);
add(label1);
label1.setFont(new Font("Arial", Font.BOLD, 14));
add(label2);
label2.setFont(new Font("Arial", Font.PLAIN, 14));
}
@Override
public void actionPerformed(ActionEvent e)
{
Object source = e.getSource();
String text = " ";
if(source == exit)
System.exit(0);
else if(source == animal)
text = "The state animal is badger";
else if(source == song)
text = "The state song is On Wisconsin!";
else if(source == flower)
text = "The state flower is wood violet";
else if(source == milwaukee)
text = "Milwaukee is the largest city";
else
text = "Madison is the capitol";
label2.setText(text);
repaint();
}
public static void main(String[] args)
{
DebugFifteen4 frame = new DebugFifteen4();
final int WIDTH = 250;
final int HEIGHT = 200;
frame.setSize(WIDTH, HEIGHT);
frame.setVisible(true);
}
}
| [
"[email protected]"
] | |
b6097e66fed90e3cb57ee07fb923ce5f4f072b92 | ea8013860ed0b905c64f449c8bce9e0c34a23f7b | /WallpaperPickerGoogleRelease/sources/com/android/wallpaper/util/SurfaceViewUtils.java | 36272ac92dc57fd0f3f36d33e2b05c2d7663e076 | [] | no_license | TheScarastic/redfin_b5 | 5efe0dc0d40b09a1a102dfb98bcde09bac4956db | 6d85efe92477576c4901cce62e1202e31c30cbd2 | refs/heads/master | 2023-08-13T22:05:30.321241 | 2021-09-28T12:33:20 | 2021-09-28T12:33:20 | 411,210,644 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 565 | java | package com.android.wallpaper.util;
import android.os.Bundle;
import android.view.SurfaceView;
/* loaded from: classes.dex */
public class SurfaceViewUtils {
public static Bundle createSurfaceViewRequest(SurfaceView surfaceView) {
Bundle bundle = new Bundle();
bundle.putBinder("host_token", surfaceView.getHostToken());
bundle.putInt("display_id", surfaceView.getDisplay().getDisplayId());
bundle.putInt("width", surfaceView.getWidth());
bundle.putInt("height", surfaceView.getHeight());
return bundle;
}
}
| [
"[email protected]"
] | |
6074e82163fa97c86fe9ed13ff66fbc8ab8c3b5f | 3258cf6cbe215daf1430390f7181cf53e15a1232 | /app/src/main/java/com/example/sivar/androidsamples/MainActivityFragment.java | 01e14140432f9fb966a2e14eba8b980d57169701 | [] | no_license | avnsiva/SimpleActivity | c697c529447211bd2256fed489ec2ba6aa29645b | df6f089d99475fb6601f48117027792f9865d0a8 | refs/heads/master | 2020-06-17T19:36:29.249109 | 2016-11-28T13:40:37 | 2016-11-28T13:40:37 | 74,976,539 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 590 | java | package com.example.sivar.androidsamples;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
/**
* A placeholder fragment containing a simple view.
*/
public class MainActivityFragment extends Fragment {
public MainActivityFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_main, container, false);
}
}
| [
"[email protected]"
] | |
ae4cd630bedc03bf13e8e1a04ad00cfd5ad1ac92 | 38ac221040e8632c1ab2b8a11ddd8b8a8493fb54 | /src/com/inforscience/OrderStatistics.java | d188e454f3a9b6bb23b24f72bca9bab4d680d038 | [] | no_license | rendon/algs_plus_ds_java | 7b431cf44be3b3ba434cc95af5d6d7e223404cc8 | 68d77aa44b7e5f154e0cf4eee0e586c2cd2dcf28 | refs/heads/master | 2021-01-16T21:00:48.267906 | 2014-10-27T05:22:47 | 2014-10-27T05:22:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,367 | java | package com.inforscience;
import java.util.Random;
public class OrderStatistics {
private int[] A;
private Random random;
public OrderStatistics(int[] data)
{
A = data;
random = new Random();
}
private void swap(int[] A, int i, int j)
{
int temp = A[i];
A[i] = A[j];
A[j] = temp;
}
private int partition(int[] A, int l, int r)
{
int n = r - l;
int p = l + random.nextInt(n);
swap(A, l, p);
int x = A[l];
int i = l;
for (int j = l + 1; j < r; j++) {
if (A[j] <= x) {
i++;
swap(A, i, j);
}
}
swap(A, l, i);
return i;
}
private int find(int[] A, int l, int r, int i)
{
if (A == null || r <= l || i < 0 || i > (r - l)) {
return -1; // Or throw an exception ?
}
if (l >= r) {
return -1;
}
if (l + 1 == r) {
return A[l];
}
int m = partition(A, l, r);
int k = m - l + 1;
if (i == k) {
return A[m];
} else if (i < k) {
return find(A, l, m, i);
} else {
return find(A, m + 1, r, i - k);
}
}
public int findK(int k)
{
return find(A, 0, A.length, k);
}
}
| [
"[email protected]"
] | |
8b4d084fad47109ee7222495622faf104917e015 | 8c524d7625986b751819146d56726852d3782139 | /Tkcsapcd_cadastros/src/br/com/tkcsapcd/model/bean/RfiProjeto.java | bf74bb5623f0773dbff03be7ba21c0ac75e29e46 | [] | no_license | JosueSantos49/SISPROMAPER-Gestao-de-Projetos | e76f563f654a9f8193af96008c52dfa91b43148e | 462cd8958b9e940345594de2ed2d2a0b22ae113c | refs/heads/master | 2021-06-23T22:32:36.125619 | 2021-04-01T17:12:21 | 2021-04-01T17:12:21 | 218,196,029 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 8,874 | java | /*
Autor: Josué da Conceição Santos
E-mail: [email protected]
Ano: 2015
*/
package br.com.tkcsapcd.model.bean;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "rfiprojeto")
public class RfiProjeto {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long codigo;
@Column(length = 150, nullable = true)
private String nome;
@Column(length = 200, nullable = true)
private String endereco;
@Column(length = 150, nullable = true)
private String paginaweb;
@Column(length = 320, nullable = true)
private String produtoservico;
@Column(length = 320, nullable = true)
private String mercadocliente;
@Column(length = 320, nullable = true)
private String estruturapropriedade;
@Column(length = 320, nullable = true)
private String estruturaempresa;
@Column(length = 150, nullable = true)
private String anosmercado;
private String localizacao;
@Column(length = 320, nullable = true)
private String gestaoambiental;
@Column(length = 320, nullable = true)
private String gestaoqualidade;
@Column(length = 320, nullable = true)
private String gestaonegocio;
@Column(length = 320, nullable = true)
private String funcionario;
@Column(length = 320, nullable = true)
private String producao;
@Column(length = 320, nullable = true)
private String marketingvendas;
@Column(length = 320, nullable = true)
private String departamentoqualidade;
@Column(length = 320, nullable = true)
private String informacaofinanceira;
@Column(length = 320, nullable = true)
private String volumenegocio;
private String ultimolucroano;
@Column(length = 320, nullable = true)
private String mercadoacoes;
@Column(length = 200, nullable = true)
private String pessoacontato;
@Column(length = 30, nullable = true)
private String telefone;
@Column(length = 150, nullable = true)
private String email;
@Column(length = 320, nullable = true)
private String capacidadehoje;
@Column(length = 320, nullable = true)
private String capacidadeantecipada;
@Column(length = 320, nullable = true)
private String condicaonaoatendida;
@Column(length = 320, nullable = true)
private String produtosentregues;
@Column(length = 320, nullable = true)
private String clientereferenciacomparaveis;
@Column(length = 320, nullable = true)
private String clientereferencianaocomparaveis;
@Column(length = 320, nullable = true)
private String disponivelentrega;
@Column(length = 320, nullable = true)
private String disponibilidade;
@Column(length = 150, nullable = true)
private String suportemundial;
private Date data;
private Long cnpj;
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getEndereco() {
return endereco;
}
public void setEndereco(String endereco) {
this.endereco = endereco;
}
public String getPaginaweb() {
return paginaweb;
}
public void setPaginaweb(String paginaweb) {
this.paginaweb = paginaweb;
}
public String getProdutoservico() {
return produtoservico;
}
public void setProdutoservico(String produtoservico) {
this.produtoservico = produtoservico;
}
public String getMercadocliente() {
return mercadocliente;
}
public void setMercadocliente(String mercadocliente) {
this.mercadocliente = mercadocliente;
}
public String getEstruturapropriedade() {
return estruturapropriedade;
}
public void setEstruturapropriedade(String estruturapropriedade) {
this.estruturapropriedade = estruturapropriedade;
}
public String getEstruturaempresa() {
return estruturaempresa;
}
public void setEstruturaempresa(String estruturaempresa) {
this.estruturaempresa = estruturaempresa;
}
public String getAnosmercado() {
return anosmercado;
}
public void setAnosmercado(String anosmercado) {
this.anosmercado = anosmercado;
}
public String getLocalizacao() {
return localizacao;
}
public void setLocalizacao(String localizacao) {
this.localizacao = localizacao;
}
public String getGestaoambiental() {
return gestaoambiental;
}
public void setGestaoambiental(String gestaoambiental) {
this.gestaoambiental = gestaoambiental;
}
public String getGestaoqualidade() {
return gestaoqualidade;
}
public void setGestaoqualidade(String gestaoqualidade) {
this.gestaoqualidade = gestaoqualidade;
}
public String getGestaonegocio() {
return gestaonegocio;
}
public void setGestaonegocio(String gestaonegocio) {
this.gestaonegocio = gestaonegocio;
}
public String getFuncionario() {
return funcionario;
}
public void setFuncionario(String funcionario) {
this.funcionario = funcionario;
}
public String getProducao() {
return producao;
}
public void setProducao(String producao) {
this.producao = producao;
}
public String getMarketingvendas() {
return marketingvendas;
}
public void setMarketingvendas(String marketingvendas) {
this.marketingvendas = marketingvendas;
}
public String getDepartamentoqualidade() {
return departamentoqualidade;
}
public void setDepartamentoqualidade(String departamentoqualidade) {
this.departamentoqualidade = departamentoqualidade;
}
public String getInformacaofinanceira() {
return informacaofinanceira;
}
public void setInformacaofinanceira(String informacaofinanceira) {
this.informacaofinanceira = informacaofinanceira;
}
public String getVolumenegocio() {
return volumenegocio;
}
public void setVolumenegocio(String volumenegocio) {
this.volumenegocio = volumenegocio;
}
public String getUltimolucroano() {
return ultimolucroano;
}
public void setUltimolucroano(String ultimolucroano) {
this.ultimolucroano = ultimolucroano;
}
public String getMercadoacoes() {
return mercadoacoes;
}
public void setMercadoacoes(String mercadoacoes) {
this.mercadoacoes = mercadoacoes;
}
public String getPessoacontato() {
return pessoacontato;
}
public void setPessoacontato(String pessoacontato) {
this.pessoacontato = pessoacontato;
}
public String getTelefone() {
return telefone;
}
public void setTelefone(String telefone) {
this.telefone = telefone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getCapacidadehoje() {
return capacidadehoje;
}
public void setCapacidadehoje(String capacidadehoje) {
this.capacidadehoje = capacidadehoje;
}
public String getCapacidadeantecipada() {
return capacidadeantecipada;
}
public void setCapacidadeantecipada(String capacidadeantecipada) {
this.capacidadeantecipada = capacidadeantecipada;
}
public String getCondicaonaoatendida() {
return condicaonaoatendida;
}
public void setCondicaonaoatendida(String condicaonaoatendida) {
this.condicaonaoatendida = condicaonaoatendida;
}
public String getProdutosentregues() {
return produtosentregues;
}
public void setProdutosentregues(String produtosentregues) {
this.produtosentregues = produtosentregues;
}
public String getClientereferenciacomparaveis() {
return clientereferenciacomparaveis;
}
public void setClientereferenciacomparaveis(String clientereferenciacomparaveis) {
this.clientereferenciacomparaveis = clientereferenciacomparaveis;
}
public String getClientereferencianaocomparaveis() {
return clientereferencianaocomparaveis;
}
public void setClientereferencianaocomparaveis(
String clientereferencianaocomparaveis) {
this.clientereferencianaocomparaveis = clientereferencianaocomparaveis;
}
public String getDisponivelentrega() {
return disponivelentrega;
}
public void setDisponivelentrega(String disponivelentrega) {
this.disponivelentrega = disponivelentrega;
}
public String getDisponibilidade() {
return disponibilidade;
}
public void setDisponibilidade(String disponibilidade) {
this.disponibilidade = disponibilidade;
}
public String getSuportemundial() {
return suportemundial;
}
public void setSuportemundial(String suportemundial) {
this.suportemundial = suportemundial;
}
public Long getCodigo() {
return codigo;
}
public void setCodigo(Long codigo) {
this.codigo = codigo;
}
public Date getData() {
return data;
}
public void setData(Date data) {
this.data = data;
}
public Long getCnpj() {
return cnpj;
}
public void setCnpj(Long cnpj) {
this.cnpj = cnpj;
}
}
| [
"[email protected]"
] | |
34a9b9941984361970d6a4f16f2a76c1f00e4b96 | 9c7d6bfd901ad8fc48e9288df0850f25aae21fcc | /RealLoveCalculator/app/src/main/java/com/greydot/reallovecalculator/MainActivity.java | fc6ddd0ced8f35a8f08f295194b604f5c029eed7 | [] | no_license | gopalakrishnanpv/android-starter | 0042a8920a8d8f9b1cf34148075bfd2c0f30ac88 | 725633e2d05580515318be86ada9c33d26881e09 | refs/heads/main | 2023-06-14T14:28:46.695427 | 2021-07-09T11:35:53 | 2021-07-09T11:35:53 | 384,349,188 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,624 | java | package com.greydot.reallovecalculator;
import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.SeekBar;
import android.widget.TextView;
import android.widget.Toast;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MainActivity extends AppCompatActivity implements View.OnKeyListener, View.OnClickListener , View.OnLongClickListener{
String Fnamestring;
String Snamestring;
EditText firstName;
EditText secondName;
static Button syncButton;
ImageView headerImage;
RelativeLayout relativeLayout;
int total;
int sendResult;
Button secretButton;
SeekBar seekBar;
LinearLayout seekBarLayout;
TextView seekBarText;
Button hide;
int seekBarValue;
public void Sync(View view) {
firstName.setOnKeyListener(this);
secondName.setOnKeyListener(this);
Fnamestring = firstName.getText().toString().toUpperCase().trim();
Snamestring = secondName.getText().toString().toUpperCase().trim();
Pattern p = Pattern.compile("[a-zA-Z0-9]{20}");
Matcher f = p.matcher(Fnamestring);
boolean a = f.find();
Matcher s = p.matcher(Snamestring);
boolean b = s.find();
if (Fnamestring.equals(null) || Fnamestring.equals("") || a == true) {
Toast.makeText(getApplicationContext(), "Oops! That was an error \nYour name is Invalid", Toast.LENGTH_SHORT).show();
} else if (Snamestring.equals(null) || Snamestring.equals("") || b == true) {
Toast.makeText(getApplicationContext(), "Oops! That was an error \nYour partner name is Invalid", Toast.LENGTH_SHORT).show();
}
else {
if (view.getId() == R.id.syncbutton) {
char[] FnameArray = Fnamestring.toCharArray();
char[] SnameArray = Snamestring.toCharArray();
int Fnametotal = 0;
int Snametotal = 0;
for (int i = 0; i < FnameArray.length; i++) {
int Fnamevalue = Character.getNumericValue(FnameArray[i]);
Fnametotal = Fnametotal + Fnamevalue;
}
for (int j = 0; j < SnameArray.length; j++) {
int Snamevalue = Character.getNumericValue(SnameArray[j]);
Snametotal = Snametotal + Snamevalue;
}
total = Fnametotal + Snametotal;
int rounded = ((total + 99) / 100);
Log.i("Rounded", String.valueOf(rounded));
rounded = rounded * 100;
Log.i("Rounded * 100", String.valueOf(rounded));
sendResult = rounded - total;
Log.i("Total", String.valueOf(total));
syncButton.setEnabled(false);
Resultactivity(null);
}
else if (view.getId() == R.id.secretbutton) {
Intent i = new Intent(getApplicationContext(),ResultPage.class);
i.putExtra("Fname",Fnamestring);
i.putExtra("Sname",Snamestring);
i.putExtra("Result",seekBarValue);
startActivity(i);
}
}
}
public void Resultactivity(View view){
Intent i = new Intent(getApplicationContext(),ResultPage.class);
i.putExtra("Fname",Fnamestring);
i.putExtra("Sname",Snamestring);
i.putExtra("Result",sendResult);
startActivity(i);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
android.support.v7.app.ActionBar menu = getSupportActionBar();
menu.setDisplayShowHomeEnabled(true);
menu.setLogo(R.drawable.download);
menu.setDisplayUseLogoEnabled(true);
relativeLayout = (RelativeLayout) findViewById(R.id.relativeLayout);
headerImage = (ImageView) findViewById(R.id.headerImage);
relativeLayout.setOnClickListener(this);
headerImage.setOnClickListener(this);
firstName = (EditText) findViewById(R.id.firstname);
secondName = (EditText) findViewById(R.id.secondname);
syncButton = (Button) findViewById(R.id.syncbutton);
secretButton = (Button) findViewById(R.id.secretbutton);
syncButton.setEnabled(true);
syncButton.setOnLongClickListener(this);
secretButton.setOnLongClickListener(this);
seekBarLayout = (LinearLayout) findViewById(R.id.seekBarLayout);
seekBarLayout.setVisibility(View.INVISIBLE);
seekBarText = (TextView) findViewById(R.id.seekBarText);
hide = (Button) findViewById(R.id.hideSeekBarLayout);
Typeface robotoRegular = Typeface.createFromAsset(getApplicationContext().getAssets(), "fonts/Roboto-Regular.ttf");
Typeface robotoBold = Typeface.createFromAsset(getApplicationContext().getAssets(), "fonts/Roboto-Bold.ttf");
secretButton.setTypeface(robotoBold);
firstName.setTypeface(robotoRegular);
secondName.setTypeface(robotoRegular);
syncButton.setTypeface(robotoBold);
seekBarText.setTypeface(robotoBold);
hide.setTypeface(robotoBold);
seekBar = (SeekBar) findViewById(R.id.seekBar);
seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
seekBar.setProgress(progress);
seekBarValue = progress;
seekBarText.setText(String.valueOf(seekBarValue) + " %");
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
}
});
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
headerImage.setVisibility(View.GONE);
}
}
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_Menu) {
return true;
}
if (id == R.id.about) {
Intent intent = new Intent(this, About.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
return true;
}
if (id == R.id.help) {
Intent intent = new Intent(this, Help.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater findMenuItems = getMenuInflater();
findMenuItems.inflate(R.menu.resultmenu, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
if(keyCode == KeyEvent.KEYCODE_ENTER){
Sync(v);
}
return false;
}
@Override
public void onClick(View v) {
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),0);
}
@Override
public boolean onLongClick(View v) {
if(v.getId() == R.id.syncbutton){
syncButton.setVisibility(View.INVISIBLE);
secretButton.setVisibility(View.VISIBLE);
seekBarLayout.setVisibility(View.VISIBLE);
}
if(v.getId() == R.id.secretbutton){
syncButton.setVisibility(View.VISIBLE);
secretButton.setVisibility(View.INVISIBLE);
seekBarLayout.setVisibility(View.INVISIBLE);
}
return true;
}
public void HideSeekBarLayout(View view){
seekBarLayout.setVisibility(View.INVISIBLE);
}
}
| [
"[email protected]"
] | |
e56fda8bfded90a6cfbb3dc7b9d000b21b977086 | 1f19aec2ecfd756934898cf0ad2758ee18d9eca2 | /u-1/u-11/u-11-f5804.java | b96c6bbc58faa0a14a8842d9949b67c3d0daee53 | [] | no_license | apertureatf/perftest | f6c6e69efad59265197f43af5072aa7af8393a34 | 584257a0c1ada22e5486052c11395858a87b20d5 | refs/heads/master | 2020-06-07T17:52:51.172890 | 2019-06-21T18:53:01 | 2019-06-21T18:53:01 | 193,039,805 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 106 | java | mastercard 5555555555554444 4012888888881881 4222222222222 378282246310005 6011111111111117
9647549503395 | [
"[email protected]"
] | |
279796c8fa15d9069c4a8cd7acd11aa73567c576 | b8dc3a37d062acc0f59db1ca0dd1c2a49393021d | /src/ManualUsuario/VentanaFunc1.java | 418269f6e5133b83264a4731d853dbdd44ba3e11 | [] | no_license | menidh69/EsteticaSelene_AP1 | f7da6f4392668c18613a70b2171141225abbfaf6 | 2a34ab18ee5ac1ab9cde2a5e5958cb0ab41d01de | refs/heads/master | 2022-05-27T12:06:33.989817 | 2020-05-02T19:46:34 | 2020-05-02T19:46:34 | 259,773,984 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,599 | 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 ManualUsuario;
/**
*
* @author propietario
*/
public class VentanaFunc1 extends javax.swing.JFrame {
/**
* Creates new form VentanaFunc1
*/
public VentanaFunc1() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
jTextArea1 = new javax.swing.JTextArea();
jButton2 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jScrollPane1.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
jScrollPane1.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
jTextArea1.setText("Funcionalidad 1\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, \nsed do eiusmod tempor incididunt ut labore et dolore \nmagna aliqua. Nisl vel pretium lectus quam. Erat pellentesque \nadipiscing commodo elit at imperdiet dui accumsan. \nEgestas integer eget aliquet nibh praesent tristique.\n Sed id semper risus in hendrerit gravida rutrum quisque non. \nAliquet porttitor lacus luctus accumsan tortor posuere ac. \nSit amet aliquam id diam maecenas ultricies mi eget.\n Amet mattis vulputate enim nulla aliquet porttitor lacus. \nQuis imperdiet massa tincidunt nunc pulvinar sapien et. \nMorbi tempus iaculis urna id volutpat lacus laoreet. \nMus mauris vitae ultricies leo integer.\n\nRisus ultricies tristique nulla aliquet enim tortor at auctor urna.\n Nulla facilisi morbi tempus iaculis. Purus semper eget duis at \ntellus at urna condimentum mattis. Vulputate sapien nec sagittis\n aliquam malesuada bibendum arcu vitae. Amet nulla facilisi morbi \ntempus iaculis urna id volutpat lacus. Commodo nulla facilisi nullam \nvehicula. Odio pellentesque diam volutpat commodo sed egestas. \nAliquet nec ullamcorper sit amet risus nullam eget. Lectus nulla at \nvolutpat diam. Vel pretium lectus quam id leo in vitae turpis massa.\n Tincidunt ornare massa eget egestas purus viverra accumsan. \nInteger eget aliquet nibh praesent tristique magna sit amet.\n Sit amet venenatis urna cursus eget. Neque gravida in fermentum et \nsollicitudin ac orci phasellus egestas. Elit duis tristique sollicitudin nibh.\n\n");
jTextArea1.setCursor(new java.awt.Cursor(java.awt.Cursor.TEXT_CURSOR));
jScrollPane1.setViewportView(jTextArea1);
jButton2.setText("Regresar");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jLabel1.setFont(new java.awt.Font("Microsoft Sans Serif", 0, 24)); // NOI18N
jLabel1.setText("Funcionalidad 1");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jButton2)
.addGap(0, 0, Short.MAX_VALUE))
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 485, Short.MAX_VALUE))
.addContainerGap())
.addGroup(layout.createSequentialGroup()
.addGap(12, 12, 12)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 182, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(20, 20, 20)
.addComponent(jButton2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 34, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 302, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(19, 19, 19))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
Manual_Usuario_Main m = new Manual_Usuario_Main();
m.setVisible(true);
this.setVisible(false);
}//GEN-LAST:event_jButton2ActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(VentanaFunc1.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(VentanaFunc1.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(VentanaFunc1.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(VentanaFunc1.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new VentanaFunc1().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTextArea jTextArea1;
// End of variables declaration//GEN-END:variables
}
| [
"[email protected]"
] | |
e9e6f6c50c2eb8ecd5b776d7e7d06685c675bc15 | 0508f657c5b0cf60872a298a15008602a537f0e3 | /src/business/Employee.java | 803dad0012aadbaee1518bb650d7813b4bc30ede | [] | no_license | jrojasmo/Hermes-LocalShop | fec9c980902fad40464981ee3ee7328667132687 | 656d099c6d01ae7a23735438159d29299b98a0fa | refs/heads/main | 2023-01-19T20:35:29.748789 | 2020-11-21T22:19:28 | 2020-11-21T22:19:28 | 314,911,106 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package business;
import processes.RandomString;
public class Employee extends User{
//profile picture
public Employee(String username, String passsword, String email) {
super(username, passsword, email);
// TODO Auto-generated constructor stub
this.id = "E" + RandomString.getAlphaNumericString(16);
//profile picture
}
}
| [
"[email protected]"
] | |
cf7ef2612195af1a2d2610fe3f803e020ba3d658 | 00ee55a6598cdbac087ccfd26cc36a578dbb485e | /engine-api/src/main/java/pl/edu/icm/unity/engine/api/authn/CredentialResetSettings.java | 9c27134b74a62514c2b3fdcf970284b8acbf3945 | [] | no_license | ngohuusang/unity | c01672c9f94be235162a85def395a0c7f7ab6ecd | bbb56b56d5c6e980955c0c14de098f86b273fbc7 | refs/heads/master | 2021-05-12T13:24:38.096590 | 2017-11-02T18:11:43 | 2017-11-02T18:11:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,282 | java | /*
* Copyright (c) 2013 ICM Uniwersytet Warszawski All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.engine.api.authn;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import pl.edu.icm.unity.exceptions.InternalException;
/**
* Credential reset settings.
* @author K. Benedyczak
*/
public class CredentialResetSettings
{
private boolean enabled = false;
private boolean requireEmailConfirmation = true;
private boolean requireSecurityQuestion = true;
private int codeLength = 4;
private List<String> questions = new ArrayList<>();
private String securityCodeMsgTemplate;
public CredentialResetSettings()
{
}
public boolean isEnabled()
{
return enabled;
}
public void setEnabled(boolean enable)
{
this.enabled = enable;
}
public void setRequireEmailConfirmation(boolean requireEmailConfirmation)
{
this.requireEmailConfirmation = requireEmailConfirmation;
}
public void setRequireSecurityQuestion(boolean requireSecurityQuestion)
{
this.requireSecurityQuestion = requireSecurityQuestion;
}
public boolean isRequireEmailConfirmation()
{
return requireEmailConfirmation;
}
public boolean isRequireSecurityQuestion()
{
return requireSecurityQuestion;
}
public int getCodeLength()
{
return codeLength;
}
public void setCodeLength(int codeLength)
{
this.codeLength = codeLength;
}
public List<String> getQuestions()
{
return questions;
}
public void setQuestions(List<String> questions)
{
this.questions = questions;
}
public String getSecurityCodeMsgTemplate()
{
return securityCodeMsgTemplate;
}
public void setSecurityCodeMsgTemplate(String securityCodeMsgTemplate)
{
this.securityCodeMsgTemplate = securityCodeMsgTemplate;
}
public void serializeTo(ObjectNode node)
{
node.put("enable", enabled);
if (!enabled)
return;
node.put("codeLength", codeLength);
node.put("requireEmailConfirmation", requireEmailConfirmation);
node.put("requireSecurityQuestion", requireSecurityQuestion);
ArrayNode questionsNode = node.putArray("questions");
for (String question: questions)
questionsNode.add(question);
node.put("securityCodeMsgTemplate", securityCodeMsgTemplate);
}
public void deserializeFrom(ObjectNode node)
{
this.enabled = node.get("enable").asBoolean();
if (!enabled)
return;
this.codeLength = node.get("codeLength").asInt();
this.requireEmailConfirmation = node.get("requireEmailConfirmation").asBoolean();
this.requireSecurityQuestion = node.get("requireSecurityQuestion").asBoolean();
ArrayNode questionsNode = (ArrayNode) node.get("questions");
if (questionsNode.size() == 0 && requireSecurityQuestion)
throw new InternalException("At least one security question must be defined " +
"if questions are required");
for (int i=0; i<questionsNode.size(); i++)
this.questions.add(questionsNode.get(i).asText());
if (node.has("securityCodeMsgTemplate") && !node.get("securityCodeMsgTemplate").isNull())
securityCodeMsgTemplate = node.get("securityCodeMsgTemplate").asText();
else
securityCodeMsgTemplate = "PasswordResetCode"; //backwards compatibility
}
}
| [
"[email protected]"
] | |
d3df3547fa1239c1a3187192db59ae44b93121ef | 0abe776999455298f7d36e86fef5c4904cbe118f | /app/src/main/java/com/imovie/mogic/ScanPay/decoding/DecodeFormatManager.java | b3732329df9c2ddf5eba46d08f2d0b9539df5ec8 | [] | no_license | shanyeah/managerMj | 60b553d14319b9dbf650f538d039441f25f7d2dd | 50b803ce31df19ca28247ccb52e6c99779a7e1fd | refs/heads/master | 2020-03-12T19:25:24.751442 | 2018-06-06T08:55:45 | 2018-06-06T08:55:45 | 130,784,107 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,756 | java | /*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.imovie.mogic.ScanPay.decoding;
import android.content.Intent;
import android.net.Uri;
import com.google.zxing.BarcodeFormat;
import java.util.Arrays;
import java.util.List;
import java.util.Vector;
import java.util.regex.Pattern;
final class DecodeFormatManager {
private static final Pattern COMMA_PATTERN = Pattern.compile(",");
static final Vector<BarcodeFormat> PRODUCT_FORMATS;
static final Vector<BarcodeFormat> ONE_D_FORMATS;
static final Vector<BarcodeFormat> QR_CODE_FORMATS;
static final Vector<BarcodeFormat> DATA_MATRIX_FORMATS;
static {
PRODUCT_FORMATS = new Vector<BarcodeFormat>(5);
PRODUCT_FORMATS.add(BarcodeFormat.UPC_A);
PRODUCT_FORMATS.add(BarcodeFormat.UPC_E);
PRODUCT_FORMATS.add(BarcodeFormat.EAN_13);
PRODUCT_FORMATS.add(BarcodeFormat.EAN_8);
PRODUCT_FORMATS.add(BarcodeFormat.RSS_14);
ONE_D_FORMATS = new Vector<BarcodeFormat>(PRODUCT_FORMATS.size() + 4);
ONE_D_FORMATS.addAll(PRODUCT_FORMATS);
ONE_D_FORMATS.add(BarcodeFormat.CODE_39);
ONE_D_FORMATS.add(BarcodeFormat.CODE_93);
ONE_D_FORMATS.add(BarcodeFormat.CODE_128);
ONE_D_FORMATS.add(BarcodeFormat.ITF);
QR_CODE_FORMATS = new Vector<BarcodeFormat>(1);
QR_CODE_FORMATS.add(BarcodeFormat.QR_CODE);
DATA_MATRIX_FORMATS = new Vector<BarcodeFormat>(1);
DATA_MATRIX_FORMATS.add(BarcodeFormat.DATA_MATRIX);
}
private DecodeFormatManager() {}
static Vector<BarcodeFormat> parseDecodeFormats(Intent intent) {
List<String> scanFormats = null;
String scanFormatsString = intent.getStringExtra(Intents.Scan.SCAN_FORMATS);
if (scanFormatsString != null) {
scanFormats = Arrays.asList(COMMA_PATTERN.split(scanFormatsString));
}
return parseDecodeFormats(scanFormats, intent.getStringExtra(Intents.Scan.MODE));
}
static Vector<BarcodeFormat> parseDecodeFormats(Uri inputUri) {
List<String> formats = inputUri.getQueryParameters(Intents.Scan.SCAN_FORMATS);
if (formats != null && formats.size() == 1 && formats.get(0) != null){
formats = Arrays.asList(COMMA_PATTERN.split(formats.get(0)));
}
return parseDecodeFormats(formats, inputUri.getQueryParameter(Intents.Scan.MODE));
}
private static Vector<BarcodeFormat> parseDecodeFormats(Iterable<String> scanFormats,
String decodeMode) {
if (scanFormats != null) {
Vector<BarcodeFormat> formats = new Vector<BarcodeFormat>();
try {
for (String format : scanFormats) {
formats.add(BarcodeFormat.valueOf(format));
}
return formats;
} catch (IllegalArgumentException iae) {
// ignore it then
}
}
if (decodeMode != null) {
if (Intents.Scan.PRODUCT_MODE.equals(decodeMode)) {
return PRODUCT_FORMATS;
}
if (Intents.Scan.QR_CODE_MODE.equals(decodeMode)) {
return QR_CODE_FORMATS;
}
if (Intents.Scan.DATA_MATRIX_MODE.equals(decodeMode)) {
return DATA_MATRIX_FORMATS;
}
if (Intents.Scan.ONE_D_MODE.equals(decodeMode)) {
return ONE_D_FORMATS;
}
}
return null;
}
}
| [
"[email protected]"
] | |
9e4da11002e3c179eee93db97a7f8bde926cf819 | b87fa02d32b11b65f0e890603428dc0d4df0aef0 | /src/test/java/com/ecacho/challenge/bowling/frame/impl/TenPinTenthFrameImplTest.java | 40b7e29b2fdb23077444013e28d8d6e40c9add1f | [] | no_license | educc/bowling-console | 3dcb3aee4d6b71aa79e30b4049d5ace79d74761c | b3315551d5cd4a4ca4fca29db4ab3ac108fa7c28 | refs/heads/master | 2022-02-25T05:33:44.040178 | 2019-09-23T20:24:49 | 2019-09-23T20:24:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,235 | java | package com.ecacho.challenge.bowling.frame.impl;
import com.ecacho.challenge.bowling.exception.BowlingException;
import com.ecacho.challenge.bowling.frame.calculatescore.impl.TenPinTenthFrameScoreCalculateImpl;
import com.ecacho.challenge.bowling.roll.impl.TenPinRollFactoryImpl;
import org.junit.Test;
import static org.junit.Assert.*;
public class TenPinTenthFrameImplTest {
private TenthFrameImpl createTenthFrame(){
return new TenthFrameImpl(
new TenPinRollFactoryImpl(),
new TenPinTenthFrameScoreCalculateImpl());
}
@Test
public void perfectStrikeTest() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
verifyAllRollsWereAdded(f, 10, 10, 10);
}
@Test
public void strikeTest() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
verifyAllRollsWereAdded(f,10, 4, 6);
}
@Test
public void spareTest() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
verifyAllRollsWereAdded(f,5, 5, 10);
}
@Test
public void foulTest() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
verifyAllRollsWereAdded(f, 0, 0);
}
@Test(expected = BowlingException.class)
public void addInvalidAtFirstRoll() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
f.addRoll(20);
}
@Test(expected = BowlingException.class)
public void addInvalidAtSecondRoll() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
f.addRoll(4);
f.addRoll(7);
}
@Test(expected = BowlingException.class)
public void addInvalidAtSecondWhenStrikeRoll() throws BowlingException {
TenthFrameImpl f = createTenthFrame();
f.addRoll(10);
f.addRoll(11);
}
private void verifyAllRollsWereAdded(AbstractFrame f, int... rolls) throws BowlingException {
int size = rolls.length;
for (int i = 0; i < size; i++) {
int roll = rolls[i];
boolean b = f.addRoll(roll);
assertTrue("Cannot add roll", b);
}
assertTrue("Rolls should be completed", f.isRollsCompleted());
}
} | [
"[email protected]"
] | |
51cb38f24c0a44a6b4fb8fbf99a0e3eb0f2d4381 | fa04c1ce052dfdf006c4b3a18fb63b397f2961f4 | /app/src/main/java/com/ajurczyk/hardware/pwm/exceptions/WholeNumException.java | 9318c6a34b0fd4b4a3588fdd86b3251f3616908d | [] | no_license | AJurczyk/Quad | cca9485902890efd3836debd7dc7e81937c28aa4 | 9aca6e05d3567435c817ff476ba193999ad18e92 | refs/heads/master | 2020-04-15T15:50:41.453611 | 2016-10-12T18:55:54 | 2016-10-12T18:55:54 | 43,052,886 | 0 | 0 | null | 2016-10-12T18:55:54 | 2015-09-24T07:53:17 | Java | UTF-8 | Java | false | false | 340 | java | package com.ajurczyk.hardware.pwm.exceptions;
/**
* @author [email protected] on 09.01.16.
*/
public class WholeNumException extends Exception {
public WholeNumException(String message) {
super(message);
}
public WholeNumException(String message, Throwable cause) {
super(message, cause);
}
}
| [
"[email protected]"
] | |
0c65ef366a9d136d0e29ab48d37c0972a2154657 | 45eedc1fa6033b608c88e5a203855885e1e9b2d5 | /Assignment5/src/test/java/problem2/MusicTest.java | 13a0b32dab64c749211fbb77bfe70b44e7de44d6 | [] | no_license | isazyzhang/NEU-CS5004-Homework-Labs | 2ead7d406f3904c7aa80f07afc2463ba7ba5396b | 5a30443b3a0c0c323d0b1f3b4fa8e26533e2133a | refs/heads/main | 2023-04-27T00:47:25.963358 | 2021-05-21T09:43:01 | 2021-05-21T09:43:01 | 369,471,732 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,242 | java | package problem2;
import static org.junit.Assert.*;
import java.util.ArrayList;
import org.junit.Before;
import org.junit.Test;
public class MusicTest {
Music music1;
RecordingArtist artist1;
String title1;
int year1;
String music1Description;
Music music2;
RecordingArtist artist2;
String title2;
int year2;
Music music3;
Music music4;
Band sisters;
ArrayList<RecordingArtist> sis;
RecordingArtist may;
RecordingArtist june;
String title4;
int year4;
@Before
public void setUp() throws Exception {
artist1 = new RecordingArtist("Pink", "Floyd");
title1 = "The Wall";
year1 = 1979;
music1 = new Music(artist1, title1, year1);
music1Description = "Recording Artist: Pink Floyd Title: The Wall Published Year: 1979";
artist2 = new RecordingArtist("Michael", "Jackson");
title2 = "Thriller";
year2 = 1982;
music2 = new Music(artist2, title2, year2);
music3 = new Music(artist1, title1, year1);
may = new RecordingArtist("May", "Cuoco");
june = new RecordingArtist("June", "Fly");
sis = new ArrayList<RecordingArtist>();
sis.add(may);
sis.add(june);
sisters = new Band("Sista", sis);
title4 = "Revolution";
year4 = 2019;
music4 = new Music(sisters, title4, year4);
}
@Test
public void getCreator() {
assertTrue(artist1.equals(music1.getCreator()));
}
@Test
public void getTitle() {
assertEquals(title1, music1.getTitle());
}
@Test
public void getYear() {
assertEquals(year1, music1.getYear());
}
@Test
public void itemCreatedBy() {
assertTrue(music1.itemCreatedBy(artist1));
assertFalse(music1.itemCreatedBy(artist2));
}
@Test
public void testEquals() {
assertTrue(music1.equals(music1));
assertFalse(music1.equals(null));
assertFalse(music1.equals(music1Description));
assertTrue(music1.equals(music3));
assertFalse(music1.equals(music2));
}
@Test
public void testHashCode() {
assertTrue(music1.hashCode() == music3.hashCode());
}
@Test
public void testToString() {
assertEquals(music1Description, music1.toString());
}
} | [
"[email protected]"
] | |
e8f0544fa12bc6b0eb0b4db52f7ecfafbe3aa017 | 877893f316bdcdb926c59cc2332a54cfdf9ce448 | /src/main/java/com/sapient/account/AccountServiceApplication.java | 7b01c1049581caa29d006cc7184a2ff3307d5008 | [] | no_license | sssisodiya/account-service | 7ed14be7a031445bed052b4e40a975509ec83954 | ab3cde738d2351e6fc471bb50d37cb63094aa0f6 | refs/heads/master | 2020-03-28T11:42:01.097108 | 2018-09-19T15:55:15 | 2018-09-19T15:55:15 | 148,239,588 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 327 | java | package com.sapient.account;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AccountServiceApplication {
public static void main(String[] args) {
SpringApplication.run(AccountServiceApplication.class, args);
}
}
| [
"[email protected]"
] | |
25df806e48058e1fc449a8bdd66d4fe2b1c04214 | f1b1ec9ee6f212c01b69e9a5bf3b8abf62e234a7 | /src/org/archiviststoolkit/model/Sessions.java | 06e4b3ae9830ec53e04c27ec0d65ea14a9f1c9f3 | [] | no_license | RockefellerArchiveCenter/ATReference | c79acc0f557f7af57c36ca5471e23fc924b9c04c | f7fcad9e8bacc704f0a4a1ed2129228df16b40b1 | refs/heads/master | 2021-01-15T15:46:04.176193 | 2016-12-03T16:39:31 | 2016-12-03T16:39:31 | 855,223 | 5 | 4 | null | null | null | null | WINDOWS-1252 | Java | false | false | 2,399 | java | /**
* Archivists' Toolkit(TM) Copyright © 2005-2007 Regents of the University of California, New York University, & Five Colleges, Inc.
* All rights reserved.
*
* This software is free. You can redistribute it and / or modify it under the terms of the Educational Community License (ECL)
* version 1.0 (http://www.opensource.org/licenses/ecl1.php)
*
* This software 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 ECL license for more details about permissions and limitations.
*
*
* Archivists' Toolkit(TM)
* http://www.archiviststoolkit.org
* [email protected]
*
* Created on July 19, 2005, 11:54 AM
* @author leemandell
*
*/
package org.archiviststoolkit.model;
import org.archiviststoolkit.mydomain.DomainObject;
import org.archiviststoolkit.mydomain.Auditable;
import org.archiviststoolkit.mydomain.AuditInfo;
import com.jgoodies.binding.beans.ExtendedPropertyChangeSupport;
import java.beans.PropertyChangeListener;
import java.util.Set;
import java.util.HashSet;
import java.util.Date;
public class Sessions extends DomainObject{
// Names of the Bound Bean Properties *************************************
private Long sessionId;
private String userName = "";
private Date logonTimeStamp;
public Sessions(String userName, Date logonTimeStamp) {
this.userName = userName;
this.logonTimeStamp = logonTimeStamp;
}
private ExtendedPropertyChangeSupport changeSupport = new ExtendedPropertyChangeSupport(this);
/**
* Creates a new instance of Subject
*/
public Sessions() {
}
/**
* @return Returns the identifier.
*/
public Long getIdentifier() {
return getSessionId();
}
/**
* @param identifier The identifier to set.
*/
public void setIdentifier(Long identifier) {
this.setSessionId(identifier);
}
public Long getSessionId() {
return sessionId;
}
public void setSessionId(Long sessionId) {
this.sessionId = sessionId;
}
public String getUserName() {
if (this.userName != null) {
return this.userName;
} else {
return "";
}
}
public void setUserName(String userName) {
this.userName = userName;
}
public Date getLogonTimeStamp() {
return logonTimeStamp;
}
public void setLogonTimeStamp(Date logonTimeStamp) {
this.logonTimeStamp = logonTimeStamp;
}
}
| [
"[email protected]"
] | |
a7e584838543be70eb164ae796c2d8c6abf4eaba | b2158204d662f96c6cbbacb3e5455a578fe438f7 | /app/src/main/java/com/jflavio1/daggerexample/domain/repository/KeyboardRepository.java | 9d213899f9f45c2c53d16284a3f99fc68acd9054 | [] | no_license | jflavio11/DaggerTraining | b180cb550b5a35b5bcb9d46741ca60bc6ae37dd6 | a307aeb70549111571d2e255c05a8482170f98f8 | refs/heads/master | 2020-04-21T04:44:36.229869 | 2019-02-18T16:08:00 | 2019-02-18T16:08:00 | 169,321,279 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 295 | java | package com.jflavio1.daggerexample.domain.repository;
import io.reactivex.Single;
import java.util.List;
/**
* KeyboardRepository
*
* @author Jose Flavio - [email protected]
* @since 2/11/2019
*/
public interface KeyboardRepository {
Single<List<String>> loadServerKeyboard();
}
| [
"[email protected]"
] | |
667ccf315d2ed023ea29bd5566a6e69f1d6c6bf1 | cc0cf58361b8941abf0278a88351fc40cbc22340 | /package/demo/src/com/liuxv/sliding/demo/fragment/HorizontalDetailFragment.java | 3d0aeeea8b31ce946228165d01bdbd05ea4e0039 | [
"Apache-2.0"
] | permissive | liuxv/SlidingLayout | 9cf0873bb9271a9d8893b4232820543d365ce058 | 3faeb47a8b6c16d38a257e5326b54e5c7e41ffce | refs/heads/master | 2021-01-10T08:12:47.624906 | 2016-01-04T01:39:53 | 2016-01-17T17:57:14 | 46,661,698 | 10 | 4 | null | null | null | null | UTF-8 | Java | false | false | 428 | java | package com.liuxv.sliding.demo.fragment;
import android.os.Bundle;
import android.view.View;
import com.liuxv.sliding.demo.R;
/**
* @author [email protected] (Liu Xu)
*/
public class HorizontalDetailFragment extends BaseFragment {
@Override
protected int getLayoutResId() {
return R.layout.horizontal_detail_fragment;
}
@Override
protected void onInflated(View contentView, Bundle savedInstanceState) {}
}
| [
"[email protected]"
] | |
6ce8b9024bc1ba43fbb796fd04c1cff465b44089 | 75504f9a14dcd45562a026b460691cbcfc4ec08e | /STS/eshop20/src/com/eshop/repository/BasketRepository.java | 33841ec84351a3e536077a99aa47dc01dd8f14a6 | [] | no_license | khasang/E-Shop-Project | ab340dde8917b0dce839da73ef15979ddaecc759 | 5bea34974eb8f7652631b46cdf8252d82e743a13 | refs/heads/master | 2021-01-17T20:23:12.853210 | 2018-01-03T14:40:28 | 2018-01-03T14:40:28 | 46,193,302 | 5 | 1 | null | 2016-06-25T09:51:37 | 2015-11-14T21:43:41 | Java | UTF-8 | Java | false | false | 514 | java | package com.eshop.repository;
import java.util.List;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.query.Param;
import com.eshop.entity.Basket;
import com.eshop.entity.User;
public interface BasketRepository extends CrudRepository<Basket, Integer> {
List<Basket>findByUser(User user);
@Query("select SUM(priceTotal) from Basket where user = :user")
int getOrderSum(@Param("user") User user);
}
| [
"[email protected]"
] | |
2a765bcb559c5a0acc259c36237f0de33dabe145 | b193fb16ad0fcab12544ef41f7bb49ad61d257bc | /Array/src/ArrayApp.java | 74b84f6a7c499d4585e32cbe0a25d514ca240014 | [] | no_license | MarieArchbold-92/JavaProjects | 91bd6102e7dfcfbc4e11d10480b06a88a7138f8b | d7357d767622f48757301f258a82476b1df658ad | refs/heads/master | 2021-01-10T22:02:03.303822 | 2015-08-04T14:41:26 | 2015-08-04T14:41:26 | 39,185,147 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,171 | java | import java.util.Random;
public class ArrayApp {
public static void main(String[] args) {
//Creating an array of scores from 1 - 100
int[] scores = new int[100];
for(int i = 0; i<scores.length;++i){
scores[i] = i + 1;
System.out.print(scores[i] + " ");
}
//Create random number generator
Random r = new Random();
int num = r.nextInt(scores.length);
System.out.println("\n" + num + " ");
for(int i = 0; i < scores.length; ++i){
scores[i] = r.nextInt(100) + 1;
}
//total
float total = 0;
for(int i = 0; i < scores.length; ++i){
total = total + scores[i];
}
System.out.print("\nTotal: " + total);
//Calculating mean
float mean = total / scores.length;
System.out.print("\nMean:" + mean);
//Calculating max
int max = scores[0];
for(int i = 1; i < scores.length; ++i){
if(scores[i] > max){
max = scores[i];
}
}
System.out.print("\nMax: " + max);
//Calculating min
int min = scores[0];
for(int i = 1; i < scores.length; ++i){
if(scores[i] < min){
min = scores[i];
}
}
System.out.print("\nMin: " + min);
}
}
| [
"[email protected]"
] | |
872113e70571fe2abaa3879776bb121257cb871c | 753bc7a33aef36c9c70db649ac54addb83364055 | /ThreadTest/src/com/tz7/stateTest1/Run.java | d51b0e733b70bf03d271e177a02147a95c6d94c4 | [] | no_license | I-AM-DESPERADO/java_threadTest | 0dabf3fab039a6f0d7cc54b34caa3372065cd106 | d4d62dceb6127591bf3df34576a21879746d82f0 | refs/heads/master | 2021-04-09T15:00:22.735313 | 2018-05-08T13:31:36 | 2018-05-08T13:31:36 | 125,704,085 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 715 | java | package com.tz7.stateTest1;
/**
* create by tz on 2018-05-06
*/
public class Run {
/**
* NEW
* RUNNABLE
* TERMINATED
* BLOCKED
* WAITING
* TIMED_WAITING
*
* @param args
*/
public static void main(String[] args) {
try {
MyThread t = new MyThread();
System.out.println("main方法中的状态1:" + t.getState());
Thread.sleep(1000);
t.start();
Thread.sleep(1000);
System.out.println("main方法中的状态2:" + t.getState());
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
//~ Formatted by Jindent --- http://www.jindent.com
| [
"[email protected]"
] | |
6b1d3589f3030a9c2b55ada2a867c2ef23ffc9a0 | 4778acdad04bc8a65107dc8f6be44fddb3e32152 | /ChatApp/app/src/main/java/com/promact/chatapp/ApiClient.java | 08c4b4284f9a1019d5252f472a93bf60dd562c24 | [] | no_license | GrishmaPromact/AllAndroidProjects | debf1ae1656947a60bba5d11f389b3003fa42c82 | 3dfb60ebc044f6009fb611cef7341583e621029d | refs/heads/master | 2020-03-08T14:59:34.739340 | 2018-04-05T11:57:10 | 2018-04-05T11:57:10 | 128,199,428 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,046 | java | package com.promact.chatapp;
import android.util.Log;
import java.util.HashMap;
/**
* Created by grishma on 22-02-2017.
*/
public class ApiClient
{
String HOST_URL="http://10.1.81.210:5555/api";
//String HOST_URL_TO_SEND_REQUEST="https://accounts.google.com/o/oauth2";
HashMap<String,String> postParams,putParams,getParams;
private static final String TAG = "ApiClient";
// HTTP GET request
public String sendGet(String token) throws Exception {
String downloadString="";
try {
System.out.println("--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/user");
try {
client.execute(RequestMethod.GET);
downloadString = client.performGetCall(HOST_URL+"/user",token);
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
// HTTP POST request
public String sendPost() throws Exception {
String downloadString="";
try {
Log.d(TAG,"--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/api/login");
try {
client.execute(RequestMethod.POST);
postParams=new HashMap<>();
postParams.put("CategoryId","-1");
postParams.put("DateToCompare","");
postParams.put("NumberOfStories","10");
downloadString = client.performPostCall(HOST_URL+"/api/stories",postParams);
System.out.println("--dwnld string is:"+downloadString);
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
//HTTP PUT method
public String sendPut() throws Exception {
String downloadString="";
try {
Log.d(TAG,"--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/api/user");
try {
client.execute(RequestMethod.PUT);
putParams=new HashMap<>();
putParams.put("FirstName","Vishal");
putParams.put("Id","3");
downloadString = client.performPutCall(HOST_URL+"/api/user",putParams);
Log.d("--dwnld string is:",downloadString);
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
public String sendDelete() throws Exception {
String downloadString="";
try {
System.out.println("--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/api/device/156");
try {
client.execute(RequestMethod.DELETE);
downloadString = client.performDeleteCall(HOST_URL+"/api/device/156");
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
public String sendPostRequestToServer(String userName) {
String downloadString="";
try {
System.out.println("--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/user/login");
try {
client.execute(RequestMethod.POST);
Log.d("Username in post method:",userName);
postParams=new HashMap<>();
postParams.put("name",userName);
downloadString = client.sendPostRequestToGetToken(HOST_URL+"/user/login",postParams);
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
public String getAllChatMsgsWithUser(String userId,String authToken) {
String downloadString="";
try {
System.out.println("--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/chat/"+userId);
try {
client.execute(RequestMethod.GET);
downloadString = client.performGetCall(HOST_URL+"/chat/"+userId,authToken);
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
public String sendPostReqToSendMsg(String authToken, String userId, String msgText) {
String downloadString="";
try {
System.out.println("--------------in do background method--");
HttpRestClient client = new HttpRestClient(HOST_URL+"/chat");
try {
client.execute(RequestMethod.POST);
Log.d("Authtoken in post method:",authToken);
Log.d("userId in post method:",userId);
Log.d("msgtext in post method:",msgText);
postParams=new HashMap<>();
postParams.put("message",msgText);
postParams.put("toUserId",userId);
downloadString = client.sendPostRequestToSengMsg(HOST_URL+"/chat",postParams,authToken);
return downloadString;
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return downloadString;
}
}
| [
"[email protected]"
] | |
70286393dec65601595c3f9a59293297db3ff15d | e916953c3f44e4dbeb5df5589a50464288a03e3e | /src/recursion2/Test.java | c43938dff59f11a3194aca044c7e91f14026981d | [] | no_license | lioubouchkin/JavaExercises | b4aea036ecb493336a95f1390d8b4dcb5aeb04c1 | 7161ea254071a5d2f40cf9431a5cede93db83d72 | refs/heads/master | 2021-01-18T18:09:09.105270 | 2016-12-24T23:04:00 | 2016-12-24T23:04:00 | 70,167,790 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 441 | java | package recursion2;
public class Test {
public static void main(String[] args) {
int start = 0;
int[] nums = new int [] {
2,2,20,30,2,64,3,2,2
};
int sum = nums[start];
int count = 1;
for (int i = start + 1; i < nums.length; i++) {
if (nums[i] == nums[start]) {
sum += nums[i];
count++;
} else
break;
}
System.out.println(count);
}
}
| [
"[email protected]"
] | |
c363504c4a766bfe5d75ee4f0d3aa436a0c7f4e0 | 4119b75e437c7dbccab677e98b5c00918abf5ed1 | /svn-webapp/src/main/java/com/tusia/service/TestService.java | 6664ac00f5f57d8c180b10fc6126b10fff1c61a0 | [] | no_license | qulith/svn-stats | 9b97a2f6bb7fab15cf4f547f9c73e467868c6b10 | 4e2ca7e7b8739570858c5cc9c025220ec5e419b0 | refs/heads/master | 2020-04-06T03:34:08.898088 | 2011-11-13T00:32:04 | 2011-11-13T00:32:04 | 2,753,850 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,165 | java | package com.tusia.service;
import java.io.File;
import java.util.Calendar;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import org.apache.log4j.Logger;
import org.json.simple.JSONArray;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.tmatesoft.svn.core.ISVNDirEntryHandler;
import org.tmatesoft.svn.core.ISVNLogEntryHandler;
import org.tmatesoft.svn.core.SVNException;
import org.tmatesoft.svn.core.SVNLogEntry;
import org.tmatesoft.svn.core.SVNURL;
import org.tmatesoft.svn.core.auth.ISVNAuthenticationManager;
import org.tmatesoft.svn.core.auth.SVNAuthentication;
import org.tmatesoft.svn.core.auth.SVNPasswordAuthentication;
import org.tmatesoft.svn.core.internal.io.dav.DAVRepositoryFactory;
import org.tmatesoft.svn.core.internal.io.svn.SVNConnection;
import org.tmatesoft.svn.core.internal.util.SVNURLUtil;
import org.tmatesoft.svn.core.io.SVNRepository;
import org.tmatesoft.svn.core.io.SVNRepositoryFactory;
import org.tmatesoft.svn.core.wc.SVNClientManager;
import org.tmatesoft.svn.core.wc.SVNLogClient;
import org.tmatesoft.svn.core.wc.SVNRevision;
import org.tmatesoft.svn.core.wc.SVNWCUtil;
import org.tmatesoft.svn.core.wc.xml.SVNXMLDirEntryHandler;
import org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler;
import org.xml.sax.helpers.DefaultHandler;
import com.tusia.dto.PieChartCommits;
import com.tusia.dto.UserSvnStat;
import com.tusia.util.SvnDirHandler;
import com.tusia.util.SvnKitManager;
import com.tusia.util.SvnLogHandler;
@Service("testService")
public class TestService {
Logger log = Logger.getLogger(TestService.class);
@Autowired
SvnKitManager svnKitManager;
@SuppressWarnings(value = { "unchecked" })
public Collection<UserSvnStat> getUserStats() throws SVNException
{
DAVRepositoryFactory.setup( );
String url = "http://aimsweb.jira.com/svn/AIMSWEB/development/trunk";
String name = "ttusia";
String password = "pearljam";
long startRevision = 0;
long endRevision = -1; //HEAD (the latest) revision
SVNRepository repository = null;
repository = SVNRepositoryFactory.create( SVNURL.parseURIEncoded( url ) );
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager( name, password );
repository.setAuthenticationManager( authManager );
Collection<SVNLogEntry> logEntries = null;
logEntries = repository.log( new String[] { "" } , null , startRevision , endRevision , true , true );
Map<String,UserSvnStat> stats = new LinkedHashMap<String, UserSvnStat>();
for(SVNLogEntry logEntry : logEntries)
{
UserSvnStat userSvnStat = stats.get(logEntry.getAuthor());
if(userSvnStat == null)
{
userSvnStat = new UserSvnStat();
stats.put(logEntry.getAuthor(), userSvnStat);
userSvnStat.setUserName(logEntry.getAuthor());
}
userSvnStat.setNumberCommits(userSvnStat.getNumberCommits()+1);
if(logEntry.getMessage() != null && !logEntry.getMessage().equals(""))
userSvnStat.setNumberComments(userSvnStat.getNumberComments() +1);
if(userSvnStat.getLastCommitDate() == null)
{
Calendar cal = Calendar.getInstance();
cal.setTime(logEntry.getDate());
userSvnStat.setLastCommitDate(cal);
}
else if(userSvnStat.getLastCommitDate().before(logEntry.getDate()))
{
userSvnStat.getLastCommitDate().setTime(logEntry.getDate());
}
if(userSvnStat.getFirstCommitDate() == null)
{
Calendar cal = Calendar.getInstance();
cal.setTime(logEntry.getDate());
userSvnStat.setFirstCommitDate(cal);
}
else if(userSvnStat.getFirstCommitDate().after(logEntry.getDate()))
{
userSvnStat.getFirstCommitDate().setTime(logEntry.getDate());
}
}
return stats.values();
}
public JSONArray getPieChartCommits() throws SVNException
{
JSONArray retVal = new JSONArray();
DAVRepositoryFactory.setup( );
String url = "http://aimsweb.jira.com/svn/AIMSWEB/development/trunk";
String name = "ttusia";
String password = "pearljam";
long startRevision = 0;
long endRevision = -1; //HEAD (the latest) revision
SVNRepository repository = null;
repository = SVNRepositoryFactory.create( SVNURL.parseURIEncoded( url ) );
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager( name, password );
repository.setAuthenticationManager( authManager );
Collection<SVNLogEntry> logEntries = null;
logEntries = repository.log( new String[] { "" } , null , startRevision , endRevision , true , true );
Map<String,PieChartCommits> stats = new LinkedHashMap<String, PieChartCommits>();
int totalCommits = 0;
for(SVNLogEntry logEntry : logEntries)
{
totalCommits++;
PieChartCommits pieSlice = stats.get(logEntry.getAuthor());
if(pieSlice == null)
{
pieSlice = new PieChartCommits();
stats.put(logEntry.getAuthor(), pieSlice);
pieSlice.setName(logEntry.getAuthor());
}
pieSlice.setY(pieSlice.getY()+1);
}
for (PieChartCommits pcc : stats.values())
{
retVal.add(pcc.getJson());
}
return retVal;
}
}
| [
"[email protected]"
] | |
4f183dd95bb98fed29daf17b8d093f056f89629c | 7bedf9f378770fff8eb24f3f8cb04589637ee26f | /org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/support/RedirectAttributesModelMapTests.java | e67da0b9ab227b701d8d8f9e6fc07094145f78b3 | [] | no_license | gkamal/spring-framework | 254c487ca16f3718bd0869949d719dbcc52664a6 | 6b6377de462fd727e07a726aaaf3808cd37a3a64 | refs/heads/master | 2021-01-18T13:19:50.313965 | 2011-09-06T21:03:02 | 2011-09-06T21:03:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,072 | java | /*
* Copyright 2002-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.servlet.mvc.support;
import static org.junit.Assert.assertEquals;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.junit.Before;
import org.junit.Test;
import org.springframework.beans.TestBean;
import org.springframework.core.convert.converter.Converter;
import org.springframework.format.support.DefaultFormattingConversionService;
import org.springframework.format.support.FormattingConversionService;
import org.springframework.validation.DataBinder;
/**
*
* Test fixture for {@link RedirectAttributesModelMap} tests.
*
* @author Rossen Stoyanchev
* @since 3.1
*/
public class RedirectAttributesModelMapTests {
private RedirectAttributesModelMap redirectAttributes;
private FormattingConversionService conversionService;
@Before
public void setup() {
this.conversionService = new DefaultFormattingConversionService();
DataBinder dataBinder = new DataBinder(null);
dataBinder.setConversionService(conversionService);
this.redirectAttributes = new RedirectAttributesModelMap(dataBinder);
}
@Test
public void addAttributePrimitiveType() {
this.redirectAttributes.addAttribute("speed", 65);
assertEquals("65", this.redirectAttributes.get("speed"));
}
@Test
public void addAttributeCustomType() {
String attrName = "person";
this.redirectAttributes.addAttribute(attrName, new TestBean("Fred"));
assertEquals("ConversionService should have invoked toString()", "Fred", this.redirectAttributes.get(attrName));
this.conversionService.addConverter(new TestBeanConverter());
this.redirectAttributes.addAttribute(attrName, new TestBean("Fred"));
assertEquals("Type converter should have been used", "[Fred]", this.redirectAttributes.get(attrName));
}
@Test
public void addAttributeToString() {
String attrName = "person";
RedirectAttributesModelMap model = new RedirectAttributesModelMap();
model.addAttribute(attrName, new TestBean("Fred"));
assertEquals("toString() should have been used", "Fred", model.get(attrName));
}
@Test
public void addAttributeValue() {
this.redirectAttributes.addAttribute(new TestBean("Fred"));
assertEquals("Fred", this.redirectAttributes.get("testBean"));
}
@Test
public void addAllAttributesList() {
this.redirectAttributes.addAllAttributes(Arrays.asList(new TestBean("Fred"), new Integer(5)));
assertEquals("Fred", this.redirectAttributes.get("testBean"));
assertEquals("5", this.redirectAttributes.get("integer"));
}
@Test
public void addAttributesMap() {
Map<String, Object> map = new HashMap<String, Object>();
map.put("person", new TestBean("Fred"));
map.put("age", 33);
this.redirectAttributes.addAllAttributes(map);
assertEquals("Fred", this.redirectAttributes.get("person"));
assertEquals("33", this.redirectAttributes.get("age"));
}
@Test
public void mergeAttributes() {
Map<String, Object> map = new HashMap<String, Object>();
map.put("person", new TestBean("Fred"));
map.put("age", 33);
this.redirectAttributes.addAttribute("person", new TestBean("Ralph"));
this.redirectAttributes.mergeAttributes(map);
assertEquals("Ralph", this.redirectAttributes.get("person"));
assertEquals("33", this.redirectAttributes.get("age"));
}
public static class TestBeanConverter implements Converter<TestBean, String> {
public String convert(TestBean source) {
return "[" + source.getName() + "]";
}
}
}
| [
"[email protected]"
] | |
62c3cd3f843941cee1d93874d27c7421197bdfc5 | 7b326b9a41a0265bbcef670d1964ad93d6e8ad92 | /caci-coding-practice/src/test/java/com/caci/ordering/service/BricksOrderServiceTest.java | e60c62432a5ad2df47db221a72974884f04756c9 | [] | no_license | Sunflower1/caci-coding-practice | 6dcce127b76f5d9177adc2f576b1ac978eebd769 | c2bc0abb8248da55faee14804172ebad8ad0a857 | refs/heads/master | 2020-03-22T20:05:34.495743 | 2018-10-07T23:36:16 | 2018-10-07T23:36:16 | 140,568,268 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,560 | java | package com.caci.ordering.service;
import static org.junit.Assert.assertEquals;
import java.util.HashSet;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.junit.MockitoJUnitRunner;
import com.caci.ordering.dao.BricksOrderRepository;
import com.caci.ordering.entity.BricksOrder;
/**
* Created by David Liu
*/
@RunWith(MockitoJUnitRunner.Silent.class)
public class BricksOrderServiceTest {
@Mock
private BricksOrderRepository bricksOrderRepository;
@InjectMocks
private BricksOrderServiceImpl bricksOrderService;
private BricksOrder order1;
private BricksOrder order2;
private BricksOrder order3;
private HashSet<BricksOrder> orders = new HashSet<BricksOrder>();
@Before
public void setUp() {
order1 = BricksOrder.createOrder(1, 999, false);
order2 = BricksOrder.createOrder(2, 100, false);
order3 = BricksOrder.createOrder(3, 500, false);
orders.add(order1);
orders.add(order2);
orders.add(order3);
}
@After
public void tearDown() {
orders.clear();
}
@Test
public void testGetOrder() {
Mockito.when(bricksOrderRepository.getOrder(1)).thenReturn(order1);
assertEquals(order1, bricksOrderService.getOrder(1));
}
@Test
public void testGetOrders() {
Mockito.when(bricksOrderRepository.getOrders()).thenReturn(orders);
assertEquals(orders, bricksOrderService.getOrders());
}
}
| [
"[email protected]"
] | |
5fc6998c43026c89934a7c0385b603cb1fa4f2d0 | 823d6b44cf55feea7d31e151820fb104f680f903 | /JIRA3/src/main/java/com/jira/contract/ISprintService.java | fc63a3e9b28c2b8a1fecce742e6f033bc1af2550 | [] | no_license | Slavi9419/Jira | 14d4f0edc3135162907690124036c1f3c25d7d50 | 9c835b25eae880dcd17581c9655d1f52da183c6c | refs/heads/master | 2021-07-24T08:58:06.503806 | 2017-10-31T16:43:30 | 2017-10-31T16:43:30 | 109,024,708 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 361 | java | package com.jira.contract;
import com.jira.exceptions.ResourceNotFoundException;
import com.jira.exceptions.SprintException;
import com.jira.model.Sprint;
public interface ISprintService {
Sprint findSprintById(int id);
void removeSprintById(int id) throws ResourceNotFoundException;
void saveSprint(Sprint sprint) throws SprintException;
}
| [
"[email protected]"
] | |
8dbeee53d410cc2062f80fc0aa02ba528d7248da | b5dd3902e66d96a579aa5756dbf222167ee5d778 | /3.JavaMultithreading/src/com/javarush/task/task24/task2411/C.java | 3bd24c6b64fd811dc12a4c141b594ba5678bc064 | [] | no_license | PrimakovAlexander1993/JavaRushTask | fa8a901f45a1784d5da280806cea967f14c92f1f | 339e506a8907db1b8a43d8a535cbb5fa96c3c000 | refs/heads/master | 2021-01-04T23:16:15.379815 | 2020-02-15T21:29:34 | 2020-02-15T21:29:34 | 240,791,685 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 165 | java | package com.javarush.task.task24.task2411;
public class C implements JustAnInterface{
public C() {
System.out.print("C");
B localB = B;
}
} | [
"[email protected]"
] | |
acf67475832c156055c4f12ddf4c269b160912c5 | ddae676ca666980663f8ab7a417126d55104d520 | /src/main/java/com/epf/rentmanager/ui/servlets/ReservationCreateServlet.java | 8e6324f4332a219e7eea042f93c6d28438829157 | [] | no_license | IsidorePorretti/rentmanager | 4bc329990537ae597fb083d34bc2132455a5f640 | 10d44960dd3d0d653f44efd52c766429e70769ef | refs/heads/master | 2023-08-28T20:14:13.996311 | 2021-10-08T13:21:10 | 2021-10-08T13:21:10 | 351,831,426 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,011 | java | package com.epf.rentmanager.ui.servlets;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.web.context.support.SpringBeanAutowiringSupport;
import com.epf.rentmanager.configuration.AppConfiguration;
import com.epf.rentmanager.exception.ServiceException;
import com.epf.rentmanager.model.Client;
import com.epf.rentmanager.model.Reservation;
import com.epf.rentmanager.model.Vehicle;
import com.epf.rentmanager.service.ClientService;
import com.epf.rentmanager.service.ReservationService;
import com.epf.rentmanager.service.VehicleService;
@WebServlet("/rents/create")
public class ReservationCreateServlet extends HttpServlet{
private static ApplicationContext context = new AnnotationConfigApplicationContext(AppConfiguration.class);
//private static ReservationService reservation_service = ReservationService.getInstance();
//private static ClientService client_service = ClientService.getInstance();
//private static VehicleService vehicle_service = VehicleService.getInstance();
@Autowired
ClientService client_service;
@Autowired
VehicleService vehicle_service;
@Autowired
ReservationService reservation_service;
@Override
public void init() throws ServletException {
super.init();
SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
}
/**
* @return le doGet de ReservationCreateServlet
*/
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// TODO Auto-generated method stub
try
{
req.setAttribute("clients", client_service.findAll());
req.setAttribute("vehicles", vehicle_service.findAll());
RequestDispatcher requestDispatcher = req.getRequestDispatcher("/WEB-INF/views/rents/create.jsp");
requestDispatcher.forward(req, resp);
}
catch (ServiceException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* @return le doPost de ReservationCreateServlet
*/
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
try {
Client client = new Client();
long client_long = Long.parseLong(req.getParameter("client"));
client.setId(client_long);
Vehicle vehicle = new Vehicle();
long vehicle_long = Long.parseLong(req.getParameter("car"));
vehicle.setId(vehicle_long);
Reservation reservation = new Reservation();
reservation.setClient(client);
reservation.setVehicle(vehicle);
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy");
Date parsed;
parsed = format.parse(req.getParameter("begin"));
java.sql.Date debut = new java.sql.Date(parsed.getTime() );
parsed = format.parse(req.getParameter("end"));
java.sql.Date fin = new java.sql.Date(parsed.getTime());
reservation.setDebut(debut);
reservation.setFin(fin);
//System.out.println(reservation);
reservation_service.create(reservation);
resp.sendRedirect("http://localhost:8080/rentmanager/rents");
} catch (ServiceException e) {
// TODO Auto-generated catch block
System.out.println(e.getMessage());
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println(e.getMessage());
}
catch (ParseException e) {
// TODO Auto-generated catch block
System.out.println(e.getMessage());
}// TODO Auto-generated method stub
}
}
| [
"[email protected]"
] | |
2aecdb0b8c6c4ad0933eea9764fd1bda8ae35049 | 12de34cdfc26478282eac71d1968b19313c80592 | /src/main/java/com/julioc98/jhipster/repository/DepartmentRepository.java | 2683182d3c5a3be6d8e286d68fe7b8eb664aed54 | [] | no_license | julioc98/jhipster-test | b2e3b5398af5e33688c32df57159b7d87729dd74 | f70e693e681a94fc134ecaddf10276f735ebafd0 | refs/heads/master | 2023-05-11T09:57:23.123479 | 2019-07-17T22:00:26 | 2019-07-17T22:00:26 | 197,468,934 | 0 | 0 | null | 2023-05-06T07:56:10 | 2019-07-17T22:02:21 | Java | UTF-8 | Java | false | false | 378 | java | package com.julioc98.jhipster.repository;
import com.julioc98.jhipster.domain.Department;
import org.springframework.data.jpa.repository.*;
import org.springframework.stereotype.Repository;
/**
* Spring Data repository for the Department entity.
*/
@SuppressWarnings("unused")
@Repository
public interface DepartmentRepository extends JpaRepository<Department, Long> {
}
| [
"[email protected]"
] | |
1f374b79bf8cced2f57134fceca53609ee0cb803 | f94537275133a07c1a20f6ac76db18108b047204 | /app/src/main/java/com/valerie/customlist/MyCustomListAdapter.java | 2be1cdcdff9667ca337546e9064b05adbda82c9e | [] | no_license | bsakari/Custom-List-With-Delete | 1f8329952373384560e02d23dfdd648fd51f5850 | d042a8ee7a47bd1d13a4ee96ff9696968149c1fa | refs/heads/master | 2020-03-20T05:13:42.476440 | 2018-06-13T11:39:50 | 2018-06-13T11:39:50 | 137,207,541 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,464 | java | package com.valerie.customlist;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import java.util.List;
public class MyCustomListAdapter extends ArrayAdapter<Hero> {
Context mCtx;
int resource;
List<Hero> heroList;
public MyCustomListAdapter(Context mCtx, int resource, List<Hero> heroList) {
super(mCtx, resource, heroList);
this.mCtx = mCtx;
this.resource = resource;
this.heroList = heroList;
}
@NonNull
@Override
public View getView(final int position, @Nullable View convertView, @NonNull ViewGroup parent) {
LayoutInflater inflater= LayoutInflater.from(mCtx);
View view= inflater.inflate(resource, null);
TextView textViewName= view.findViewById(R.id.textViewName);
TextView textViewTeam=view.findViewById(R.id.textViewTeam);
ImageView imageView=view.findViewById(R.id.imageView);
Hero hero= heroList.get(position);
textViewName.setText(hero.getName());
textViewTeam.setText(hero.getTeam());
imageView.setImageDrawable(mCtx.getResources().getDrawable(hero.getImage()));
view.findViewById(R.id.buttonDelete).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
removeItem(position);
}
});
return view;
}
private void removeItem(final int position){
AlertDialog.Builder builder=new AlertDialog.Builder(mCtx);
builder.setTitle("Are you sure you want to delete?");
builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
heroList.remove(position);
notifyDataSetChanged();
}
});
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
}
});
AlertDialog alertDialog = builder.create();
alertDialog.show();
}
}
| [
"[email protected]"
] | |
eec0e0c59dbfea2fa9fe3a05dd9998097554414e | e789c0c5e0caa11025c24ffed8f45c3f3a3d7bde | /src/test/java/InheritanceTest.java | eb748348c7fd3f7b0ce043b35344610fcb1097d4 | [] | no_license | Tonata/Design-Principles | 569ab912fdd930d003e73ea4f52152a333c728b5 | 1673a8ccac6caf50bfd29e136405fee8ec1e3ea7 | refs/heads/master | 2020-04-26T23:13:10.614920 | 2014-03-01T18:53:52 | 2014-03-01T18:53:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,443 | 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.
*/
import com.tonata.designprinciples.Inheritance.Equipment;
import com.tonata.designprinciples.config.AppConfig;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.testng.Assert;
import static org.testng.Assert.*;
import org.testng.annotations.AfterClass;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
*
* @author student
*/
public class InheritanceTest {
private static Equipment e;
public InheritanceTest() {
}
@Test
public void inheritanceTest() {
Assert.assertEquals("Canon D900", e.getEquipmentName());
}
@BeforeClass
public static void setUpClass() throws Exception {
ApplicationContext ctx = new AnnotationConfigApplicationContext(AppConfig.class);
e = (Equipment)ctx.getBean("Inheritance");
e.setEquipmentName("Canon D900");
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@BeforeMethod
public void setUpMethod() throws Exception {
}
@AfterMethod
public void tearDownMethod() throws Exception {
}
}
| [
"student@student-virtual-machine"
] | student@student-virtual-machine |
2c96a46b692b4f7814bfa929dfa6bfcb7b68b9a1 | 6b4015c7472081619facfd92c90f14c79fc03bdd | /src/main/java/com/pzk/community/dto/QuestionDto.java | e8446deb3562ac921d018e44dff4fa23ccb73c53 | [] | no_license | pzkcommunity/community | 4aee365ee15920651d4f0f8952b7cdcc2c541e44 | c3054a257dfdce8e91d28665483c7e90d4cc3ac6 | refs/heads/master | 2022-06-26T18:18:03.967225 | 2020-04-22T08:21:07 | 2020-04-22T08:21:07 | 239,083,502 | 0 | 0 | null | 2022-06-17T02:53:24 | 2020-02-08T06:54:43 | Java | UTF-8 | Java | false | false | 469 | java | package com.pzk.community.dto;
import com.pzk.community.model.User;
import lombok.Data;
/**
* question and user组装类
*/
@Data
public class QuestionDto {
private Long id;
private String title;
private String description;
private long gmtCreate;
private long gmtModified;
private Long creator;
private Integer commentCount;
private Integer viewCount;
private Integer likeCount;
private String tag;
private User user;
}
| [
"[email protected]"
] | |
1544d78f09db111e341f2c97a9ae0a9224e77eda | 1101d9aed354a36499442c96546f6e0bbe066b6e | /src/main/java/com/a3hp/automationpracticee/framework/pageobject/dresses/PrintedDressCDPage.java | 35b7834d3d8fce37a608b15d8dc796a8503072df | [] | no_license | VikashGittt/A3hp.com.automationprac | 9434807521a58ff0a64eda0c4425a91ffe457751 | b09c9d8a55a4e9868bdf0b7e1fd0625c50583605 | refs/heads/master | 2020-04-16T10:21:11.216874 | 2019-01-14T04:46:20 | 2019-01-14T04:46:20 | 165,501,904 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 105 | java | package com.a3hp.automationpracticee.framework.pageobject.dresses;
public class PrintedDressCDPage {
}
| [
"[email protected]"
] | |
642f74cc78c493d2c2b48a4e239e414320ad2fdc | ba170b8e961505127b37ee8c7d371ca42f09f630 | /ngscript-core/src/main/java/org/ngscript/runtime/Context.java | df3391d9b7ab54afebb242947f579def4a24426f | [
"Apache-2.0"
] | permissive | Watch-Later/ngscript | c8982a2ca2e8918b4b94f348c96e64c7d6d2fe6a | e04e1ff2dda50b1fb39e0919d100ba75e7d1d51b | refs/heads/master | 2023-06-25T18:09:05.705272 | 2021-07-15T15:39:09 | 2021-07-15T15:39:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,699 | java | /*
* Copyright 2021 wssccc
*
* 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.ngscript.runtime;
import org.ngscript.compiler.Instruction;
import org.ngscript.utils.FastStack;
/**
* @author wssccc
*/
public class Context {
Object eax;
Environment env;
int eip;
Instruction hint;
int stackSize;
int callStackSize;
FastStack<Object> stack;
public Context(VirtualMachine vm) {
this.save(vm);
}
public final void save(VirtualMachine vm) {
this.eax = vm.eax.read();
this.env = (Environment) vm.env.read();
this.eip = vm.eip;
this.hint = vm.helptext;
this.stackSize = vm.stack.size();
this.callStackSize = vm.callstack.size();
this.stack = vm.stack;
}
public final void restore(VirtualMachine vm) {
vm.eax.write(eax);
vm.env.write(env);
vm.eip = eip;
vm.helptext = hint;
vm.stack = stack;
//the following while loop is to ensure the stack is balanced when in a try catch block
while (vm.stack.size() > stackSize) {
vm.stack.pop();
}
vm.call_stack_size = callStackSize;
}
}
| [
"[email protected]"
] | |
66129aa83ea5a6a7c3d86c4a9de5893bb3e0a7cb | f676554151050bb21262353cbfd1502b9b51fca3 | /src/main/scala/com/yee/bigdata/common/util/Constants.java | cf02496d564d0543645f338ca17b771879caf75d | [] | no_license | finch0001/bigdata-v2 | 90c4a9d24d96590d19945c2a2371d387452cafb1 | 78261514c8d6e89dde3f9f91af6a33ff7f2a40d7 | refs/heads/master | 2020-07-02T14:28:19.297353 | 2019-08-29T00:16:37 | 2019-08-29T00:16:48 | 201,556,626 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,079 | java | package com.yee.bigdata.common.util;
import java.util.StringTokenizer;
/**
* Some useful constants.
**/
public final class Constants {
private Constants() {} // can't construct
/** JVM vendor info. */
public static final String JVM_VENDOR = System.getProperty("java.vm.vendor");
public static final String JVM_VERSION = System.getProperty("java.vm.version");
public static final String JVM_NAME = System.getProperty("java.vm.name");
public static final String JVM_SPEC_VERSION = System.getProperty("java.specification.version");
/** The value of <tt>System.getProperty("java.version")</tt>. **/
public static final String JAVA_VERSION = System.getProperty("java.version");
/** The value of <tt>System.getProperty("os.name")</tt>. **/
public static final String OS_NAME = System.getProperty("os.name");
/** True iff running on Linux. */
public static final boolean LINUX = OS_NAME.startsWith("Linux");
/** True iff running on Windows. */
public static final boolean WINDOWS = OS_NAME.startsWith("Windows");
/** True iff running on SunOS. */
public static final boolean SUN_OS = OS_NAME.startsWith("SunOS");
/** True iff running on Mac OS X */
public static final boolean MAC_OS_X = OS_NAME.startsWith("Mac OS X");
/** True iff running on FreeBSD */
public static final boolean FREE_BSD = OS_NAME.startsWith("FreeBSD");
public static final String OS_ARCH = System.getProperty("os.arch");
public static final String OS_VERSION = System.getProperty("os.version");
public static final String JAVA_VENDOR = System.getProperty("java.vendor");
private static final int JVM_MAJOR_VERSION;
private static final int JVM_MINOR_VERSION;
/** True iff running on a 64bit JVM */
public static final boolean JRE_IS_64BIT;
static {
final StringTokenizer st = new StringTokenizer(JVM_SPEC_VERSION, ".");
JVM_MAJOR_VERSION = Integer.parseInt(st.nextToken());
if (st.hasMoreTokens()) {
JVM_MINOR_VERSION = Integer.parseInt(st.nextToken());
} else {
JVM_MINOR_VERSION = 0;
}
boolean is64Bit = false;
String datamodel = null;
try {
datamodel = System.getProperty("sun.arch.data.model");
if (datamodel != null) {
is64Bit = datamodel.contains("64");
}
} catch (SecurityException ex) {}
if (datamodel == null) {
if (OS_ARCH != null && OS_ARCH.contains("64")) {
is64Bit = true;
} else {
is64Bit = false;
}
}
JRE_IS_64BIT = is64Bit;
}
public static final boolean JRE_IS_MINIMUM_JAVA8 = JVM_MAJOR_VERSION > 1 || (JVM_MAJOR_VERSION == 1 && JVM_MINOR_VERSION >= 8);
public static final boolean JRE_IS_MINIMUM_JAVA9 = JVM_MAJOR_VERSION > 1 || (JVM_MAJOR_VERSION == 1 && JVM_MINOR_VERSION >= 9);
public static final boolean JRE_IS_MINIMUM_JAVA11 = JVM_MAJOR_VERSION > 1 || (JVM_MAJOR_VERSION == 1 && JVM_MINOR_VERSION >= 11);
}
| [
"[email protected]"
] | |
125a35018bf1f3ca476c73205be27cb94714f4ea | 7bca0c7096bf68951fc0b51bf24bc908e87effc1 | /src/main/java/by/thm/persistent/SQLConnection.java | 738db0b89621c42a877f7cdac1b831852c098903 | [] | no_license | thmihnea/AzaleaSkills | d39d67bd9e4bd0671d514dbce8526694e8f13773 | 9f959e7829aaf8b47b3916fac1c29cd1060ff4c9 | refs/heads/master | 2023-03-11T15:46:31.435204 | 2021-02-27T20:19:03 | 2021-02-27T20:19:03 | 325,760,815 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,876 | java | package by.thm.persistent;
import by.thm.AzaleaSkills;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Arrays;
import java.util.List;
public class SQLConnection {
public static Connection connection;
public static String host, database, username, password;
public static Integer port;
public Connection getConnection() {
return connection;
}
public void setConnection(Connection connection) {
this.connection = connection;
}
public void createTable() {
try {
PreparedStatement ps1 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS player_data (UUID varchar(256), NAME varchar(256))");
PreparedStatement ps2 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_mining (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps3 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_foraging (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps4 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_combat (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps5 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_farming (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps6 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_health (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps7 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_defense (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps8 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_damage (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
PreparedStatement ps9 = getConnection().prepareStatement("CREATE TABLE IF NOT EXISTS data_mana (UUID varchar(256), LEVEL bigint(255), CURRENT_XP bigint(255), XP_TO_NEXT_LEVEL bigint(255))");
List <PreparedStatement> statements = Arrays.asList(ps1, ps2, ps3, ps4, ps5, ps6, ps7, ps8, ps9);
statements.forEach(statement -> {
try {
statement.executeUpdate();
} catch (SQLException exception) {
exception.printStackTrace();
}
});
} catch (SQLException exception) {
exception.printStackTrace();
System.out.println("[AzaleaSkills] An error has occured while setting up SQL drivers. Tables couldn't get created. (Check if your database has been set up correctly!)");
}
}
public void sqlConnect() {
host = AzaleaSkills.cfg.getString("MySQL.host");
port = AzaleaSkills.cfg.getInt("MySQL.port");
database = AzaleaSkills.cfg.getString("MySQL.database");
username = AzaleaSkills.cfg.getString("MySQL.username");
password = AzaleaSkills.cfg.getString("MySQL.password");
try {
synchronized (this) {
if (getConnection() != null && !getConnection().isClosed()) return;
Class.forName("com.mysql.jdbc.Driver");
setConnection(DriverManager.getConnection("jdbc:mysql://" + this.host + ":" + this.port + "/" + this.database, this.username, this.password));
}
} catch (SQLException | ClassNotFoundException exception) {
exception.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
ee935e77a4ab993e97b473ddee6374f91506285a | 649f6cce62ec72c509e3ede126effe84f9dc18fb | /app/src/main/java/com/example/hxl/travel/ui/adapter/RollPagerAdapter.java | 631d5ea1c76748b82080c4527643b1414ddad512 | [
"Apache-2.0"
] | permissive | hxlzp/Travel | c5d69b85c869f893da41c0956f931897948d3bd1 | f33c264dfd19a8ba27258b645c1d5c7001f7375c | refs/heads/master | 2021-05-05T04:05:29.781000 | 2017-09-29T01:17:07 | 2017-09-29T01:17:07 | 105,214,569 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,487 | java | package com.example.hxl.travel.ui.adapter;
import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import com.jude.rollviewpager.adapter.StaticPagerAdapter;
import java.util.List;
/**
* Created by hxl on 2016/12/29 at haiChou.
*/
public class RollPagerAdapter extends StaticPagerAdapter {
private Context ctx;
private List<Integer> list;
public RollPagerAdapter(Context ctx, List<Integer> list) {
this.ctx = ctx;
this.list = list;
removeEmpty(this.list);
}
private void removeEmpty(List<Integer> list) {
for (int i = 0; i < list.size(); i++) {
}
}
@Override
public View getView(ViewGroup container, final int position) {
ImageView imageView = new ImageView(ctx);
imageView.setLayoutParams(new
ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setBackgroundResource(list.get(position));
//加载图片
//ImageLoader.load(ctx, list.get(position), imageView);
//点击事件
imageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
return imageView;
}
@Override
public int getCount() {
return list.size();
}
} | [
"[email protected]"
] | |
db39eaaa0bc6d2f0e0075c48927e5dbc5d0c52e0 | 566408c4e03bf90af2a7d4e14d625aac9c8885dd | /src/main/java/com/KingEnderman/TangibleShadows/containers/BlockShadowFurnace.java | 68784e840d04536151eaecba51b8e4498846e1bb | [
"MIT"
] | permissive | KingEnderman/TangibleShadows | 540451b5676feafec5481b49df38ba674303af92 | f19a75c365b8aab43f891b02f7ab5694b8616edb | refs/heads/master | 2020-12-30T14:56:37.964345 | 2014-10-18T17:46:22 | 2014-10-18T17:46:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,473 | java | package com.KingEnderman.TangibleShadows.containers;
import java.util.Random;
import com.KingEnderman.TangibleShadows.TangibleShadows;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.BlockFurnace;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.tileentity.TileEntityFurnace;
import net.minecraft.util.IIcon;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
public class BlockShadowFurnace extends BlockContainer
{
private final Random field_149933_a = new Random();
private final boolean furnace_Active;
private static boolean field_149934_M;
@SideOnly(Side.CLIENT)
protected IIcon icon_Front;
@SideOnly(Side.CLIENT)
protected IIcon icon_Top;
public BlockShadowFurnace(boolean isActive)
{
super(Material.rock);
furnace_Active = isActive;
setBlockName(isActive ? "shadowFurnaceActive" : "shadowFurnaceIdle");
setLightLevel(isActive ? 1.0F : 0f);
setBlockTextureName(TangibleShadows.MODID + ":" + (isActive ? "shadowFurnace_front_on" : "shadowFurnace_front_off"));
setHardness(3.5F);
setStepSound(soundTypePiston);
}
public Item getItemDropped(int metadata, Random rand, int fortune)
{
return Item.getItemFromBlock(TangibleShadows.shadowFurnaceIdle);
}
/**
* Returns a new instance of a block's tile entity class. Called on placing the block.
*/
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_)
{
return new TileEntityShadowFurnace();
}
@SideOnly(Side.CLIENT)
public IIcon getIcon(int p_149691_1_, int p_149691_2_)
{
return p_149691_1_ == 1 ? this.icon_Top : (p_149691_1_ == 0 ? this.icon_Top : (p_149691_1_ != p_149691_2_ ? this.blockIcon : this.icon_Front));
}
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister p_149651_1_)
{
this.blockIcon = p_149651_1_.registerIcon(TangibleShadows.MODID + ":shadowFurnace_side");
this.icon_Front = p_149651_1_.registerIcon(this.furnace_Active ? TangibleShadows.MODID + ":shadowFurnace_front_on" : TangibleShadows.MODID + ":shadowFurnace_front_off");
this.icon_Top = p_149651_1_.registerIcon(TangibleShadows.MODID + ":shadowFurnace_top");
}
///////////////////////////////////////////////////////////
/**
* Called whenever the block is added into the world. Args: world, x, y, z
*/
public void onBlockAdded(World p_149726_1_, int p_149726_2_, int p_149726_3_, int p_149726_4_)
{
super.onBlockAdded(p_149726_1_, p_149726_2_, p_149726_3_, p_149726_4_);
this.func_149930_e(p_149726_1_, p_149726_2_, p_149726_3_, p_149726_4_);
}
private void func_149930_e(World p_149930_1_, int p_149930_2_, int p_149930_3_, int p_149930_4_)
{
if (!p_149930_1_.isRemote)
{
Block block = p_149930_1_.getBlock(p_149930_2_, p_149930_3_, p_149930_4_ - 1);
Block block1 = p_149930_1_.getBlock(p_149930_2_, p_149930_3_, p_149930_4_ + 1);
Block block2 = p_149930_1_.getBlock(p_149930_2_ - 1, p_149930_3_, p_149930_4_);
Block block3 = p_149930_1_.getBlock(p_149930_2_ + 1, p_149930_3_, p_149930_4_);
byte b0 = 3;
if (block.func_149730_j() && !block1.func_149730_j())
{
b0 = 3;
}
if (block1.func_149730_j() && !block.func_149730_j())
{
b0 = 2;
}
if (block2.func_149730_j() && !block3.func_149730_j())
{
b0 = 5;
}
if (block3.func_149730_j() && !block2.func_149730_j())
{
b0 = 4;
}
p_149930_1_.setBlockMetadataWithNotify(p_149930_2_, p_149930_3_, p_149930_4_, b0, 2);
}
}
/**
* Called upon block activation (right click on the block.)
*/
public boolean onBlockActivated(World p_149727_1_, int p_149727_2_, int p_149727_3_, int p_149727_4_, EntityPlayer p_149727_5_, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_)
{
if (p_149727_1_.isRemote)
{
return true;
}
else
{
TileEntityFurnace tileentityfurnace = (TileEntityFurnace)p_149727_1_.getTileEntity(p_149727_2_, p_149727_3_, p_149727_4_);
if (tileentityfurnace != null)
{
p_149727_5_.func_146101_a(tileentityfurnace);
}
return true;
}
}
/**
* Update which block the furnace is using depending on whether or not it is burning
*/
public static void updateFurnaceBlockState(boolean p_149931_0_, World world, int x, int y, int z)
{
int l = world.getBlockMetadata(x, y, z);
TileEntity tileentity = world.getTileEntity(x, y, z);
field_149934_M = true;
if (p_149931_0_)
{
world.setBlock(x, y, z, TangibleShadows.shadowFurnaceActive);
}
else
{
world.setBlock(x, y, z, TangibleShadows.shadowFurnaceIdle);
}
field_149934_M = false;
world.setBlockMetadataWithNotify(x, y, z, l, 2);
if (tileentity != null)
{
tileentity.validate();
world.setTileEntity(x, y, z, tileentity);
}
}
/**
* Called when the block is placed in the world.
*/
public void onBlockPlacedBy(World p_149689_1_, int p_149689_2_, int p_149689_3_, int p_149689_4_, EntityLivingBase p_149689_5_, ItemStack p_149689_6_)
{
int l = MathHelper.floor_double((double)(p_149689_5_.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3;
if (l == 0)
{
p_149689_1_.setBlockMetadataWithNotify(p_149689_2_, p_149689_3_, p_149689_4_, 2, 2);
}
if (l == 1)
{
p_149689_1_.setBlockMetadataWithNotify(p_149689_2_, p_149689_3_, p_149689_4_, 5, 2);
}
if (l == 2)
{
p_149689_1_.setBlockMetadataWithNotify(p_149689_2_, p_149689_3_, p_149689_4_, 3, 2);
}
if (l == 3)
{
p_149689_1_.setBlockMetadataWithNotify(p_149689_2_, p_149689_3_, p_149689_4_, 4, 2);
}
if (p_149689_6_.hasDisplayName())
{
((TileEntityFurnace)p_149689_1_.getTileEntity(p_149689_2_, p_149689_3_, p_149689_4_)).func_145951_a(p_149689_6_.getDisplayName());
}
}
public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)
{
if (!field_149934_M)
{
TileEntityFurnace tileentityfurnace = (TileEntityFurnace)p_149749_1_.getTileEntity(p_149749_2_, p_149749_3_, p_149749_4_);
if (tileentityfurnace != null)
{
for (int i1 = 0; i1 < tileentityfurnace.getSizeInventory(); ++i1)
{
ItemStack itemstack = tileentityfurnace.getStackInSlot(i1);
if (itemstack != null)
{
float f = this.field_149933_a.nextFloat() * 0.8F + 0.1F;
float f1 = this.field_149933_a.nextFloat() * 0.8F + 0.1F;
float f2 = this.field_149933_a.nextFloat() * 0.8F + 0.1F;
while (itemstack.stackSize > 0)
{
int j1 = this.field_149933_a.nextInt(21) + 10;
if (j1 > itemstack.stackSize)
{
j1 = itemstack.stackSize;
}
itemstack.stackSize -= j1;
EntityItem entityitem = new EntityItem(p_149749_1_, (double)((float)p_149749_2_ + f), (double)((float)p_149749_3_ + f1), (double)((float)p_149749_4_ + f2), new ItemStack(itemstack.getItem(), j1, itemstack.getItemDamage()));
if (itemstack.hasTagCompound())
{
entityitem.getEntityItem().setTagCompound((NBTTagCompound)itemstack.getTagCompound().copy());
}
float f3 = 0.05F;
entityitem.motionX = (double)((float)this.field_149933_a.nextGaussian() * f3);
entityitem.motionY = (double)((float)this.field_149933_a.nextGaussian() * f3 + 0.2F);
entityitem.motionZ = (double)((float)this.field_149933_a.nextGaussian() * f3);
p_149749_1_.spawnEntityInWorld(entityitem);
}
}
}
p_149749_1_.func_147453_f(p_149749_2_, p_149749_3_, p_149749_4_, p_149749_5_);
}
}
super.breakBlock(p_149749_1_, p_149749_2_, p_149749_3_, p_149749_4_, p_149749_5_, p_149749_6_);
}
/**
* A randomly called display update to be able to add particles or other items for display
*/
@SideOnly(Side.CLIENT)
public void randomDisplayTick(World p_149734_1_, int p_149734_2_, int p_149734_3_, int p_149734_4_, Random p_149734_5_)
{
if (this.furnace_Active)
{
int l = p_149734_1_.getBlockMetadata(p_149734_2_, p_149734_3_, p_149734_4_);
float f = (float)p_149734_2_ + 0.5F;
float f1 = (float)p_149734_3_ + 0.0F + p_149734_5_.nextFloat() * 6.0F / 16.0F;
float f2 = (float)p_149734_4_ + 0.5F;
float f3 = 0.52F;
float f4 = p_149734_5_.nextFloat() * 0.6F - 0.3F;
if (l == 4)
{
p_149734_1_.spawnParticle("smoke", (double)(f - f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);
p_149734_1_.spawnParticle("flame", (double)(f - f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);
}
else if (l == 5)
{
p_149734_1_.spawnParticle("smoke", (double)(f + f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);
p_149734_1_.spawnParticle("flame", (double)(f + f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);
}
else if (l == 2)
{
p_149734_1_.spawnParticle("smoke", (double)(f + f4), (double)f1, (double)(f2 - f3), 0.0D, 0.0D, 0.0D);
p_149734_1_.spawnParticle("flame", (double)(f + f4), (double)f1, (double)(f2 - f3), 0.0D, 0.0D, 0.0D);
}
else if (l == 3)
{
p_149734_1_.spawnParticle("smoke", (double)(f + f4), (double)f1, (double)(f2 + f3), 0.0D, 0.0D, 0.0D);
p_149734_1_.spawnParticle("flame", (double)(f + f4), (double)f1, (double)(f2 + f3), 0.0D, 0.0D, 0.0D);
}
}
}
/**
* If this returns true, then comparators facing away from this block will use the value from
* getComparatorInputOverride instead of the actual redstone signal strength.
*/
public boolean hasComparatorInputOverride()
{
return true;
}
/**
* If hasComparatorInputOverride returns true, the return value from this is used instead of the redstone signal
* strength when this block inputs to a comparator.
*/
public int getComparatorInputOverride(World p_149736_1_, int p_149736_2_, int p_149736_3_, int p_149736_4_, int p_149736_5_)
{
return Container.calcRedstoneFromInventory((IInventory)p_149736_1_.getTileEntity(p_149736_2_, p_149736_3_, p_149736_4_));
}
/**
* Gets an item for the block being called on. Args: world, x, y, z
*/
@SideOnly(Side.CLIENT)
public Item getItem(World p_149694_1_, int p_149694_2_, int p_149694_3_, int p_149694_4_)
{
return Item.getItemFromBlock(Blocks.furnace);
}
} | [
"[email protected]"
] | |
05998d5eaff9232adfcb4505bcbfbbd3910407cb | 1115a228936e4423108cbaf3ba370a9f1a3519c5 | /app/src/main/java/com/doubanapp/hbj/douban/IModel/IHomeDayRecommendModel.java | c3513598b5c1b8431d4ff99b598c73481e65eebe | [] | no_license | wjx367/hbj | 5a73fbac133f3c0b31245b97eb32b6ec1be1b96c | d273f000dbfa3ff016a0de3ce05adba024eb3a44 | refs/heads/master | 2021-01-19T17:49:45.564677 | 2017-04-14T14:25:42 | 2017-04-14T14:25:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 521 | java | package com.doubanapp.hbj.douban.IModel;
import android.view.View;
import java.util.List;
/**
* Created by Administrator on 2017/4/7 0007.
*/
public interface IHomeDayRecommendModel extends IBaseModel {
void onHomeDayRecommendConnectNext(List<View> vpTitleData, List<String> androidData, List<String> frontData,
List<String> iosData, List<String> appData, List<View> restData,
List<View> moreRecommendData, List<View> welFareData);
}
| [
"[email protected]"
] | |
24286495a7b829d68091fab311b742e8fe6d7185 | f1bc9ed2aaa6b4f5ce7d129c4d53ec868d8defc2 | /src/corejava/concepts/strings/StringMethods.java | c7e307a54432345f49466eb8ea56f85e1d056c2b | [] | no_license | bis-test/LearnJava | 1261d185840f03aa3d777adc9a156ec54399cf0e | 668e7476f95f923ea6d5b353a7d4007d9fe3e241 | refs/heads/master | 2020-03-24T14:59:00.444895 | 2018-07-29T17:54:06 | 2018-07-29T17:54:06 | 142,782,763 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,695 | java | //@Author-Biswajit Sundara
//@Date-06/16/2018
//@Topic- Strings
//@Subtopic- Demonstration of different string methods
//@Status- In Progress
package corejava.concepts.strings;
public class StringMethods {
public static void main(String[] args) {
//1.toCharArray
//Demonstrate method toCharArray. This method converts a string to character array
String txt="Hello";
char[] chars= txt.toCharArray();
for(int i=0;i<txt.length();i++)
{
System.out.println(chars[i]);
}
//2.length()
/* Demonstrate method length(). This method returns the count of characters
Return type is int.
If the string is empty then it will return zero.*/
String txt1="World";
int len = txt1.length();
System.out.println("The length of string txt1= "+len);
String txt2="";
int len1 = txt2.length();
System.out.println("The length of string txt2= "+len1);
//3.charAt()
/* The Java String charAt() method returns the character at the specified index.
The index value should lie between 0 and length()-1.*/
String txt3="Hello World";
char ch1= txt3.charAt(1); //character at 2nd sequence
System.out.println(ch1);
//The below code will throw StringIndexOutOfBoundsException
//The index starts from zero and at the string length index there's nothing
//remember, the charAt function works until length-1.
//The below two lines are commented. Uncomment to see what happens
//char ch2=txt3.charAt(txt3.length());
//System.out.println(ch2);
//4.indexOf
/*This method returns the index within the string of the first occurrence of
the specified character or -1, if the character does not occur
There are 4 variants of this method, this is called method overloading
*/
String txt4="Hello World";
//This will print the index
int index1 = txt4.indexOf('W');
System.out.println("The index of W= " +index1);
//This will print -1 as Y doesn't exist
int index2=txt4.indexOf('Y');
System.out.println("The index of Y= "+index2);
//There are multiple l's so it will consider the first occurence of l
//It will always start from left by default
int index3=txt4.indexOf('l');
System.out.println("The index of l="+index3);
//4.1 indexOf(char ch,int start)
//This method returns the index within the string of the first occurence of the
//character, but the search will start from the specified index or-1 if the character
//doesn't occur
int index4=txt4.indexOf('l', 5);
System.out.println("The index of l after 5 characters= " +index4);
//4.2 indexOf(String str)
//his method returns the index within this string of the first occurrence of the specified substring.
//If it does not occur as a substring, -1 is returned.
String substr="Wor";
int index5= txt4.indexOf(substr);
//It will return the index of W as that's the first character
System.out.println("The index of substring "+substr+" is= "+index5);
//4.3 indexOf(String str, int start)
//This method returns the index within this string of the first occurrence of the specified substring,
//starting at the specified index. If it does not occur, -1 is returned.
String txt5="Hello Bis Hello Prinks";
String substr1="llo";
int start=0;
int index6=txt5.indexOf(substr1, start);
System.out.println("The index of substring "+substr1+" from "+start+" position= "+index6);
start=4;
index6=txt5.indexOf(substr1, start);
System.out.println("The index of substring "+substr1+" from "+start+" position= "+index6);
//5.lastIndexOf
//Returns the last index of the given character value or substring
//If it is not found, it returns -1
//The index counter starts from zero
//It also has similar functions like indexOf
String txt10="this is last index example";
int lindex=txt10.lastIndexOf('e');
System.out.println("The last index of e="+lindex);
//5.trim()
//Trims the white space before or after the string
//If space is in the middle then it will not be removed.
String txt6=" Hello";
String txt7="Biswajit ";
String txt8="Hello Biswajit";
System.out.println("String txt6(before trim)=" +txt6);
System.out.println("String txt7(before trim)=" +txt7);
System.out.println("String txt8(before trim)=" +txt8);
txt6= txt6.trim();
txt7=txt7.trim();
txt8=txt8.trim();
System.out.println("String txt6=" +txt6);
System.out.println("String txt6=" +txt7);
System.out.println("String txt6=" +txt8);
//6.toUpperCase
//This method converts string from lower case to uppercase.
String str="india";
String str1="IndIa";
System.out.println("The string is="+str);
System.out.println("The string is="+str1);
str=str.toUpperCase();
str1=str1.toUpperCase();
System.out.println("The string converted to uppercase="+str);
System.out.println("The string converted to uppercase="+str1);
//7.toLowerCase
//This method converts string from upper case to lowercase.
String str2="INDIA";
String str3="iNdiA";
System.out.println("The string is="+str2);
System.out.println("The string is="+str3);
str2=str2.toLowerCase();
str3=str3.toLowerCase();
System.out.println("The string converted to Lowercase="+str2);
System.out.println("The string converted to Lowercase="+str3);
//8.concat
//The java string concat() method combines specified string at the end of this string.
//It returns combined string. It is like appending another string.
String str4="Hey";
String str5="Hello";
String concat1= str4.concat(str5);
System.out.println(concat1);
//9.substring
//This method returns part of the string
String str6="javaisgood";
//starting index till the last
String substr2=str6.substring(3);
System.out.println("The substring="+substr2);
//starting index and end index
String substr3=str6.substring(3, 6);
System.out.println("The substring="+substr3);
//10.split
//Splits this string against given regular expression and returns a char array.
String str7="java string split method by bistest";
String[] words=str7.split("\\s");//splits the string based on whitespace
//String[] words=str7.split(" "); -- This will also work
for(String w:words)
{
System.out.println(w);
}
String str8="java@string@split@method@by@bistest";
String[] words1=str8.split("@");
for(String w:words1)
{
System.out.println(w);
}
//11.replace
//This method returns a string replacing all the old char or CharSequence to new char
//or CharSequence
String str9="javatpoint is a very good website";
//replacing characters
String repstr= str9.replace('a', 'e');
System.out.println(repstr);
//replacing strings
String repstr1= str9.replace("good", "bad");
System.out.println(repstr1);
//replace all - we can use regex
//This will remove the white spaces
String repall= str9.replaceAll("\\s", "");
System.out.println(repall);
//12.equals
//compares the two given strings based on the content of the string.
//If any character is not matched, it returns false. If all characters are matched,
//it returns true.
String str10="javatpoint";
String str11="javatpoint";
String str12="JAVATPOINT";
boolean st= str10.equals(str11);
System.out.println(st);
st=str10.equals(str12);
System.out.println(st);
st=str10.equalsIgnoreCase(str12);
System.out.println(st);
//13.toString
String str13="hello";
char[] chars1= str13.toCharArray();
String a=chars1.toString();
System.out.println("a"+a);
}
}
| [
"[email protected]"
] | |
53836edbc948927c2527da71b07db47873e89a41 | 1c1a8eeca1027725715a297d23b7283e0ebf1e58 | /arithmetic-core/src/main/java/se/wilhelmhedman/arithmetic/antlr/ArithmeticErrorListener.java | 50c10f4a63eefffc0ba62b5324f1c36a0749420f | [] | no_license | hedmanw/arithmetic | 6ab49ccc22afaf0e935e2f233efa3b82952adb88 | 62f909668d95a246dcacffa2b13e8ac2fdcafb0e | refs/heads/master | 2020-04-05T14:34:11.404449 | 2017-07-18T19:30:01 | 2017-07-18T19:30:01 | 94,684,193 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,935 | java | package se.wilhelmhedman.arithmetic.antlr;
import org.antlr.v4.runtime.ANTLRErrorListener;
import org.antlr.v4.runtime.Parser;
import org.antlr.v4.runtime.RecognitionException;
import org.antlr.v4.runtime.Recognizer;
import org.antlr.v4.runtime.atn.ATNConfigSet;
import org.antlr.v4.runtime.dfa.DFA;
import java.util.ArrayList;
import java.util.BitSet;
import java.util.List;
public class ArithmeticErrorListener implements ANTLRErrorListener {
private List<SyntaxError> syntaxErrors;
public ArithmeticErrorListener() {
syntaxErrors = new ArrayList<>();
}
@Override
public void syntaxError(Recognizer<?, ?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e) {
syntaxErrors.add(new SyntaxError(charPositionInLine, msg));
}
@Override
public void reportAmbiguity(Parser parser, DFA dfa, int i, int i1, boolean b, BitSet bitSet, ATNConfigSet atnConfigSet) {
System.out.println("ambiguity");
}
@Override
public void reportAttemptingFullContext(Parser parser, DFA dfa, int i, int i1, BitSet bitSet, ATNConfigSet atnConfigSet) {
System.out.println("context");
}
@Override
public void reportContextSensitivity(Parser parser, DFA dfa, int i, int i1, int i2, ATNConfigSet atnConfigSet) {
System.out.println("sensitivity");
}
public List<SyntaxError> getSyntaxErrors() {
return syntaxErrors;
}
public class SyntaxError {
private final int charPositionInLine;
private final String message;
public SyntaxError(int charPositionInLine, String message) {
this.charPositionInLine = charPositionInLine;
this.message = message;
}
public int getCharPositionInLine() {
return charPositionInLine;
}
public String getMessage() {
return message;
}
}
}
| [
"[email protected]"
] | |
587050a861e924dc2fe97872aadc0d4666a085d6 | 70a0b7f2947cad12903ddd6c9611a06821a1e316 | /app/src/main/java/org/sifa/application/sifa/Feedback.java | ded12c44322e13d525ea9d43bfd6d8a962b85f20 | [] | no_license | Shashank-Mahesh/SIFA-app | f51f575b95d326c752485a2ae39b088dba470186 | 348b1ef0a41300de63112bff8e2a24bbe52f2764 | refs/heads/master | 2020-12-13T16:42:12.834685 | 2020-01-17T05:11:09 | 2020-01-17T05:11:09 | 234,474,892 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,646 | java | package org.sifa.application.sifa;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import org.sifa.application.sifa.R;
/**
* A simple {@link Fragment} subclass.
*/
public class Feedback extends Fragment {
EditText subject = null, email = null, comments = null;
Button button;
public Feedback() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_feedback, container, false);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
subject = (EditText) getView().findViewById(R.id.subject_feedback_editText);
email = (EditText) getView().findViewById(R.id.email_feedback_editText);
comments = (EditText) getView().findViewById(R.id.comment_feedback_editText);
button = (Button) getView().findViewById(R.id.submit_button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getActivity(), "Thank you for your feedback!", Toast.LENGTH_LONG).show();
subject.setText("");
email.setText("");
comments.setText("");
//ToDo - set action after submitted
}
});
}
}
| [
"[email protected]"
] | |
9133c21c5bbc8ded8acd1b8f99b3ff14c9c7597c | fba6a65db11cfa08dfaf04ebca63f09815922678 | /src/main/java/com/example/controllers/AdminController.java | e980dcd3ba72b9a621575d2ac739f43dda60a67c | [] | no_license | amanrock1999/onlineshopping | d823da0f35f774eb00dd0d14e980f0a886a4ddb0 | ad8f5597652f097ea28931dde69d4730d6666d36 | refs/heads/main | 2023-05-31T07:08:10.918864 | 2021-06-25T05:21:47 | 2021-06-25T05:21:47 | 377,378,681 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,621 | java | package com.example.controllers;
import java.time.LocalDate;
import java.util.List;
import java.util.Optional;
import javax.servlet.http.HttpSession;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
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.multipart.MultipartFile;
import com.example.models.Category;
import com.example.models.Order;
import com.example.models.OrderDetails;
import com.example.models.Product;
import com.example.service.AdminUserService;
import com.example.service.CategoryService;
import com.example.service.CustomerService;
import com.example.service.OrderDetailsService;
import com.example.service.OrderService;
import com.example.service.ProductService;
@Controller
public class AdminController {
@Autowired private CategoryService catsrv;
@Autowired private ProductService prodsrv;
@Autowired private CustomerService custsrv;
@Autowired private AdminUserService adminsrv;
@Autowired private OrderService ordersrv;
@Autowired private OrderDetailsService odsrv;
@Autowired private HttpSession session;
@GetMapping("/dashboard")
public String dashboard(Model model) {
model.addAttribute("totalusers", custsrv.allCustomers().size());
model.addAttribute("totalproducts", prodsrv.allProducts().size());
model.addAttribute("totalcategories", catsrv.totalCategories());
model.addAttribute("totalorders", ordersrv.allOrders().size());
return "dashboard";
}
@GetMapping("/users")
public String customerlist(Model model){
model.addAttribute("users",custsrv.allCustomers());
return "customers";
}
@GetMapping("/orders")
public String orderslist(Model model){
model.addAttribute("orders", ordersrv.allOrders());
return "orders";
}
@PostMapping("/confirm/{id}")
public String confirmOrder(@PathVariable("id") int orderid,String sts){
ordersrv.confirmOrder(orderid,sts);
session.setAttribute("msg", "Order Confirmed successfully");
return "redirect:/orders";
}
@GetMapping("/details/{id}")
public String orderdetails(@PathVariable("id") int orderid, Model model){
Order order=ordersrv.getOrderDetails(orderid);
List<OrderDetails> odlist=odsrv.allItemsinOrder(orderid);
System.out.println("Total items : "+odlist.size());
model.addAttribute("cats", catsrv.getAllCategories());
model.addAttribute("o", order);
model.addAttribute("items",odlist);
model.addAttribute("cqty", odlist.size());
return "orderdetails";
}
@GetMapping("/reports")
public String report(Model model){
model.addAttribute("items", prodsrv.listAbouttoExpireProducts());
return "reports";
}
@GetMapping("/changepwd")
public String changepassword(){
return "achangepwd";
}
@PostMapping("/changepwd")
public String changepassword(String opwd,String pwd) {
if(adminsrv.updatePassword(opwd, pwd)) {
session.setAttribute("msg", "Password updated successfully");
}
else {
session.setAttribute("error", "Incorrect current password");
}
return "redirect:/changepwd";
}
@GetMapping("/products")
public String products(Model model) {
model.addAttribute("prods", prodsrv.allProducts());
model.addAttribute("totalprods", prodsrv.allProducts().size());
model.addAttribute("cats", catsrv.getAllCategories());
return "products";
}
@GetMapping("/delprod/{id}")
public String deleteproduct(@PathVariable("id") int id) {
prodsrv.deleteProduct(id);
session.setAttribute("msg", "Product deleted successfully");
return "redirect:/products";
}
@GetMapping("/editprod/{id}")
public String editproduct(@PathVariable("id") int id,Model model)
{
Product product=prodsrv.findProductById(id);
model.addAttribute("cats", catsrv.getAllCategories());
model.addAttribute("p", product);
return "editprod";
}
@PostMapping("/editprod/{id}")
public String saveEditProduct(@PathVariable("id") int id,Product p,String mfg,String expiry,String pname, String company, String salt,float price,int qty,int catid) {
prodsrv.editProduct(id,mfg,expiry,pname,company,salt,price,qty,catid);
System.err.println(p);
session.setAttribute("msg", "Product updated successfully");
return "redirect:/products";
}
@PostMapping("/products")
public String saveProduct(MultipartFile photo,Product p,String mfg,String expiry) {
p.setMfgdate(LocalDate.parse(mfg+"-01"));
p.setExpirydate(LocalDate.parse(expiry+"-01"));
Category cat=catsrv.findByCatId(p.getCatid());
p.setCategory(cat);
System.err.println(p);
prodsrv.saveProduct(p, photo);
session.setAttribute("msg", "Product saved successfully");
return "redirect:/products";
}
@GetMapping(path = {"/categories","/categories/{id}"})
public String categories(Model model,@PathVariable("id") Optional<Integer> id) {
if(id.isPresent()) {
Category cat=catsrv.findByCatId(id.get());
model.addAttribute("catid",cat.getCatid());
model.addAttribute("catname",cat.getCatname());
}else {
model.addAttribute("catid", catsrv.generateCatId());
}
model.addAttribute("cats", catsrv.getAllCategories());
return "category";
}
@PostMapping(path = {"/categories","/categories/{id}"})
public String saveCategory(Category cat) {
catsrv.saveCategory(cat);
session.setAttribute("msg", "Category saved successfully");
return "redirect:/categories";
}
@GetMapping("/logout")
public String logout(){
session.invalidate();
return "redirect:/";
}
}
| [
"[email protected]"
] | |
3ccd1c424d8645f0ea82affa9ce401435648b9ad | 037e4f7e212b99bc4d6bf6975171727f94c3e87a | /src/main/java/com/kaleido/klinops/repository/StudyProductRepository.java | 7246c04973d4d6d3b3ce89a90b33abe8aa1d8bbe | [
"BSD-3-Clause"
] | permissive | Kaleido-Biosciences/klinops | bdf40bea256e1082f0d95364a8855ec02502cbcb | f7a725d43302e33158a43fd36de6859906d986de | refs/heads/master | 2022-12-21T14:44:50.709608 | 2019-12-23T14:11:48 | 2019-12-23T14:11:48 | 228,701,746 | 0 | 0 | BSD-3-Clause | 2022-12-16T05:06:41 | 2019-12-17T21:07:16 | Java | UTF-8 | Java | false | false | 421 | java | package com.kaleido.klinops.repository;
import com.kaleido.klinops.domain.StudyProduct;
import org.springframework.data.jpa.repository.*;
import org.springframework.stereotype.Repository;
/**
* Spring Data repository for the StudyProduct entity.
*/
@SuppressWarnings("unused")
@Repository
public interface StudyProductRepository extends JpaRepository<StudyProduct, Long>, JpaSpecificationExecutor<StudyProduct> {
}
| [
"[email protected]"
] | |
e31f9607bcc86c91ac9250600c0f39f3f0eab83f | 2f434b04776fcee3c95b2d2ff5a0cfc37735162f | /lp-questionnaire-manager/src/main/java/eu/learnpad/qm/component/QuestionnaireGenerationStatus.java | 52675b4242c695f8d20a295db1bf59912a15c06f | [] | no_license | LearnPAd/learnpad | 683ad1803ef8fc04619ffe95f124b0a13f9585ed | 8c74b609dd555fb0852071e0a89915f32f4bccf4 | refs/heads/master | 2022-12-13T19:59:23.655058 | 2020-06-04T08:52:32 | 2020-06-04T08:52:32 | 22,754,193 | 12 | 33 | null | 2022-12-05T23:48:52 | 2014-08-08T10:19:46 | JavaScript | UTF-8 | Java | false | false | 1,037 | java | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This 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 software 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package eu.learnpad.qm.component;
/**
*
* @author gulyx
*/
public enum QuestionnaireGenerationStatus {
InProgress, Completed, NotAvailable
}
| [
"[email protected]"
] | |
32703e459766d3a29706da0e0b528384caa584ed | 8dfc31852c0a811634351ccfc5e7796ea3165d11 | /app/src/main/java/com/example/guobaba/myvabnote/MainActivity.java | 5304d1b7ff703752a1023cc4d7a91b3bce36e8a9 | [] | no_license | gzci/myVABnote | 559be678cd77bc9637b69da1c5b81a2c0f7340b0 | dfd8b78e1fb944fc0204bce3a0e19add16a5661c | refs/heads/master | 2020-04-09T07:11:06.826950 | 2018-12-03T10:52:32 | 2018-12-03T10:52:32 | 160,144,119 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,943 | java | package com.example.guobaba.myvabnote;
import android.app.ListActivity;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;
public class MainActivity extends Activity {
private EditText word;
private EditText wordMean;
private Button searchBut;
private Button insertBut;
private EditText input;
private ListView listView;
private MyDataBaseHelper dbHelper;
private SQLiteDatabase sqlDB;
SimpleAdapter simpleAdapter;
ArrayList<Map<String, String>> result = new ArrayList<Map<String, String>>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
word = (EditText) findViewById(R.id.editText1);
wordMean = (EditText) findViewById(R.id.editText2);
input = (EditText) findViewById(R.id.editText3);
insertBut = (Button) findViewById(R.id.button1);
searchBut = (Button) findViewById(R.id.button2);
listView = (ListView) findViewById(R.id.listView1);
dbHelper = new MyDataBaseHelper(MainActivity.this, "myDict.db3", 1);
searchMethod();
insertBut.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
insertMethod();
}
});
searchBut.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
searchMethod();
}
});
// listView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
// @Override
// public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
//
// if(result.remove(position)!=null){//这行代码必须有
// System.out.println("success");
//
// TextView mTextView1 = (TextView) view
// .findViewById(R.id.textView1);
// String string1 = mTextView1.getText().toString().trim();
// sqlDB = dbHelper.getReadableDatabase();
// sqlDB.execSQL("delete from dict where word like ? OR detail like ?", new String[] {
// string1 , string1 });
// Toast.makeText(getBaseContext(),string1, Toast.LENGTH_SHORT).show();
// }else {
// System.out.println("failed");
// }
//
// simpleAdapter.notifyDataSetChanged();
//
// return false;
// }
// });
this.registerForContextMenu(listView);
}
// 插入单词
protected void insertMethod() {
String strWord = word.getText().toString();
String strMean = wordMean.getText().toString();
// 插入生词记录
sqlDB = dbHelper.getReadableDatabase();
sqlDB.execSQL("INSERT INTO dict VALUES(NULL,?,?)", new String[] {
strWord, strMean });
Toast.makeText(getApplicationContext(), "插入成功", Toast.LENGTH_LONG)
.show();
}
// 查找单词
protected void searchMethod() {
result.clear();
String key = input.getText().toString();
Cursor cursor = dbHelper.getReadableDatabase().rawQuery(
"SELECT * FROM dict WHERE word LIKE ? OR detail LIKE ?",
new String[] { "%" + key + "%", "%" + key + "%" });
while (cursor.moveToNext()) {
Map<String, String> map = new HashMap<String, String>();
map.put("word", cursor.getString(1));
map.put("detail", cursor.getString(2));
result.add(map);
}
simpleAdapter = new SimpleAdapter(
getApplicationContext(), result, R.layout.line, new String[] {
"word", "detail" }, new int[] { R.id.textView1,
R.id.textView2 });
listView.setAdapter(simpleAdapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
menu.setHeaderTitle("选择操作");
menu.add(0,3,Menu.NONE,"添加到生词本");
menu.add(0,4,Menu.NONE,"删除");
}
@Override
public boolean onContextItemSelected(MenuItem item) {
AdapterView.AdapterContextMenuInfo menuInfo = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo();
switch (item.getItemId()) {
case 1:
// 发送...
break;
case 2:
//标记...
break;
case 3:
//重命名...
break;
case 4:
//删除列表项...
int pos=(int)listView.getAdapter().getItemId(menuInfo.position);
if(result.remove(pos)!=null){//这行代码必须有
System.out.println("success");
TextView mTextView1 = (TextView) menuInfo.targetView
.findViewById(R.id.textView1);
String string1 = mTextView1.getText().toString().trim();
sqlDB = dbHelper.getReadableDatabase();
sqlDB.execSQL("delete from dict where word like ? OR detail like ?", new String[] {
string1 , string1 });
Toast.makeText(getBaseContext(),string1+"删除成功", Toast.LENGTH_SHORT).show();
}else {
System.out.println("failed");
}
simpleAdapter.notifyDataSetChanged();
break;
default:
return super.onContextItemSelected(item);
}
return true;
}
}
| [
"[email protected]"
] | |
4dfc95c32b73eb467dd874e30ab4bb94b2268b41 | 5dbf1a5a43397644dd735e77377665d1c98e8a07 | /src/test/java/com/my/dao/MessageDaoTest.java | a746bb4c1a63c42975a5031d17d6ccd33f85b063 | [] | no_license | vlad-shevchenko/ugly-blog | be24c4fe2ab6e6abba0baeea037ce87f03c7a933 | d100ceb2ab11b4a573db10b131d5467c515322ab | refs/heads/master | 2020-05-20T05:59:38.782471 | 2015-01-04T10:03:27 | 2015-01-04T10:03:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,421 | java | package com.my.dao;
import com.my.dao.interfaces.MessageDao;
import com.my.dao.interfaces.UserDao;
import com.my.model.Message;
import com.my.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.testng.AbstractTransactionalTestNGSpringContextTests;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import java.util.List;
import static com.my.test.DomainObjectComparator.assertDeepEquals;
import static org.testng.Assert.*;
@ContextConfiguration("classpath:test-spring-config.xml")
public class MessageDaoTest extends AbstractTransactionalTestNGSpringContextTests {
@Autowired
private UserDao userDao;
@Autowired
private MessageDao messageDao;
private User sender;
private User receiver;
@BeforeMethod
public void userCreating() throws Exception {
sender = new User("sender", "sender", "[email protected]");
receiver = new User("receiver", "receiver", "[email protected]");
userDao.addUser(sender);
userDao.addUser(receiver);
}
@Test
public void testIdReturned() throws Exception {
Message sentMsg = new Message(sender, receiver, "Message text");
long sentId = messageDao.sendMessage(sentMsg);
Message receivedMsg = messageDao.getMessage(sentId);
assertDeepEquals(receivedMsg, sentMsg);
}
@Test
public void testSendAndReceiveMessage() throws Exception {
Message sentMsg = new Message(sender, receiver, "Message text");
long id = messageDao.sendMessage(sentMsg);
Message receivedMsg = messageDao.getMessage(id);
assertDeepEquals(receivedMsg, sentMsg);
}
@Test
public void testFlagsSet() throws Exception {
Message sentMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentMsg);
assertFalse(sentMsg.isDeletedBySender());
assertFalse(sentMsg.isDeletedByReceiver());
assertFalse(sentMsg.isRead());
}
@Test
public void testDateNotNull() throws Exception {
Message sentMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentMsg);
assertNotNull(sentMsg.getDate());
}
@Test
public void testGetIncomingMessages() throws Exception {
Message sentMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentMsg);
List<Message> messageList = messageDao.getIncomingMessages(receiver);
assertEquals(messageList.size(), 1);
Message msg = messageList.get(0);
assertDeepEquals(msg, sentMsg);
}
@Test
public void testGetOutcomingMessages() throws Exception {
Message sentMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentMsg);
List<Message> messageList = messageDao.getOutcomingMessages(sender);
assertEquals(messageList.size(), 1);
Message receivedMsg = messageList.get(0);
assertDeepEquals(receivedMsg, sentMsg);
}
@Test
public void testGetIncomingMessagesByPage() throws Exception {
Message sentFirstMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentFirstMsg);
for (int i = 1; i < 30; ++i) {
Message sentMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentMsg);
}
List<Message> messageList = messageDao.getIncomingMessagesForPage(receiver, 2, 20);
assertEquals(messageList.size(), 10);
Message receivedFirstMsg = messageList.get(0);
assertDeepEquals(receivedFirstMsg, sentFirstMsg);
}
@Test
public void testGetOutcomingMessagesByPage() throws Exception {
Message sentFirstMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentFirstMsg);
for (int i = 1; i < 30; ++i) {
Message sentMsg = new Message(sender, receiver, "Message text");
messageDao.sendMessage(sentMsg);
}
List<Message> messageList = messageDao.getOutcomingMessagesForPage(sender, 2, 20);
assertEquals(messageList.size(), 10);
Message receivedFirstMsg = messageList.get(0);
assertDeepEquals(receivedFirstMsg, sentFirstMsg);
}
}
| [
"[email protected]"
] | |
f71272d53b8f292aeef39b1586bc091fd2dbbe17 | af2b3ba0c64f3b4c9d2059f73e79d4c377a0b5d1 | /AndroidStudioProjects/CriminalIntentChallenge15.1/app/src/main/java/com/bignerdranch/android/criminalintent/CrimeLab.java | d868a819075c8e0ee5d41335e477166e020319a3 | [] | no_license | xuelang201201/Android | 495b411a3bcdf70969ff01cf8fcb7ee8ea5abfd8 | 0829c4904193c07cb41048543defae83f6c5a226 | refs/heads/master | 2022-05-06T09:09:48.921737 | 2020-04-22T08:41:15 | 2020-04-22T08:41:15 | 257,838,791 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,884 | java | package com.bignerdranch.android.criminalintent;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import com.bignerdranch.android.criminalintent.database.CrimeDbSchema.CrimeBaseHelper;
import com.bignerdranch.android.criminalintent.database.CrimeDbSchema.CrimeCursorWrapper;
import com.bignerdranch.android.criminalintent.database.CrimeDbSchema.CrimeDbSchema.CrimeTable;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class CrimeLab {
private static CrimeLab sCrimeLab;
private Context mContext;
private SQLiteDatabase mDatabase;
public static CrimeLab get(Context context) {
if (sCrimeLab == null) {
sCrimeLab = new CrimeLab(context);
}
return sCrimeLab;
}
private CrimeLab(Context context) {
// getApplicationContext得到的是应用程序的context,生命周期是整个程序的生命周期
mContext = context.getApplicationContext();
mDatabase = new CrimeBaseHelper(mContext).getWritableDatabase();
}
public void addCrime(Crime c) {
ContentValues values = getContentValues(c);
// 第一个参数是数据库表名,第三个参数是要写入的数据
// 第二个参数是nullColumnHack
mDatabase.insert(CrimeTable.NAME, null, values);
}
public void deleteCrime(Crime crime) {
mDatabase.delete(
CrimeTable.NAME,
CrimeTable.Cols.UUID + " = ?",
new String[] {crime.getId().toString()}
);
}
public List<Crime> getCrimes() {
// return new ArrayList<>();
List<Crime> crimes = new ArrayList<>();
CrimeCursorWrapper cursor = queryCrimes(null, null);
try {
cursor.moveToFirst();
while (! cursor.isAfterLast()) {
crimes.add(cursor.getCrime());
cursor.moveToNext();
}
} finally {
cursor.close();
}
return crimes;
}
public Crime getCrime(UUID id) {
// return null;
CrimeCursorWrapper cursor = queryCrimes(
CrimeTable.Cols.UUID + " = ?",
new String[] { id.toString() }
);
try {
if (cursor.getCount() == 0) {
return null;
}
cursor.moveToFirst();
return cursor.getCrime();
} finally {
cursor.close();
}
}
/**
* 使用ContentValues,新增数据库记录更新方法
* @param crime
*/
public void updateCrime(Crime crime) {
String uuidString = crime.getId().toString();
ContentValues values = getContentValues(crime);
mDatabase.update(CrimeTable.NAME, values,
CrimeTable.Cols.UUID + " = ?",
new String[] { uuidString });
}
private static ContentValues getContentValues(Crime crime) {
ContentValues values = new ContentValues();
values.put(CrimeTable.Cols.UUID, crime.getId().toString());
values.put(CrimeTable.Cols.TITLE, crime.getTitle());
values.put(CrimeTable.Cols.DATE, crime.getDate().getTime());
values.put(CrimeTable.Cols.SOLVED, crime.isSolved() ? 1 : 0);
values.put(CrimeTable.Cols.SUSPECT, crime.getSuspect());
return values;
}
private CrimeCursorWrapper queryCrimes(String whereClause, String[] whereArgs) {
Cursor cursor = mDatabase.query(
CrimeTable.NAME,
null, // Columns - null selects all columns
whereClause,
whereArgs,
null, // groupBy
null, // having
null // orderBy
);
return new CrimeCursorWrapper(cursor);
}
}
| [
"[email protected]"
] | |
7c6d563155a62f42c1cca98d454eb111227845c3 | 8cb2d1691b706111d40293274dfe99adfbad99c8 | /src/main/java/com/difusores/supermercado/web/controller/ProdutoController.java | 5ad5fa5ab9c18e1c285fd97a6c54aea48e07e50e | [] | no_license | ThiagoCF05/supermercado | 7c9d402e9d166d1002deb384c060e76cb9219e72 | 2671f37a6d497311086a9b32abeda6496c866ee0 | refs/heads/master | 2016-09-10T16:51:19.217816 | 2014-11-09T01:39:56 | 2014-11-09T01:39:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,300 | java | package com.difusores.supermercado.web.controller;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.User;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.difusores.supermercado.service.ProdutoService;
import com.difusores.supermercado.util.PaginationInfo;
import com.difusores.supermercado.web.data.ProdutoUI;
@Controller
@RequestMapping(value = "/produtos")
public class ProdutoController {
@Autowired
ProdutoService service;
private Logger logger = Logger.getLogger(ProdutoController.class);
@RequestMapping(value = "/list", method = RequestMethod.GET)
public String list(@RequestParam(required = false) String page,
@RequestParam(required = false) String pageSize, Model model){
int pageLimit = pageSize != null ? Integer.parseInt(pageSize) : 20;
int currentPage = page != null ? Integer.parseInt(page) : 1;
String listAction = "produtos/list";
Pageable pageable = new PageRequest(currentPage - 1, pageLimit);
Page<ProdutoUI> produtos = service.findAll(pageable);
PaginationInfo pageInfo = new PaginationInfo(currentPage,
produtos.getTotalElements(), pageLimit, listAction);
model.addAttribute("produtos", produtos.getContent());
model.addAttribute("pageInfo", pageInfo);
logger.debug("Pageable :: total: " + produtos.getTotalElements()
+ " questions: " + produtos.getContent());
return "produto/list";
}
@RequestMapping(value = "/view/{id:.*}", method = RequestMethod.GET)
public String view(@PathVariable String id, Model model){
ProdutoUI produto = service.find(id);
model.addAttribute("produto", produto);
return "produto/add";
}
@RequestMapping(value = "/add", method = RequestMethod.GET)
public String add(Model model){
ProdutoUI produtoUI = new ProdutoUI();
model.addAttribute("produto", produtoUI);
return "produto/add";
}
@RequestMapping(value = "/add", method = RequestMethod.POST)
public String add(@ModelAttribute("produto") ProdutoUI produto, Model model){
User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
produto.setUser(user.getUsername());
if(produto.getId() != null){
if(produto.getId().isEmpty())
produto.setId(null);
}
service.create(produto);
return "redirect:/produtos/list";
}
@ResponseBody
@RequestMapping(value = "/delete/{id:.*}", method = RequestMethod.GET)
public String delete(@PathVariable String id, Model model){
boolean resultado = service.delete(id);
if(resultado)
return "Produto removido com sucesso.";
else
return "Falha ao remover produto.";
}
}
| [
"[email protected]"
] | |
f0eb9254b3516d4d5246ec0d80d24d1f0a7f6305 | 8734b6a223d9cebf98e5993403fa402100fd31a5 | /app/libs/TencentMapSDK_Android_2D_v1.2.8/TencentMapSDKDemo_Raster_ADT/src/com/tencent/mapsdk/raster/demo/PolylineActivity.java | c7cab8bdb514e282cd4122be9a4804758fbc5445 | [
"Apache-2.0"
] | permissive | StoreManager/ManagerStore | 7c59aa5de1316c4d14a39371174fc74fe723d975 | ed0f6ea2b356c229088c0b93ae0d03a299dd0cb1 | refs/heads/master | 2021-09-13T01:54:49.295549 | 2018-04-23T16:34:59 | 2018-04-23T16:34:59 | 111,076,339 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,886 | java | package com.tencent.mapsdk.raster.demo;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
import com.tencent.mapsdk.raster.model.BitmapDescriptorFactory;
import com.tencent.mapsdk.raster.model.LatLng;
import com.tencent.mapsdk.raster.model.Polyline;
import com.tencent.mapsdk.raster.model.PolylineOptions;
import com.tencent.tencentmap.mapsdk.map.CameraUpdateFactory;
import com.tencent.tencentmap.mapsdk.map.QSupportMapFragment;
import com.tencent.tencentmap.mapsdk.map.TencentMap;
import java.util.ArrayList;
import java.util.List;
public class PolylineActivity extends FragmentActivity {
private TencentMap tencentMap;
private Polyline polyline;
private Button btnAddPolyline;
private Button btnRemovePolyline;
private SeekBar sbWidth;
private SeekBar sbHue;
private SeekBar sbAlpha;
private Polyline roadLine;
@Override
protected void onCreate(Bundle arg0) {
// TODO Auto-generated method stub
super.onCreate(arg0);
setContentView(R.layout.activity_polyline);
init();
bindListener();
}
protected void init() {
FragmentManager fm = getSupportFragmentManager();
QSupportMapFragment mapFragment =
(QSupportMapFragment)fm.findFragmentById(R.id.frag_map);
tencentMap = mapFragment.getMapView().getMap();
tencentMap.moveCamera(CameraUpdateFactory.zoomTo(10f));
btnAddPolyline = (Button)findViewById(R.id.btn_add_polyline);
btnRemovePolyline = (Button)findViewById(R.id.btn_remove_polyline);
sbWidth = (SeekBar)findViewById(R.id.sb_width);
sbAlpha = (SeekBar)findViewById(R.id.sb_transparency);
sbHue = (SeekBar)findViewById(R.id.sb_hue);
}
protected void bindListener() {
OnClickListener onClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.btn_add_polyline:
addPolyLine();
addRoadLine();
break;
case R.id.btn_remove_polyline:
if (polyline != null) {
polyline.remove();
polyline = null;
}
if (roadLine != null) {
roadLine.remove();
roadLine = null;
}
break;
default:
break;
}
}
};
btnAddPolyline.setOnClickListener(onClickListener);
btnRemovePolyline.setOnClickListener(onClickListener);
OnSeekBarChangeListener onSeekBarChangeListener = new OnSeekBarChangeListener() {
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
// TODO Auto-generated method stub
if (polyline == null) {
return;
}
switch (seekBar.getId()) {
case R.id.sb_width:
polyline.setWidth(progress);
break;
case R.id.sb_transparency:
polyline.setColor(Color.HSVToColor(progress,
new float[]{sbHue.getProgress(), 1f, 1f}));
break;
case R.id.sb_hue:
polyline.setColor(Color.HSVToColor(
sbAlpha.getProgress(),
new float[]{progress, 1f, 1f}));
break;
default:
break;
}
}
};
sbHue.setOnSeekBarChangeListener(onSeekBarChangeListener);
sbAlpha.setOnSeekBarChangeListener(onSeekBarChangeListener);
sbWidth.setOnSeekBarChangeListener(onSeekBarChangeListener);
}
protected void addPolyLine() {
if (polyline != null) {
return;
}
List<LatLng> latLngs = new ArrayList<LatLng>();
latLngs.add(new LatLng(39.999391,116.135972));
latLngs.add(new LatLng(39.898323,116.057694));
latLngs.add(new LatLng(39.900430,116.265061));
latLngs.add(new LatLng(39.955192,116.140092));
polyline = tencentMap.addPolyline(new PolylineOptions().
addAll(latLngs).
color(Color.HSVToColor(sbAlpha.getProgress(), new float[]{sbHue.getProgress(), 1f, 1f})).
width(sbWidth.getProgress()));
}
protected void addRoadLine() {
if (roadLine != null) {
return;
}
List<LatLng> latLngs = new ArrayList<LatLng>();
latLngs.add(new LatLng(39.939391,116.135972));
latLngs.add(new LatLng(39.828323,116.057694));
latLngs.add(new LatLng(39.840430,116.265061));
latLngs.add(new LatLng(39.895192,116.140092));
roadLine = tencentMap.addPolyline(new PolylineOptions().
addAll(latLngs).
color(0xff0066CC).
width(10).
arrowTexture(BitmapDescriptorFactory.fromAsset("texture_arrow.png")).
arrowGap(30).
edgeColor(0xff0072E3).
edgeWidth(5));
}
}
| [
"[email protected]"
] | |
339326c6b3bdb08530829d80cfcb01ee2c0ab00b | 1209ba0e60f00abed54a13c62ee550f8937ac99d | /hash/src/test/java/com/kv/hash/ExampleUnitTest.java | 4bdf292a65ddef6fbeda791a192c49c360c429c1 | [] | no_license | kevinffk/CipherSample | b1267849c88fa1bb33a8912fba78a5f1f789a8ee | 0f721fbc32274863cb80363abef0d2b551a82baa | refs/heads/master | 2021-09-03T15:04:18.555354 | 2018-01-09T02:49:48 | 2018-01-09T02:49:48 | 115,972,510 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 389 | java | package com.kv.hash;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
} | [
"[email protected]"
] | |
54f31b4102500be9880e2a18a884247898c56a8a | f10447c0e6c0a4f719ddbdc8a4a86b7d2186a6cf | /src/main/java/com/project/demoSpring/repositories/OrderItemRepository.java | 41226413e2297c8bc599783af3b79fa7144abfc0 | [] | no_license | Daiven75/demo-spring-java-11 | 9fb6a5fd2a10aed4e4c492b9847598e63575df86 | 9d9cbc55e94ea89282c0eb9d32ea4484322ed5e4 | refs/heads/master | 2020-12-09T03:19:28.161822 | 2020-02-09T23:48:34 | 2020-02-09T23:48:34 | 233,175,711 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 240 | java | package com.project.demoSpring.repositories;
import org.springframework.data.jpa.repository.JpaRepository;
import com.project.demoSpring.entities.OrderItem;
public interface OrderItemRepository extends JpaRepository<OrderItem, Long>{
}
| [
"[email protected]"
] | |
09892f5a8dfda234d9e194e7337b8672d49ed62e | 5be436a5d379e583ce8c0892fb829e6722d29ee1 | /main/java/com/raizunne/miscellany/block/FoodPackager.java | ae94d684bb267ac638f92a1508e53191d355e8bb | [
"Apache-2.0"
] | permissive | Raizunne/Miscellany | afc2f26ce56f262335f666c3ac04bbb8682868d3 | 0eacd0fd5efb3507fe1c5180b5d33d68703e324a | refs/heads/master | 2021-03-12T23:39:30.795662 | 2014-12-13T06:35:02 | 2014-12-13T06:35:02 | 23,031,897 | 1 | 0 | null | 2014-12-05T18:50:49 | 2014-08-17T02:54:41 | Java | UTF-8 | Java | false | false | 3,741 | java | /**
Code made by Raizunne as a part of Raizunne's Miscellany
Source code found at github.com/Raizunne
*/
package com.raizunne.miscellany.block;
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import com.raizunne.miscellany.Miscellany;
import com.raizunne.miscellany.tileentities.TileEntityFoodPackager;
import cpw.mods.fml.common.network.internal.FMLNetworkHandler;
public class FoodPackager extends BlockContainer {
TileEntityFoodPackager packager;
public FoodPackager(Material material) {
super(material);
setBlockName("foodpackager");
setCreativeTab(Miscellany.miscTab);
setHarvestLevel("pickaxe", 2);
setHardness(1.0F);
setBlockTextureName("miscellany:FoodPackager");
}
@Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_) {
if(!world.isRemote){
if(player.isSneaking()==false){
FMLNetworkHandler.openGui(player, Miscellany.instance, 0, world, x, y, z);
}
return true;
}
return true;
}
@Override
public void randomDisplayTick(World world, int x, int y, int z, Random random) {
TileEntityFoodPackager tileentity = (TileEntityFoodPackager)world.getTileEntity(x, y, z);
this.packager = tileentity;
tileentity.getWorldObj().scheduleBlockUpdate(tileentity.xCoord, tileentity.yCoord, tileentity.zCoord, tileentity.getWorldObj().getBlock(tileentity.xCoord, tileentity.yCoord, tileentity.zCoord), 400);
if(tileentity.getConvertingProgress()>=78){
if(world.isRemote){
// world.playSound((double)x, (double)y, (double)z, "mob.irongolem.hit", 0.5F, 2F, true);
// world.playSound((double)x, (double)y, (double)z, "mob.irongolem.hit", 0.5F, -1F, true);
}else{
}
}
}
@Override
public void updateTick(World world, int z, int y, int x, Random random) {
TileEntityFoodPackager tileentity = (TileEntityFoodPackager)world.getTileEntity(x, y, z);
}
@Override
public TileEntity createNewTileEntity(World world, int i) {
return new TileEntityFoodPackager();
}
@Override
public void breakBlock(World world, int x, int y, int z, Block block, int meta) {
TileEntityFoodPackager tile = (TileEntityFoodPackager)world.getTileEntity(x, y, z);
EntityItem item;
for(int i=0; i<tile.getSizeInventory(); i++){
if(tile.getStackInSlot(i)!=null){
item = new EntityItem(world, x, y, z, tile.getStackInSlot(i));
world.spawnEntityInWorld(item);
}
}
super.breakBlock(world, x, y, z, block, meta);
}
@Override
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase entityLiving, ItemStack itemstack) {
int direction = MathHelper.floor_double((double) (entityLiving.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3;
world.setBlockMetadataWithNotify(x, y, z, direction, 0);
// System.out.println(world.getBlockMetadata(x, y, z));
}
@Override
public void onBlockClicked(World world, int x, int y, int z, EntityPlayer player) {
// System.out.println(world.getBlockMetadata(x, y, z));
}
@Override
public boolean isOpaqueCube(){
return false;
}
@Override
public boolean renderAsNormalBlock() {
return false;
}
@Override
public int getRenderType() {
return -1;
}
}
| [
"[email protected]"
] | |
38672278cd8839ad6113c713d0bea68d6eb1a75b | 7fb09c3c288ba4325e9196994d691d5688194e24 | /src/main/java/by/iba/railway/eticket/xml/objs/request/eticket/RegistrationRequest.java | ea8469ef2a08b1f67df55ff3ef57c69e826705b7 | [] | no_license | mrdaddy/XMLGate | 36fd046a73357e698d321b1f0276142682f33d3d | 4f98573b14e5d253b9023f34ffe30a555b9d98e4 | refs/heads/master | 2020-03-29T05:04:34.861330 | 2019-02-08T08:44:42 | 2019-02-08T08:44:42 | 149,565,171 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 832 | java | package by.iba.railway.eticket.xml.objs.request.eticket;
import by.iba.railway.eticket.xml.objs.request.BaseRequest;
import by.iba.railway.eticket.xml.objs.request.type.common.OrderType;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "GtETicket_Request")
@XmlType(name = "GtETicket_RequestType", propOrder = {
"order"
})
public class RegistrationRequest extends BaseRequest {
@XmlElement(name = "Order", required = true)
protected OrderType order;
public RegistrationRequest() {
type = "Registration";
}
public RegistrationRequest(OrderType order) {
this();
this.order = order;
}
public OrderType getOrder() {
return order;
}
public void setOrder(OrderType order) {
this.order = order;
}
}
| [
"[email protected]"
] | |
530fc2546ba1ec35f17827e65135796371ed345f | cb5310ae9cb5a81c191a3e2f358b94f463b2fa6b | /tests/robovm/src/test/java/org/robovm/rt/bro/GlobalValueTest.java | 68429b997a8390d5470780d114d0ea1fe588d0b9 | [] | no_license | jiangwh/robovm | a3da6d97083eab70ddeb4942d5bafa82d231aec2 | a58b3a1928a60ea132b41cd0e51fae5550e224f5 | refs/heads/master | 2020-12-25T04:47:23.403516 | 2014-07-17T00:35:34 | 2014-07-17T00:35:34 | 21,945,788 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,543 | java | /*
* Copyright (C) 2012 Trillian Mobile AB
*
* 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.robovm.rt.bro;
import static org.junit.Assert.*;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.IntBuffer;
import java.nio.LongBuffer;
import java.util.Arrays;
import org.junit.Before;
import org.junit.Test;
import org.robovm.rt.VM;
import org.robovm.rt.bro.annotation.Array;
import org.robovm.rt.bro.annotation.ByRef;
import org.robovm.rt.bro.annotation.ByVal;
import org.robovm.rt.bro.annotation.GlobalValue;
import org.robovm.rt.bro.annotation.MachineSizedFloat;
import org.robovm.rt.bro.annotation.MachineSizedSInt;
import org.robovm.rt.bro.annotation.MachineSizedUInt;
import org.robovm.rt.bro.annotation.StructMember;
import org.robovm.rt.bro.ptr.Ptr;
/**
* Tests {@link GlobalValue} methods.
*/
public class GlobalValueTest {
public static final class Point extends Struct<Point> {
@StructMember(0)
public native int x();
@StructMember(1)
public native int y();
@StructMember(0)
public native Point x(int x);
@StructMember(1)
public native Point y(int y);
}
public static final class PointPtr extends Ptr<Point, PointPtr> {}
public enum SimpleEnum {
V1, V2, V3
}
public enum TestValuedEnum implements ValuedEnum {
VM1(-1), V100(100), V1000(1000), V10000(10000);
private final int n;
private TestValuedEnum(int n) {
this.n = n;
}
public long value() {
return n;
}
}
public static final class TestBits extends Bits<TestBits> {
public static final TestBits V1 = new TestBits(1);
public static final TestBits V2 = new TestBits(2);
public static final TestBits V4 = new TestBits(4);
public static final TestBits V8 = new TestBits(8);
private static final TestBits[] VALUES = _values(TestBits.class);
private TestBits(long value) { super(value); }
private TestBits(long value, long mask) { super(value, mask); }
@Override
protected TestBits wrap(long value, long mask) {
return new TestBits(value, mask);
}
@Override
protected TestBits[] _values() {
return VALUES;
}
}
private static void bind(Class<?> cls) {
long ptr = VM.getLong(VM.getObjectAddress(memory) + EFFECTIVE_DIRECT_ADDRESS_OFFSET);
for (Method m : cls.getDeclaredMethods()) {
if (m.getAnnotation(GlobalValue.class) != null) {
VM.bindBridgeMethod(m, ptr);
}
}
}
static final ByteBuffer memory = ByteBuffer.allocateDirect(1024);
private static final int EFFECTIVE_DIRECT_ADDRESS_OFFSET;
static {
try {
Field f1 = Buffer.class.getDeclaredField("effectiveDirectAddress");
if (f1.getType() != long.class) {
throw new Error("java.nio.Buffer.effectiveDirectAddress should be a long");
}
EFFECTIVE_DIRECT_ADDRESS_OFFSET = VM.getInstanceFieldOffset(VM.getFieldAddress(f1));
} catch (NoSuchFieldException e) {
throw new Error(e);
}
bind(GlobalValueTest.class);
}
@Before
public void setup() {
memory.clear();
while (memory.hasRemaining()) {
memory.put((byte) 0);
}
memory.clear();
}
@GlobalValue public static native byte byteGetter();
@GlobalValue public static native void byteSetter(byte b);
@GlobalValue public static native short shortGetter();
@GlobalValue public static native void shortSetter(short b);
@GlobalValue public static native char charGetter();
@GlobalValue public static native void charSetter(char b);
@GlobalValue public static native int intGetter();
@GlobalValue public static native void intSetter(int b);
@GlobalValue public static native long longGetter();
@GlobalValue public static native void longSetter(long b);
@GlobalValue public static native float floatGetter();
@GlobalValue public static native void floatSetter(float b);
@GlobalValue public static native double doubleGetter();
@GlobalValue public static native void doubleSetter(double b);
@GlobalValue public static native @ByVal Point structByValGetter();
@GlobalValue public static native void structByValSetter(@ByVal Point b);
@GlobalValue public static native @ByRef Point structByRefGetter();
@GlobalValue public static native void structByRefSetter(@ByRef Point b);
@GlobalValue public static native SimpleEnum enumGetter();
@GlobalValue public static native void enumSetter(SimpleEnum b);
@GlobalValue public static native TestValuedEnum valuedEnumGetter();
@GlobalValue public static native void valuedEnumSetter(TestValuedEnum b);
@GlobalValue public static native TestBits bitsGetter();
@GlobalValue public static native void bitsSetter(TestBits b);
@GlobalValue public static native PointPtr ptrGetter();
@GlobalValue public static native void ptrSetter(PointPtr b);
@GlobalValue public static native @Array(10) String arrayAsStringGetter();
@GlobalValue public static native void arrayAsStringSetter(@Array(10) String b);
@GlobalValue public static native @Array(10) ByteBuffer arrayAsByteBufferGetter();
@GlobalValue public static native void arrayAsByteBufferSetter(@Array(10) ByteBuffer b);
@GlobalValue public static native @Array(10) byte[] arrayAsByteArrayGetter();
@GlobalValue public static native void arrayAsByteArraySetter(@Array(10) byte[] b);
@GlobalValue public static native @MachineSizedFloat double machineSizedFloatGetterD();
@GlobalValue public static native void machineSizedFloatSetterD(@MachineSizedFloat double b);
@GlobalValue public static native @MachineSizedFloat float machineSizedFloatGetterF();
@GlobalValue public static native void machineSizedFloatSetterF(@MachineSizedFloat float b);
@GlobalValue public static native @MachineSizedSInt long machineSizedSIntGetter();
@GlobalValue public static native void machineSizedSIntSetter(@MachineSizedSInt long b);
@GlobalValue public static native @MachineSizedUInt long machineSizedUIntGetter();
@GlobalValue public static native void machineSizedUIntSetter(@MachineSizedUInt long b);
@Test
public void testByte() throws Exception {
assertEquals(0, memory.get(0));
assertEquals(0, byteGetter());
byteSetter((byte) 0xff);
assertEquals(0xff, memory.get(0) & 0xff);
assertEquals(0xff, byteGetter() & 0xff);
}
@Test
public void testShort() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asShortBuffer().get(0));
assertEquals(0, shortGetter());
shortSetter((short) 0xffff);
assertEquals(0xffff, memory.order(ByteOrder.nativeOrder()).asShortBuffer().get(0) & 0xffff);
assertEquals(0xffff, shortGetter() & 0xffff);
}
@Test
public void testChar() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asCharBuffer().get(0));
assertEquals(0, charGetter());
charSetter((char) 0xffff);
assertEquals(0xffff, memory.order(ByteOrder.nativeOrder()).asCharBuffer().get(0));
assertEquals(0xffff, charGetter());
}
@Test
public void testInt() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0, intGetter());
intSetter(0xffffffff);
assertEquals(0xffffffff, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0) & 0xffffffff);
assertEquals(0xffffffff, intGetter() & 0xffffffff);
}
@Test
public void testLong() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asLongBuffer().get(0));
assertEquals(0, longGetter());
longSetter(0xffffffffffffffffL);
assertEquals(0xffffffffffffffffL, memory.order(ByteOrder.nativeOrder()).asLongBuffer().get(0));
assertEquals(0xffffffffffffffffL, longGetter());
}
@Test
public void testFloat() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asFloatBuffer().get(0), 0);
assertEquals(0, floatGetter(), 0);
floatSetter((float) Math.PI);
assertEquals((float) Math.PI, memory.order(ByteOrder.nativeOrder()).asFloatBuffer().get(0), 0.00001f);
assertEquals((float) Math.PI, floatGetter(), 0.00001f);
}
@Test
public void testDouble() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asDoubleBuffer().get(0), 0);
assertEquals(0, doubleGetter(), 0);
doubleSetter(Math.PI);
assertEquals(Math.PI, memory.order(ByteOrder.nativeOrder()).asDoubleBuffer().get(0), 0.00001);
assertEquals(Math.PI, doubleGetter(), 0.00001);
}
@Test
public void testStructByVal() throws Exception {
IntBuffer memoryAsIntBuffer = memory.order(ByteOrder.nativeOrder()).asIntBuffer();
assertEquals(0, memoryAsIntBuffer.get(0));
assertEquals(0, memoryAsIntBuffer.get(1));
assertEquals(0, structByValGetter().x());
assertEquals(0, structByValGetter().y());
structByValGetter().x(9876);
structByValGetter().y(5432);
assertEquals(9876, memoryAsIntBuffer.get(0));
assertEquals(5432, memoryAsIntBuffer.get(1));
assertEquals(9876, structByValGetter().x());
assertEquals(5432, structByValGetter().y());
structByValSetter(new Point().x(1234).y(5678));
assertEquals(1234, memoryAsIntBuffer.get(0));
assertEquals(5678, memoryAsIntBuffer.get(1));
assertEquals(1234, structByValGetter().x());
assertEquals(5678, structByValGetter().y());
}
@Test
public void testStructByRef() throws Exception {
LongBuffer memoryAsLongBuffer = memory.order(ByteOrder.nativeOrder()).asLongBuffer();
assertEquals(0, memoryAsLongBuffer.get(0));
assertNull(structByRefGetter());
Point p = new Point();
structByRefSetter(p);
assertEquals(p.getHandle(), memoryAsLongBuffer.get(0));
}
@Test
public void testEnum() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(SimpleEnum.V1, enumGetter());
enumSetter(SimpleEnum.V3);
assertEquals(2, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(SimpleEnum.V3, enumGetter());
}
@Test
public void testValuedEnum() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
try {
valuedEnumGetter();
fail("IllegalArgumentException expected");
} catch (IllegalArgumentException e) {}
valuedEnumSetter(TestValuedEnum.V100);
assertEquals(100, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(TestValuedEnum.V100, valuedEnumGetter());
}
@Test
public void testBits() throws Exception {
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0, bitsGetter().value());
bitsSetter(TestBits.V8);
assertEquals(8, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(TestBits.V8, bitsGetter());
}
@Test
public void testPtr() {
LongBuffer memoryAsLongBuffer = memory.order(ByteOrder.nativeOrder()).asLongBuffer();
assertEquals(0, memoryAsLongBuffer.get(0));
assertNull(ptrGetter());
PointPtr ptr = new PointPtr();
assertNull(ptr.get());
Point p = new Point();
ptr.set(p);
ptrSetter(ptr);
assertEquals(ptr.getHandle(), memoryAsLongBuffer.get(0));
assertEquals(ptr, ptrGetter());
assertEquals(ptr.get(), ptrGetter().get());
}
@Test
public void testArrayAsString() throws Exception {
assertEquals(0, memory.get(0));
assertEquals("", arrayAsStringGetter());
arrayAsStringSetter("foobar");
byte[] bytes = new byte[7];
memory.get(bytes);
assertEquals("foobar", new String(bytes, 0, 6));
assertEquals("foobar", arrayAsStringGetter());
assertEquals(0, bytes[6]);
}
@Test
public void testArrayAsByteBuffer() throws Exception {
byte[] bytes1 = new byte[10];
byte[] bytes2 = new byte[10];
memory.get(bytes1); memory.clear();
assertTrue(Arrays.equals(new byte[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, bytes1));
arrayAsByteBufferGetter().get(bytes2);
assertTrue(Arrays.equals(new byte[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, bytes2));
arrayAsByteBufferSetter(ByteBuffer.wrap(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}));
memory.get(bytes1); memory.clear();
assertTrue(Arrays.equals(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, bytes1));
arrayAsByteBufferGetter().get(bytes2);
assertTrue(Arrays.equals(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, bytes2));
}
@Test
public void testArrayAsByteArray() throws Exception {
byte[] bytes1 = new byte[10];
memory.get(bytes1); memory.clear();
assertTrue(Arrays.equals(new byte[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, bytes1));
assertTrue(Arrays.equals(new byte[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, arrayAsByteArrayGetter()));
arrayAsByteArraySetter(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10});
memory.get(bytes1); memory.clear();
assertTrue(Arrays.equals(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, bytes1));
assertTrue(Arrays.equals(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, arrayAsByteArrayGetter()));
}
float fpi = (float) Math.PI;
@Test
public void testMachineSizedFloatD() throws Exception {
// NOTE: 32-bit specific
long ldpi = Double.doubleToLongBits(Math.PI);
long lfpi = Double.doubleToLongBits(fpi);
assertNotEquals(ldpi, lfpi);
assertEquals(0f, memory.order(ByteOrder.nativeOrder()).asFloatBuffer().get(0), 0f);
assertEquals(0.0, machineSizedFloatGetterD(), 0);
machineSizedFloatSetterD(Math.PI);
assertEquals(fpi, memory.order(ByteOrder.nativeOrder()).asFloatBuffer().get(0), 0f);
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
assertEquals(lfpi, Double.doubleToLongBits(machineSizedFloatGetterD()));
}
@Test
public void testMachineSizedSInt() throws Exception {
// NOTE: 32-bit specific
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0, machineSizedSIntGetter());
machineSizedSIntSetter(-1);
assertEquals(-1, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(-1, machineSizedSIntGetter());
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
machineSizedSIntSetter(0x80000000);
assertEquals(0x80000000, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0xffffffff80000000L, machineSizedSIntGetter());
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
machineSizedSIntSetter(0x1234567880000000L);
assertEquals(0x80000000, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0xffffffff80000000L, machineSizedSIntGetter());
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
}
@Test
public void testMachineSizedUInt() throws Exception {
// NOTE: 32-bit specific
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0, machineSizedUIntGetter());
machineSizedUIntSetter(-1);
assertEquals(-1, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0xffffffffL, machineSizedUIntGetter());
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
machineSizedUIntSetter(0x80000000);
assertEquals(0x80000000, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0x80000000L, machineSizedUIntGetter());
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
machineSizedUIntSetter(0x1234567880000000L);
assertEquals(0x80000000, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(0));
assertEquals(0x80000000L, machineSizedUIntGetter());
assertEquals(0, memory.order(ByteOrder.nativeOrder()).asIntBuffer().get(1));
}
}
| [
"[email protected]"
] | |
2d5e679b914c58d0896e3439139326293e67ec9a | ab73408ac29216a3af01d331992bffaa51e11d45 | /src/main/java/com/sports/frontend/controller/SportsGestorController.java | 244e202f72198b2cda7b5618bc5253f50fd0c48b | [] | no_license | robertoarias/SportStadistics | 9e027dc29e1ed343fa91c3daf424d0d08eb05ec1 | 862deaeb52aa58237bd99af8ac7cedf33f1c5a90 | refs/heads/master | 2020-08-16T22:35:24.186651 | 2019-10-25T20:10:29 | 2019-10-25T20:10:29 | 215,563,673 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,486 | java | package com.sports.frontend.controller;
import java.util.Collection;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import com.sports.frontend.security.UserInfoLDap;
@Controller("/")
public class SportsGestorController {
@RequestMapping("/")
public String index_(Model model, Authentication authentication)
{
UserInfoLDap userDetails = (UserInfoLDap) authentication.getPrincipal();
String roleAuth="";
String userAuth = "";
String userDisplayName = userDetails.getUsername();
String userPic = userDetails.getPathToPic();
if (userDisplayName.indexOf("(") != -1) {
userAuth = userDisplayName.substring(0, userDisplayName.indexOf("(")-1);
} else {
userAuth = userDisplayName;
}
Collection<GrantedAuthority> authorities =(Collection<GrantedAuthority>)userDetails.getAuthorities();
for (GrantedAuthority authority : authorities) {
roleAuth=authority.getAuthority();
}
model.addAttribute("tituloPantalla", "Torneos");
model.addAttribute("userPic", userPic);
return "index";
}
@RequestMapping(value="/login",method=RequestMethod.GET)
public String login() {
return "login";
}
}
| [
"[email protected]"
] | |
628200abc1d0021356cc6404a28addefeb6bb668 | fff8f77f810bbd5fb6b4e5f7a654568fd9d3098d | /src/main/java/com/google/android/datatransport/cct/a/zzu.java | c46b0b5dad92899fe62a898b4c2cacee9b8ff325 | [] | no_license | TL148/gorkiy | b6ac8772587e9e643d939ea399bf5e7a42e89f46 | da8fbd017277cf72020c8c800326954bb1a0cee3 | refs/heads/master | 2021-05-21T08:24:39.286900 | 2020-04-03T02:57:49 | 2020-04-03T02:57:49 | 252,618,229 | 0 | 0 | null | 2020-04-03T02:54:39 | 2020-04-03T02:54:39 | null | UTF-8 | Java | false | false | 1,185 | java | package com.google.android.datatransport.cct.a;
import com.google.firebase.encoders.EncodingException;
import com.google.firebase.encoders.ObjectEncoder;
import com.google.firebase.encoders.ObjectEncoderContext;
import java.io.IOException;
/* compiled from: com.google.android.datatransport:transport-backend-cct@@2.2.0 */
public final class zzu implements ObjectEncoder<zzi> {
public void encode(Object obj, Object obj2) throws EncodingException, IOException {
zzi zzi = (zzi) obj;
ObjectEncoderContext objectEncoderContext = (ObjectEncoderContext) obj2;
objectEncoderContext.add("eventTimeMs", zzi.zza()).add("eventUptimeMs", zzi.zzb()).add("timezoneOffsetSeconds", zzi.zzc());
if (zzi.zzf() != null) {
objectEncoderContext.add("sourceExtension", zzi.zzf());
}
if (zzi.zzg() != null) {
objectEncoderContext.add("sourceExtensionJsonProto3", zzi.zzg());
}
if (zzi.zzd() != Integer.MIN_VALUE) {
objectEncoderContext.add("eventCode", zzi.zzd());
}
if (zzi.zze() != null) {
objectEncoderContext.add("networkConnectionInfo", zzi.zze());
}
}
}
| [
"[email protected]"
] | |
db4ad0bdaa33b088ef109ae9daf43a0f02c2837d | ca974954f6797d3b63d6b8c86a476469b44f6de7 | /src/main/java/com/example/mapper/SysRoleMapper.java | be177ad2fe42f86beb2e0aae2bbb6f47d18d7bd1 | [] | no_license | FirstMrRight/abutment | 0b2731e0efcaf5d5f061d23b77bb44cc19c81f8c | 8d9f72ddf4f0901b5d9d78210e30f19948664e80 | refs/heads/master | 2023-03-02T02:14:31.825096 | 2021-01-31T08:42:37 | 2021-01-31T08:42:37 | 301,343,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 330 | java | package com.example.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.entity.SysRoleEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* @Description 角色DAO
* @Author Sans
* @CreateTime 2019/9/14 15:57
*/
@Mapper
public interface SysRoleMapper extends BaseMapper<SysRoleEntity> {
} | [
"[email protected]"
] | |
fc79919fe6e08e71f67f97ddc749c07a2dd95b1f | 31a2e9a3464550d8309c61ff78db7b820da7634a | /Registry/ChromaStructures.java | 16672391307898675701553e02a4900e9c599f0c | [] | no_license | foxwhite25/ChromatiCraft | c1f5dab4db52d572c1f524cac3aa5159c6f4918f | cc8de79b7341d3f4b7ea105b83b810a16bde02eb | refs/heads/master | 2023-04-06T18:07:50.642799 | 2021-04-02T06:44:29 | 2021-04-02T06:44:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,781 | java | /*******************************************************************************
* @author Reika Kalseki
*
* Copyright 2017
*
* All rights reserved.
* Distribution of the software in any form is only allowed with
* explicit, prior permission from the owner.
******************************************************************************/
package Reika.ChromatiCraft.Registry;
import java.lang.reflect.Constructor;
import java.util.Locale;
import java.util.Random;
import net.minecraft.util.StatCollector;
import net.minecraft.world.World;
import Reika.ChromatiCraft.ChromatiCraft;
import Reika.ChromatiCraft.Auxiliary.Structure.BoostedLumenTreeStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.BoostedRelayStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.BroadcasterStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.CastingL1Structure;
import Reika.ChromatiCraft.Auxiliary.Structure.CastingL2Structure;
import Reika.ChromatiCraft.Auxiliary.Structure.CastingL3Structure;
import Reika.ChromatiCraft.Auxiliary.Structure.CloakingTowerStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.CompoundRepeaterStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.GateStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.InfusionStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.LaunchPadStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.LumenTreeStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.MeteorTowerStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.NetworkOptimizerStructureV2;
import Reika.ChromatiCraft.Auxiliary.Structure.PersonalChargerStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.PlayerInfusionStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.PortalStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.ProgressionLinkerStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.ProtectionBeaconStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.PylonTurboStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.RepeaterStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.RitualStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.TreeSendFocusStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.WeakRepeaterStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.WirelessPedestalL2Structure;
import Reika.ChromatiCraft.Auxiliary.Structure.WirelessPedestalStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.BurrowStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.CavernStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.DataTowerStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.DesertStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.OceanStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.PylonStructure;
import Reika.ChromatiCraft.Auxiliary.Structure.Worldgen.SnowStructure;
import Reika.ChromatiCraft.Base.ChromaStructureBase;
import Reika.ChromatiCraft.Base.ColoredStructureBase;
import Reika.ChromatiCraft.ModInterface.VoidRitual.VoidMonsterNetherStructure;
import Reika.ChromatiCraft.ModInterface.VoidRitual.VoidMonsterRitualStructure;
import Reika.DragonAPI.DragonAPICore;
import Reika.DragonAPI.Exception.RegistrationException;
import Reika.DragonAPI.Instantiable.Data.BlockStruct.FilledBlockArray;
import Reika.DragonAPI.Interfaces.Registry.StructureEnum;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public enum ChromaStructures implements StructureEnum<ChromaStructureBase> {
PYLON(PylonStructure.class),
CASTING1(CastingL1Structure.class),
CASTING2(CastingL2Structure.class),
CASTING3(CastingL3Structure.class),
RITUAL(RitualStructure.class, false),
RITUAL2(RitualStructure.class, true),
INFUSION(InfusionStructure.class),
PLAYERINFUSION(PlayerInfusionStructure.class),
TREE(LumenTreeStructure.class),
TREE_SENDER(TreeSendFocusStructure.class),
TREE_BOOSTED(BoostedLumenTreeStructure.class),
REPEATER(RepeaterStructure.class),
COMPOUND(CompoundRepeaterStructure.class),
CAVERN(CavernStructure.class),
BURROW(BurrowStructure.class),
OCEAN(OceanStructure.class),
DESERT(DesertStructure.class),
SNOWSTRUCT(SnowStructure.class),
PORTAL(PortalStructure.class),
PERSONAL(PersonalChargerStructure.class),
BROADCAST(BroadcasterStructure.class),
CLOAKTOWER(CloakingTowerStructure.class),
PROTECT(ProtectionBeaconStructure.class),
WEAKREPEATER(WeakRepeaterStructure.class),
METEOR1(MeteorTowerStructure.class, 0),
METEOR2(MeteorTowerStructure.class, 1),
METEOR3(MeteorTowerStructure.class, 2),
TELEGATE(GateStructure.class),
RELAY(BoostedRelayStructure.class),
PYLONBROADCAST(PylonBroadcastStructure.class),
PYLONTURBO(PylonTurboStructure.class),
DATANODE(DataTowerStructure.class),
WIRELESSPEDESTAL(WirelessPedestalStructure.class),
WIRELESSPEDESTAL2(WirelessPedestalL2Structure.class),
PROGRESSLINK(ProgressionLinkerStructure.class),
OPTIMIZER(NetworkOptimizerStructureV2.class),
VOIDRITUAL(VoidMonsterRitualStructure.class),
NETHERTRAP(VoidMonsterNetherStructure.class),
LAUNCHPAD(LaunchPadStructure.class);
public final boolean requiresColor;
private final Class<? extends ChromaStructureBase> structureClass;
private final ChromaStructureBase structureInstance;
public static final ChromaStructures[] structureList = values();
private ChromaStructures(Class<? extends ChromaStructureBase> type, Object... data) {
structureClass = type;
requiresColor = ColoredStructureBase.class.isAssignableFrom(structureClass);
try {
structureInstance = this.instantiate(data);
}
catch (Exception e) {
throw new RegistrationException(ChromatiCraft.instance, "Could not instantiate structure type "+this+"!", e);
}
}
private ChromaStructureBase instantiate(Object... data) throws Exception {
if (structureClass == MeteorTowerStructure.class) {
Constructor c = structureClass.getConstructor(int.class);
return (ChromaStructureBase)c.newInstance(data[0]);
}
else if (structureClass == RitualStructure.class) {
Constructor c = structureClass.getConstructor(boolean.class);
return (ChromaStructureBase)c.newInstance(data[0]);
}
return structureClass.newInstance();
}
public synchronized FilledBlockArray getArray(World world, int x, int y, int z) {
return this.getStructure().getArray(world, x, y, z);
}
public synchronized FilledBlockArray getArray(World world, int x, int y, int z, Random r) {
ChromaStructureBase s = this.getStructure();
s.resetToDefaults();
if (r != null)
s.setRand(r);
FilledBlockArray ret = s.getArray(world, x, y, z);
return ret;
}
public synchronized FilledBlockArray getArray(World world, int x, int y, int z, CrystalElement e) {
return this.getArray(world, x, y, z, null, e);
}
public synchronized FilledBlockArray getArray(World world, int x, int y, int z, Random r, CrystalElement e) {
if (e == null)
return this.getArray(world, x, y, z, r);
ColoredStructureBase s = (ColoredStructureBase)this.getStructure();
s.resetToDefaults();
if (r != null)
s.setRand(r);
return s.getArray(world, x, y, z, e);
}
@SideOnly(Side.CLIENT)
public synchronized FilledBlockArray getStructureForDisplay() {
ChromaStructureBase s = this.getStructure();
s.setRand(DragonAPICore.rand);
return this.getStructure().getStructureForDisplay();
}
public String getDisplayName() {
return StatCollector.translateToLocal("chromastruct."+this.name().toLowerCase(Locale.ENGLISH));
}
public boolean isNatural() {
switch(this) {
case PYLON:
case CAVERN:
case BURROW:
case OCEAN:
case DESERT:
case SNOWSTRUCT:
return true;
default:
return false;
}
}
@Override
public ChromaStructureBase getStructure() {
return structureInstance;
}
}
| [
"[email protected]"
] | |
d74b7962ecd5fb73e1ab04f532eefe19020b3a39 | 8e259178aa71fdcdea6afc21dc980461c952c49a | /spring-security-oauth2-jdbc/src/main/java/com/test/persistence/repositories/UserRepository.java | 9a52f5654dfe193017727bedabe990d05c58ec33 | [] | no_license | badalb/Spring | 4d8a5fd4e8c1726c08fc33677088c24bafe98925 | f273e9fd4df84861350e293d9e1e3c0b061f2e32 | refs/heads/master | 2020-07-03T18:52:16.822991 | 2016-10-16T02:37:08 | 2016-10-16T02:37:08 | 66,841,549 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 434 | java | package com.test.persistence.repositories;
import java.util.List;
import org.springframework.data.repository.CrudRepository;
import com.test.persistence.entities.User;
public interface UserRepository extends CrudRepository<User, String> {
public User findByUserName(String userName);
public List<User> findByTbluserRoles_tblrole_name(String roleName);
public User findByUserIdAndIsDeleted(String userId, String isDeleted);
}
| [
"[email protected]"
] | |
5291689eb5a7678e70c19fdcd44bbb7d867ad0c4 | 69e6f6822221088dbb6e27f731fc4d117c20aef3 | /yiQu_Api/src/main/java/com/quanmai/yiqu/common/widget/FocusMap.java | 05c6d8eb785066c534846d6d4ecbb3a085f4f225 | [] | no_license | zengweitao/YiQuLife | f7dd201be283dfd64f7348b4525d328e7b7b94a9 | 30dd021e56c8e0914e2e2c23705baf49ffa319ce | refs/heads/master | 2021-01-01T18:10:57.454138 | 2017-07-25T06:38:40 | 2017-07-25T06:38:40 | 98,272,858 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,512 | java | package com.quanmai.yiqu.common.widget;
import java.util.ArrayList;
import com.quanmai.yiqu.common.util.ImageloaderUtil;
import com.quanmai.yiqu.R;
import com.quanmai.yiqu.api.vo.AdvertInfo;
import android.app.Activity;
import android.content.Context;
import android.os.Handler;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.ImageView.ScaleType;
import android.widget.LinearLayout;
public class FocusMap extends FrameLayout implements OnPageChangeListener {
protected Context mContext;
/**
* 装点点的ImageView数组
*/
ViewGroup group;
private ViewPager advPager = null;
protected LayoutInflater mInflater;
private ImageView[] imageViews = null;
int height=-1;
Boolean is_visiable = true;
public FocusMap(Context context,int height) {
super(context);
this.height=height;
init(context);
}
public FocusMap(Context context) {
super(context);
init(context);
}
public FocusMap(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public ViewPager getPagerView() {
return advPager;
}
private void init(Context context) {
mArrayList=new ArrayList<AdvertInfo>();
mContext = context;
LayoutInflater.from(context).inflate(R.layout.view_focus_map, this);
advPager = (ViewPager) findViewById(R.id.adv_pager);
group = (ViewGroup)findViewById(R.id.viewGroup);
advPager.setOnPageChangeListener(this);
// View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
// int h=view.getMeasuredWidth()/5;
// int h=getWidth()/5;
if(height<0)
{
DisplayMetrics dm = new DisplayMetrics();
((Activity) context).getWindowManager().getDefaultDisplay()
.getMetrics(dm);
height=dm.widthPixels *25/64; // 得到宽度
}
LayoutParams layoutParams = new LayoutParams(LayoutParams.MATCH_PARENT,
height);
setLayoutParams(layoutParams);
// addView(view);
}
@Override
public void onPageScrollStateChanged(int position) {
}
private Runnable mTicker;
private Handler mHandler;
/** 运行启动自动翻页 **/
private boolean Automaticsliding = false;
int nowpage;
/** 是否正在执行自动翻页 **/
private boolean running = false;
public void setAutomaticsliding(boolean b) {
if (b) {
if (!Automaticsliding) {
Automaticsliding = true;
if (!isRunning()) {
OnRun();
mHandler = new Handler();
mTicker = new Runnable() {
public void run() {
setNextItem();
if (Automaticsliding) {
mHandler.postDelayed(mTicker, 4000);
} else {
OnStop();
}
}
};
mHandler.postDelayed(mTicker, 4000);
} else {
/* 如果还在运行,则不重新开启 */
// Log.e("q", "无改变");
}
} else {
/* 如果已经自动翻页,则不再开启自动翻页 */
}
} else {
Automaticsliding = false;
}
}
private void OnRun() {
// Log.e("q", "开始运行");
running = true;
}
private void OnStop() {
// Log.e("q", "停止运行");
running = false;
}
public boolean isRunning() {
return running;
}
/**
* 向下翻一页,如果为空或者长度为1,则不支持自动翻页,关闭自动翻页
*/
public void setNextItem() {
if (imageViews == null) {
Automaticsliding = false;
return;
}
if (imageViews.length <= 1) {
Automaticsliding = false;
return;
}
if (nowpage != advPager.getCurrentItem()) {
nowpage = advPager.getCurrentItem();
return;
}
nowpage++;
if (nowpage > imageViews.length - 1) {
nowpage = 0;
}
advPager.setCurrentItem(nowpage, true);
// }
}
public void setCurrentItem(int position) {
advPager.setCurrentItem(position);
}
public AdvertInfo getItem(int position) {
return mArrayList.get(position);
}
@Override
public void onPageScrolled(int arg0, float arg1, int arg2) {
}
@Override
public void onPageSelected(int position) {
for (int i = 0; i < imageViews.length; i++) {
imageViews[position % imageViews.length]
.setBackgroundResource(R.drawable.adv_focus_radius);
if (position % imageViews.length != i) {
imageViews[i].setBackgroundResource(R.drawable.adv_radius);
}
}
}
ArrayList<AdvertInfo> mArrayList;
public void setAdapter(ArrayList<AdvertInfo> arrayList) {
mArrayList=arrayList;
imageViews = new ImageView[arrayList.size()];
group.removeAllViews();
if (arrayList.size() > 1) {
for (int i = 0; i < arrayList.size(); i++) {
imageViews[i] = new ImageView(mContext);
imageViews[i].setScaleType(ImageView.ScaleType.FIT_XY);
if (i == 0) {
// 默认选中第一张图片
imageViews[i]
.setBackgroundResource(R.drawable.adv_focus_radius);
} else {
imageViews[i].setBackgroundResource(R.drawable.adv_radius);
}
LinearLayout.LayoutParams wmParams = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
wmParams.setMargins(3, 0, 3, 5);
wmParams.width = 10;
wmParams.height = 10;
group.addView(imageViews[i], wmParams);
}
}
AdvAdapter adapter = new AdvAdapter(mContext, arrayList);
advPager.setAdapter(adapter);
}
private class AdvAdapter extends PagerAdapter {
private ArrayList<AdvertInfo> mArrayList = null;
private Context mContext;
public AdvAdapter(Context context, ArrayList<AdvertInfo> list) {
mContext = context;
if (list != null) {
mArrayList = list;
} else {
mArrayList = new ArrayList<AdvertInfo>();
}
}
@Override
public int getCount() {
return mArrayList.size();
}
@Override
public boolean isViewFromObject(View view, Object object) {
return (view == object);
}
@Override
public Object instantiateItem(ViewGroup container, final int position) {
ImageView imageView = new ImageView(mContext);
imageView.setScaleType(ScaleType.FIT_XY);
ImageloaderUtil.displayImage(mContext, mArrayList.get(position).picurl, imageView);
// imageView.setImageResource(R.drawable.test_1);
// imageView.setImageResource((Integer) mArrayList.get(position));
imageView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (mOnScrollListener != null) {
mOnScrollListener.onItemClick(position,
mArrayList.get(position));
}
}
});
((ViewPager) container).addView(imageView, 0);
return imageView;
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
((ViewPager) container).removeView((ImageView) object);
}
}
OnItemClickListener mOnScrollListener;
public interface OnItemClickListener {
public void onItemClick(int position, Object object);
}
public void setOnItemClickListener(OnItemClickListener l) {
mOnScrollListener = l;
}
// @Override
// public boolean onInterceptTouchEvent(MotionEvent ev) {
// getParent().requestDisallowInterceptTouchEvent(true);
// return super.onInterceptTouchEvent(ev);
// }
private float xDistance, yDistance, xLast, yLast;
public boolean onInterceptTouchEvent(MotionEvent event) {
int action = event.getAction();
switch (action) {
case MotionEvent.ACTION_DOWN:// 按下
xDistance = yDistance = 0f;
xLast = event.getX();
yLast = event.getY();
getParent().requestDisallowInterceptTouchEvent(true);
break;
// 滑动,在此对里层viewpager的第一页做处理
case MotionEvent.ACTION_MOVE:
// 里层viewpager已经是第一页,此时继续向左滑(手指从左往右滑)
final float curX = event.getX();
final float curY = event.getY();
xDistance += Math.abs(curX - xLast);
yDistance += Math.abs(curY - yLast);
if (yDistance > xDistance) {
getParent().requestDisallowInterceptTouchEvent(false);
} else if (xLast < curX && advPager.getCurrentItem() == 0) {
getParent().requestDisallowInterceptTouchEvent(false);
} else {
getParent().requestDisallowInterceptTouchEvent(true);
}
xLast = curX;
yLast = curY;
break;
case MotionEvent.ACTION_UP:// 抬起
case MotionEvent.ACTION_CANCEL:
getParent().requestDisallowInterceptTouchEvent(false);
break;
}
return false;
}
// 注入里层viewpager
}
| [
"[email protected]"
] | |
45950425879188ac05245d938ab425b262c356d8 | c4a846c1aeaa944d92c5d6af46435575140bfb8c | /PersonTracker_hibernate5.0+/PersonTracker_20180103/src/com/lansitec/controller/networkgw/TVMsgDefs.java | 686e0085ff3f650b36db65f918bd3b51ec9813e5 | [] | no_license | zhaobangbang/Persontracker | bc2ca955453a5548c3dc02cfbfd320ed725ec61d | c1ba1815d080ac6de9035e2462311f6f043941d9 | refs/heads/master | 2020-03-20T04:22:14.456423 | 2018-06-15T01:49:58 | 2018-06-15T01:49:58 | 137,180,013 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 716 | java | package com.lansitec.controller.networkgw;
public class TVMsgDefs {
public static final byte UL_DEV_REG = 0x1;
public static final byte UL_DEV_HB = 0x2;
public static final byte UL_DEV_POS_UNACK = 0x3;
public static final byte UL_DEV_POS_ACK = 0x4;
public static final byte UL_DEV_LOST_POS = 0x5;
public static final byte UL_DEV_ALARM = 0x6;
public static final byte UL_DEV_INDOOR_POS = 0x7;
public static final byte UL_DEV_ACK = 0xF;
public static final byte DL_REG_RESULT = 0x1;
public static final byte DL_LORA_CFG = 0x8;
public static final byte DL_MODE_CFG = 0x9;
public static final byte DL_COMMAND_REQ = 0xA;
public static final byte DL_SLOT = 0xB;
public static final byte DL_ACK = 0xF;
}
| [
"[email protected]"
] | |
6d481e6ae699895d30178e9eee4e847e72772d5d | 09a444db7f584ec3d9974534945792abfdf302f7 | /src/septusten/plugins/blockshuffle/BS_MessageSender.java | 78f7cdaa08d4e44d5f2d411d186756494cffe97b | [
"MIT"
] | permissive | Septus10/BlockShuffle | 0466a02f38ad4d891cfdfbff73177caeb766c767 | 78663ee470b57535e446028a5f4db896abaf46fd | refs/heads/master | 2022-07-24T00:05:41.851185 | 2020-05-24T20:14:14 | 2020-05-24T20:14:14 | 266,604,292 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 521 | java | package septusten.plugins.blockshuffle;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.entity.Player;
public class BS_MessageSender
{
static String MessageStart = ChatColor.DARK_BLUE + "[" + ChatColor.GREEN + "BlockShuffle" + ChatColor.DARK_BLUE + "]" + ChatColor.RESET + " ";
static void sendBroadcast(String message)
{
Bukkit.broadcastMessage(MessageStart + message);
}
static void sendMessage(Player player, String message)
{
player.sendMessage(MessageStart + message);
}
}
| [
"[email protected]"
] | |
a2d33a365f189661b28eb69abdf2d04e42c3a6f7 | 26750bd4247544d15dcb0f9056a98e0ef0f09e0f | /ADS Module/Sorting/QuickSort.java | 51b8cec7e193d44b14334f793bbb37b566d38ec1 | [] | no_license | VaibhavBaraskar/Vaibhav_baraskar_E-DAC2020 | 21c64c3e3760c3a37081cc1c1e8834611582564f | 9fb182664c513db318af8888c6beb2ca0673cb4d | refs/heads/master | 2023-03-03T14:52:21.730892 | 2021-02-09T16:50:52 | 2021-02-09T16:50:52 | 299,300,551 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 914 | java | package SearchingAlgoritham;
public class QuickSort {
public static int partition(int arr[], int lo, int hi) {
int p=arr[hi];
int i=lo-1;
for(int j=lo;j<=hi-1;j++) {
if(arr[j]<=p) {
i++;
arr[j]=arr[i]+arr[j]-(arr[i]=arr[j]);
}
}
arr[hi]=arr[i+1]+arr[hi]-(arr[i+1]=arr[hi]);
return (i+1);
}
public static void display(int[] a) {
for (int n : a) {
System.out.print(n + " ");
}
}
public static void quickSort(int[] a,int low , int high) {
if(low<high) {
int pivot=partition(a,low,high);
quickSort(a,low,pivot-1);
quickSort(a,pivot,high);
}
}
public static void main(String[] args) {
int arr[] = {69,25,5,22,11,55,33,43,88,2};
int low=0,high=arr.length-1;
display(arr);
System.out.println();
quickSort(arr, low, high);
display(arr);
}
}
| [
"[email protected]"
] | |
5763019b5afdaf3b8375c1626220dce5aad9a9c1 | f3bc20849e3c6ff63ca8f703166004519996848f | /Project 2/src/Admin.java | 0266b4bf87075d59f7ae493065effc483cae7f12 | [] | no_license | Blugrrl/JavaPractice | 0fdfa2d3f184c4bf24edc144ba04f6a90b801908 | c4034679d43261c14f893ab48146003c4a527d56 | refs/heads/master | 2021-01-11T07:42:30.768781 | 2016-11-22T09:55:10 | 2016-11-22T09:55:10 | 72,094,957 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 343 | java |
public class Admin extends Employee {
int employeeBonusBase = 300;
double bonus;
public Admin (String name, double salary, String department, int idNumber, Gender gender) {
super(name, salary, idNumber, department, gender);
}
public double bonus() {
bonus = employeeBonusBase*getAge();
return bonus;
}
} | [
"[email protected]"
] | |
6617ead889fb505608334b9cac8aed653628115b | 619bddb7345a5155e08e89833548f5d3e8bbe498 | /2MGR/PIS/src/main/java/backend/controller/TechniqueController.java | 96c2ee4fd67c84e7edfe8eaf51856076cf81f14e | [] | no_license | huhuhugo1/VUT-FIT | 8808194d9fbedb1a8c834d67fcb6776802a530ff | 7a4b90073910953ac23402e2292d51d700f6a585 | refs/heads/master | 2020-04-12T11:40:25.725214 | 2018-08-18T14:59:07 | 2018-08-18T14:59:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,263 | java | package backend.controller;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.ejb.EJB;
import javax.ejb.Stateless;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.ViewScoped;
import javax.faces.context.FacesContext;
import service.TechniqueManager;
import service.TechniqueTypeManager;
import service.UserManagerException;
import service.UserManagerInternal;
import models.*;
@Stateless
@ManagedBean(name="technique")
@ViewScoped
public class TechniqueController {
@EJB
private TechniqueManager techniqueManager;
@EJB
private TechniqueTypeManager techniqueTypeManager;
@EJB
private UserManagerInternal userManager;
private List<TypTechniky> types;
private List<Uzivatel> users;
private EvidenceTechniky technique;
private Integer id;
/**
* Default constructor.
*/
public TechniqueController() {
technique = new EvidenceTechniky();
}
@PostConstruct
public void init() {
types = techniqueTypeManager.findAll();
users = userManager.findAll();
}
public EvidenceTechniky getTechnique() {
return technique;
}
public List<EvidenceTechniky> getAllAvailableTechnique() {
return techniqueManager.findAll();
}
public List<TypTechniky> getTechniqueTypes() {
return types;
}
public List<Uzivatel> getUsers() {
return users;
}
public String actionInsertNew()
{
try {
techniqueManager.add(technique);
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Equipment added successfully"));
FacesContext.getCurrentInstance().getExternalContext().getFlash().setKeepMessages(true);
technique = new EvidenceTechniky();
return "list.xhtml?faces-redirect=true";
}
catch(Exception e)
{
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Failed to add equipment..." + e.getMessage()));
e.printStackTrace();
}
return "add";
}
public void setId(Integer id) {
this.id = id;
}
public Integer getId() {
return id;
}
public EvidenceTechniky getTechniqueDetail() {
return techniqueManager.findById(id);
}
}
| [
"[email protected]"
] | |
5bdc7d9afbe18e5153acdd488067251619416cd5 | 2178a0a9fea55dcc4077847af862cad6db2f5b12 | /app/src/main/java/novumlogic/live/wallpaper/gdx/graphics/g3d/particles/renderers/BillboardControllerRenderData.java | 808a62262956d153cb7b72ea35b3282d200046ed | [] | no_license | lgslegend/LiveWallpaper-2 | 06fa7026ccd7584b88059a13482ce29ac7d72626 | ed3afdf23e7b62512a785b2f4df58e80a3d992e4 | refs/heads/master | 2022-04-19T19:35:41.904464 | 2020-04-18T16:22:07 | 2020-04-18T16:22:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,158 | java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* 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 novumlogic.live.wallpaper.gdx.graphics.g3d.particles.renderers;
import novumlogic.live.wallpaper.gdx.graphics.g3d.particles.ParallelArray.FloatChannel;
/** Render data used by billboard particle batches
* @author Inferno */
public class BillboardControllerRenderData extends ParticleControllerRenderData {
public FloatChannel regionChannel, colorChannel, scaleChannel, rotationChannel;
}
| [
"[email protected]"
] | |
4c413153fc0fa24d98845b4f9dc882bfd0d6cd89 | beae2b567901e88e35a2a0b02649d14a26c31ec7 | /MyselfDialog/src/main/java/com/shenzhen/payfor/MainActivity.java | be3dc48274429f04ba457ae57fe34a1ee7dd1b2c | [] | no_license | zhangshenzhen/Myself_project | e0c96f8a37633f21d3132a4a6e4d9ee65d9d7675 | 4430ddc9f7ef5b700178ebca5a5a18194f475a17 | refs/heads/master | 2020-04-06T08:27:56.442016 | 2019-09-10T06:56:06 | 2019-09-10T06:56:06 | 157,305,546 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,885 | java | package com.shenzhen.payfor;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
private static final String TAG ="MainActivity.okgo" ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById(R.id.btn_payfor).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
/* OkGo.<String>post("http://123.57.232.188:19096/api/hybCfProject/getRecommendProject")
.tag(this)
.params("pkregister", "18a13afb007b4662982f3bc85702503c")//pkregister=7a30cbe6695a4e239fe727fc1241889a
.params("type", "13")
.isMultipart(true)
.execute(new StringCallback() {
@Override
public void onSuccess(Response<String> response) {
Log.d(TAG,"onSuccess = "+ response.body().toString());
}
@Override
public void onError(Response<String> response) {
super.onError(response);
Log.d(TAG,"onError = "+ response.body().toString());
}
});*/
//测试一
/* UpgradeDialog dialog = new UpgradeDialog(MainActivity.this, "123.apk","123;54676;");
dialog.showDialog();
});*/
//测试二
// PayForFinishDialog pay = new PayForFinishDialog(MainActivity.this);
// pay.showDialog();
//可以弹出两个dialog;
// PayForFinishDialog pay2 = new PayForFinishDialog(MainActivity.this);
// pay2.showDialog();
}
});
}
}
| [
"[email protected]"
] | |
2154d37aec591d778489f8e72275cd9215c648a7 | ab3c26df38d901e069fa22322f4bf58fd2662583 | /src/com/got/nio/demos/Server.java | c1ac7495b3419bf1d341c5bf9055b3e627a55987 | [] | no_license | zzwu/NioServer | e79afab294493c723c09cb4a8050d29c961857f0 | fe4faa2e96203ab0bcaf3998c618e387334c01d0 | refs/heads/master | 2016-09-06T02:15:37.084089 | 2011-09-05T08:17:16 | 2011-09-05T08:17:16 | 2,214,555 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,667 | java | package com.got.nio.demos;
import java.io.PrintWriter;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.ServerSocketChannel;
import java.util.Iterator;
import java.util.Set;
public class Server {
private static int port = 9999;
public static void main(String args[]) throws Exception {
Selector selector = Selector.open();
ServerSocketChannel channel = ServerSocketChannel.open();
channel.configureBlocking(false);
InetSocketAddress isa = new InetSocketAddress(port);
channel.socket().bind(isa);
// Register interest in when connection
channel.register(selector, SelectionKey.OP_ACCEPT);
// Wait for something of interest to happen
while (selector.select() > 0) {
// Get set of ready objects
Set readyKeys = selector.selectedKeys();
Iterator readyItor = readyKeys.iterator();
// Walk through set
while (readyItor.hasNext()) {
// Get key from set
SelectionKey key = (SelectionKey) readyItor.next();
// Remove current entry
readyItor.remove();
if (key.isAcceptable()) {
// Get channel
ServerSocketChannel keyChannel = (ServerSocketChannel) key
.channel();
// Get server socket
ServerSocket serverSocket = keyChannel.socket();
// Accept request
Socket socket = serverSocket.accept();
// Return canned message
PrintWriter out = new PrintWriter(socket.getOutputStream(),
true);
out.println("Hello, NIO");
out.close();
} else {
System.err.println("Ooops");
}
}
}
// Never ends
}
} | [
"[email protected]"
] | |
9e7eccad2ddac1f1b29e6657a8b254b6cf3aa153 | aac95bd35aefaf431b23d9577aead71fd1699614 | /src/test/java/cucumberTraining/CukesRunnerTest.java | cf5fb8984007266bf6c19e89633c6a26e4aa5d34 | [
"CC-BY-3.0",
"Apache-2.0"
] | permissive | celikgumusdag/CucumberTestNG | 529dafff3d0118267d0e67cd5d5d24226a31532f | 402d9f252035d11ae8fd435df6e538597b10a248 | refs/heads/master | 2021-01-20T21:12:08.628924 | 2017-07-31T07:09:55 | 2017-07-31T07:09:55 | 60,177,607 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 524 | java | package cucumberTraining;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import cucumber.api.testng.AbstractTestNGCucumberTests;
@RunWith(Cucumber.class)
@CucumberOptions(
monochrome = true,
features = "src/test/java/features",
plugin = {"pretty", "html:target/cucumber-html-report"},
//glue = " ",
tags = "@testdiary,@testdiary2"
)
public class CukesRunnerTest extends AbstractTestNGCucumberTests {
}
| [
"[email protected]"
] | |
5d20f9e861f2f89a27a6db392133c334dfde924b | 2ccb4c6f253ec1e7418d468a664a2e31f62c3784 | /app/src/main/java/com/bibinet/biunion/project/bean/CompanyUpImageBean.java | 2bbf46445702c1adca651c392746612a1eee4cc8 | [] | no_license | zhangyalong123feiyu/BiUnion | 8207e1cae667a93a0ca62ceca7bddaaf60e6131b | 5452c654c3efb929e714d0b8928eef902db4ce8a | refs/heads/master | 2021-01-21T10:00:27.173330 | 2017-07-18T02:32:16 | 2017-07-18T02:32:19 | 91,677,294 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,190 | java | package com.bibinet.biunion.project.bean;
import java.io.Serializable;
/**
* Created by bibinet on 2017-6-30.
*/
public class CompanyUpImageBean implements Serializable {
/**
* originalFileInfoId : 100052
* thumbnailFileInfoId : 100053
* resCode : 0000
* resMessage : 操作成功
*/
private int originalFileInfoId;
private int thumbnailFileInfoId;
private String resCode;
private String resMessage;
public int getOriginalFileInfoId() {
return originalFileInfoId;
}
public void setOriginalFileInfoId(int originalFileInfoId) {
this.originalFileInfoId = originalFileInfoId;
}
public int getThumbnailFileInfoId() {
return thumbnailFileInfoId;
}
public void setThumbnailFileInfoId(int thumbnailFileInfoId) {
this.thumbnailFileInfoId = thumbnailFileInfoId;
}
public String getResCode() {
return resCode;
}
public void setResCode(String resCode) {
this.resCode = resCode;
}
public String getResMessage() {
return resMessage;
}
public void setResMessage(String resMessage) {
this.resMessage = resMessage;
}
}
| [
"[email protected]"
] | |
d6f3aca88003095580944d5be5aef2bc2792b390 | 0b200dc7e662f6ec73f11df8428c682c198a2dcd | /struts/struts-board/src/util/Log4jReLoadConfigure.java | 273e8e5b6037797de7218017ddab42cb8f005c82 | [] | no_license | Tob1112/seungbeomi | 45ea004bb1e388ccbe89eeced69da448d9b8d9cd | 845119f6cb5d311bb376bfc9a3e688089a06e83f | refs/heads/master | 2021-01-20T15:37:23.714693 | 2012-05-25T05:23:26 | 2012-05-25T05:23:26 | 41,893,041 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,483 | java | package util;
import java.io.File;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import org.apache.log4j.PropertyConfigurator;
public class Log4jReLoadConfigure extends HttpServlet {
/** Initializa el servlet.
*/
public void init(ServletConfig config) throws ServletException {
super.init(config);
String prefix = getServletContext().getRealPath("/")+"WEB-INF"+File.separatorChar+"classes"+File.separatorChar;
String file = getInitParameter("log4j-init-file");
if(file == null || file.length() == 0 ||
!(new File(prefix+file)).isFile()){
System.err.println("[ERROR]: File not found log4j.properties OR log4j.xml ");
throw new ServletException();
}
// reload time set
String watch = config.getInitParameter("watch");
String timeWatch = config.getInitParameter("time-watch");
if (watch != null && watch.equalsIgnoreCase("true")) {
if (timeWatch != null) {
PropertyConfigurator.configureAndWatch(prefix+file,Long.parseLong(timeWatch));
} else {
PropertyConfigurator.configureAndWatch(prefix+file);
}
} else {
PropertyConfigurator.configure(prefix+file);
}
}
public void destroy() {
super.destroy();
}
}
| [
"seungbeomi@bc4883c6-4e87-11de-8d14-a1ddb34ee23c"
] | seungbeomi@bc4883c6-4e87-11de-8d14-a1ddb34ee23c |
cff8f2d6ddb02621a6c0ce63adcd0a39a581573f | 7c7f58d0aba2e1609a0dba11219117093994f670 | /QRExampleBusiness/src/main/java/cl/qr/ws2/SolicitarPago.java | 14135602fe4b67acc83d89818c3332a065b59ea1 | [] | no_license | agustinsantiagobcit/ml-hdp | 4b05b99ea3a8f306497ef1082533898f597178b7 | e74fa8983aea4dce6fd1a5f0e070d885df14abb4 | refs/heads/master | 2020-03-21T08:04:28.044671 | 2018-06-22T15:40:40 | 2018-06-22T15:40:40 | 138,318,236 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,688 | java | //
// Generated By:JAX-WS RI IBM 2.1.6 in JDK 6 (JAXB RI IBM JAXB 2.1.10 in JDK 6)
//
package cl.qr.ws2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for SolicitarPago complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="SolicitarPago">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="InformacionPago" type="{http://ws.botonpago.hdp.metlife.cl/}informacionPago" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SolicitarPago", namespace = "http://ws.botonpago.hdp.metlife.cl/", propOrder = {
"informacionPago"
})
public class SolicitarPago {
@XmlElement(name = "InformacionPago")
protected InformacionPago informacionPago;
/**
* Gets the value of the informacionPago property.
*
* @return
* possible object is
* {@link InformacionPago }
*
*/
public InformacionPago getInformacionPago() {
return informacionPago;
}
/**
* Sets the value of the informacionPago property.
*
* @param value
* allowed object is
* {@link InformacionPago }
*
*/
public void setInformacionPago(InformacionPago value) {
this.informacionPago = value;
}
}
| [
"[email protected]"
] | |
a961126023c57ca555d08c612cfe6bc9c9d21f2c | 947cef7ad592f4f72e8ec50853fc0ff833c85cd7 | /src/View/Students.java | 631bd4529831becc086f7b16e3a7f7c3b4fe3bf2 | [] | no_license | pedro0x53/MyClassRoom | cd0aa6942d067401cd6f76bc39187cda4fbd2440 | 579080be1940f4baf3800823cf7b42aa96601738 | refs/heads/main | 2022-12-30T20:47:16.172408 | 2020-10-21T23:29:15 | 2020-10-21T23:29:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 41 | java | package View;
public class Students {
}
| [
"[email protected]"
] | |
85419ca6b92082eb319edd5ffa4eae497dbcd37c | e3f51bba99ab626e14d3728dcd0042c440af43e8 | /OopJava/build/classes/inheritance/inheritmember/MemberTest.java | e58cbfe7c4edd931e614c67659e90e1d8f6d3382 | [] | no_license | Selim-Reza-Swadhin/Java-Tutorial | 359b06de245347fb37b5216ebd568b4e306e6587 | 2816f2cb9010b8702524291aa622b405ebf6aae2 | refs/heads/master | 2021-01-08T18:24:41.264555 | 2020-02-21T09:49:47 | 2020-02-21T09:49:47 | 242,105,477 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 398 | java | package inheritance.inheritmember;
public class MemberTest {
public static void main(String[] args) {
Teacher t = new Teacher();
t.setName("Hamid");
t.setAge(33);
t.setQualification("M.sc");
// System.out.println(t.getName());
// System.out.println(t.getAge());
// System.out.println(t.getQualification());
t.display();
}
}
| [
"[email protected]"
] | |
336930d2381a46734b502fc488ee6612cbcb1cb3 | ae868d2adbe71e1b1290f4fe526d4ac0b80b3007 | /db4odemo/src/Business/Organization/Organization.java | c005396a4d633f56db2155cf849146383100376c | [] | no_license | mahak0712/job-board-veterans | 1e8b3f3450bf64c1aa3c4616ab5d975bd8964283 | 3c92209462d83c669331ab90dfab630a68f15832 | refs/heads/master | 2022-12-13T15:05:13.898220 | 2020-08-21T06:55:36 | 2020-08-21T06:55:36 | 289,172,851 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,640 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Business.Organization;
import Business.Employee.EmployeeDirectory;
import Business.Role.Role;
import Business.UserAccount.UserAccountDirectory;
import Business.WorkQueue.WorkQueue;
import java.util.ArrayList;
/**
*
* @author raunak
*/
public abstract class Organization {
private String name;
private WorkQueue workQueue;
private EmployeeDirectory employeeDirectory;
private UserAccountDirectory userAccountDirectory;
private int organizationID;
private static int counter=0;
public enum Type{
Admin("Admin Organization"),
Doctor("Doctor Organization"),
Lab("Lab Organization"),
VeteranAdmin("Veteran Admin Organization"),
Veteran("Veteran Organization"),
JobProviderAdmin("Job Provider Admin Organization"),
JobPosting("Job Posting Organization"),
ApplicationProcess("Application Process Organization"),
InterviewScheduler("Interview Scheduler Organization"),
ValidatorAdmin("Validator Admin Organization"),
Validator("Validator Organization"),
EventManagementAdmin("EMAdmin Organization"),
EventManagement("Event Management Organization"),
ConsultancyAdmin("Consultancy Admin Organization"),
Consultancy("Consultancy Organization");
private String value;
private Type(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
public Organization(String name) {
this.name = name;
workQueue = new WorkQueue();
employeeDirectory = new EmployeeDirectory();
userAccountDirectory = new UserAccountDirectory();
organizationID = counter;
++counter;
}
public abstract ArrayList<Role> getSupportedRole();
public UserAccountDirectory getUserAccountDirectory() {
return userAccountDirectory;
}
public int getOrganizationID() {
return organizationID;
}
public EmployeeDirectory getEmployeeDirectory() {
return employeeDirectory;
}
public String getName() {
return name;
}
public WorkQueue getWorkQueue() {
return workQueue;
}
public void setName(String name) {
this.name = name;
}
public void setWorkQueue(WorkQueue workQueue) {
this.workQueue = workQueue;
}
@Override
public String toString() {
return name;
}
}
| [
"[email protected]"
] | |
8d7f21044711b15abfa88574d5e91d38802d7321 | e968807915cfd8da447253b9b7ecceadfc5ae25d | /src/main/java/String/LongestCommonSubsequence.java | 23f3d900acc7d05b338d6d2f3b35eaf7c6b3c87f | [] | no_license | dhavalptl630007/LeetCode | b2deb3c19fa592a9981d46f52cbe0d3a3cde29b8 | 558b462d3a2819bde0e586d061ff2c7100d55836 | refs/heads/master | 2022-12-27T00:53:12.295051 | 2020-09-03T21:54:20 | 2020-09-03T21:54:20 | 231,447,660 | 0 | 0 | null | 2020-10-14T00:23:11 | 2020-01-02T19:39:03 | Java | UTF-8 | Java | false | false | 1,439 | java | package String;
public class LongestCommonSubsequence {
public static void main(String[] args) {
// TODO Auto-generated method stub
String X = "AA";
String Y = "AA";
int m = X.length();
int n = Y.length();
int c[][] = new int[m + 1][n + 1];
for (int i = 0; i <= m; i++) {
c[i][0] = 0;
}
for (int j = 0; j <= n; j++) {
c[0][j] = 0;
}
for(int i = 1 ; i<=m; i++) {
for(int j = 1; j<=n; j++) {
if(X.charAt(i-1) == Y.charAt(j-1)) {
c[i][j] = c[i-1][j-1]+1;
}
else if (c[i-1][j] >= c[i][j-1]) {
c[i][j] = c[i-1][j];
}
else
{
c[i][j] = c[i][j-1];
}
}
}
for (int i = 0; i <=m; i++) {
for (int j = 0; j <=n; j++) {
System.out.print(c[i][j]+ " ");
}
System.out.println();
}
print_LCS(X, Y, c, m, n);
//System.out.println("test");
}
private static void print_LCS(String x, String y, int [][]c,int i, int j) {
// TODO Auto-generated method stub
if(i == 0 || j ==0) {
return;
}
if(x.charAt(i-1) == y.charAt(j-1)) {
print_LCS(x, y, c, i-1,j-1);
System.out.print(x.charAt(i-1));
}
else if (c[i-1][j] >= c[i][j-1]) {
print_LCS(x, y, c, i-1,j);
}
else
{
print_LCS(x, y, c, i,j-1);
}
// else if ( )
}
}
| [
"[email protected]"
] | |
817d2dc8a04b33622b877c49001c0673afed3034 | 93e6d167aa354fd8701034ee9e4ef2e257e04e6d | /sqa_learning_mvn_win/src/main/java/sqa_learning_mvn_win/sqa_learning_mvn_win/App.java | 54203665425832357f2cb8d3bf15f25dcaf47021 | [] | no_license | renotesting/git_repo | 11c3ea026e5183c1209b2198e3ec6addfe99612b | 0f66756d38694342a2aa1d04579981e989cbfe7e | refs/heads/master | 2021-01-10T21:04:25.282931 | 2014-11-25T23:28:08 | 2014-11-25T23:28:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 204 | java | package sqa_learning_mvn_win.sqa_learning_mvn_win;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
| [
"[email protected]"
] | |
516908e4d6be4ee9f127d3a85bd53d69157d9ae5 | b707117c6d01d3fc1f8627c4be2642b88453cb28 | /src/oop/exercises/e01definingClasses/p06_RawData/Engine.java | a9909c3c96a99d69bc520837ac8e3246923ff00e | [] | no_license | Angel-Dzhambazov/JavaOOPExercises | 56714045fc875aea09e0f6717d62f995b365f62f | 8d7cf43cb49e6f382a2cd99fe3baf919a68ec5cd | refs/heads/master | 2021-03-26T23:40:47.232567 | 2020-04-01T10:52:45 | 2020-04-01T10:52:45 | 247,762,088 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 312 | java | package oop.exercises.e01definingClasses.p06_RawData;
public class Engine {
private Integer speed;
private Integer power;
public Engine(Integer speed, Integer power) {
this.speed = speed;
this.power = power;
}
public Integer getPower() {
return this.power;
}
}
| [
"[email protected]"
] | |
f1c6e87074682dbb6de640905608b9565c94fe4d | 26140a235fabf234c46a600d037ec2bf524ee77b | /target/generated-sources/annotations/co/gov/secretariamovilidad/sicapital/entidad/CoEntidadesIas_.java | 105579c613a11a306ded5fbc54931a7ec9196afc | [] | no_license | cmezaponce/SiCapital | 4154116ce00329320e7efa368ae1d719eae62b7f | dd7c128d16dcade8bd578b2d5eb531eddcf2023b | refs/heads/master | 2020-07-05T20:28:09.175746 | 2019-08-16T15:30:15 | 2019-08-16T15:30:15 | 202,764,754 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 511 | java | package co.gov.secretariamovilidad.sicapital.entidad;
import javax.annotation.Generated;
import javax.persistence.metamodel.SingularAttribute;
import javax.persistence.metamodel.StaticMetamodel;
@Generated(value="EclipseLink-2.5.2.v20140319-rNA", date="2019-08-16T10:25:13")
@StaticMetamodel(CoEntidadesIas.class)
public class CoEntidadesIas_ {
public static volatile SingularAttribute<CoEntidadesIas, Integer> codigo;
public static volatile SingularAttribute<CoEntidadesIas, String> descripcion;
} | [
"[email protected]"
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.